blob: 3c6335307fb12afd53cf3b9bdbee6cc0983f1a86 [file] [log] [blame]
Ben Dooksa21765a2007-02-11 18:31:01 +01001/* linux/arch/arm/plat-s3c24xx/cpu.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
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>
Ben Dooksb6d1f542006-12-17 23:22:26 +010029#include <linux/serial_core.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010030#include <linux/platform_device.h>
Ben Dooks3c7d9c82008-04-16 00:15:20 +010031#include <linux/delay.h>
Russell Kingfced80c2008-09-06 12:10:45 +010032#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/irq.h>
Ben Dooks3c7d9c82008-04-16 00:15:20 +010036#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/mach/arch.h>
39#include <asm/mach/map.h>
40
Russell Kinga09e64f2008-08-05 16:14:15 +010041#include <mach/system-reset.h>
Ben Dooks3c7d9c82008-04-16 00:15:20 +010042
Russell Kinga09e64f2008-08-05 16:14:15 +010043#include <mach/regs-gpio.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010044#include <plat/regs-serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Ben Dooksa2b7ba92008-10-07 22:26:09 +010046#include <plat/cpu.h>
47#include <plat/devs.h>
Ben Dooksd5120ae2008-10-07 23:09:51 +010048#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010049#include <plat/s3c2410.h>
Ben Dooksd5120ae2008-10-07 23:09:51 +010050#include <plat/s3c2412.h>
Yauhen Kharuzhyf1290a42010-04-28 18:09:01 +090051#include <plat/s3c2416.h>
Ben Dooks58bac7b2010-01-26 16:47:41 +090052#include <plat/s3c244x.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010053#include <plat/s3c2443.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/* table of supported CPUs */
56
57static const char name_s3c2410[] = "S3C2410";
Ben Dooks68d9ab32006-06-24 21:21:27 +010058static const char name_s3c2412[] = "S3C2412";
Ben Dooks63b1f512010-04-30 16:32:26 +090059static const char name_s3c2416[] = "S3C2416/S3C2450";
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static const char name_s3c2440[] = "S3C2440";
Ben Dooks96ce2382006-06-18 23:06:41 +010061static const char name_s3c2442[] = "S3C2442";
Harald Weltef5fb9b12009-09-22 21:40:39 +010062static const char name_s3c2442b[] = "S3C2442B";
Ben Dookse4d06e32007-02-16 12:12:31 +010063static const char name_s3c2443[] = "S3C2443";
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static const char name_s3c2410a[] = "S3C2410A";
65static const char name_s3c2440a[] = "S3C2440A";
66
67static struct cpu_table cpu_ids[] __initdata = {
68 {
69 .idcode = 0x32410000,
70 .idmask = 0xffffffff,
71 .map_io = s3c2410_map_io,
72 .init_clocks = s3c2410_init_clocks,
73 .init_uarts = s3c2410_init_uarts,
74 .init = s3c2410_init,
75 .name = name_s3c2410
76 },
77 {
78 .idcode = 0x32410002,
79 .idmask = 0xffffffff,
80 .map_io = s3c2410_map_io,
81 .init_clocks = s3c2410_init_clocks,
82 .init_uarts = s3c2410_init_uarts,
Ben Dooksf0176792009-07-30 23:23:38 +010083 .init = s3c2410a_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 .name = name_s3c2410a
85 },
86 {
87 .idcode = 0x32440000,
88 .idmask = 0xffffffff,
Vasily Khoruzhick812c4e42010-12-01 08:29:23 +020089 .map_io = s3c2440_map_io,
Ben Dooks96ce2382006-06-18 23:06:41 +010090 .init_clocks = s3c244x_init_clocks,
91 .init_uarts = s3c244x_init_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .init = s3c2440_init,
93 .name = name_s3c2440
94 },
95 {
96 .idcode = 0x32440001,
97 .idmask = 0xffffffff,
Vasily Khoruzhick812c4e42010-12-01 08:29:23 +020098 .map_io = s3c2440_map_io,
Ben Dooks96ce2382006-06-18 23:06:41 +010099 .init_clocks = s3c244x_init_clocks,
100 .init_uarts = s3c244x_init_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 .init = s3c2440_init,
102 .name = name_s3c2440a
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +0000103 },
104 {
Ben Dooks96ce2382006-06-18 23:06:41 +0100105 .idcode = 0x32440aaa,
106 .idmask = 0xffffffff,
Vasily Khoruzhick812c4e42010-12-01 08:29:23 +0200107 .map_io = s3c2442_map_io,
Ben Dooks96ce2382006-06-18 23:06:41 +0100108 .init_clocks = s3c244x_init_clocks,
109 .init_uarts = s3c244x_init_uarts,
110 .init = s3c2442_init,
111 .name = name_s3c2442
112 },
113 {
Harald Weltef5fb9b12009-09-22 21:40:39 +0100114 .idcode = 0x32440aab,
115 .idmask = 0xffffffff,
Vasily Khoruzhick812c4e42010-12-01 08:29:23 +0200116 .map_io = s3c2442_map_io,
Harald Weltef5fb9b12009-09-22 21:40:39 +0100117 .init_clocks = s3c244x_init_clocks,
118 .init_uarts = s3c244x_init_uarts,
119 .init = s3c2442_init,
120 .name = name_s3c2442b
121 },
122 {
Ben Dooks68d9ab32006-06-24 21:21:27 +0100123 .idcode = 0x32412001,
124 .idmask = 0xffffffff,
125 .map_io = s3c2412_map_io,
126 .init_clocks = s3c2412_init_clocks,
127 .init_uarts = s3c2412_init_uarts,
128 .init = s3c2412_init,
129 .name = name_s3c2412,
130 },
Ben Dooksd9bc55f2006-09-20 20:39:15 +0100131 { /* a newer version of the s3c2412 */
132 .idcode = 0x32412003,
133 .idmask = 0xffffffff,
134 .map_io = s3c2412_map_io,
135 .init_clocks = s3c2412_init_clocks,
136 .init_uarts = s3c2412_init_uarts,
137 .init = s3c2412_init,
138 .name = name_s3c2412,
139 },
Yauhen Kharuzhyf1290a42010-04-28 18:09:01 +0900140 { /* a strange version of the s3c2416 */
141 .idcode = 0x32450003,
142 .idmask = 0xffffffff,
143 .map_io = s3c2416_map_io,
144 .init_clocks = s3c2416_init_clocks,
145 .init_uarts = s3c2416_init_uarts,
146 .init = s3c2416_init,
147 .name = name_s3c2416,
148 },
Ben Dooks68d9ab32006-06-24 21:21:27 +0100149 {
Ben Dookse4d06e32007-02-16 12:12:31 +0100150 .idcode = 0x32443001,
151 .idmask = 0xffffffff,
152 .map_io = s3c2443_map_io,
153 .init_clocks = s3c2443_init_clocks,
154 .init_uarts = s3c2443_init_uarts,
155 .init = s3c2443_init,
156 .name = name_s3c2443,
157 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158};
159
160/* minimal IO mapping */
161
162static struct map_desc s3c_iodesc[] __initdata = {
163 IODESC_ENT(GPIO),
164 IODESC_ENT(IRQ),
165 IODESC_ENT(MEMCTRL),
166 IODESC_ENT(UART)
167};
168
Ben Dooks74b265d2008-10-21 14:06:31 +0100169/* read cpu identificaiton code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Ben Dooks68d9ab32006-06-24 21:21:27 +0100171static unsigned long s3c24xx_read_idcode_v5(void)
172{
Ben Dooksd11a7d72010-04-28 18:00:07 +0900173#if defined(CONFIG_CPU_S3C2416)
174 /* s3c2416 is v5, with S3C24XX_GSTATUS1 instead of S3C2412_GSTATUS1 */
175
176 u32 gs = __raw_readl(S3C24XX_GSTATUS1);
177
178 /* test for s3c2416 or similar device */
179 if ((gs >> 16) == 0x3245)
180 return gs;
181#endif
182
Ben Dooks68d9ab32006-06-24 21:21:27 +0100183#if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
184 return __raw_readl(S3C2412_GSTATUS1);
185#else
186 return 1UL; /* don't look like an 2400 */
187#endif
188}
189
190static unsigned long s3c24xx_read_idcode_v4(void)
191{
Ben Dooks68d9ab32006-06-24 21:21:27 +0100192 return __raw_readl(S3C2410_GSTATUS1);
Ben Dooks68d9ab32006-06-24 21:21:27 +0100193}
194
Ben Dooks3c7d9c82008-04-16 00:15:20 +0100195/* Hook for arm_pm_restart to ensure we execute the reset code
196 * with the caches enabled. It seems at least the S3C2440 has a problem
197 * resetting if there is bus activity interrupted by the reset.
198 */
Russell Kingbe093be2009-03-19 16:20:24 +0000199static void s3c24xx_pm_restart(char mode, const char *cmd)
Ben Dooks3c7d9c82008-04-16 00:15:20 +0100200{
201 if (mode != 's') {
202 unsigned long flags;
203
204 local_irq_save(flags);
205 __cpuc_flush_kern_all();
206 __cpuc_flush_user_all();
207
Russell Kingbe093be2009-03-19 16:20:24 +0000208 arch_reset(mode, cmd);
Ben Dooks3c7d9c82008-04-16 00:15:20 +0100209 local_irq_restore(flags);
210 }
211
212 /* fallback, or unhandled */
Russell Kingbe093be2009-03-19 16:20:24 +0000213 arm_machine_restart(mode, cmd);
Ben Dooks3c7d9c82008-04-16 00:15:20 +0100214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216void __init s3c24xx_init_io(struct map_desc *mach_desc, int size)
217{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* initialise the io descriptors we need for initialisation */
Ben Dooks74b265d2008-10-21 14:06:31 +0100219 iotable_init(mach_desc, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));
221
Ben Dooks68d9ab32006-06-24 21:21:27 +0100222 if (cpu_architecture() >= CPU_ARCH_ARMv5) {
Kukjin Kimc06af3c2011-08-20 02:18:18 +0900223 samsung_cpu_id = s3c24xx_read_idcode_v5();
Ben Dooks68d9ab32006-06-24 21:21:27 +0100224 } else {
Kukjin Kimc06af3c2011-08-20 02:18:18 +0900225 samsung_cpu_id = s3c24xx_read_idcode_v4();
Ben Dooks68d9ab32006-06-24 21:21:27 +0100226 }
Kukjin Kime6d1cb92011-08-20 12:18:07 +0900227 s3c24xx_init_cpu();
Lucas Correia Villa Real83f755f2006-02-01 21:24:24 +0000228
Ben Dooks3c7d9c82008-04-16 00:15:20 +0100229 arm_pm_restart = s3c24xx_pm_restart;
230
Kukjin Kimc06af3c2011-08-20 02:18:18 +0900231 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}