diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2011-09-16 03:38:43 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-09-16 03:38:43 -0400 |
commit | be6bb8cc8d2bd033a1f89983f2f13bdb3548a08f (patch) | |
tree | 2b7f76cc2154e5589a605f97a663c8afe4f6016f /arch/arm/plat-samsung/include | |
parent | d03c35939d2a447093e60133156217d6512aa9e3 (diff) | |
parent | b02b5da4d15d7f7a250888d003121e1b5b69d00b (diff) |
Merge branch 'next/topic-cpuid-rev' into next/topic-add-exynos4212
Diffstat (limited to 'arch/arm/plat-samsung/include')
-rw-r--r-- | arch/arm/plat-samsung/include/plat/cpu.h | 97 |
1 files changed, 96 insertions, 1 deletions
diff --git a/arch/arm/plat-samsung/include/plat/cpu.h b/arch/arm/plat-samsung/include/plat/cpu.h index c0a5741b23e6..efd920ec3b75 100644 --- a/arch/arm/plat-samsung/include/plat/cpu.h +++ b/arch/arm/plat-samsung/include/plat/cpu.h | |||
@@ -1,9 +1,12 @@ | |||
1 | /* linux/arch/arm/plat-samsung/include/plat/cpu.h | 1 | /* linux/arch/arm/plat-samsung/include/plat/cpu.h |
2 | * | 2 | * |
3 | * Copyright (c) 2011 Samsung Electronics Co., Ltd. | ||
4 | * http://www.samsung.com/ | ||
5 | * | ||
3 | * Copyright (c) 2004-2005 Simtec Electronics | 6 | * Copyright (c) 2004-2005 Simtec Electronics |
4 | * Ben Dooks <ben@simtec.co.uk> | 7 | * Ben Dooks <ben@simtec.co.uk> |
5 | * | 8 | * |
6 | * Header file for S3C24XX CPU support | 9 | * Header file for Samsung CPU support |
7 | * | 10 | * |
8 | * This program is free software; you can redistribute it and/or modify | 11 | * 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 | 12 | * it under the terms of the GNU General Public License version 2 as |
@@ -15,6 +18,92 @@ | |||
15 | #ifndef __SAMSUNG_PLAT_CPU_H | 18 | #ifndef __SAMSUNG_PLAT_CPU_H |
16 | #define __SAMSUNG_PLAT_CPU_H | 19 | #define __SAMSUNG_PLAT_CPU_H |
17 | 20 | ||
21 | extern unsigned long samsung_cpu_id; | ||
22 | |||
23 | #define S3C24XX_CPU_ID 0x32400000 | ||
24 | #define S3C24XX_CPU_MASK 0xFFF00000 | ||
25 | |||
26 | #define S3C6400_CPU_ID 0x36400000 | ||
27 | #define S3C6410_CPU_ID 0x36410000 | ||
28 | #define S3C64XX_CPU_ID (S3C6400_CPU_ID & S3C6410_CPU_ID) | ||
29 | #define S3C64XX_CPU_MASK 0xFFFFF000 | ||
30 | |||
31 | #define S5P6440_CPU_ID 0x56440000 | ||
32 | #define S5P6450_CPU_ID 0x36450000 | ||
33 | #define S5P64XX_CPU_MASK 0xFFFFF000 | ||
34 | |||
35 | #define S5PC100_CPU_ID 0x43100000 | ||
36 | #define S5PC100_CPU_MASK 0xFFFFF000 | ||
37 | |||
38 | #define S5PV210_CPU_ID 0x43110000 | ||
39 | #define S5PV210_CPU_MASK 0xFFFFF000 | ||
40 | |||
41 | #define EXYNOS4210_CPU_ID 0x43210000 | ||
42 | #define EXYNOS4_CPU_MASK 0xFFFE0000 | ||
43 | |||
44 | #define IS_SAMSUNG_CPU(name, id, mask) \ | ||
45 | static inline int is_samsung_##name(void) \ | ||
46 | { \ | ||
47 | return ((samsung_cpu_id & mask) == (id & mask)); \ | ||
48 | } | ||
49 | |||
50 | IS_SAMSUNG_CPU(s3c24xx, S3C24XX_CPU_ID, S3C24XX_CPU_MASK) | ||
51 | IS_SAMSUNG_CPU(s3c64xx, S3C64XX_CPU_ID, S3C64XX_CPU_MASK) | ||
52 | IS_SAMSUNG_CPU(s5p6440, S5P6440_CPU_ID, S5P64XX_CPU_MASK) | ||
53 | IS_SAMSUNG_CPU(s5p6450, S5P6450_CPU_ID, S5P64XX_CPU_MASK) | ||
54 | IS_SAMSUNG_CPU(s5pc100, S5PC100_CPU_ID, S5PC100_CPU_MASK) | ||
55 | IS_SAMSUNG_CPU(s5pv210, S5PV210_CPU_ID, S5PV210_CPU_MASK) | ||
56 | IS_SAMSUNG_CPU(exynos4210, EXYNOS4210_CPU_ID, EXYNOS4_CPU_MASK) | ||
57 | |||
58 | #if defined(CONFIG_CPU_S3C2410) || defined(CONFIG_CPU_S3C2412) || \ | ||
59 | defined(CONFIG_CPU_S3C2416) || defined(CONFIG_CPU_S3C2440) || \ | ||
60 | defined(CONFIG_CPU_S3C2442) || defined(CONFIG_CPU_S3C244X) || \ | ||
61 | defined(CONFIG_CPU_S3C2443) | ||
62 | # define soc_is_s3c24xx() is_samsung_s3c24xx() | ||
63 | #else | ||
64 | # define soc_is_s3c24xx() 0 | ||
65 | #endif | ||
66 | |||
67 | #if defined(CONFIG_CPU_S3C6400) || defined(CONFIG_CPU_S3C6410) | ||
68 | # define soc_is_s3c64xx() is_samsung_s3c64xx() | ||
69 | #else | ||
70 | # define soc_is_s3c64xx() 0 | ||
71 | #endif | ||
72 | |||
73 | #if defined(CONFIG_CPU_S5P6440) | ||
74 | # define soc_is_s5p6440() is_samsung_s5p6440() | ||
75 | #else | ||
76 | # define soc_is_s5p6440() 0 | ||
77 | #endif | ||
78 | |||
79 | #if defined(CONFIG_CPU_S5P6450) | ||
80 | # define soc_is_s5p6450() is_samsung_s5p6450() | ||
81 | #else | ||
82 | # define soc_is_s5p6450() 0 | ||
83 | #endif | ||
84 | |||
85 | #if defined(CONFIG_CPU_S5PC100) | ||
86 | # define soc_is_s5pc100() is_samsung_s5pc100() | ||
87 | #else | ||
88 | # define soc_is_s5pc100() 0 | ||
89 | #endif | ||
90 | |||
91 | #if defined(CONFIG_CPU_S5PV210) | ||
92 | # define soc_is_s5pv210() is_samsung_s5pv210() | ||
93 | #else | ||
94 | # define soc_is_s5pv210() 0 | ||
95 | #endif | ||
96 | |||
97 | #if defined(CONFIG_CPU_EXYNOS4210) | ||
98 | # define soc_is_exynos4210() is_samsung_exynos4210() | ||
99 | #else | ||
100 | # define soc_is_exynos4210() 0 | ||
101 | #endif | ||
102 | |||
103 | #define EXYNOS4210_REV_0 (0x0) | ||
104 | #define EXYNOS4210_REV_1_0 (0x10) | ||
105 | #define EXYNOS4210_REV_1_1 (0x11) | ||
106 | |||
18 | #define IODESC_ENT(x) { (unsigned long)S3C24XX_VA_##x, __phys_to_pfn(S3C24XX_PA_##x), S3C24XX_SZ_##x, MT_DEVICE } | 107 | #define IODESC_ENT(x) { (unsigned long)S3C24XX_VA_##x, __phys_to_pfn(S3C24XX_PA_##x), S3C24XX_SZ_##x, MT_DEVICE } |
19 | 108 | ||
20 | #ifndef MHZ | 109 | #ifndef MHZ |
@@ -55,6 +144,12 @@ extern void s3c64xx_init_io(struct map_desc *mach_desc, int size); | |||
55 | extern void s5p_init_io(struct map_desc *mach_desc, | 144 | extern void s5p_init_io(struct map_desc *mach_desc, |
56 | int size, void __iomem *cpuid_addr); | 145 | int size, void __iomem *cpuid_addr); |
57 | 146 | ||
147 | extern void s3c24xx_init_cpu(void); | ||
148 | extern void s3c64xx_init_cpu(void); | ||
149 | extern void s5p_init_cpu(void __iomem *cpuid_addr); | ||
150 | |||
151 | extern unsigned int samsung_rev(void); | ||
152 | |||
58 | extern void s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no); | 153 | extern void s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no); |
59 | 154 | ||
60 | extern void s3c24xx_init_clocks(int xtal); | 155 | extern void s3c24xx_init_clocks(int xtal); |