blob: 64e56492bfde4e5c98668a135ecfa99738719a40 [file] [log] [blame]
Kukjin Kimcc511b82011-12-27 08:18:36 +01001/*
2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
4 *
5 * Common Codes for EXYNOS
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/kernel.h>
13#include <linux/interrupt.h>
14#include <linux/irq.h>
Rob Herringa900e5d2013-02-12 16:04:52 -060015#include <linux/irqchip.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010016#include <linux/io.h>
Linus Torvalds7affca32012-01-07 12:03:30 -080017#include <linux/device.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010018#include <linux/gpio.h>
19#include <linux/sched.h>
20#include <linux/serial_core.h>
Arnd Bergmann237c78b2012-01-07 12:30:20 +000021#include <linux/of.h>
Doug Anderson5b7897d2012-11-27 11:53:14 -080022#include <linux/of_fdt.h>
Arnd Bergmann237c78b2012-01-07 12:30:20 +000023#include <linux/of_irq.h>
Thomas Abraham1e60bc02012-05-15 16:18:35 +090024#include <linux/export.h>
25#include <linux/irqdomain.h>
Rob Herring0529e3152012-11-05 16:18:28 -060026#include <linux/irqchip.h>
Thomas Abrahame873a472012-05-15 16:25:23 +090027#include <linux/of_address.h>
Thomas Abraham6923ae42013-03-09 17:03:29 +090028#include <linux/clocksource.h>
29#include <linux/clk-provider.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060030#include <linux/irqchip/arm-gic.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010031
32#include <asm/proc-fns.h>
Arnd Bergmann40ba95f2012-01-07 11:51:28 +000033#include <asm/exception.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010034#include <asm/hardware/cache-l2x0.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010035#include <asm/mach/map.h>
36#include <asm/mach/irq.h>
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -080037#include <asm/cacheflush.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010038
39#include <mach/regs-irq.h>
40#include <mach/regs-pmu.h>
41#include <mach/regs-gpio.h>
42
43#include <plat/cpu.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010044#include <plat/devs.h>
45#include <plat/pm.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010046#include <plat/sdhci.h>
47#include <plat/gpio-cfg.h>
48#include <plat/adc-core.h>
49#include <plat/fb-core.h>
50#include <plat/fimc-core.h>
51#include <plat/iic-core.h>
52#include <plat/tv-core.h>
Heiko Stuebner308b3af2012-10-17 16:47:11 +090053#include <plat/spi-core.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010054#include <plat/regs-serial.h>
55
56#include "common.h"
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -080057#define L2_AUX_VAL 0x7C470001
58#define L2_AUX_MASK 0xC200ffff
Kukjin Kimcc511b82011-12-27 08:18:36 +010059
Kukjin Kimcc511b82011-12-27 08:18:36 +010060static const char name_exynos4210[] = "EXYNOS4210";
61static const char name_exynos4212[] = "EXYNOS4212";
62static const char name_exynos4412[] = "EXYNOS4412";
Kukjin Kim94c7ca72012-02-11 22:15:45 +090063static const char name_exynos5250[] = "EXYNOS5250";
Kukjin Kim2edb36c2012-11-15 15:48:56 +090064static const char name_exynos5440[] = "EXYNOS5440";
Kukjin Kimcc511b82011-12-27 08:18:36 +010065
Kukjin Kim906c7892012-02-11 21:27:08 +090066static void exynos4_map_io(void);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090067static void exynos5_map_io(void);
Kukjin Kim2edb36c2012-11-15 15:48:56 +090068static void exynos5440_map_io(void);
Thomas Abraham55b6ef72012-10-29 19:46:49 +090069static void exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no);
Kukjin Kim906c7892012-02-11 21:27:08 +090070static int exynos_init(void);
Kukjin Kimcc511b82011-12-27 08:18:36 +010071
Thomas Abraham92744272013-03-09 17:03:33 +090072unsigned long xxti_f = 0, xusbxti_f = 0;
73
Kukjin Kimcc511b82011-12-27 08:18:36 +010074static struct cpu_table cpu_ids[] __initdata = {
75 {
76 .idcode = EXYNOS4210_CPU_ID,
77 .idmask = EXYNOS4_CPU_MASK,
78 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090079 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010080 .init = exynos_init,
81 .name = name_exynos4210,
82 }, {
83 .idcode = EXYNOS4212_CPU_ID,
84 .idmask = EXYNOS4_CPU_MASK,
85 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090086 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010087 .init = exynos_init,
88 .name = name_exynos4212,
89 }, {
90 .idcode = EXYNOS4412_CPU_ID,
91 .idmask = EXYNOS4_CPU_MASK,
92 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090093 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010094 .init = exynos_init,
95 .name = name_exynos4412,
Kukjin Kim94c7ca72012-02-11 22:15:45 +090096 }, {
97 .idcode = EXYNOS5250_SOC_ID,
98 .idmask = EXYNOS5_SOC_MASK,
99 .map_io = exynos5_map_io,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900100 .init = exynos_init,
101 .name = name_exynos5250,
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900102 }, {
103 .idcode = EXYNOS5440_SOC_ID,
104 .idmask = EXYNOS5_SOC_MASK,
105 .map_io = exynos5440_map_io,
106 .init = exynos_init,
107 .name = name_exynos5440,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100108 },
109};
110
111/* Initial IO mappings */
112
113static struct map_desc exynos_iodesc[] __initdata = {
114 {
115 .virtual = (unsigned long)S5P_VA_CHIPID,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900116 .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID),
Kukjin Kimcc511b82011-12-27 08:18:36 +0100117 .length = SZ_4K,
118 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900119 },
120};
121
Doug Anderson5b7897d2012-11-27 11:53:14 -0800122#ifdef CONFIG_ARCH_EXYNOS5
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900123static struct map_desc exynos5440_iodesc[] __initdata = {
124 {
125 .virtual = (unsigned long)S5P_VA_CHIPID,
126 .pfn = __phys_to_pfn(EXYNOS5440_PA_CHIPID),
127 .length = SZ_4K,
128 .type = MT_DEVICE,
129 },
130};
Doug Anderson5b7897d2012-11-27 11:53:14 -0800131#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900132
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900133static struct map_desc exynos4_iodesc[] __initdata = {
134 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100135 .virtual = (unsigned long)S3C_VA_SYS,
136 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
137 .length = SZ_64K,
138 .type = MT_DEVICE,
139 }, {
140 .virtual = (unsigned long)S3C_VA_TIMER,
141 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
142 .length = SZ_16K,
143 .type = MT_DEVICE,
144 }, {
145 .virtual = (unsigned long)S3C_VA_WATCHDOG,
146 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
147 .length = SZ_4K,
148 .type = MT_DEVICE,
149 }, {
150 .virtual = (unsigned long)S5P_VA_SROMC,
151 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
152 .length = SZ_4K,
153 .type = MT_DEVICE,
154 }, {
155 .virtual = (unsigned long)S5P_VA_SYSTIMER,
156 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
157 .length = SZ_4K,
158 .type = MT_DEVICE,
159 }, {
160 .virtual = (unsigned long)S5P_VA_PMU,
161 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
162 .length = SZ_64K,
163 .type = MT_DEVICE,
164 }, {
165 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
166 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
167 .length = SZ_4K,
168 .type = MT_DEVICE,
169 }, {
170 .virtual = (unsigned long)S5P_VA_GIC_CPU,
171 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
172 .length = SZ_64K,
173 .type = MT_DEVICE,
174 }, {
175 .virtual = (unsigned long)S5P_VA_GIC_DIST,
176 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
177 .length = SZ_64K,
178 .type = MT_DEVICE,
179 }, {
180 .virtual = (unsigned long)S3C_VA_UART,
181 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
182 .length = SZ_512K,
183 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900184 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100185 .virtual = (unsigned long)S5P_VA_CMU,
186 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
187 .length = SZ_128K,
188 .type = MT_DEVICE,
189 }, {
190 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
191 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
192 .length = SZ_8K,
193 .type = MT_DEVICE,
194 }, {
195 .virtual = (unsigned long)S5P_VA_L2CC,
196 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
197 .length = SZ_4K,
198 .type = MT_DEVICE,
199 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100200 .virtual = (unsigned long)S5P_VA_DMC0,
201 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900202 .length = SZ_64K,
203 .type = MT_DEVICE,
204 }, {
205 .virtual = (unsigned long)S5P_VA_DMC1,
206 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
207 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100208 .type = MT_DEVICE,
209 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100210 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
211 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
212 .length = SZ_4K,
213 .type = MT_DEVICE,
214 },
215};
216
217static struct map_desc exynos4_iodesc0[] __initdata = {
218 {
219 .virtual = (unsigned long)S5P_VA_SYSRAM,
220 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
221 .length = SZ_4K,
222 .type = MT_DEVICE,
223 },
224};
225
226static struct map_desc exynos4_iodesc1[] __initdata = {
227 {
228 .virtual = (unsigned long)S5P_VA_SYSRAM,
229 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
230 .length = SZ_4K,
231 .type = MT_DEVICE,
232 },
233};
234
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900235static struct map_desc exynos5_iodesc[] __initdata = {
236 {
237 .virtual = (unsigned long)S3C_VA_SYS,
238 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
239 .length = SZ_64K,
240 .type = MT_DEVICE,
241 }, {
242 .virtual = (unsigned long)S3C_VA_TIMER,
243 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
244 .length = SZ_16K,
245 .type = MT_DEVICE,
246 }, {
247 .virtual = (unsigned long)S3C_VA_WATCHDOG,
248 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
249 .length = SZ_4K,
250 .type = MT_DEVICE,
251 }, {
252 .virtual = (unsigned long)S5P_VA_SROMC,
253 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
254 .length = SZ_4K,
255 .type = MT_DEVICE,
256 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900257 .virtual = (unsigned long)S5P_VA_SYSRAM,
258 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
259 .length = SZ_4K,
260 .type = MT_DEVICE,
261 }, {
262 .virtual = (unsigned long)S5P_VA_CMU,
263 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
264 .length = 144 * SZ_1K,
265 .type = MT_DEVICE,
266 }, {
267 .virtual = (unsigned long)S5P_VA_PMU,
268 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
269 .length = SZ_64K,
270 .type = MT_DEVICE,
271 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900272 .virtual = (unsigned long)S3C_VA_UART,
273 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
274 .length = SZ_512K,
275 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900276 },
277};
278
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900279static struct map_desc exynos5440_iodesc0[] __initdata = {
280 {
281 .virtual = (unsigned long)S3C_VA_UART,
282 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
283 .length = SZ_512K,
284 .type = MT_DEVICE,
285 },
286};
287
Russell King9eb48592012-01-03 11:56:53 +0100288void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100289{
290 __raw_writel(0x1, S5P_SWRESET);
291}
292
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900293void exynos5_restart(char mode, const char *cmd)
294{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800295 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900296 u32 val;
297 void __iomem *addr;
298
299 if (of_machine_is_compatible("samsung,exynos5250")) {
300 val = 0x1;
301 addr = EXYNOS_SWRESET;
302 } else if (of_machine_is_compatible("samsung,exynos5440")) {
Thomas Abraham60db7e52013-01-24 10:09:13 -0800303 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
304 addr = of_iomap(np, 0) + 0xcc;
305 val = (0xfff << 20) | (0x1 << 16);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900306 } else {
307 pr_err("%s: cannot support non-DT\n", __func__);
308 return;
309 }
310
311 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900312}
313
Shawn Guobb13fab2012-04-26 10:35:40 +0800314void __init exynos_init_late(void)
315{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900316 if (of_machine_is_compatible("samsung,exynos5440"))
317 /* to be supported later */
318 return;
319
Shawn Guobb13fab2012-04-26 10:35:40 +0800320 exynos_pm_late_initcall();
321}
322
Kukjin Kimcc511b82011-12-27 08:18:36 +0100323/*
324 * exynos_map_io
325 *
326 * register the standard cpu IO areas
327 */
328
329void __init exynos_init_io(struct map_desc *mach_desc, int size)
330{
Doug Anderson5b7897d2012-11-27 11:53:14 -0800331 struct map_desc *iodesc = exynos_iodesc;
332 int iodesc_sz = ARRAY_SIZE(exynos_iodesc);
333#if defined(CONFIG_OF) && defined(CONFIG_ARCH_EXYNOS5)
334 unsigned long root = of_get_flat_dt_root();
335
Kukjin Kimcc511b82011-12-27 08:18:36 +0100336 /* initialize the io descriptors we need for initialization */
Doug Anderson5b7897d2012-11-27 11:53:14 -0800337 if (of_flat_dt_is_compatible(root, "samsung,exynos5440")) {
338 iodesc = exynos5440_iodesc;
339 iodesc_sz = ARRAY_SIZE(exynos5440_iodesc);
340 }
341#endif
342
343 iotable_init(iodesc, iodesc_sz);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900344
Kukjin Kimcc511b82011-12-27 08:18:36 +0100345 if (mach_desc)
346 iotable_init(mach_desc, size);
347
348 /* detect cpu id and rev. */
349 s5p_init_cpu(S5P_VA_CHIPID);
350
351 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
352}
353
Kukjin Kim906c7892012-02-11 21:27:08 +0900354static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100355{
356 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
357
358 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
359 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
360 else
361 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
362
363 /* initialize device information early */
364 exynos4_default_sdhci0();
365 exynos4_default_sdhci1();
366 exynos4_default_sdhci2();
367 exynos4_default_sdhci3();
368
369 s3c_adc_setname("samsung-adc-v3");
370
371 s3c_fimc_setname(0, "exynos4-fimc");
372 s3c_fimc_setname(1, "exynos4-fimc");
373 s3c_fimc_setname(2, "exynos4-fimc");
374 s3c_fimc_setname(3, "exynos4-fimc");
375
Thomas Abraham8482c812012-04-14 08:04:46 -0700376 s3c_sdhci_setname(0, "exynos4-sdhci");
377 s3c_sdhci_setname(1, "exynos4-sdhci");
378 s3c_sdhci_setname(2, "exynos4-sdhci");
379 s3c_sdhci_setname(3, "exynos4-sdhci");
380
Kukjin Kimcc511b82011-12-27 08:18:36 +0100381 /* The I2C bus controllers are directly compatible with s3c2440 */
382 s3c_i2c0_setname("s3c2440-i2c");
383 s3c_i2c1_setname("s3c2440-i2c");
384 s3c_i2c2_setname("s3c2440-i2c");
385
386 s5p_fb_setname(0, "exynos4-fb");
387 s5p_hdmi_setname("exynos4-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900388
389 s3c64xx_spi_setname("exynos4210-spi");
Kukjin Kimcc511b82011-12-27 08:18:36 +0100390}
391
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900392static void __init exynos5_map_io(void)
393{
394 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900395}
396
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900397static void __init exynos5440_map_io(void)
398{
399 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
400}
401
Thomas Abraham6923ae42013-03-09 17:03:29 +0900402void __init exynos_init_time(void)
403{
404 if (of_have_populated_dt()) {
405#ifdef CONFIG_OF
406 of_clk_init(NULL);
407 clocksource_of_init();
408#endif
409 } else {
410 /* todo: remove after migrating legacy E4 platforms to dt */
411 exynos4_clk_init(NULL);
Thomas Abraham92744272013-03-09 17:03:33 +0900412 exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f);
Thomas Abraham6923ae42013-03-09 17:03:29 +0900413 mct_init();
414 }
415}
416
Kukjin Kimcc511b82011-12-27 08:18:36 +0100417void __init exynos4_init_irq(void)
418{
Arnd Bergmann40ba95f2012-01-07 11:51:28 +0000419 unsigned int gic_bank_offset;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100420
421 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
422
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000423 if (!of_have_populated_dt())
Grant Likely75294952012-02-14 14:06:57 -0700424 gic_init_bases(0, IRQ_PPI(0), S5P_VA_GIC_DIST, S5P_VA_GIC_CPU, gic_bank_offset, NULL);
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000425#ifdef CONFIG_OF
426 else
Rob Herring0529e3152012-11-05 16:18:28 -0600427 irqchip_init();
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000428#endif
Kukjin Kimcc511b82011-12-27 08:18:36 +0100429
Thomas Abrahame873a472012-05-15 16:25:23 +0900430 if (!of_have_populated_dt())
431 combiner_init(S5P_VA_COMBINER_BASE, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100432
433 /*
434 * The parameters of s5p_init_irq() are for VIC init.
435 * Theses parameters should be NULL and 0 because EXYNOS4
436 * uses GIC instead of VIC.
437 */
438 s5p_init_irq(NULL, 0);
439}
440
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900441void __init exynos5_init_irq(void)
442{
Tushar Behera6fff5a12012-04-24 13:25:01 -0700443#ifdef CONFIG_OF
Rob Herring0529e3152012-11-05 16:18:28 -0600444 irqchip_init();
Tushar Behera6fff5a12012-04-24 13:25:01 -0700445#endif
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900446 /*
447 * The parameters of s5p_init_irq() are for VIC init.
448 * Theses parameters should be NULL and 0 because EXYNOS4
449 * uses GIC instead of VIC.
450 */
Kukjin Kim12fee192012-12-06 15:31:10 +0900451 if (!of_machine_is_compatible("samsung,exynos5440"))
452 s5p_init_irq(NULL, 0);
Inderpal Singh34455132012-11-22 14:46:21 +0900453
454 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900455}
456
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900457struct bus_type exynos_subsys = {
458 .name = "exynos-core",
459 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900460};
461
Linus Torvalds7affca32012-01-07 12:03:30 -0800462static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900463 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900464};
465
466static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100467{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900468 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100469}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900470core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100471
472#ifdef CONFIG_CACHE_L2X0
473static int __init exynos4_l2x0_cache_init(void)
474{
Il Hane1b19942012-04-05 07:59:36 -0700475 int ret;
476
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900477 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900478 return 0;
479
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800480 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
481 if (!ret) {
482 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
483 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
484 return 0;
485 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100486
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800487 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
488 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
489 /* TAG, Data Latency Control: 2 cycles */
490 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100491
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800492 if (soc_is_exynos4212() || soc_is_exynos4412())
493 l2x0_saved_regs.data_latency = 0x120;
494 else
495 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100496
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800497 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
498 l2x0_saved_regs.pwr_ctrl =
499 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100500
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800501 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100502
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800503 __raw_writel(l2x0_saved_regs.tag_latency,
504 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
505 __raw_writel(l2x0_saved_regs.data_latency,
506 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
507
508 /* L2X0 Prefetch Control */
509 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
510 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
511
512 /* L2X0 Power Control */
513 __raw_writel(l2x0_saved_regs.pwr_ctrl,
514 S5P_VA_L2CC + L2X0_POWER_CTRL);
515
516 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
517 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
518 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100519
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800520 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100521 return 0;
522}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100523early_initcall(exynos4_l2x0_cache_init);
524#endif
525
Kukjin Kim906c7892012-02-11 21:27:08 +0900526static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100527{
528 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900529
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900530 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100531}
532
Kukjin Kimcc511b82011-12-27 08:18:36 +0100533/* uart registration process */
534
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900535static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100536{
537 struct s3c2410_uartcfg *tcfg = cfg;
538 u32 ucnt;
539
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000540 for (ucnt = 0; ucnt < no; ucnt++, tcfg++)
541 tcfg->has_fracval = 1;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100542
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900543 s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100544}
545
Eunki Kim330c90a2012-03-14 01:43:31 -0700546static void __iomem *exynos_eint_base;
547
Kukjin Kimcc511b82011-12-27 08:18:36 +0100548static DEFINE_SPINLOCK(eint_lock);
549
550static unsigned int eint0_15_data[16];
551
Eunki Kim330c90a2012-03-14 01:43:31 -0700552static inline int exynos4_irq_to_gpio(unsigned int irq)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100553{
Eunki Kim330c90a2012-03-14 01:43:31 -0700554 if (irq < IRQ_EINT(0))
555 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100556
Eunki Kim330c90a2012-03-14 01:43:31 -0700557 irq -= IRQ_EINT(0);
558 if (irq < 8)
559 return EXYNOS4_GPX0(irq);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100560
Eunki Kim330c90a2012-03-14 01:43:31 -0700561 irq -= 8;
562 if (irq < 8)
563 return EXYNOS4_GPX1(irq);
564
565 irq -= 8;
566 if (irq < 8)
567 return EXYNOS4_GPX2(irq);
568
569 irq -= 8;
570 if (irq < 8)
571 return EXYNOS4_GPX3(irq);
572
573 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100574}
575
Eunki Kim330c90a2012-03-14 01:43:31 -0700576static inline int exynos5_irq_to_gpio(unsigned int irq)
577{
578 if (irq < IRQ_EINT(0))
579 return -EINVAL;
580
581 irq -= IRQ_EINT(0);
582 if (irq < 8)
583 return EXYNOS5_GPX0(irq);
584
585 irq -= 8;
586 if (irq < 8)
587 return EXYNOS5_GPX1(irq);
588
589 irq -= 8;
590 if (irq < 8)
591 return EXYNOS5_GPX2(irq);
592
593 irq -= 8;
594 if (irq < 8)
595 return EXYNOS5_GPX3(irq);
596
597 return -EINVAL;
598}
599
Kukjin Kimbb19a752012-01-25 13:48:11 +0900600static unsigned int exynos4_eint0_15_src_int[16] = {
601 EXYNOS4_IRQ_EINT0,
602 EXYNOS4_IRQ_EINT1,
603 EXYNOS4_IRQ_EINT2,
604 EXYNOS4_IRQ_EINT3,
605 EXYNOS4_IRQ_EINT4,
606 EXYNOS4_IRQ_EINT5,
607 EXYNOS4_IRQ_EINT6,
608 EXYNOS4_IRQ_EINT7,
609 EXYNOS4_IRQ_EINT8,
610 EXYNOS4_IRQ_EINT9,
611 EXYNOS4_IRQ_EINT10,
612 EXYNOS4_IRQ_EINT11,
613 EXYNOS4_IRQ_EINT12,
614 EXYNOS4_IRQ_EINT13,
615 EXYNOS4_IRQ_EINT14,
616 EXYNOS4_IRQ_EINT15,
617};
Kukjin Kimcc511b82011-12-27 08:18:36 +0100618
Kukjin Kimbb19a752012-01-25 13:48:11 +0900619static unsigned int exynos5_eint0_15_src_int[16] = {
620 EXYNOS5_IRQ_EINT0,
621 EXYNOS5_IRQ_EINT1,
622 EXYNOS5_IRQ_EINT2,
623 EXYNOS5_IRQ_EINT3,
624 EXYNOS5_IRQ_EINT4,
625 EXYNOS5_IRQ_EINT5,
626 EXYNOS5_IRQ_EINT6,
627 EXYNOS5_IRQ_EINT7,
628 EXYNOS5_IRQ_EINT8,
629 EXYNOS5_IRQ_EINT9,
630 EXYNOS5_IRQ_EINT10,
631 EXYNOS5_IRQ_EINT11,
632 EXYNOS5_IRQ_EINT12,
633 EXYNOS5_IRQ_EINT13,
634 EXYNOS5_IRQ_EINT14,
635 EXYNOS5_IRQ_EINT15,
636};
Eunki Kim330c90a2012-03-14 01:43:31 -0700637static inline void exynos_irq_eint_mask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100638{
639 u32 mask;
640
641 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700642 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
643 mask |= EINT_OFFSET_BIT(data->irq);
644 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100645 spin_unlock(&eint_lock);
646}
647
Eunki Kim330c90a2012-03-14 01:43:31 -0700648static void exynos_irq_eint_unmask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100649{
650 u32 mask;
651
652 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700653 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
654 mask &= ~(EINT_OFFSET_BIT(data->irq));
655 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100656 spin_unlock(&eint_lock);
657}
658
Eunki Kim330c90a2012-03-14 01:43:31 -0700659static inline void exynos_irq_eint_ack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100660{
Eunki Kim330c90a2012-03-14 01:43:31 -0700661 __raw_writel(EINT_OFFSET_BIT(data->irq),
662 EINT_PEND(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100663}
664
Eunki Kim330c90a2012-03-14 01:43:31 -0700665static void exynos_irq_eint_maskack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100666{
Eunki Kim330c90a2012-03-14 01:43:31 -0700667 exynos_irq_eint_mask(data);
668 exynos_irq_eint_ack(data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100669}
670
Eunki Kim330c90a2012-03-14 01:43:31 -0700671static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100672{
673 int offs = EINT_OFFSET(data->irq);
674 int shift;
675 u32 ctrl, mask;
676 u32 newvalue = 0;
677
678 switch (type) {
679 case IRQ_TYPE_EDGE_RISING:
680 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
681 break;
682
683 case IRQ_TYPE_EDGE_FALLING:
684 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
685 break;
686
687 case IRQ_TYPE_EDGE_BOTH:
688 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
689 break;
690
691 case IRQ_TYPE_LEVEL_LOW:
692 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
693 break;
694
695 case IRQ_TYPE_LEVEL_HIGH:
696 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
697 break;
698
699 default:
700 printk(KERN_ERR "No such irq type %d", type);
701 return -EINVAL;
702 }
703
704 shift = (offs & 0x7) * 4;
705 mask = 0x7 << shift;
706
707 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700708 ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100709 ctrl &= ~mask;
710 ctrl |= newvalue << shift;
Eunki Kim330c90a2012-03-14 01:43:31 -0700711 __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100712 spin_unlock(&eint_lock);
713
Eunki Kim330c90a2012-03-14 01:43:31 -0700714 if (soc_is_exynos5250())
715 s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
716 else
717 s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100718
719 return 0;
720}
721
Eunki Kim330c90a2012-03-14 01:43:31 -0700722static struct irq_chip exynos_irq_eint = {
723 .name = "exynos-eint",
724 .irq_mask = exynos_irq_eint_mask,
725 .irq_unmask = exynos_irq_eint_unmask,
726 .irq_mask_ack = exynos_irq_eint_maskack,
727 .irq_ack = exynos_irq_eint_ack,
728 .irq_set_type = exynos_irq_eint_set_type,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100729#ifdef CONFIG_PM
730 .irq_set_wake = s3c_irqext_wake,
731#endif
732};
733
734/*
735 * exynos4_irq_demux_eint
736 *
737 * This function demuxes the IRQ from from EINTs 16 to 31.
738 * It is designed to be inlined into the specific handler
739 * s5p_irq_demux_eintX_Y.
740 *
741 * Each EINT pend/mask registers handle eight of them.
742 */
Eunki Kim330c90a2012-03-14 01:43:31 -0700743static inline void exynos_irq_demux_eint(unsigned int start)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100744{
745 unsigned int irq;
746
Eunki Kim330c90a2012-03-14 01:43:31 -0700747 u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start));
748 u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100749
750 status &= ~mask;
751 status &= 0xff;
752
753 while (status) {
754 irq = fls(status) - 1;
755 generic_handle_irq(irq + start);
756 status &= ~(1 << irq);
757 }
758}
759
Eunki Kim330c90a2012-03-14 01:43:31 -0700760static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100761{
762 struct irq_chip *chip = irq_get_chip(irq);
763 chained_irq_enter(chip, desc);
Eunki Kim330c90a2012-03-14 01:43:31 -0700764 exynos_irq_demux_eint(IRQ_EINT(16));
765 exynos_irq_demux_eint(IRQ_EINT(24));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100766 chained_irq_exit(chip, desc);
767}
768
Kukjin Kimbb19a752012-01-25 13:48:11 +0900769static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100770{
771 u32 *irq_data = irq_get_handler_data(irq);
772 struct irq_chip *chip = irq_get_chip(irq);
773
774 chained_irq_enter(chip, desc);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100775 generic_handle_irq(*irq_data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100776 chained_irq_exit(chip, desc);
777}
778
Eunki Kim330c90a2012-03-14 01:43:31 -0700779static int __init exynos_init_irq_eint(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100780{
781 int irq;
782
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900783#ifdef CONFIG_PINCTRL_SAMSUNG
784 /*
785 * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf
786 * functionality along with support for external gpio and wakeup
787 * interrupts. If the samsung pinctrl driver is enabled and includes
788 * the wakeup interrupt support, then the setting up external wakeup
789 * interrupts here can be skipped. This check here is temporary to
790 * allow exynos4 platforms that do not use Samsung pinctrl driver to
791 * co-exist with platforms that do. When all of the Samsung Exynos4
792 * platforms switch over to using the pinctrl driver, the wakeup
793 * interrupt support code here can be completely removed.
794 */
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900795 static const struct of_device_id exynos_pinctrl_ids[] = {
Kukjin Kimb533c862013-01-02 16:05:42 -0800796 { .compatible = "samsung,exynos4210-pinctrl", },
797 { .compatible = "samsung,exynos4x12-pinctrl", },
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900798 };
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900799 struct device_node *pctrl_np, *wkup_np;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900800 const char *wkup_compat = "samsung,exynos4210-wakeup-eint";
801
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900802 for_each_matching_node(pctrl_np, exynos_pinctrl_ids) {
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900803 if (of_device_is_available(pctrl_np)) {
804 wkup_np = of_find_compatible_node(pctrl_np, NULL,
805 wkup_compat);
806 if (wkup_np)
807 return -ENODEV;
808 }
809 }
810#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900811 if (soc_is_exynos5440())
812 return 0;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900813
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900814 if (soc_is_exynos5250())
Eunki Kim330c90a2012-03-14 01:43:31 -0700815 exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K);
816 else
817 exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K);
818
819 if (exynos_eint_base == NULL) {
820 pr_err("unable to ioremap for EINT base address\n");
821 return -ENOMEM;
822 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900823
Kukjin Kimcc511b82011-12-27 08:18:36 +0100824 for (irq = 0 ; irq <= 31 ; irq++) {
Eunki Kim330c90a2012-03-14 01:43:31 -0700825 irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100826 handle_level_irq);
827 set_irq_flags(IRQ_EINT(irq), IRQF_VALID);
828 }
829
Eunki Kim330c90a2012-03-14 01:43:31 -0700830 irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100831
832 for (irq = 0 ; irq <= 15 ; irq++) {
833 eint0_15_data[irq] = IRQ_EINT(irq);
834
Kukjin Kimbb19a752012-01-25 13:48:11 +0900835 if (soc_is_exynos5250()) {
836 irq_set_handler_data(exynos5_eint0_15_src_int[irq],
837 &eint0_15_data[irq]);
838 irq_set_chained_handler(exynos5_eint0_15_src_int[irq],
839 exynos_irq_eint0_15);
840 } else {
841 irq_set_handler_data(exynos4_eint0_15_src_int[irq],
842 &eint0_15_data[irq]);
843 irq_set_chained_handler(exynos4_eint0_15_src_int[irq],
844 exynos_irq_eint0_15);
845 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100846 }
847
848 return 0;
849}
Eunki Kim330c90a2012-03-14 01:43:31 -0700850arch_initcall(exynos_init_irq_eint);