diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-10-21 14:06:32 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-12-15 21:46:39 +0000 |
commit | bcae8aeb320dfe8dde4b3512237a5b76737b0120 (patch) | |
tree | 871b63ba72aba38732f8c345230f108117111ff0 /arch/arm/mach-s3c24a0/include/mach/system.h | |
parent | ce46a9c497ed788146449c230765ee5d6dd3cb53 (diff) | |
download | kernel_samsung_smdk4412-bcae8aeb320dfe8dde4b3512237a5b76737b0120.zip kernel_samsung_smdk4412-bcae8aeb320dfe8dde4b3512237a5b76737b0120.tar.gz kernel_samsung_smdk4412-bcae8aeb320dfe8dde4b3512237a5b76737b0120.tar.bz2 |
[ARM] S3C24A0: Initial architecture support files
Initial architecture support for the S3C24A0 ARCH_S3C24A0.
We don't yet add an kconfig entry in the main arch/arm/Kconfig
file as the series is not complete, so that is left until enough
support is in to be useful.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c24a0/include/mach/system.h')
-rw-r--r-- | arch/arm/mach-s3c24a0/include/mach/system.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c24a0/include/mach/system.h b/arch/arm/mach-s3c24a0/include/mach/system.h new file mode 100644 index 0000000..bd1bd19 --- /dev/null +++ b/arch/arm/mach-s3c24a0/include/mach/system.h @@ -0,0 +1,25 @@ +/* linux/arch/arm/mach-s3c24a0/include/mach/system.h + * + * Copyright 2008 Simtec Electronics + * Ben Dooks <ben@simtec.co.uk> + * + * S3C24A0 - System function defines and includes + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. +*/ + +#include <mach/hardware.h> +#include <asm/io.h> + +#include <mach/map.h> + +static void arch_idle(void) +{ + /* currently no specific idle support. */ +} + +void (*s3c24xx_reset_hook)(void); + +#include <asm/plat-s3c24xx/system-reset.h> |