aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s5p
diff options
context:
space:
mode:
authorKukjin Kim <kgene.kim@samsung.com>2010-02-24 02:40:29 -0500
committerBen Dooks <ben-linux@fluff.org>2010-02-24 17:47:21 -0500
commit939d28aae17a0cb591a2ec54993496a5d31f2ec6 (patch)
tree61ee8fc8ab62fb8e2c465ea557d9f93c63f804db /arch/arm/plat-s5p
parent2e5070bc1152e8afbf76734e8e3fbfbe60a573ef (diff)
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')
-rw-r--r--arch/arm/plat-s5p/cpu.c10
-rw-r--r--arch/arm/plat-s5p/include/plat/map-s5p.h1
-rw-r--r--arch/arm/plat-s5p/include/plat/s5pv210.h33
3 files changed, 44 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 @@
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#include <plat/s5p6442.h>
22#include <plat/s5pv210.h>
22 23
23/* table of supported CPUs */ 24/* table of supported CPUs */
24 25
25static const char name_s5p6440[] = "S5P6440"; 26static const char name_s5p6440[] = "S5P6440";
26static const char name_s5p6442[] = "S5P6442"; 27static const char name_s5p6442[] = "S5P6442";
28static const char name_s5pv210[] = "S5PV210/S5PC110";
27 29
28static struct cpu_table cpu_ids[] __initdata = { 30static struct cpu_table cpu_ids[] __initdata = {
29 { 31 {
@@ -42,6 +44,14 @@ static struct cpu_table cpu_ids[] __initdata = {
42 .init_uarts = s5p6442_init_uarts, 44 .init_uarts = s5p6442_init_uarts,
43 .init = s5p6442_init, 45 .init = s5p6442_init,
44 .name = name_s5p6442, 46 .name = name_s5p6442,
47 }, {
48 .idcode = 0x43110000,
49 .idmask = 0xfffff000,
50 .map_io = s5pv210_map_io,
51 .init_clocks = s5pv210_init_clocks,
52 .init_uarts = s5pv210_init_uarts,
53 .init = s5pv210_init,
54 .name = name_s5pv210,
45 }, 55 },
46}; 56};
47 57
diff --git a/arch/arm/plat-s5p/include/plat/map-s5p.h b/arch/arm/plat-s5p/include/plat/map-s5p.h
index cc60604591dc..14828521f70c 100644
--- a/arch/arm/plat-s5p/include/plat/map-s5p.h
+++ b/arch/arm/plat-s5p/include/plat/map-s5p.h
@@ -29,5 +29,6 @@
29#define VA_VIC0 VA_VIC(0) 29#define VA_VIC0 VA_VIC(0)
30#define VA_VIC1 VA_VIC(1) 30#define VA_VIC1 VA_VIC(1)
31#define VA_VIC2 VA_VIC(2) 31#define VA_VIC2 VA_VIC(2)
32#define VA_VIC3 VA_VIC(3)
32 33
33#endif /* __ASM_PLAT_MAP_S5P_H */ 34#endif /* __ASM_PLAT_MAP_S5P_H */
diff --git a/arch/arm/plat-s5p/include/plat/s5pv210.h b/arch/arm/plat-s5p/include/plat/s5pv210.h
new file mode 100644
index 000000000000..6c93a0c78100
--- /dev/null
+++ b/arch/arm/plat-s5p/include/plat/s5pv210.h
@@ -0,0 +1,33 @@
1/* linux/arch/arm/plat-s5p/include/plat/s5pv210.h
2 *
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
5 *
6 * Header file for s5pv210 cpu support
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11*/
12
13/* Common init code for S5PV210 related SoCs */
14
15extern void s5pv210_common_init_uarts(struct s3c2410_uartcfg *cfg, int no);
16extern void s5pv210_register_clocks(void);
17extern void s5pv210_setup_clocks(void);
18
19#ifdef CONFIG_CPU_S5PV210
20
21extern int s5pv210_init(void);
22extern void s5pv210_init_irq(void);
23extern void s5pv210_map_io(void);
24extern void s5pv210_init_clocks(int xtal);
25
26#define s5pv210_init_uarts s5pv210_common_init_uarts
27
28#else
29#define s5pv210_init_clocks NULL
30#define s5pv210_init_uarts NULL
31#define s5pv210_map_io NULL
32#define s5pv210_init NULL
33#endif