blob: e720352f85cb436edb3cbe5431dc561b67c434ea [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
122static struct map_desc exynos4_iodesc[] __initdata = {
123 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100124 .virtual = (unsigned long)S3C_VA_SYS,
125 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
126 .length = SZ_64K,
127 .type = MT_DEVICE,
128 }, {
129 .virtual = (unsigned long)S3C_VA_TIMER,
130 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
131 .length = SZ_16K,
132 .type = MT_DEVICE,
133 }, {
134 .virtual = (unsigned long)S3C_VA_WATCHDOG,
135 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
136 .length = SZ_4K,
137 .type = MT_DEVICE,
138 }, {
139 .virtual = (unsigned long)S5P_VA_SROMC,
140 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
141 .length = SZ_4K,
142 .type = MT_DEVICE,
143 }, {
144 .virtual = (unsigned long)S5P_VA_SYSTIMER,
145 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
146 .length = SZ_4K,
147 .type = MT_DEVICE,
148 }, {
149 .virtual = (unsigned long)S5P_VA_PMU,
150 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
151 .length = SZ_64K,
152 .type = MT_DEVICE,
153 }, {
154 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
155 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
156 .length = SZ_4K,
157 .type = MT_DEVICE,
158 }, {
159 .virtual = (unsigned long)S5P_VA_GIC_CPU,
160 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
161 .length = SZ_64K,
162 .type = MT_DEVICE,
163 }, {
164 .virtual = (unsigned long)S5P_VA_GIC_DIST,
165 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
166 .length = SZ_64K,
167 .type = MT_DEVICE,
168 }, {
169 .virtual = (unsigned long)S3C_VA_UART,
170 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
171 .length = SZ_512K,
172 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900173 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100174 .virtual = (unsigned long)S5P_VA_CMU,
175 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
176 .length = SZ_128K,
177 .type = MT_DEVICE,
178 }, {
179 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
180 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
181 .length = SZ_8K,
182 .type = MT_DEVICE,
183 }, {
184 .virtual = (unsigned long)S5P_VA_L2CC,
185 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
186 .length = SZ_4K,
187 .type = MT_DEVICE,
188 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100189 .virtual = (unsigned long)S5P_VA_DMC0,
190 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900191 .length = SZ_64K,
192 .type = MT_DEVICE,
193 }, {
194 .virtual = (unsigned long)S5P_VA_DMC1,
195 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
196 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100197 .type = MT_DEVICE,
198 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100199 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
200 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
201 .length = SZ_4K,
202 .type = MT_DEVICE,
203 },
204};
205
206static struct map_desc exynos4_iodesc0[] __initdata = {
207 {
208 .virtual = (unsigned long)S5P_VA_SYSRAM,
209 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
210 .length = SZ_4K,
211 .type = MT_DEVICE,
212 },
213};
214
215static struct map_desc exynos4_iodesc1[] __initdata = {
216 {
217 .virtual = (unsigned long)S5P_VA_SYSRAM,
218 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
219 .length = SZ_4K,
220 .type = MT_DEVICE,
221 },
222};
223
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900224static struct map_desc exynos5_iodesc[] __initdata = {
225 {
226 .virtual = (unsigned long)S3C_VA_SYS,
227 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
228 .length = SZ_64K,
229 .type = MT_DEVICE,
230 }, {
231 .virtual = (unsigned long)S3C_VA_TIMER,
232 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
233 .length = SZ_16K,
234 .type = MT_DEVICE,
235 }, {
236 .virtual = (unsigned long)S3C_VA_WATCHDOG,
237 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
238 .length = SZ_4K,
239 .type = MT_DEVICE,
240 }, {
241 .virtual = (unsigned long)S5P_VA_SROMC,
242 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
243 .length = SZ_4K,
244 .type = MT_DEVICE,
245 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900246 .virtual = (unsigned long)S5P_VA_SYSRAM,
247 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
248 .length = SZ_4K,
249 .type = MT_DEVICE,
250 }, {
251 .virtual = (unsigned long)S5P_VA_CMU,
252 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
253 .length = 144 * SZ_1K,
254 .type = MT_DEVICE,
255 }, {
256 .virtual = (unsigned long)S5P_VA_PMU,
257 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
258 .length = SZ_64K,
259 .type = MT_DEVICE,
260 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900261 .virtual = (unsigned long)S3C_VA_UART,
262 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
263 .length = SZ_512K,
264 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900265 },
266};
267
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900268static struct map_desc exynos5440_iodesc0[] __initdata = {
269 {
270 .virtual = (unsigned long)S3C_VA_UART,
271 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
272 .length = SZ_512K,
273 .type = MT_DEVICE,
274 },
275};
276
Russell King9eb48592012-01-03 11:56:53 +0100277void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100278{
279 __raw_writel(0x1, S5P_SWRESET);
280}
281
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900282void exynos5_restart(char mode, const char *cmd)
283{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800284 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900285 u32 val;
286 void __iomem *addr;
287
288 if (of_machine_is_compatible("samsung,exynos5250")) {
289 val = 0x1;
290 addr = EXYNOS_SWRESET;
291 } else if (of_machine_is_compatible("samsung,exynos5440")) {
Thomas Abraham60db7e52013-01-24 10:09:13 -0800292 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
293 addr = of_iomap(np, 0) + 0xcc;
294 val = (0xfff << 20) | (0x1 << 16);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900295 } else {
296 pr_err("%s: cannot support non-DT\n", __func__);
297 return;
298 }
299
300 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900301}
302
Shawn Guobb13fab2012-04-26 10:35:40 +0800303void __init exynos_init_late(void)
304{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900305 if (of_machine_is_compatible("samsung,exynos5440"))
306 /* to be supported later */
307 return;
308
Shawn Guobb13fab2012-04-26 10:35:40 +0800309 exynos_pm_late_initcall();
310}
311
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900312#ifdef CONFIG_OF
313int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
314 int depth, void *data)
315{
316 struct map_desc iodesc;
317 __be32 *reg;
318 unsigned long len;
319
320 if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
321 !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock"))
322 return 0;
323
324 reg = of_get_flat_dt_prop(node, "reg", &len);
325 if (reg == NULL || len != (sizeof(unsigned long) * 2))
326 return 0;
327
328 iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0]));
329 iodesc.length = be32_to_cpu(reg[1]) - 1;
330 iodesc.virtual = (unsigned long)S5P_VA_CHIPID;
331 iodesc.type = MT_DEVICE;
332 iotable_init(&iodesc, 1);
333 return 1;
334}
335#endif
336
Kukjin Kimcc511b82011-12-27 08:18:36 +0100337/*
338 * exynos_map_io
339 *
340 * register the standard cpu IO areas
341 */
342
343void __init exynos_init_io(struct map_desc *mach_desc, int size)
344{
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900345#ifdef CONFIG_OF
346 if (initial_boot_params)
347 of_scan_flat_dt(exynos_fdt_map_chipid, NULL);
348 else
Doug Anderson5b7897d2012-11-27 11:53:14 -0800349#endif
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900350 iotable_init(exynos_iodesc, ARRAY_SIZE(exynos_iodesc));
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900351
Kukjin Kimcc511b82011-12-27 08:18:36 +0100352 if (mach_desc)
353 iotable_init(mach_desc, size);
354
355 /* detect cpu id and rev. */
356 s5p_init_cpu(S5P_VA_CHIPID);
357
358 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
359}
360
Kukjin Kim906c7892012-02-11 21:27:08 +0900361static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100362{
363 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
364
365 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
366 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
367 else
368 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
369
370 /* initialize device information early */
371 exynos4_default_sdhci0();
372 exynos4_default_sdhci1();
373 exynos4_default_sdhci2();
374 exynos4_default_sdhci3();
375
376 s3c_adc_setname("samsung-adc-v3");
377
378 s3c_fimc_setname(0, "exynos4-fimc");
379 s3c_fimc_setname(1, "exynos4-fimc");
380 s3c_fimc_setname(2, "exynos4-fimc");
381 s3c_fimc_setname(3, "exynos4-fimc");
382
Thomas Abraham8482c812012-04-14 08:04:46 -0700383 s3c_sdhci_setname(0, "exynos4-sdhci");
384 s3c_sdhci_setname(1, "exynos4-sdhci");
385 s3c_sdhci_setname(2, "exynos4-sdhci");
386 s3c_sdhci_setname(3, "exynos4-sdhci");
387
Kukjin Kimcc511b82011-12-27 08:18:36 +0100388 /* The I2C bus controllers are directly compatible with s3c2440 */
389 s3c_i2c0_setname("s3c2440-i2c");
390 s3c_i2c1_setname("s3c2440-i2c");
391 s3c_i2c2_setname("s3c2440-i2c");
392
393 s5p_fb_setname(0, "exynos4-fb");
394 s5p_hdmi_setname("exynos4-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900395
396 s3c64xx_spi_setname("exynos4210-spi");
Kukjin Kimcc511b82011-12-27 08:18:36 +0100397}
398
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900399static void __init exynos5_map_io(void)
400{
401 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900402}
403
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900404static void __init exynos5440_map_io(void)
405{
406 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
407}
408
Thomas Abraham6923ae42013-03-09 17:03:29 +0900409void __init exynos_init_time(void)
410{
411 if (of_have_populated_dt()) {
412#ifdef CONFIG_OF
413 of_clk_init(NULL);
414 clocksource_of_init();
415#endif
416 } else {
417 /* todo: remove after migrating legacy E4 platforms to dt */
Thomas Abraham296f3f22013-04-05 15:17:47 +0900418#ifdef CONFIG_ARCH_EXYNOS4
Thomas Abraham6923ae42013-03-09 17:03:29 +0900419 exynos4_clk_init(NULL);
Thomas Abraham92744272013-03-09 17:03:33 +0900420 exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f);
Thomas Abraham296f3f22013-04-05 15:17:47 +0900421#endif
Thomas Abraham6923ae42013-03-09 17:03:29 +0900422 mct_init();
423 }
424}
425
Kukjin Kimcc511b82011-12-27 08:18:36 +0100426void __init exynos4_init_irq(void)
427{
Arnd Bergmann40ba95f2012-01-07 11:51:28 +0000428 unsigned int gic_bank_offset;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100429
430 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
431
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000432 if (!of_have_populated_dt())
Grant Likely75294952012-02-14 14:06:57 -0700433 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 +0000434#ifdef CONFIG_OF
435 else
Rob Herring0529e3152012-11-05 16:18:28 -0600436 irqchip_init();
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000437#endif
Kukjin Kimcc511b82011-12-27 08:18:36 +0100438
Thomas Abrahame873a472012-05-15 16:25:23 +0900439 if (!of_have_populated_dt())
440 combiner_init(S5P_VA_COMBINER_BASE, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100441
442 /*
443 * The parameters of s5p_init_irq() are for VIC init.
444 * Theses parameters should be NULL and 0 because EXYNOS4
445 * uses GIC instead of VIC.
446 */
447 s5p_init_irq(NULL, 0);
448}
449
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900450void __init exynos5_init_irq(void)
451{
Tushar Behera6fff5a12012-04-24 13:25:01 -0700452#ifdef CONFIG_OF
Rob Herring0529e3152012-11-05 16:18:28 -0600453 irqchip_init();
Tushar Behera6fff5a12012-04-24 13:25:01 -0700454#endif
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900455 /*
456 * The parameters of s5p_init_irq() are for VIC init.
457 * Theses parameters should be NULL and 0 because EXYNOS4
458 * uses GIC instead of VIC.
459 */
Kukjin Kim12fee192012-12-06 15:31:10 +0900460 if (!of_machine_is_compatible("samsung,exynos5440"))
461 s5p_init_irq(NULL, 0);
Inderpal Singh34455132012-11-22 14:46:21 +0900462
463 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900464}
465
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900466struct bus_type exynos_subsys = {
467 .name = "exynos-core",
468 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900469};
470
Linus Torvalds7affca32012-01-07 12:03:30 -0800471static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900472 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900473};
474
475static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100476{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900477 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100478}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900479core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100480
481#ifdef CONFIG_CACHE_L2X0
482static int __init exynos4_l2x0_cache_init(void)
483{
Il Hane1b19942012-04-05 07:59:36 -0700484 int ret;
485
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900486 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900487 return 0;
488
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800489 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
490 if (!ret) {
491 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
492 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
493 return 0;
494 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100495
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800496 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
497 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
498 /* TAG, Data Latency Control: 2 cycles */
499 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100500
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800501 if (soc_is_exynos4212() || soc_is_exynos4412())
502 l2x0_saved_regs.data_latency = 0x120;
503 else
504 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100505
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800506 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
507 l2x0_saved_regs.pwr_ctrl =
508 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100509
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800510 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100511
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800512 __raw_writel(l2x0_saved_regs.tag_latency,
513 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
514 __raw_writel(l2x0_saved_regs.data_latency,
515 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
516
517 /* L2X0 Prefetch Control */
518 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
519 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
520
521 /* L2X0 Power Control */
522 __raw_writel(l2x0_saved_regs.pwr_ctrl,
523 S5P_VA_L2CC + L2X0_POWER_CTRL);
524
525 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
526 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
527 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100528
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800529 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100530 return 0;
531}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100532early_initcall(exynos4_l2x0_cache_init);
533#endif
534
Kukjin Kim906c7892012-02-11 21:27:08 +0900535static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100536{
537 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900538
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900539 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100540}
541
Kukjin Kimcc511b82011-12-27 08:18:36 +0100542/* uart registration process */
543
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900544static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100545{
546 struct s3c2410_uartcfg *tcfg = cfg;
547 u32 ucnt;
548
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000549 for (ucnt = 0; ucnt < no; ucnt++, tcfg++)
550 tcfg->has_fracval = 1;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100551
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900552 s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100553}
554
Eunki Kim330c90a2012-03-14 01:43:31 -0700555static void __iomem *exynos_eint_base;
556
Kukjin Kimcc511b82011-12-27 08:18:36 +0100557static DEFINE_SPINLOCK(eint_lock);
558
559static unsigned int eint0_15_data[16];
560
Eunki Kim330c90a2012-03-14 01:43:31 -0700561static inline int exynos4_irq_to_gpio(unsigned int irq)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100562{
Eunki Kim330c90a2012-03-14 01:43:31 -0700563 if (irq < IRQ_EINT(0))
564 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100565
Eunki Kim330c90a2012-03-14 01:43:31 -0700566 irq -= IRQ_EINT(0);
567 if (irq < 8)
568 return EXYNOS4_GPX0(irq);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100569
Eunki Kim330c90a2012-03-14 01:43:31 -0700570 irq -= 8;
571 if (irq < 8)
572 return EXYNOS4_GPX1(irq);
573
574 irq -= 8;
575 if (irq < 8)
576 return EXYNOS4_GPX2(irq);
577
578 irq -= 8;
579 if (irq < 8)
580 return EXYNOS4_GPX3(irq);
581
582 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100583}
584
Eunki Kim330c90a2012-03-14 01:43:31 -0700585static inline int exynos5_irq_to_gpio(unsigned int irq)
586{
587 if (irq < IRQ_EINT(0))
588 return -EINVAL;
589
590 irq -= IRQ_EINT(0);
591 if (irq < 8)
592 return EXYNOS5_GPX0(irq);
593
594 irq -= 8;
595 if (irq < 8)
596 return EXYNOS5_GPX1(irq);
597
598 irq -= 8;
599 if (irq < 8)
600 return EXYNOS5_GPX2(irq);
601
602 irq -= 8;
603 if (irq < 8)
604 return EXYNOS5_GPX3(irq);
605
606 return -EINVAL;
607}
608
Kukjin Kimbb19a752012-01-25 13:48:11 +0900609static unsigned int exynos4_eint0_15_src_int[16] = {
610 EXYNOS4_IRQ_EINT0,
611 EXYNOS4_IRQ_EINT1,
612 EXYNOS4_IRQ_EINT2,
613 EXYNOS4_IRQ_EINT3,
614 EXYNOS4_IRQ_EINT4,
615 EXYNOS4_IRQ_EINT5,
616 EXYNOS4_IRQ_EINT6,
617 EXYNOS4_IRQ_EINT7,
618 EXYNOS4_IRQ_EINT8,
619 EXYNOS4_IRQ_EINT9,
620 EXYNOS4_IRQ_EINT10,
621 EXYNOS4_IRQ_EINT11,
622 EXYNOS4_IRQ_EINT12,
623 EXYNOS4_IRQ_EINT13,
624 EXYNOS4_IRQ_EINT14,
625 EXYNOS4_IRQ_EINT15,
626};
Kukjin Kimcc511b82011-12-27 08:18:36 +0100627
Kukjin Kimbb19a752012-01-25 13:48:11 +0900628static unsigned int exynos5_eint0_15_src_int[16] = {
629 EXYNOS5_IRQ_EINT0,
630 EXYNOS5_IRQ_EINT1,
631 EXYNOS5_IRQ_EINT2,
632 EXYNOS5_IRQ_EINT3,
633 EXYNOS5_IRQ_EINT4,
634 EXYNOS5_IRQ_EINT5,
635 EXYNOS5_IRQ_EINT6,
636 EXYNOS5_IRQ_EINT7,
637 EXYNOS5_IRQ_EINT8,
638 EXYNOS5_IRQ_EINT9,
639 EXYNOS5_IRQ_EINT10,
640 EXYNOS5_IRQ_EINT11,
641 EXYNOS5_IRQ_EINT12,
642 EXYNOS5_IRQ_EINT13,
643 EXYNOS5_IRQ_EINT14,
644 EXYNOS5_IRQ_EINT15,
645};
Eunki Kim330c90a2012-03-14 01:43:31 -0700646static inline void exynos_irq_eint_mask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100647{
648 u32 mask;
649
650 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700651 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
652 mask |= EINT_OFFSET_BIT(data->irq);
653 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100654 spin_unlock(&eint_lock);
655}
656
Eunki Kim330c90a2012-03-14 01:43:31 -0700657static void exynos_irq_eint_unmask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100658{
659 u32 mask;
660
661 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700662 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
663 mask &= ~(EINT_OFFSET_BIT(data->irq));
664 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100665 spin_unlock(&eint_lock);
666}
667
Eunki Kim330c90a2012-03-14 01:43:31 -0700668static inline void exynos_irq_eint_ack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100669{
Eunki Kim330c90a2012-03-14 01:43:31 -0700670 __raw_writel(EINT_OFFSET_BIT(data->irq),
671 EINT_PEND(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100672}
673
Eunki Kim330c90a2012-03-14 01:43:31 -0700674static void exynos_irq_eint_maskack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100675{
Eunki Kim330c90a2012-03-14 01:43:31 -0700676 exynos_irq_eint_mask(data);
677 exynos_irq_eint_ack(data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100678}
679
Eunki Kim330c90a2012-03-14 01:43:31 -0700680static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100681{
682 int offs = EINT_OFFSET(data->irq);
683 int shift;
684 u32 ctrl, mask;
685 u32 newvalue = 0;
686
687 switch (type) {
688 case IRQ_TYPE_EDGE_RISING:
689 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
690 break;
691
692 case IRQ_TYPE_EDGE_FALLING:
693 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
694 break;
695
696 case IRQ_TYPE_EDGE_BOTH:
697 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
698 break;
699
700 case IRQ_TYPE_LEVEL_LOW:
701 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
702 break;
703
704 case IRQ_TYPE_LEVEL_HIGH:
705 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
706 break;
707
708 default:
709 printk(KERN_ERR "No such irq type %d", type);
710 return -EINVAL;
711 }
712
713 shift = (offs & 0x7) * 4;
714 mask = 0x7 << shift;
715
716 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700717 ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100718 ctrl &= ~mask;
719 ctrl |= newvalue << shift;
Eunki Kim330c90a2012-03-14 01:43:31 -0700720 __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100721 spin_unlock(&eint_lock);
722
Eunki Kim330c90a2012-03-14 01:43:31 -0700723 if (soc_is_exynos5250())
724 s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
725 else
726 s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100727
728 return 0;
729}
730
Eunki Kim330c90a2012-03-14 01:43:31 -0700731static struct irq_chip exynos_irq_eint = {
732 .name = "exynos-eint",
733 .irq_mask = exynos_irq_eint_mask,
734 .irq_unmask = exynos_irq_eint_unmask,
735 .irq_mask_ack = exynos_irq_eint_maskack,
736 .irq_ack = exynos_irq_eint_ack,
737 .irq_set_type = exynos_irq_eint_set_type,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100738#ifdef CONFIG_PM
739 .irq_set_wake = s3c_irqext_wake,
740#endif
741};
742
743/*
744 * exynos4_irq_demux_eint
745 *
746 * This function demuxes the IRQ from from EINTs 16 to 31.
747 * It is designed to be inlined into the specific handler
748 * s5p_irq_demux_eintX_Y.
749 *
750 * Each EINT pend/mask registers handle eight of them.
751 */
Eunki Kim330c90a2012-03-14 01:43:31 -0700752static inline void exynos_irq_demux_eint(unsigned int start)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100753{
754 unsigned int irq;
755
Eunki Kim330c90a2012-03-14 01:43:31 -0700756 u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start));
757 u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100758
759 status &= ~mask;
760 status &= 0xff;
761
762 while (status) {
763 irq = fls(status) - 1;
764 generic_handle_irq(irq + start);
765 status &= ~(1 << irq);
766 }
767}
768
Eunki Kim330c90a2012-03-14 01:43:31 -0700769static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100770{
771 struct irq_chip *chip = irq_get_chip(irq);
772 chained_irq_enter(chip, desc);
Eunki Kim330c90a2012-03-14 01:43:31 -0700773 exynos_irq_demux_eint(IRQ_EINT(16));
774 exynos_irq_demux_eint(IRQ_EINT(24));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100775 chained_irq_exit(chip, desc);
776}
777
Kukjin Kimbb19a752012-01-25 13:48:11 +0900778static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100779{
780 u32 *irq_data = irq_get_handler_data(irq);
781 struct irq_chip *chip = irq_get_chip(irq);
782
783 chained_irq_enter(chip, desc);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100784 generic_handle_irq(*irq_data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100785 chained_irq_exit(chip, desc);
786}
787
Eunki Kim330c90a2012-03-14 01:43:31 -0700788static int __init exynos_init_irq_eint(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100789{
790 int irq;
791
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900792#ifdef CONFIG_PINCTRL_SAMSUNG
793 /*
794 * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf
795 * functionality along with support for external gpio and wakeup
796 * interrupts. If the samsung pinctrl driver is enabled and includes
797 * the wakeup interrupt support, then the setting up external wakeup
798 * interrupts here can be skipped. This check here is temporary to
799 * allow exynos4 platforms that do not use Samsung pinctrl driver to
800 * co-exist with platforms that do. When all of the Samsung Exynos4
801 * platforms switch over to using the pinctrl driver, the wakeup
802 * interrupt support code here can be completely removed.
803 */
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900804 static const struct of_device_id exynos_pinctrl_ids[] = {
Kukjin Kimb533c862013-01-02 16:05:42 -0800805 { .compatible = "samsung,exynos4210-pinctrl", },
806 { .compatible = "samsung,exynos4x12-pinctrl", },
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900807 };
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900808 struct device_node *pctrl_np, *wkup_np;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900809 const char *wkup_compat = "samsung,exynos4210-wakeup-eint";
810
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900811 for_each_matching_node(pctrl_np, exynos_pinctrl_ids) {
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900812 if (of_device_is_available(pctrl_np)) {
813 wkup_np = of_find_compatible_node(pctrl_np, NULL,
814 wkup_compat);
815 if (wkup_np)
816 return -ENODEV;
817 }
818 }
819#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900820 if (soc_is_exynos5440())
821 return 0;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900822
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900823 if (soc_is_exynos5250())
Eunki Kim330c90a2012-03-14 01:43:31 -0700824 exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K);
825 else
826 exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K);
827
828 if (exynos_eint_base == NULL) {
829 pr_err("unable to ioremap for EINT base address\n");
830 return -ENOMEM;
831 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900832
Kukjin Kimcc511b82011-12-27 08:18:36 +0100833 for (irq = 0 ; irq <= 31 ; irq++) {
Eunki Kim330c90a2012-03-14 01:43:31 -0700834 irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100835 handle_level_irq);
836 set_irq_flags(IRQ_EINT(irq), IRQF_VALID);
837 }
838
Eunki Kim330c90a2012-03-14 01:43:31 -0700839 irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100840
841 for (irq = 0 ; irq <= 15 ; irq++) {
842 eint0_15_data[irq] = IRQ_EINT(irq);
843
Kukjin Kimbb19a752012-01-25 13:48:11 +0900844 if (soc_is_exynos5250()) {
845 irq_set_handler_data(exynos5_eint0_15_src_int[irq],
846 &eint0_15_data[irq]);
847 irq_set_chained_handler(exynos5_eint0_15_src_int[irq],
848 exynos_irq_eint0_15);
849 } else {
850 irq_set_handler_data(exynos4_eint0_15_src_int[irq],
851 &eint0_15_data[irq]);
852 irq_set_chained_handler(exynos4_eint0_15_src_int[irq],
853 exynos_irq_eint0_15);
854 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100855 }
856
857 return 0;
858}
Eunki Kim330c90a2012-03-14 01:43:31 -0700859arch_initcall(exynos_init_irq_eint);