2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2008-08-05 23:14:15 +08:00
|
|
|
* arch/arm/mach-iop33x/include/mach/system.h
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2006-09-19 06:26:25 +08:00
|
|
|
* Copyright (C) 2001 MontaVista Software, Inc.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
2008-12-02 07:01:19 +08:00
|
|
|
#include <asm/hardware/iop3xx.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
static inline void arch_idle(void)
|
|
|
|
{
|
|
|
|
cpu_do_idle();
|
|
|
|
}
|
|
|
|
|
2009-03-20 00:20:24 +08:00
|
|
|
static inline void arch_reset(char mode, const char *cmd)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-09-19 06:26:25 +08:00
|
|
|
*IOP3XX_PCSR = 0x30;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-09-19 06:26:25 +08:00
|
|
|
/* Jump into ROM at address 0 */
|
|
|
|
cpu_reset(0);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|