2005-04-16 16:20:36 -06:00
|
|
|
/*
|
2008-08-05 09:14:15 -06:00
|
|
|
* arch/arm/mach-clps7500/include/mach/system.h
|
2005-04-16 16:20:36 -06:00
|
|
|
*
|
|
|
|
* Copyright (c) 1999 Nexus Electronics Ltd.
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SYSTEM_H
|
|
|
|
#define __ASM_ARCH_SYSTEM_H
|
|
|
|
|
|
|
|
#include <asm/hardware/iomd.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
static inline void arch_idle(void)
|
|
|
|
{
|
|
|
|
iomd_writeb(0, IOMD_SUSMODE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define arch_reset(mode) \
|
|
|
|
do { \
|
|
|
|
iomd_writeb(0, IOMD_ROMCR0); \
|
|
|
|
cpu_reset(0); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#endif
|