acc84707d3
This patch moves S5PC100 SoC support to plat-s5p framework. Most periperal support code has been already moved from plat-s5pc1xx to mach-s5pc100. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
29 lines
580 B
C
29 lines
580 B
C
/* linux/arch/arm/mach-s5pc100/include/mach/system.h
|
|
*
|
|
* Copyright 2009 Samsung Electronics Co.
|
|
* Byungho Min <bhmin@samsung.com>
|
|
*
|
|
* S5PC100 - system implementation
|
|
*
|
|
* Based on mach-s3c6400/include/mach/system.h
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SYSTEM_H
|
|
#define __ASM_ARCH_SYSTEM_H __FILE__
|
|
|
|
#include <linux/io.h>
|
|
#include <mach/map.h>
|
|
#include <mach/regs-clock.h>
|
|
|
|
static void arch_idle(void)
|
|
{
|
|
/* nothing here yet */
|
|
}
|
|
|
|
static void arch_reset(char mode, const char *cmd)
|
|
{
|
|
__raw_writel(S5PC100_SWRESET_RESETVAL, S5PC100_SWRESET);
|
|
return;
|
|
}
|
|
#endif /* __ASM_ARCH_IRQ_H */
|