ARM: Introduce plat-tcc
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / plat-tcc / include / mach / system.h
blob909e6035d843da98309be68d50719ec8e1725823
1 /*
2 * Author: <linux@telechips.com>
3 * Created: June 10, 2008
4 * Description: LINUX SYSTEM FUNCTIONS for TCC83x
6 * Copyright (C) 2008-2009 Telechips
8 * Licensed under the terms of the GPL v2.
12 #ifndef __ASM_ARCH_SYSTEM_H
13 #define __ASM_ARCH_SYSTEM_H
14 #include <linux/clk.h>
16 #include <asm/mach-types.h>
17 #include <mach/hardware.h>
19 extern void plat_tcc_reboot(void);
21 static inline void arch_idle(void)
23 cpu_do_idle();
26 static inline void arch_reset(char mode, const char *cmd)
28 plat_tcc_reboot();
31 #endif