diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-12-09 01:53:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-12-09 01:53:02 +0000 |
commit | d065711fcca72f189153c8e81a533ecb0f200613 (patch) | |
tree | 2db8340541e72641feaabded4bb4202c06b88da6 /target/linux/atheros | |
parent | 9ecde6afd9e76ddedead9bc5dc2bf132a5297b5e (diff) | |
download | upstream-d065711fcca72f189153c8e81a533ecb0f200613.tar.gz upstream-d065711fcca72f189153c8e81a533ecb0f200613.tar.bz2 upstream-d065711fcca72f189153c8e81a533ecb0f200613.zip |
atheros: fix reboot on ar2315 devices which do not implement the atheros reference design workaround for the buggy reset logic (e.g. some senao stuff)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13556 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/atheros')
-rw-r--r-- | target/linux/atheros/files/arch/mips/atheros/ar5315/board.c | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/target/linux/atheros/files/arch/mips/atheros/ar5315/board.c b/target/linux/atheros/files/arch/mips/atheros/ar5315/board.c index fad5783c55..6ee75a966e 100644 --- a/target/linux/atheros/files/arch/mips/atheros/ar5315/board.c +++ b/target/linux/atheros/files/arch/mips/atheros/ar5315/board.c @@ -21,6 +21,7 @@ #include <linux/platform_device.h> #include <linux/kernel.h> #include <linux/reboot.h> +#include <linux/delay.h> #include <asm/bootinfo.h> #include <asm/reboot.h> #include <asm/time.h> @@ -279,15 +280,21 @@ static void ar5315_power_off(void) static void ar5315_restart(char *command) { - for(;;) { - /* reset the system */ - sysRegWrite(AR5315_COLD_RESET,AR5317_RESET_SYSTEM); - - /* - * Cold reset does not work on the AR2315/6, use the GPIO reset bits a workaround. - */ - gpio_direction_output(AR5315_RESET_GPIO, 0); - } + void (*mips_reset_vec)(void) = (void *) 0xbfc00000; + + /* reset the system */ + sysRegWrite(AR5315_COLD_RESET,AR5317_RESET_SYSTEM); + + /* Cold reset does not work on the AR2315/6, use the GPIO reset bits a workaround. + * give it some time to attempt a gpio based hardware reset + * (atheros reference design workaround) */ + gpio_direction_output(AR5315_RESET_GPIO, 0); + mdelay(100); + + /* Some boards (e.g. Senao EOC-2610) don't implement the reset logic + * workaround. Attempt to jump to the mips reset location - + * the boot loader itself might be able to recover the system */ + mips_reset_vec(); } |