Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147795
b: refs/heads/master
c: 6f5aa7c
h: refs/heads/master
i:
  147793: e09b707
  147791: 7983904
v: v3
  • Loading branch information
Greg Ungerer committed Jun 11, 2009
1 parent a334c72 commit 8fe4d98
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b61a7260ff70d10ca27edcc74535af0d46a277fa
refs/heads/master: 6f5aa7ce38dfb9c04eecac1222fc4b2521f02b83
18 changes: 12 additions & 6 deletions trunk/arch/m68knommu/platform/5249/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include <linux/kernel.h>
#include <linux/param.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <asm/machdep.h>
#include <asm/coldfire.h>
Expand All @@ -20,10 +19,6 @@

/***************************************************************************/

void coldfire_reset(void);

/***************************************************************************/

static struct mcf_platform_uart m5249_uart_platform[] = {
{
.mapbase = MCF_MBAR + MCFUART_BASE1,
Expand Down Expand Up @@ -106,10 +101,21 @@ void mcf_settimericr(unsigned int timer, unsigned int level)

/***************************************************************************/

void m5249_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 = m5249_cpu_reset;
}

/***************************************************************************/
Expand Down

0 comments on commit 8fe4d98

Please sign in to comment.