blob: 1c3c6adae6c4c11b69339eebc46650c58f57ccce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/arch/arm/mach-s3c2410/cpu.c
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>
Russell Kingd052d1b2005-10-29 19:07:23 +010029#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/hardware.h>
32#include <asm/irq.h>
33#include <asm/io.h>
34#include <asm/delay.h>
35
36#include <asm/mach/arch.h>
37#include <asm/mach/map.h>
38
39#include <asm/arch/regs-gpio.h>
Ben Dooks66a9b492006-06-18 23:04:05 +010040#include <asm/arch/regs-serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "cpu.h"
Ben Dooks66a9b492006-06-18 23:04:05 +010043#include "devs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "clock.h"
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +000045#include "s3c2400.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "s3c2410.h"
Ben Dooks68d9ab32006-06-24 21:21:27 +010047#include "s3c2412.h"
Ben Dooks96ce2382006-06-18 23:06:41 +010048#include "s3c244x.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include "s3c2440.h"
Ben Dooks96ce2382006-06-18 23:06:41 +010050#include "s3c2442.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52struct cpu_table {
53 unsigned long idcode;
54 unsigned long idmask;
55 void (*map_io)(struct map_desc *mach_desc, int size);
56 void (*init_uarts)(struct s3c2410_uartcfg *cfg, int no);
57 void (*init_clocks)(int xtal);
58 int (*init)(void);
59 const char *name;
60};
61
62/* table of supported CPUs */
63
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +000064static const char name_s3c2400[] = "S3C2400";
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static const char name_s3c2410[] = "S3C2410";
Ben Dooks68d9ab32006-06-24 21:21:27 +010066static const char name_s3c2412[] = "S3C2412";
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static const char name_s3c2440[] = "S3C2440";
Ben Dooks96ce2382006-06-18 23:06:41 +010068static const char name_s3c2442[] = "S3C2442";
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static const char name_s3c2410a[] = "S3C2410A";
70static const char name_s3c2440a[] = "S3C2440A";
71
72static struct cpu_table cpu_ids[] __initdata = {
73 {
74 .idcode = 0x32410000,
75 .idmask = 0xffffffff,
76 .map_io = s3c2410_map_io,
77 .init_clocks = s3c2410_init_clocks,
78 .init_uarts = s3c2410_init_uarts,
79 .init = s3c2410_init,
80 .name = name_s3c2410
81 },
82 {
83 .idcode = 0x32410002,
84 .idmask = 0xffffffff,
85 .map_io = s3c2410_map_io,
86 .init_clocks = s3c2410_init_clocks,
87 .init_uarts = s3c2410_init_uarts,
88 .init = s3c2410_init,
89 .name = name_s3c2410a
90 },
91 {
92 .idcode = 0x32440000,
93 .idmask = 0xffffffff,
Ben Dooks96ce2382006-06-18 23:06:41 +010094 .map_io = s3c244x_map_io,
95 .init_clocks = s3c244x_init_clocks,
96 .init_uarts = s3c244x_init_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 .init = s3c2440_init,
98 .name = name_s3c2440
99 },
100 {
101 .idcode = 0x32440001,
102 .idmask = 0xffffffff,
Ben Dooks96ce2382006-06-18 23:06:41 +0100103 .map_io = s3c244x_map_io,
104 .init_clocks = s3c244x_init_clocks,
105 .init_uarts = s3c244x_init_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 .init = s3c2440_init,
107 .name = name_s3c2440a
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +0000108 },
109 {
Ben Dooks96ce2382006-06-18 23:06:41 +0100110 .idcode = 0x32440aaa,
111 .idmask = 0xffffffff,
112 .map_io = s3c244x_map_io,
113 .init_clocks = s3c244x_init_clocks,
114 .init_uarts = s3c244x_init_uarts,
115 .init = s3c2442_init,
116 .name = name_s3c2442
117 },
118 {
Ben Dooks68d9ab32006-06-24 21:21:27 +0100119 .idcode = 0x32412001,
120 .idmask = 0xffffffff,
121 .map_io = s3c2412_map_io,
122 .init_clocks = s3c2412_init_clocks,
123 .init_uarts = s3c2412_init_uarts,
124 .init = s3c2412_init,
125 .name = name_s3c2412,
126 },
127 {
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +0000128 .idcode = 0x0, /* S3C2400 doesn't have an idcode */
129 .idmask = 0xffffffff,
130 .map_io = s3c2400_map_io,
131 .init_clocks = s3c2400_init_clocks,
132 .init_uarts = s3c2400_init_uarts,
133 .init = s3c2400_init,
134 .name = name_s3c2400
135 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
138/* minimal IO mapping */
139
140static struct map_desc s3c_iodesc[] __initdata = {
141 IODESC_ENT(GPIO),
142 IODESC_ENT(IRQ),
143 IODESC_ENT(MEMCTRL),
144 IODESC_ENT(UART)
145};
146
147
148static struct cpu_table *
149s3c_lookup_cpu(unsigned long idcode)
150{
151 struct cpu_table *tab;
152 int count;
153
154 tab = cpu_ids;
155 for (count = 0; count < ARRAY_SIZE(cpu_ids); count++, tab++) {
156 if ((idcode & tab->idmask) == tab->idcode)
157 return tab;
158 }
159
160 return NULL;
161}
162
163/* board information */
164
165static struct s3c24xx_board *board;
166
167void s3c24xx_set_board(struct s3c24xx_board *b)
168{
169 int i;
170
171 board = b;
172
173 if (b->clocks_count != 0) {
Alexey Dobriyan53b35312006-03-24 03:16:13 -0800174 struct clk **ptr = b->clocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 for (i = b->clocks_count; i > 0; i--, ptr++)
177 s3c24xx_register_clock(*ptr);
178 }
179}
180
181/* cpu information */
182
183static struct cpu_table *cpu;
184
Ben Dooks68d9ab32006-06-24 21:21:27 +0100185static unsigned long s3c24xx_read_idcode_v5(void)
186{
187#if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
188 return __raw_readl(S3C2412_GSTATUS1);
189#else
190 return 1UL; /* don't look like an 2400 */
191#endif
192}
193
194static unsigned long s3c24xx_read_idcode_v4(void)
195{
196#ifndef CONFIG_CPU_S3C2400
197 return __raw_readl(S3C2410_GSTATUS1);
198#else
199 return 0UL;
200#endif
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203void __init s3c24xx_init_io(struct map_desc *mach_desc, int size)
204{
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +0000205 unsigned long idcode = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 /* initialise the io descriptors we need for initialisation */
208 iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));
209
Ben Dooks68d9ab32006-06-24 21:21:27 +0100210 if (cpu_architecture() >= CPU_ARCH_ARMv5) {
211 idcode = s3c24xx_read_idcode_v5();
212 } else {
213 idcode = s3c24xx_read_idcode_v4();
214 }
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +0000215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 cpu = s3c_lookup_cpu(idcode);
217
218 if (cpu == NULL) {
219 printk(KERN_ERR "Unknown CPU type 0x%08lx\n", idcode);
220 panic("Unknown S3C24XX CPU");
221 }
222
Ben Dooks36fe6a82006-06-18 16:21:53 +0100223 printk("CPU %s (id 0x%08lx)\n", cpu->name, idcode);
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (cpu->map_io == NULL || cpu->init == NULL) {
226 printk(KERN_ERR "CPU %s support not enabled\n", cpu->name);
227 panic("Unsupported S3C24XX CPU");
228 }
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 (cpu->map_io)(mach_desc, size);
231}
232
233/* s3c24xx_init_clocks
234 *
235 * Initialise the clock subsystem and associated information from the
236 * given master crystal value.
237 *
238 * xtal = 0 -> use default PLL crystal value (normally 12MHz)
239 * != 0 -> PLL crystal value in Hz
240*/
241
242void __init s3c24xx_init_clocks(int xtal)
243{
244 if (xtal == 0)
245 xtal = 12*1000*1000;
246
247 if (cpu == NULL)
248 panic("s3c24xx_init_clocks: no cpu setup?\n");
249
250 if (cpu->init_clocks == NULL)
251 panic("s3c24xx_init_clocks: cpu has no clock init\n");
252 else
253 (cpu->init_clocks)(xtal);
254}
255
Ben Dooks66a9b492006-06-18 23:04:05 +0100256/* uart management */
257
258static int nr_uarts __initdata = 0;
259
260static struct s3c2410_uartcfg uart_cfgs[3];
261
262/* s3c24xx_init_uartdevs
263 *
264 * copy the specified platform data and configuration into our central
265 * set of devices, before the data is thrown away after the init process.
266 *
267 * This also fills in the array passed to the serial driver for the
268 * early initialisation of the console.
269*/
270
271void __init s3c24xx_init_uartdevs(char *name,
272 struct s3c24xx_uart_resources *res,
273 struct s3c2410_uartcfg *cfg, int no)
274{
275 struct platform_device *platdev;
276 struct s3c2410_uartcfg *cfgptr = uart_cfgs;
277 struct s3c24xx_uart_resources *resp;
278 int uart;
279
280 memcpy(cfgptr, cfg, sizeof(struct s3c2410_uartcfg) * no);
281
282 for (uart = 0; uart < no; uart++, cfg++, cfgptr++) {
283 platdev = s3c24xx_uart_src[cfgptr->hwport];
284
285 resp = res + cfgptr->hwport;
286
287 s3c24xx_uart_devs[uart] = platdev;
288
289 platdev->name = name;
290 platdev->resource = resp->resources;
291 platdev->num_resources = resp->nr_resources;
292
293 platdev->dev.platform_data = cfgptr;
294 }
295
296 nr_uarts = no;
297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299void __init s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no)
300{
301 if (cpu == NULL)
302 return;
303
304 if (cpu->init_uarts == NULL) {
305 printk(KERN_ERR "s3c24xx_init_uarts: cpu has no uart init\n");
306 } else
307 (cpu->init_uarts)(cfg, no);
308}
309
310static int __init s3c_arch_init(void)
311{
312 int ret;
313
314 // do the correct init for cpu
315
316 if (cpu == NULL)
317 panic("s3c_arch_init: NULL cpu\n");
318
319 ret = (cpu->init)();
320 if (ret != 0)
321 return ret;
322
Ben Dooks66a9b492006-06-18 23:04:05 +0100323 ret = platform_add_devices(s3c24xx_uart_devs, nr_uarts);
324 if (ret != 0)
325 return ret;
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (board != NULL) {
328 struct platform_device **ptr = board->devices;
329 int i;
330
331 for (i = 0; i < board->devices_count; i++, ptr++) {
332 ret = platform_device_register(*ptr);
333
334 if (ret) {
335 printk(KERN_ERR "s3c24xx: failed to add board device %s (%d) @%p\n", (*ptr)->name, ret, *ptr);
336 }
337 }
338
339 /* mask any error, we may not need all these board
340 * devices */
341 ret = 0;
342 }
343
344 return ret;
345}
346
347arch_initcall(s3c_arch_init);