1 /* linux/arch/arm/plat-s3c24xx/cpu.c
3 * Copyright (c) 2004-2005 Simtec Electronics
4 * http://www.simtec.co.uk/products/SWLINUX/
5 * Ben Dooks <ben@simtec.co.uk>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/init.h>
26 #include <linux/module.h>
27 #include <linux/interrupt.h>
28 #include <linux/ioport.h>
29 #include <linux/serial_core.h>
30 #include <linux/platform_device.h>
31 #include <linux/delay.h>
34 #include <mach/hardware.h>
36 #include <asm/cacheflush.h>
38 #include <asm/mach/arch.h>
39 #include <asm/mach/map.h>
41 #include <mach/regs-gpio.h>
42 #include <plat/regs-serial.h>
45 #include <plat/devs.h>
46 #include <plat/clock.h>
47 #include <plat/s3c2410.h>
48 #include <plat/s3c2412.h>
49 #include <plat/s3c2416.h>
50 #include <plat/s3c244x.h>
51 #include <plat/s3c2443.h>
53 /* table of supported CPUs */
55 static const char name_s3c2410
[] = "S3C2410";
56 static const char name_s3c2412
[] = "S3C2412";
57 static const char name_s3c2416
[] = "S3C2416/S3C2450";
58 static const char name_s3c2440
[] = "S3C2440";
59 static const char name_s3c2442
[] = "S3C2442";
60 static const char name_s3c2442b
[] = "S3C2442B";
61 static const char name_s3c2443
[] = "S3C2443";
62 static const char name_s3c2410a
[] = "S3C2410A";
63 static const char name_s3c2440a
[] = "S3C2440A";
65 static struct cpu_table cpu_ids
[] __initdata
= {
69 .map_io
= s3c2410_map_io
,
70 .init_clocks
= s3c2410_init_clocks
,
71 .init_uarts
= s3c2410_init_uarts
,
78 .map_io
= s3c2410_map_io
,
79 .init_clocks
= s3c2410_init_clocks
,
80 .init_uarts
= s3c2410_init_uarts
,
81 .init
= s3c2410a_init
,
87 .map_io
= s3c2440_map_io
,
88 .init_clocks
= s3c244x_init_clocks
,
89 .init_uarts
= s3c244x_init_uarts
,
96 .map_io
= s3c2440_map_io
,
97 .init_clocks
= s3c244x_init_clocks
,
98 .init_uarts
= s3c244x_init_uarts
,
100 .name
= name_s3c2440a
103 .idcode
= 0x32440aaa,
104 .idmask
= 0xffffffff,
105 .map_io
= s3c2442_map_io
,
106 .init_clocks
= s3c244x_init_clocks
,
107 .init_uarts
= s3c244x_init_uarts
,
108 .init
= s3c2442_init
,
112 .idcode
= 0x32440aab,
113 .idmask
= 0xffffffff,
114 .map_io
= s3c2442_map_io
,
115 .init_clocks
= s3c244x_init_clocks
,
116 .init_uarts
= s3c244x_init_uarts
,
117 .init
= s3c2442_init
,
118 .name
= name_s3c2442b
121 .idcode
= 0x32412001,
122 .idmask
= 0xffffffff,
123 .map_io
= s3c2412_map_io
,
124 .init_clocks
= s3c2412_init_clocks
,
125 .init_uarts
= s3c2412_init_uarts
,
126 .init
= s3c2412_init
,
127 .name
= name_s3c2412
,
129 { /* a newer version of the s3c2412 */
130 .idcode
= 0x32412003,
131 .idmask
= 0xffffffff,
132 .map_io
= s3c2412_map_io
,
133 .init_clocks
= s3c2412_init_clocks
,
134 .init_uarts
= s3c2412_init_uarts
,
135 .init
= s3c2412_init
,
136 .name
= name_s3c2412
,
138 { /* a strange version of the s3c2416 */
139 .idcode
= 0x32450003,
140 .idmask
= 0xffffffff,
141 .map_io
= s3c2416_map_io
,
142 .init_clocks
= s3c2416_init_clocks
,
143 .init_uarts
= s3c2416_init_uarts
,
144 .init
= s3c2416_init
,
145 .name
= name_s3c2416
,
148 .idcode
= 0x32443001,
149 .idmask
= 0xffffffff,
150 .map_io
= s3c2443_map_io
,
151 .init_clocks
= s3c2443_init_clocks
,
152 .init_uarts
= s3c2443_init_uarts
,
153 .init
= s3c2443_init
,
154 .name
= name_s3c2443
,
158 /* minimal IO mapping */
160 static struct map_desc s3c_iodesc
[] __initdata
= {
167 /* read cpu identificaiton code */
169 static unsigned long s3c24xx_read_idcode_v5(void)
171 #if defined(CONFIG_CPU_S3C2416)
172 /* s3c2416 is v5, with S3C24XX_GSTATUS1 instead of S3C2412_GSTATUS1 */
174 u32 gs
= __raw_readl(S3C24XX_GSTATUS1
);
176 /* test for s3c2416 or similar device */
177 if ((gs
>> 16) == 0x3245)
181 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
182 return __raw_readl(S3C2412_GSTATUS1
);
184 return 1UL; /* don't look like an 2400 */
188 static unsigned long s3c24xx_read_idcode_v4(void)
190 return __raw_readl(S3C2410_GSTATUS1
);
193 void __init
s3c24xx_init_io(struct map_desc
*mach_desc
, int size
)
195 /* initialise the io descriptors we need for initialisation */
196 iotable_init(mach_desc
, size
);
197 iotable_init(s3c_iodesc
, ARRAY_SIZE(s3c_iodesc
));
199 if (cpu_architecture() >= CPU_ARCH_ARMv5
) {
200 samsung_cpu_id
= s3c24xx_read_idcode_v5();
202 samsung_cpu_id
= s3c24xx_read_idcode_v4();
206 s3c_init_cpu(samsung_cpu_id
, cpu_ids
, ARRAY_SIZE(cpu_ids
));