diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-04-28 05:00:07 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-05-09 22:44:41 -0400 |
commit | d11a7d7100123d178821f82ecc11ba2d9d6e97c8 (patch) | |
tree | 50e57fe2dc41cbd53b8985db45b77d269916816b | |
parent | d24131470f3def698683144cf1e81ee0f4f9c0b8 (diff) |
ARM: S3C24XX: Identify S3C2416 if S3C2412/S3C2413 built in
Extend the ARMv5 ID code to deal with S3C2416 being built with
S3C2412/S3C2413 enabled, as these have their ID registers in a
different place.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
-rw-r--r-- | arch/arm/plat-s3c24xx/cpu.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/arm/plat-s3c24xx/cpu.c b/arch/arm/plat-s3c24xx/cpu.c index 494f4f3a9332..32db85651af0 100644 --- a/arch/arm/plat-s3c24xx/cpu.c +++ b/arch/arm/plat-s3c24xx/cpu.c | |||
@@ -181,10 +181,18 @@ static struct map_desc s3c_iodesc[] __initdata = { | |||
181 | 181 | ||
182 | static unsigned long s3c24xx_read_idcode_v5(void) | 182 | static unsigned long s3c24xx_read_idcode_v5(void) |
183 | { | 183 | { |
184 | #if defined(CONFIG_CPU_S3C2416) | ||
185 | /* s3c2416 is v5, with S3C24XX_GSTATUS1 instead of S3C2412_GSTATUS1 */ | ||
186 | |||
187 | u32 gs = __raw_readl(S3C24XX_GSTATUS1); | ||
188 | |||
189 | /* test for s3c2416 or similar device */ | ||
190 | if ((gs >> 16) == 0x3245) | ||
191 | return gs; | ||
192 | #endif | ||
193 | |||
184 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) | 194 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) |
185 | return __raw_readl(S3C2412_GSTATUS1); | 195 | return __raw_readl(S3C2412_GSTATUS1); |
186 | #elif defined(CONFIG_CPU_S3C2416) | ||
187 | return __raw_readl(S3C24XX_GSTATUS1); | ||
188 | #else | 196 | #else |
189 | return 1UL; /* don't look like an 2400 */ | 197 | return 1UL; /* don't look like an 2400 */ |
190 | #endif | 198 | #endif |