Merge branch 'for-linus' of git://git.kernel.dk/linux-block
[deliverable/linux.git] / arch / arm / plat-s3c24xx / cpu.c
CommitLineData
a21765a7 1/* linux/arch/arm/plat-s3c24xx/cpu.c
1da177e4
LT
2 *
3 * Copyright (c) 2004-2005 Simtec Electronics
4 * http://www.simtec.co.uk/products/SWLINUX/
5 * Ben Dooks <ben@simtec.co.uk>
6 *
7 * S3C24XX CPU Support
8 *
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.
13 *
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.
18 *
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
22*/
23
24
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/interrupt.h>
28#include <linux/ioport.h>
b6d1f542 29#include <linux/serial_core.h>
d052d1be 30#include <linux/platform_device.h>
3c7d9c81 31#include <linux/delay.h>
fced80c7 32#include <linux/io.h>
1da177e4 33
a09e64fb 34#include <mach/hardware.h>
1da177e4 35#include <asm/irq.h>
3c7d9c81 36#include <asm/cacheflush.h>
1da177e4
LT
37
38#include <asm/mach/arch.h>
39#include <asm/mach/map.h>
40
a09e64fb 41#include <mach/regs-gpio.h>
a2b7ba9c 42#include <plat/regs-serial.h>
1da177e4 43
a2b7ba9c
BD
44#include <plat/cpu.h>
45#include <plat/devs.h>
d5120ae7 46#include <plat/clock.h>
a2b7ba9c 47#include <plat/s3c2410.h>
d5120ae7 48#include <plat/s3c2412.h>
f1290a49 49#include <plat/s3c2416.h>
58bac7b8 50#include <plat/s3c244x.h>
a2b7ba9c 51#include <plat/s3c2443.h>
1da177e4 52
1da177e4
LT
53/* table of supported CPUs */
54
55static const char name_s3c2410[] = "S3C2410";
68d9ab39 56static const char name_s3c2412[] = "S3C2412";
63b1f51b 57static const char name_s3c2416[] = "S3C2416/S3C2450";
1da177e4 58static const char name_s3c2440[] = "S3C2440";
96ce2385 59static const char name_s3c2442[] = "S3C2442";
f5fb9b1a 60static const char name_s3c2442b[] = "S3C2442B";
e4d06e39 61static const char name_s3c2443[] = "S3C2443";
1da177e4
LT
62static const char name_s3c2410a[] = "S3C2410A";
63static const char name_s3c2440a[] = "S3C2440A";
64
65static struct cpu_table cpu_ids[] __initdata = {
66 {
67 .idcode = 0x32410000,
68 .idmask = 0xffffffff,
69 .map_io = s3c2410_map_io,
70 .init_clocks = s3c2410_init_clocks,
71 .init_uarts = s3c2410_init_uarts,
72 .init = s3c2410_init,
73 .name = name_s3c2410
74 },
75 {
76 .idcode = 0x32410002,
77 .idmask = 0xffffffff,
78 .map_io = s3c2410_map_io,
79 .init_clocks = s3c2410_init_clocks,
80 .init_uarts = s3c2410_init_uarts,
f0176794 81 .init = s3c2410a_init,
1da177e4
LT
82 .name = name_s3c2410a
83 },
84 {
85 .idcode = 0x32440000,
86 .idmask = 0xffffffff,
812c4e40 87 .map_io = s3c2440_map_io,
96ce2385
BD
88 .init_clocks = s3c244x_init_clocks,
89 .init_uarts = s3c244x_init_uarts,
1da177e4
LT
90 .init = s3c2440_init,
91 .name = name_s3c2440
92 },
93 {
94 .idcode = 0x32440001,
95 .idmask = 0xffffffff,
812c4e40 96 .map_io = s3c2440_map_io,
96ce2385
BD
97 .init_clocks = s3c244x_init_clocks,
98 .init_uarts = s3c244x_init_uarts,
1da177e4
LT
99 .init = s3c2440_init,
100 .name = name_s3c2440a
83f755f5 101 },
96ce2385
BD
102 {
103 .idcode = 0x32440aaa,
104 .idmask = 0xffffffff,
812c4e40 105 .map_io = s3c2442_map_io,
96ce2385
BD
106 .init_clocks = s3c244x_init_clocks,
107 .init_uarts = s3c244x_init_uarts,
108 .init = s3c2442_init,
109 .name = name_s3c2442
110 },
f5fb9b1a
HW
111 {
112 .idcode = 0x32440aab,
113 .idmask = 0xffffffff,
812c4e40 114 .map_io = s3c2442_map_io,
f5fb9b1a
HW
115 .init_clocks = s3c244x_init_clocks,
116 .init_uarts = s3c244x_init_uarts,
117 .init = s3c2442_init,
118 .name = name_s3c2442b
119 },
68d9ab39
BD
120 {
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,
128 },
d9bc55fa
BD
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,
137 },
f1290a49
YK
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,
146 },
e4d06e39
BD
147 {
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,
155 },
1da177e4
LT
156};
157
158/* minimal IO mapping */
159
160static struct map_desc s3c_iodesc[] __initdata = {
161 IODESC_ENT(GPIO),
162 IODESC_ENT(IRQ),
163 IODESC_ENT(MEMCTRL),
164 IODESC_ENT(UART)
165};
166
74b265d4 167/* read cpu identificaiton code */
1da177e4 168
68d9ab39
BD
169static unsigned long s3c24xx_read_idcode_v5(void)
170{
d11a7d71
BD
171#if defined(CONFIG_CPU_S3C2416)
172 /* s3c2416 is v5, with S3C24XX_GSTATUS1 instead of S3C2412_GSTATUS1 */
173
174 u32 gs = __raw_readl(S3C24XX_GSTATUS1);
175
176 /* test for s3c2416 or similar device */
177 if ((gs >> 16) == 0x3245)
178 return gs;
179#endif
180
68d9ab39
BD
181#if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
182 return __raw_readl(S3C2412_GSTATUS1);
183#else
184 return 1UL; /* don't look like an 2400 */
185#endif
186}
187
188static unsigned long s3c24xx_read_idcode_v4(void)
189{
68d9ab39 190 return __raw_readl(S3C2410_GSTATUS1);
68d9ab39
BD
191}
192
1da177e4
LT
193void __init s3c24xx_init_io(struct map_desc *mach_desc, int size)
194{
1da177e4 195 /* initialise the io descriptors we need for initialisation */
74b265d4 196 iotable_init(mach_desc, size);
1da177e4
LT
197 iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));
198
68d9ab39 199 if (cpu_architecture() >= CPU_ARCH_ARMv5) {
c06af3cc 200 samsung_cpu_id = s3c24xx_read_idcode_v5();
68d9ab39 201 } else {
c06af3cc 202 samsung_cpu_id = s3c24xx_read_idcode_v4();
68d9ab39 203 }
e6d1cb9f 204 s3c24xx_init_cpu();
83f755f5 205
c06af3cc 206 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
66a9b49a 207}
This page took 0.496112 seconds and 5 git commands to generate.