diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2010-02-24 10:40:29 +0300 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-02-25 01:47:21 +0300 |
commit | 939d28aae17a0cb591a2ec54993496a5d31f2ec6 (patch) | |
tree | 61ee8fc8ab62fb8e2c465ea557d9f93c63f804db /arch/arm/plat-s5p/cpu.c | |
parent | 2e5070bc1152e8afbf76734e8e3fbfbe60a573ef (diff) | |
download | linux-939d28aae17a0cb591a2ec54993496a5d31f2ec6.tar.xz |
ARM: S5PV210: Add Samsung S5PV210 CPU support
This patch adds support for Samsung S5PV210 CPU. This patch also adds
an entry for S5PV210 cpu in plat-s5p cpu table.
Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s5p/cpu.c')
-rw-r--r-- | arch/arm/plat-s5p/cpu.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/plat-s5p/cpu.c b/arch/arm/plat-s5p/cpu.c index e69992488e2e..f92e5de3a755 100644 --- a/arch/arm/plat-s5p/cpu.c +++ b/arch/arm/plat-s5p/cpu.c @@ -19,11 +19,13 @@ #include <plat/cpu.h> #include <plat/s5p6440.h> #include <plat/s5p6442.h> +#include <plat/s5pv210.h> /* table of supported CPUs */ static const char name_s5p6440[] = "S5P6440"; static const char name_s5p6442[] = "S5P6442"; +static const char name_s5pv210[] = "S5PV210/S5PC110"; static struct cpu_table cpu_ids[] __initdata = { { @@ -42,6 +44,14 @@ static struct cpu_table cpu_ids[] __initdata = { .init_uarts = s5p6442_init_uarts, .init = s5p6442_init, .name = name_s5p6442, + }, { + .idcode = 0x43110000, + .idmask = 0xfffff000, + .map_io = s5pv210_map_io, + .init_clocks = s5pv210_init_clocks, + .init_uarts = s5pv210_init_uarts, + .init = s5pv210_init, + .name = name_s5pv210, }, }; |