summaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorYauhen Kharuzhy2009-08-19 15:31:05 +0200
committerBen Dooks2010-05-06 04:37:17 +0200
commit5faf5011841dc2a4797093b845e49bc40b4b4666 (patch)
tree230a714010f221e65f4869a74ee1669f0fdf2a4f /arch/arm
parentARM: S3C24XX: Remove _INP macros in <mach/regs-gpioj.h> (diff)
downloadkernel-qcow2-linux-5faf5011841dc2a4797093b845e49bc40b4b4666.tar.gz
kernel-qcow2-linux-5faf5011841dc2a4797093b845e49bc40b4b4666.tar.xz
kernel-qcow2-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')
-rw-r--r--arch/arm/mach-s3c2410/include/mach/uncompress.h4
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 {