diff options
author | Yauhen Kharuzhy <jekhor@gmail.com> | 2009-08-19 16:31:05 +0300 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-05-06 11:37:17 +0900 |
commit | 5faf5011841dc2a4797093b845e49bc40b4b4666 (patch) | |
tree | 230a714010f221e65f4869a74ee1669f0fdf2a4f /arch/arm/mach-s3c2410/include | |
parent | 1d3ef014b5fe959a789c2df708713d58c9491c3b (diff) | |
download | talos-op-linux-5faf5011841dc2a4797093b845e49bc40b4b4666.tar.gz talos-op-linux-5faf5011841dc2a4797093b845e49bc40b4b4666.zip |
ARM: S3C: Add S3C2416 detection to uncompress code
Add S3C2416 serial port setup to uncompress code.
Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2410/include')
-rw-r--r-- | arch/arm/mach-s3c2410/include/mach/uncompress.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/include/mach/uncompress.h b/arch/arm/mach-s3c2410/include/mach/uncompress.h index 72f756c5e504..8b283f847daa 100644 --- a/arch/arm/mach-s3c2410/include/mach/uncompress.h +++ b/arch/arm/mach-s3c2410/include/mach/uncompress.h @@ -40,7 +40,9 @@ static void arch_detect_cpu(void) cpuid &= S3C2410_GSTATUS1_IDMASK; if (is_arm926() || cpuid == S3C2410_GSTATUS1_2440 || - cpuid == S3C2410_GSTATUS1_2442) { + cpuid == S3C2410_GSTATUS1_2442 || + cpuid == S3C2410_GSTATUS1_2416 || + cpuid == S3C2410_GSTATUS1_2450) { fifo_mask = S3C2440_UFSTAT_TXMASK; fifo_max = 63 << S3C2440_UFSTAT_TXSHIFT; } else { |