浏览代码

m68knommu: add CPU reset code for the 5407 ColdFire

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Greg Ungerer 16 年之前
父节点
当前提交
eb7c874d5c
共有 1 个文件被更改,包括 12 次插入4 次删除
  1. 12 4
      arch/m68knommu/platform/5407/config.c

+ 12 - 4
arch/m68knommu/platform/5407/config.c

@@ -12,7 +12,6 @@
 #include <linux/kernel.h>
 #include <linux/kernel.h>
 #include <linux/param.h>
 #include <linux/param.h>
 #include <linux/init.h>
 #include <linux/init.h>
-#include <linux/interrupt.h>
 #include <linux/io.h>
 #include <linux/io.h>
 #include <asm/machdep.h>
 #include <asm/machdep.h>
 #include <asm/coldfire.h>
 #include <asm/coldfire.h>
@@ -21,8 +20,6 @@
 
 
 /***************************************************************************/
 /***************************************************************************/
 
 
-void coldfire_reset(void);
-
 extern unsigned int mcf_timervector;
 extern unsigned int mcf_timervector;
 extern unsigned int mcf_profilevector;
 extern unsigned int mcf_profilevector;
 extern unsigned int mcf_timerlevel;
 extern unsigned int mcf_timerlevel;
@@ -110,6 +107,17 @@ void mcf_settimericr(unsigned int timer, unsigned int level)
 
 
 /***************************************************************************/
 /***************************************************************************/
 
 
+void m5407_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)
 void __init config_BSP(char *commandp, int size)
 {
 {
 	mcf_setimr(MCFSIM_IMR_MASKALL);
 	mcf_setimr(MCFSIM_IMR_MASKALL);
@@ -121,7 +129,7 @@ void __init config_BSP(char *commandp, int size)
 	mcf_timerlevel = 6;
 	mcf_timerlevel = 6;
 #endif
 #endif
 
 
-	mach_reset = coldfire_reset;
+	mach_reset = m5407_cpu_reset;
 }
 }
 
 
 /***************************************************************************/
 /***************************************************************************/