diff options
Diffstat (limited to 'ANDROID_3.4.5/arch/arm/mach-omap1/reset.c')
-rw-r--r-- | ANDROID_3.4.5/arch/arm/mach-omap1/reset.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ANDROID_3.4.5/arch/arm/mach-omap1/reset.c b/ANDROID_3.4.5/arch/arm/mach-omap1/reset.c deleted file mode 100644 index f255b153..00000000 --- a/ANDROID_3.4.5/arch/arm/mach-omap1/reset.c +++ /dev/null @@ -1,23 +0,0 @@ -/* - * 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); -} |