mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
2e3ee9f45b
There's no need to have these in plat/io.h. While at it, clean up the includes to group them like they typically are grouped. Signed-off-by: Tony Lindgren <tony@atomide.com>
24 lines
473 B
C
24 lines
473 B
C
/*
|
|
* OMAP1 reset support
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <linux/io.h>
|
|
|
|
#include <plat/prcm.h>
|
|
|
|
#include <mach/hardware.h>
|
|
|
|
void omap1_restart(char mode, const char *cmd)
|
|
{
|
|
/*
|
|
* Workaround for 5912/1611b bug mentioned in sprz209d.pdf p. 28
|
|
* "Global Software Reset Affects Traffic Controller Frequency".
|
|
*/
|
|
if (cpu_is_omap5912()) {
|
|
omap_writew(omap_readw(DPLL_CTL) & ~(1 << 4), DPLL_CTL);
|
|
omap_writew(0x8, ARM_RSTCT1);
|
|
}
|
|
|
|
omap_writew(1, ARM_RSTCT1);
|
|
}
|