diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2010-01-28 20:12:14 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-02-23 20:52:15 -0500 |
commit | 5f7f6a4a0df9b43051d57fdb8ea96c083247a08f (patch) | |
tree | 8b89db3128eb45123561cd7aad172f27000ed537 /arch/arm/plat-s5p/cpu.c | |
parent | a0af8b3c701d254b55fc291150d5320317c0a338 (diff) |
ARM: S5P6442: Add Samsung S5P6442 CPU support
This patch adds support for Samsung S5P6442 CPU. This patch also adds
an entry for S5P6442 cpu in plat-s5p cpu table.
Signed-off-by: Adityapratap Sharma <aditya.ps@samsung.com>
Signed-off-by: Atul Dahiya <atul.dahiya@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 ee9c6b302ded..e69992488e2e 100644 --- a/arch/arm/plat-s5p/cpu.c +++ b/arch/arm/plat-s5p/cpu.c | |||
@@ -18,10 +18,12 @@ | |||
18 | #include <mach/regs-clock.h> | 18 | #include <mach/regs-clock.h> |
19 | #include <plat/cpu.h> | 19 | #include <plat/cpu.h> |
20 | #include <plat/s5p6440.h> | 20 | #include <plat/s5p6440.h> |
21 | #include <plat/s5p6442.h> | ||
21 | 22 | ||
22 | /* table of supported CPUs */ | 23 | /* table of supported CPUs */ |
23 | 24 | ||
24 | static const char name_s5p6440[] = "S5P6440"; | 25 | static const char name_s5p6440[] = "S5P6440"; |
26 | static const char name_s5p6442[] = "S5P6442"; | ||
25 | 27 | ||
26 | static struct cpu_table cpu_ids[] __initdata = { | 28 | static struct cpu_table cpu_ids[] __initdata = { |
27 | { | 29 | { |
@@ -32,6 +34,14 @@ static struct cpu_table cpu_ids[] __initdata = { | |||
32 | .init_uarts = s5p6440_init_uarts, | 34 | .init_uarts = s5p6440_init_uarts, |
33 | .init = s5p6440_init, | 35 | .init = s5p6440_init, |
34 | .name = name_s5p6440, | 36 | .name = name_s5p6440, |
37 | }, { | ||
38 | .idcode = 0x36442000, | ||
39 | .idmask = 0xffffff00, | ||
40 | .map_io = s5p6442_map_io, | ||
41 | .init_clocks = s5p6442_init_clocks, | ||
42 | .init_uarts = s5p6442_init_uarts, | ||
43 | .init = s5p6442_init, | ||
44 | .name = name_s5p6442, | ||
35 | }, | 45 | }, |
36 | }; | 46 | }; |
37 | 47 | ||