acpiphp: Execute ACPI _REG method for hotadded devices
[linux/fpc-iii.git] / arch / arm / mach-l7200 / include / mach / system.h
blobe0dd3b6ae4aabce6de0df61de82c7e12d239d30a
1 /*
2 * arch/arm/mach-l7200/include/mach/system.h
4 * Copyright (c) 2000 Steve Hill (sjhill@cotw.com)
6 * Changelog
7 * 03-21-2000 SJH Created
8 * 04-26-2000 SJH Fixed functions
9 * 05-03-2000 SJH Removed usage of obsolete 'iomd.h'
10 * 05-31-2000 SJH Properly implemented 'arch_idle'
12 #ifndef __ASM_ARCH_SYSTEM_H
13 #define __ASM_ARCH_SYSTEM_H
15 #include <mach/hardware.h>
17 static inline void arch_idle(void)
19 *(unsigned long *)(IO_BASE + 0x50004) = 1; /* idle mode */
22 static inline void arch_reset(char mode, const char *cmd)
24 if (mode == 's') {
25 cpu_reset(0);
29 #endif