From: Greg Ungerer Date: Thu, 30 Apr 2009 07:22:05 +0000 (+1000) Subject: m68knommu: add CPU reset code for the 5206 ColdFire X-Git-Tag: v2.6.31-rc1~376^2~13 X-Git-Url: http://bbs.cooldavid.org/git/?a=commitdiff_plain;h=851377bca613175473b6dafd6c7d1bfbcf24efe2;p=net-next-2.6.git m68knommu: add CPU reset code for the 5206 ColdFire Signed-off-by: Greg Ungerer --- diff --git a/arch/m68knommu/platform/5206/config.c b/arch/m68knommu/platform/5206/config.c index 53a5920c2b7..f6f79874e9a 100644 --- a/arch/m68knommu/platform/5206/config.c +++ b/arch/m68knommu/platform/5206/config.c @@ -12,7 +12,6 @@ #include #include #include -#include #include #include #include @@ -21,10 +20,6 @@ /***************************************************************************/ -void coldfire_reset(void); - -/***************************************************************************/ - static struct mcf_platform_uart m5206_uart_platform[] = { { .mapbase = MCF_MBAR + MCFUART_BASE1, @@ -109,10 +104,21 @@ void mcf_settimericr(unsigned int timer, unsigned int level) /***************************************************************************/ +void m5206_cpu_reset(void) +{ + local_irq_disable(); + /* Set watchdog to soft reset, and enabled */ + __raw_writeb(0xc0, MCF_MBAR + MCFSIM_SYPCR); + for (;;) + /* wait for watchdog to timeout */; +} + +/***************************************************************************/ + void __init config_BSP(char *commandp, int size) { mcf_setimr(MCFSIM_IMR_MASKALL); - mach_reset = coldfire_reset; + mach_reset = m5206_cpu_reset; } /***************************************************************************/