2005-04-16 18:20:36 -04:00
|
|
|
/*
|
2006-09-18 18:26:25 -04:00
|
|
|
* include/asm-arm/arch-iop33x/system.h
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
2006-09-18 18:26:25 -04:00
|
|
|
* Copyright (C) 2001 MontaVista Software, Inc.
|
2005-04-16 18:20:36 -04: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void arch_idle(void)
|
|
|
|
{
|
|
|
|
cpu_do_idle();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void arch_reset(char mode)
|
|
|
|
{
|
2006-09-18 18:26:25 -04:00
|
|
|
*IOP3XX_PCSR = 0x30;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-09-18 18:26:25 -04:00
|
|
|
/* Jump into ROM at address 0 */
|
|
|
|
cpu_reset(0);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|