diff options
author | Heiko Stuebner <heiko@sntech.de> | 2013-02-12 13:12:06 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-03-05 06:21:26 -0500 |
commit | 9eecbe509607265d28d76b39bc479f01b6d55e01 (patch) | |
tree | cafeb7b64af8ecc9711830034ed77f99ae218aa1 /arch/arm/plat-samsung/include/plat/cpu.h | |
parent | 5424f2188a76d006932bc6da67ed2ba1c2a72a8e (diff) |
ARM: S3C24XX: add soc_is_s3c2412 option
Makes it possible to identify s3c2412 SoCs.
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-samsung/include/plat/cpu.h')
-rw-r--r-- | arch/arm/plat-samsung/include/plat/cpu.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/include/plat/cpu.h b/arch/arm/plat-samsung/include/plat/cpu.h index e126644cadf4..0f6c47a6475b 100644 --- a/arch/arm/plat-samsung/include/plat/cpu.h +++ b/arch/arm/plat-samsung/include/plat/cpu.h | |||
@@ -23,6 +23,9 @@ extern unsigned long samsung_cpu_id; | |||
23 | #define S3C24XX_CPU_ID 0x32400000 | 23 | #define S3C24XX_CPU_ID 0x32400000 |
24 | #define S3C24XX_CPU_MASK 0xFFF00000 | 24 | #define S3C24XX_CPU_MASK 0xFFF00000 |
25 | 25 | ||
26 | #define S3C2412_CPU_ID 0x32412000 | ||
27 | #define S3C2412_CPU_MASK 0xFFFFF000 | ||
28 | |||
26 | #define S3C6400_CPU_ID 0x36400000 | 29 | #define S3C6400_CPU_ID 0x36400000 |
27 | #define S3C6410_CPU_ID 0x36410000 | 30 | #define S3C6410_CPU_ID 0x36410000 |
28 | #define S3C64XX_CPU_MASK 0xFFFFF000 | 31 | #define S3C64XX_CPU_MASK 0xFFFFF000 |
@@ -53,6 +56,7 @@ static inline int is_samsung_##name(void) \ | |||
53 | } | 56 | } |
54 | 57 | ||
55 | IS_SAMSUNG_CPU(s3c24xx, S3C24XX_CPU_ID, S3C24XX_CPU_MASK) | 58 | IS_SAMSUNG_CPU(s3c24xx, S3C24XX_CPU_ID, S3C24XX_CPU_MASK) |
59 | IS_SAMSUNG_CPU(s3c2412, S3C2412_CPU_ID, S3C2412_CPU_MASK) | ||
56 | IS_SAMSUNG_CPU(s3c6400, S3C6400_CPU_ID, S3C64XX_CPU_MASK) | 60 | IS_SAMSUNG_CPU(s3c6400, S3C6400_CPU_ID, S3C64XX_CPU_MASK) |
57 | IS_SAMSUNG_CPU(s3c6410, S3C6410_CPU_ID, S3C64XX_CPU_MASK) | 61 | IS_SAMSUNG_CPU(s3c6410, S3C6410_CPU_ID, S3C64XX_CPU_MASK) |
58 | IS_SAMSUNG_CPU(s5p6440, S5P6440_CPU_ID, S5P64XX_CPU_MASK) | 62 | IS_SAMSUNG_CPU(s5p6440, S5P6440_CPU_ID, S5P64XX_CPU_MASK) |
@@ -74,6 +78,12 @@ IS_SAMSUNG_CPU(exynos5440, EXYNOS5440_SOC_ID, EXYNOS5_SOC_MASK) | |||
74 | # define soc_is_s3c24xx() 0 | 78 | # define soc_is_s3c24xx() 0 |
75 | #endif | 79 | #endif |
76 | 80 | ||
81 | #if defined(CONFIG_CPU_S3C2412) | ||
82 | # define soc_is_s3c2412() is_samsung_s3c2412() | ||
83 | #else | ||
84 | # define soc_is_s3c2412() 0 | ||
85 | #endif | ||
86 | |||
77 | #if defined(CONFIG_CPU_S3C6400) || defined(CONFIG_CPU_S3C6410) | 87 | #if defined(CONFIG_CPU_S3C6400) || defined(CONFIG_CPU_S3C6410) |
78 | # define soc_is_s3c64xx() (is_samsung_s3c6400() || is_samsung_s3c6410()) | 88 | # define soc_is_s3c64xx() (is_samsung_s3c6400() || is_samsung_s3c6410()) |
79 | #else | 89 | #else |