summaryrefslogtreecommitdiff
path: root/arch/arm/mach-s5pc100/include/mach/system.h
diff options
context:
space:
mode:
authorJames Morris <jmorris@namei.org>2009-12-09 11:01:03 +0300
committerJames Morris <jmorris@namei.org>2009-12-09 11:01:03 +0300
commit1ad1f10cd915744bbe52b19423653b38287d827d (patch)
treeae072aace36b45a55d80b8cbf1b6d92523a88ea0 /arch/arm/mach-s5pc100/include/mach/system.h
parent08e3daff217059c84c360cc71212686e0a7995af (diff)
parent2b876f95d03e226394b5d360c86127cbefaf614b (diff)
downloadlinux-1ad1f10cd915744bbe52b19423653b38287d827d.tar.xz
Merge branch 'master' into next
Diffstat (limited to 'arch/arm/mach-s5pc100/include/mach/system.h')
-rw-r--r--arch/arm/mach-s5pc100/include/mach/system.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/arch/arm/mach-s5pc100/include/mach/system.h b/arch/arm/mach-s5pc100/include/mach/system.h
index e39014375470..f0d31a2a598c 100644
--- a/arch/arm/mach-s5pc100/include/mach/system.h
+++ b/arch/arm/mach-s5pc100/include/mach/system.h
@@ -11,14 +11,21 @@
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H __FILE__
+#include <linux/io.h>
+#include <mach/map.h>
+#include <plat/regs-clock.h>
+
+void (*s5pc1xx_idle)(void);
+
static void arch_idle(void)
{
- /* nothing here yet */
+ if (s5pc1xx_idle)
+ s5pc1xx_idle();
}
static void arch_reset(char mode, const char *cmd)
{
- /* nothing here yet */
+ __raw_writel(S5PC100_SWRESET_RESETVAL, S5PC100_SWRESET);
+ return;
}
-
#endif /* __ASM_ARCH_IRQ_H */