blob: 7bc0f9aa8b331cb8ec072639b5e7ef9d7141b05e [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>
Rob Herring520f7bd2012-12-27 13:10:24 -060028#include <linux/irqchip/arm-gic.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000029#include <linux/irqchip/chained_irq.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010030
31#include <asm/proc-fns.h>
Arnd Bergmann40ba95f2012-01-07 11:51:28 +000032#include <asm/exception.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010033#include <asm/hardware/cache-l2x0.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010034#include <asm/mach/map.h>
35#include <asm/mach/irq.h>
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -080036#include <asm/cacheflush.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010037
38#include <mach/regs-irq.h>
39#include <mach/regs-pmu.h>
40#include <mach/regs-gpio.h>
41
42#include <plat/cpu.h>
43#include <plat/clock.h>
44#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);
Kukjin Kim906c7892012-02-11 21:27:08 +090069static void exynos4_init_clocks(int xtal);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090070static void exynos5_init_clocks(int xtal);
Thomas Abraham55b6ef72012-10-29 19:46:49 +090071static void exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no);
Kukjin Kim906c7892012-02-11 21:27:08 +090072static int exynos_init(void);
Kukjin Kimcc511b82011-12-27 08:18:36 +010073
74static struct cpu_table cpu_ids[] __initdata = {
75 {
76 .idcode = EXYNOS4210_CPU_ID,
77 .idmask = EXYNOS4_CPU_MASK,
78 .map_io = exynos4_map_io,
79 .init_clocks = exynos4_init_clocks,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090080 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010081 .init = exynos_init,
82 .name = name_exynos4210,
83 }, {
84 .idcode = EXYNOS4212_CPU_ID,
85 .idmask = EXYNOS4_CPU_MASK,
86 .map_io = exynos4_map_io,
87 .init_clocks = exynos4_init_clocks,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090088 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010089 .init = exynos_init,
90 .name = name_exynos4212,
91 }, {
92 .idcode = EXYNOS4412_CPU_ID,
93 .idmask = EXYNOS4_CPU_MASK,
94 .map_io = exynos4_map_io,
95 .init_clocks = exynos4_init_clocks,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090096 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010097 .init = exynos_init,
98 .name = name_exynos4412,
Kukjin Kim94c7ca72012-02-11 22:15:45 +090099 }, {
100 .idcode = EXYNOS5250_SOC_ID,
101 .idmask = EXYNOS5_SOC_MASK,
102 .map_io = exynos5_map_io,
103 .init_clocks = exynos5_init_clocks,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900104 .init = exynos_init,
105 .name = name_exynos5250,
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900106 }, {
107 .idcode = EXYNOS5440_SOC_ID,
108 .idmask = EXYNOS5_SOC_MASK,
109 .map_io = exynos5440_map_io,
110 .init = exynos_init,
111 .name = name_exynos5440,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100112 },
113};
114
115/* Initial IO mappings */
116
117static struct map_desc exynos_iodesc[] __initdata = {
118 {
119 .virtual = (unsigned long)S5P_VA_CHIPID,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900120 .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID),
Kukjin Kimcc511b82011-12-27 08:18:36 +0100121 .length = SZ_4K,
122 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900123 },
124};
125
Doug Anderson5b7897d2012-11-27 11:53:14 -0800126#ifdef CONFIG_ARCH_EXYNOS5
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900127static struct map_desc exynos5440_iodesc[] __initdata = {
128 {
129 .virtual = (unsigned long)S5P_VA_CHIPID,
130 .pfn = __phys_to_pfn(EXYNOS5440_PA_CHIPID),
131 .length = SZ_4K,
132 .type = MT_DEVICE,
133 },
134};
Doug Anderson5b7897d2012-11-27 11:53:14 -0800135#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900136
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900137static struct map_desc exynos4_iodesc[] __initdata = {
138 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100139 .virtual = (unsigned long)S3C_VA_SYS,
140 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
141 .length = SZ_64K,
142 .type = MT_DEVICE,
143 }, {
144 .virtual = (unsigned long)S3C_VA_TIMER,
145 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
146 .length = SZ_16K,
147 .type = MT_DEVICE,
148 }, {
149 .virtual = (unsigned long)S3C_VA_WATCHDOG,
150 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
151 .length = SZ_4K,
152 .type = MT_DEVICE,
153 }, {
154 .virtual = (unsigned long)S5P_VA_SROMC,
155 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
156 .length = SZ_4K,
157 .type = MT_DEVICE,
158 }, {
159 .virtual = (unsigned long)S5P_VA_SYSTIMER,
160 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
161 .length = SZ_4K,
162 .type = MT_DEVICE,
163 }, {
164 .virtual = (unsigned long)S5P_VA_PMU,
165 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
166 .length = SZ_64K,
167 .type = MT_DEVICE,
168 }, {
169 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
170 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
171 .length = SZ_4K,
172 .type = MT_DEVICE,
173 }, {
174 .virtual = (unsigned long)S5P_VA_GIC_CPU,
175 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
176 .length = SZ_64K,
177 .type = MT_DEVICE,
178 }, {
179 .virtual = (unsigned long)S5P_VA_GIC_DIST,
180 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
181 .length = SZ_64K,
182 .type = MT_DEVICE,
183 }, {
184 .virtual = (unsigned long)S3C_VA_UART,
185 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
186 .length = SZ_512K,
187 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900188 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100189 .virtual = (unsigned long)S5P_VA_CMU,
190 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
191 .length = SZ_128K,
192 .type = MT_DEVICE,
193 }, {
194 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
195 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
196 .length = SZ_8K,
197 .type = MT_DEVICE,
198 }, {
199 .virtual = (unsigned long)S5P_VA_L2CC,
200 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
201 .length = SZ_4K,
202 .type = MT_DEVICE,
203 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100204 .virtual = (unsigned long)S5P_VA_DMC0,
205 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900206 .length = SZ_64K,
207 .type = MT_DEVICE,
208 }, {
209 .virtual = (unsigned long)S5P_VA_DMC1,
210 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
211 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100212 .type = MT_DEVICE,
213 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100214 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
215 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
216 .length = SZ_4K,
217 .type = MT_DEVICE,
218 },
219};
220
221static struct map_desc exynos4_iodesc0[] __initdata = {
222 {
223 .virtual = (unsigned long)S5P_VA_SYSRAM,
224 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
225 .length = SZ_4K,
226 .type = MT_DEVICE,
227 },
228};
229
230static struct map_desc exynos4_iodesc1[] __initdata = {
231 {
232 .virtual = (unsigned long)S5P_VA_SYSRAM,
233 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
234 .length = SZ_4K,
235 .type = MT_DEVICE,
236 },
237};
238
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900239static struct map_desc exynos5_iodesc[] __initdata = {
240 {
241 .virtual = (unsigned long)S3C_VA_SYS,
242 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
243 .length = SZ_64K,
244 .type = MT_DEVICE,
245 }, {
246 .virtual = (unsigned long)S3C_VA_TIMER,
247 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
248 .length = SZ_16K,
249 .type = MT_DEVICE,
250 }, {
251 .virtual = (unsigned long)S3C_VA_WATCHDOG,
252 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
253 .length = SZ_4K,
254 .type = MT_DEVICE,
255 }, {
256 .virtual = (unsigned long)S5P_VA_SROMC,
257 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
258 .length = SZ_4K,
259 .type = MT_DEVICE,
260 }, {
261 .virtual = (unsigned long)S5P_VA_SYSTIMER,
262 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSTIMER),
263 .length = SZ_4K,
264 .type = MT_DEVICE,
265 }, {
266 .virtual = (unsigned long)S5P_VA_SYSRAM,
267 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
268 .length = SZ_4K,
269 .type = MT_DEVICE,
270 }, {
271 .virtual = (unsigned long)S5P_VA_CMU,
272 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
273 .length = 144 * SZ_1K,
274 .type = MT_DEVICE,
275 }, {
276 .virtual = (unsigned long)S5P_VA_PMU,
277 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
278 .length = SZ_64K,
279 .type = MT_DEVICE,
280 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900281 .virtual = (unsigned long)S3C_VA_UART,
282 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
283 .length = SZ_512K,
284 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900285 },
286};
287
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900288static struct map_desc exynos5440_iodesc0[] __initdata = {
289 {
290 .virtual = (unsigned long)S3C_VA_UART,
291 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
292 .length = SZ_512K,
293 .type = MT_DEVICE,
294 },
295};
296
Russell King9eb48592012-01-03 11:56:53 +0100297void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100298{
299 __raw_writel(0x1, S5P_SWRESET);
300}
301
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900302void exynos5_restart(char mode, const char *cmd)
303{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800304 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900305 u32 val;
306 void __iomem *addr;
307
308 if (of_machine_is_compatible("samsung,exynos5250")) {
309 val = 0x1;
310 addr = EXYNOS_SWRESET;
311 } else if (of_machine_is_compatible("samsung,exynos5440")) {
Thomas Abraham60db7e52013-01-24 10:09:13 -0800312 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
313 addr = of_iomap(np, 0) + 0xcc;
314 val = (0xfff << 20) | (0x1 << 16);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900315 } else {
316 pr_err("%s: cannot support non-DT\n", __func__);
317 return;
318 }
319
320 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900321}
322
Shawn Guobb13fab2012-04-26 10:35:40 +0800323void __init exynos_init_late(void)
324{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900325 if (of_machine_is_compatible("samsung,exynos5440"))
326 /* to be supported later */
327 return;
328
Shawn Guobb13fab2012-04-26 10:35:40 +0800329 exynos_pm_late_initcall();
330}
331
Kukjin Kimcc511b82011-12-27 08:18:36 +0100332/*
333 * exynos_map_io
334 *
335 * register the standard cpu IO areas
336 */
337
338void __init exynos_init_io(struct map_desc *mach_desc, int size)
339{
Doug Anderson5b7897d2012-11-27 11:53:14 -0800340 struct map_desc *iodesc = exynos_iodesc;
341 int iodesc_sz = ARRAY_SIZE(exynos_iodesc);
342#if defined(CONFIG_OF) && defined(CONFIG_ARCH_EXYNOS5)
343 unsigned long root = of_get_flat_dt_root();
344
Kukjin Kimcc511b82011-12-27 08:18:36 +0100345 /* initialize the io descriptors we need for initialization */
Doug Anderson5b7897d2012-11-27 11:53:14 -0800346 if (of_flat_dt_is_compatible(root, "samsung,exynos5440")) {
347 iodesc = exynos5440_iodesc;
348 iodesc_sz = ARRAY_SIZE(exynos5440_iodesc);
349 }
350#endif
351
352 iotable_init(iodesc, iodesc_sz);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900353
Kukjin Kimcc511b82011-12-27 08:18:36 +0100354 if (mach_desc)
355 iotable_init(mach_desc, size);
356
357 /* detect cpu id and rev. */
358 s5p_init_cpu(S5P_VA_CHIPID);
359
360 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
361}
362
Kukjin Kim906c7892012-02-11 21:27:08 +0900363static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100364{
365 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
366
367 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
368 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
369 else
370 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
371
372 /* initialize device information early */
373 exynos4_default_sdhci0();
374 exynos4_default_sdhci1();
375 exynos4_default_sdhci2();
376 exynos4_default_sdhci3();
377
378 s3c_adc_setname("samsung-adc-v3");
379
380 s3c_fimc_setname(0, "exynos4-fimc");
381 s3c_fimc_setname(1, "exynos4-fimc");
382 s3c_fimc_setname(2, "exynos4-fimc");
383 s3c_fimc_setname(3, "exynos4-fimc");
384
Thomas Abraham8482c812012-04-14 08:04:46 -0700385 s3c_sdhci_setname(0, "exynos4-sdhci");
386 s3c_sdhci_setname(1, "exynos4-sdhci");
387 s3c_sdhci_setname(2, "exynos4-sdhci");
388 s3c_sdhci_setname(3, "exynos4-sdhci");
389
Kukjin Kimcc511b82011-12-27 08:18:36 +0100390 /* The I2C bus controllers are directly compatible with s3c2440 */
391 s3c_i2c0_setname("s3c2440-i2c");
392 s3c_i2c1_setname("s3c2440-i2c");
393 s3c_i2c2_setname("s3c2440-i2c");
394
395 s5p_fb_setname(0, "exynos4-fb");
396 s5p_hdmi_setname("exynos4-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900397
398 s3c64xx_spi_setname("exynos4210-spi");
Kukjin Kimcc511b82011-12-27 08:18:36 +0100399}
400
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900401static void __init exynos5_map_io(void)
402{
403 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900404}
405
Kukjin Kim906c7892012-02-11 21:27:08 +0900406static void __init exynos4_init_clocks(int xtal)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100407{
408 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
409
410 s3c24xx_register_baseclocks(xtal);
411 s5p_register_clocks(xtal);
412
413 if (soc_is_exynos4210())
414 exynos4210_register_clocks();
415 else if (soc_is_exynos4212() || soc_is_exynos4412())
416 exynos4212_register_clocks();
417
418 exynos4_register_clocks();
419 exynos4_setup_clocks();
420}
421
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900422static void __init exynos5440_map_io(void)
423{
424 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
425}
426
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900427static void __init exynos5_init_clocks(int xtal)
428{
429 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
430
Kukjin Kim61bcbc22013-01-05 08:32:55 -0800431 /* EXYNOS5440 can support only common clock framework */
432
433 if (soc_is_exynos5440())
434 return;
435
436#ifdef CONFIG_SOC_EXYNOS5250
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900437 s3c24xx_register_baseclocks(xtal);
438 s5p_register_clocks(xtal);
439
440 exynos5_register_clocks();
441 exynos5_setup_clocks();
Kukjin Kim61bcbc22013-01-05 08:32:55 -0800442#endif
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900443}
444
Kukjin Kimcc511b82011-12-27 08:18:36 +0100445void __init exynos4_init_irq(void)
446{
Arnd Bergmann40ba95f2012-01-07 11:51:28 +0000447 unsigned int gic_bank_offset;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100448
449 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
450
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000451 if (!of_have_populated_dt())
Grant Likely75294952012-02-14 14:06:57 -0700452 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 +0000453#ifdef CONFIG_OF
454 else
Rob Herring0529e3152012-11-05 16:18:28 -0600455 irqchip_init();
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000456#endif
Kukjin Kimcc511b82011-12-27 08:18:36 +0100457
Thomas Abrahame873a472012-05-15 16:25:23 +0900458 if (!of_have_populated_dt())
459 combiner_init(S5P_VA_COMBINER_BASE, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100460
461 /*
462 * The parameters of s5p_init_irq() are for VIC init.
463 * Theses parameters should be NULL and 0 because EXYNOS4
464 * uses GIC instead of VIC.
465 */
466 s5p_init_irq(NULL, 0);
467}
468
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900469void __init exynos5_init_irq(void)
470{
Tushar Behera6fff5a12012-04-24 13:25:01 -0700471#ifdef CONFIG_OF
Rob Herring0529e3152012-11-05 16:18:28 -0600472 irqchip_init();
Tushar Behera6fff5a12012-04-24 13:25:01 -0700473#endif
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900474 /*
475 * The parameters of s5p_init_irq() are for VIC init.
476 * Theses parameters should be NULL and 0 because EXYNOS4
477 * uses GIC instead of VIC.
478 */
Kukjin Kim12fee192012-12-06 15:31:10 +0900479 if (!of_machine_is_compatible("samsung,exynos5440"))
480 s5p_init_irq(NULL, 0);
Inderpal Singh34455132012-11-22 14:46:21 +0900481
482 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900483}
484
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900485struct bus_type exynos_subsys = {
486 .name = "exynos-core",
487 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900488};
489
Linus Torvalds7affca32012-01-07 12:03:30 -0800490static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900491 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900492};
493
494static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100495{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900496 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100497}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900498core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100499
500#ifdef CONFIG_CACHE_L2X0
501static int __init exynos4_l2x0_cache_init(void)
502{
Il Hane1b19942012-04-05 07:59:36 -0700503 int ret;
504
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900505 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900506 return 0;
507
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800508 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
509 if (!ret) {
510 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
511 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
512 return 0;
513 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100514
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800515 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
516 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
517 /* TAG, Data Latency Control: 2 cycles */
518 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100519
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800520 if (soc_is_exynos4212() || soc_is_exynos4412())
521 l2x0_saved_regs.data_latency = 0x120;
522 else
523 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100524
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800525 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
526 l2x0_saved_regs.pwr_ctrl =
527 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100528
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800529 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100530
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800531 __raw_writel(l2x0_saved_regs.tag_latency,
532 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
533 __raw_writel(l2x0_saved_regs.data_latency,
534 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
535
536 /* L2X0 Prefetch Control */
537 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
538 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
539
540 /* L2X0 Power Control */
541 __raw_writel(l2x0_saved_regs.pwr_ctrl,
542 S5P_VA_L2CC + L2X0_POWER_CTRL);
543
544 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
545 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
546 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100547
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800548 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100549 return 0;
550}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100551early_initcall(exynos4_l2x0_cache_init);
552#endif
553
Kukjin Kim906c7892012-02-11 21:27:08 +0900554static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100555{
556 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900557
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900558 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100559}
560
Kukjin Kimcc511b82011-12-27 08:18:36 +0100561/* uart registration process */
562
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900563static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100564{
565 struct s3c2410_uartcfg *tcfg = cfg;
566 u32 ucnt;
567
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000568 for (ucnt = 0; ucnt < no; ucnt++, tcfg++)
569 tcfg->has_fracval = 1;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100570
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900571 s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100572}
573
Eunki Kim330c90a2012-03-14 01:43:31 -0700574static void __iomem *exynos_eint_base;
575
Kukjin Kimcc511b82011-12-27 08:18:36 +0100576static DEFINE_SPINLOCK(eint_lock);
577
578static unsigned int eint0_15_data[16];
579
Eunki Kim330c90a2012-03-14 01:43:31 -0700580static inline int exynos4_irq_to_gpio(unsigned int irq)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100581{
Eunki Kim330c90a2012-03-14 01:43:31 -0700582 if (irq < IRQ_EINT(0))
583 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100584
Eunki Kim330c90a2012-03-14 01:43:31 -0700585 irq -= IRQ_EINT(0);
586 if (irq < 8)
587 return EXYNOS4_GPX0(irq);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100588
Eunki Kim330c90a2012-03-14 01:43:31 -0700589 irq -= 8;
590 if (irq < 8)
591 return EXYNOS4_GPX1(irq);
592
593 irq -= 8;
594 if (irq < 8)
595 return EXYNOS4_GPX2(irq);
596
597 irq -= 8;
598 if (irq < 8)
599 return EXYNOS4_GPX3(irq);
600
601 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100602}
603
Eunki Kim330c90a2012-03-14 01:43:31 -0700604static inline int exynos5_irq_to_gpio(unsigned int irq)
605{
606 if (irq < IRQ_EINT(0))
607 return -EINVAL;
608
609 irq -= IRQ_EINT(0);
610 if (irq < 8)
611 return EXYNOS5_GPX0(irq);
612
613 irq -= 8;
614 if (irq < 8)
615 return EXYNOS5_GPX1(irq);
616
617 irq -= 8;
618 if (irq < 8)
619 return EXYNOS5_GPX2(irq);
620
621 irq -= 8;
622 if (irq < 8)
623 return EXYNOS5_GPX3(irq);
624
625 return -EINVAL;
626}
627
Kukjin Kimbb19a752012-01-25 13:48:11 +0900628static unsigned int exynos4_eint0_15_src_int[16] = {
629 EXYNOS4_IRQ_EINT0,
630 EXYNOS4_IRQ_EINT1,
631 EXYNOS4_IRQ_EINT2,
632 EXYNOS4_IRQ_EINT3,
633 EXYNOS4_IRQ_EINT4,
634 EXYNOS4_IRQ_EINT5,
635 EXYNOS4_IRQ_EINT6,
636 EXYNOS4_IRQ_EINT7,
637 EXYNOS4_IRQ_EINT8,
638 EXYNOS4_IRQ_EINT9,
639 EXYNOS4_IRQ_EINT10,
640 EXYNOS4_IRQ_EINT11,
641 EXYNOS4_IRQ_EINT12,
642 EXYNOS4_IRQ_EINT13,
643 EXYNOS4_IRQ_EINT14,
644 EXYNOS4_IRQ_EINT15,
645};
Kukjin Kimcc511b82011-12-27 08:18:36 +0100646
Kukjin Kimbb19a752012-01-25 13:48:11 +0900647static unsigned int exynos5_eint0_15_src_int[16] = {
648 EXYNOS5_IRQ_EINT0,
649 EXYNOS5_IRQ_EINT1,
650 EXYNOS5_IRQ_EINT2,
651 EXYNOS5_IRQ_EINT3,
652 EXYNOS5_IRQ_EINT4,
653 EXYNOS5_IRQ_EINT5,
654 EXYNOS5_IRQ_EINT6,
655 EXYNOS5_IRQ_EINT7,
656 EXYNOS5_IRQ_EINT8,
657 EXYNOS5_IRQ_EINT9,
658 EXYNOS5_IRQ_EINT10,
659 EXYNOS5_IRQ_EINT11,
660 EXYNOS5_IRQ_EINT12,
661 EXYNOS5_IRQ_EINT13,
662 EXYNOS5_IRQ_EINT14,
663 EXYNOS5_IRQ_EINT15,
664};
Eunki Kim330c90a2012-03-14 01:43:31 -0700665static inline void exynos_irq_eint_mask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100666{
667 u32 mask;
668
669 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700670 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
671 mask |= EINT_OFFSET_BIT(data->irq);
672 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100673 spin_unlock(&eint_lock);
674}
675
Eunki Kim330c90a2012-03-14 01:43:31 -0700676static void exynos_irq_eint_unmask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100677{
678 u32 mask;
679
680 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700681 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
682 mask &= ~(EINT_OFFSET_BIT(data->irq));
683 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100684 spin_unlock(&eint_lock);
685}
686
Eunki Kim330c90a2012-03-14 01:43:31 -0700687static inline void exynos_irq_eint_ack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100688{
Eunki Kim330c90a2012-03-14 01:43:31 -0700689 __raw_writel(EINT_OFFSET_BIT(data->irq),
690 EINT_PEND(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100691}
692
Eunki Kim330c90a2012-03-14 01:43:31 -0700693static void exynos_irq_eint_maskack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100694{
Eunki Kim330c90a2012-03-14 01:43:31 -0700695 exynos_irq_eint_mask(data);
696 exynos_irq_eint_ack(data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100697}
698
Eunki Kim330c90a2012-03-14 01:43:31 -0700699static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100700{
701 int offs = EINT_OFFSET(data->irq);
702 int shift;
703 u32 ctrl, mask;
704 u32 newvalue = 0;
705
706 switch (type) {
707 case IRQ_TYPE_EDGE_RISING:
708 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
709 break;
710
711 case IRQ_TYPE_EDGE_FALLING:
712 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
713 break;
714
715 case IRQ_TYPE_EDGE_BOTH:
716 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
717 break;
718
719 case IRQ_TYPE_LEVEL_LOW:
720 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
721 break;
722
723 case IRQ_TYPE_LEVEL_HIGH:
724 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
725 break;
726
727 default:
728 printk(KERN_ERR "No such irq type %d", type);
729 return -EINVAL;
730 }
731
732 shift = (offs & 0x7) * 4;
733 mask = 0x7 << shift;
734
735 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700736 ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100737 ctrl &= ~mask;
738 ctrl |= newvalue << shift;
Eunki Kim330c90a2012-03-14 01:43:31 -0700739 __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100740 spin_unlock(&eint_lock);
741
Eunki Kim330c90a2012-03-14 01:43:31 -0700742 if (soc_is_exynos5250())
743 s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
744 else
745 s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100746
747 return 0;
748}
749
Eunki Kim330c90a2012-03-14 01:43:31 -0700750static struct irq_chip exynos_irq_eint = {
751 .name = "exynos-eint",
752 .irq_mask = exynos_irq_eint_mask,
753 .irq_unmask = exynos_irq_eint_unmask,
754 .irq_mask_ack = exynos_irq_eint_maskack,
755 .irq_ack = exynos_irq_eint_ack,
756 .irq_set_type = exynos_irq_eint_set_type,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100757#ifdef CONFIG_PM
758 .irq_set_wake = s3c_irqext_wake,
759#endif
760};
761
762/*
763 * exynos4_irq_demux_eint
764 *
765 * This function demuxes the IRQ from from EINTs 16 to 31.
766 * It is designed to be inlined into the specific handler
767 * s5p_irq_demux_eintX_Y.
768 *
769 * Each EINT pend/mask registers handle eight of them.
770 */
Eunki Kim330c90a2012-03-14 01:43:31 -0700771static inline void exynos_irq_demux_eint(unsigned int start)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100772{
773 unsigned int irq;
774
Eunki Kim330c90a2012-03-14 01:43:31 -0700775 u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start));
776 u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100777
778 status &= ~mask;
779 status &= 0xff;
780
781 while (status) {
782 irq = fls(status) - 1;
783 generic_handle_irq(irq + start);
784 status &= ~(1 << irq);
785 }
786}
787
Eunki Kim330c90a2012-03-14 01:43:31 -0700788static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100789{
790 struct irq_chip *chip = irq_get_chip(irq);
791 chained_irq_enter(chip, desc);
Eunki Kim330c90a2012-03-14 01:43:31 -0700792 exynos_irq_demux_eint(IRQ_EINT(16));
793 exynos_irq_demux_eint(IRQ_EINT(24));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100794 chained_irq_exit(chip, desc);
795}
796
Kukjin Kimbb19a752012-01-25 13:48:11 +0900797static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100798{
799 u32 *irq_data = irq_get_handler_data(irq);
800 struct irq_chip *chip = irq_get_chip(irq);
801
802 chained_irq_enter(chip, desc);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100803 generic_handle_irq(*irq_data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100804 chained_irq_exit(chip, desc);
805}
806
Eunki Kim330c90a2012-03-14 01:43:31 -0700807static int __init exynos_init_irq_eint(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100808{
809 int irq;
810
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900811#ifdef CONFIG_PINCTRL_SAMSUNG
812 /*
813 * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf
814 * functionality along with support for external gpio and wakeup
815 * interrupts. If the samsung pinctrl driver is enabled and includes
816 * the wakeup interrupt support, then the setting up external wakeup
817 * interrupts here can be skipped. This check here is temporary to
818 * allow exynos4 platforms that do not use Samsung pinctrl driver to
819 * co-exist with platforms that do. When all of the Samsung Exynos4
820 * platforms switch over to using the pinctrl driver, the wakeup
821 * interrupt support code here can be completely removed.
822 */
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900823 static const struct of_device_id exynos_pinctrl_ids[] = {
Kukjin Kimb533c862013-01-02 16:05:42 -0800824 { .compatible = "samsung,exynos4210-pinctrl", },
825 { .compatible = "samsung,exynos4x12-pinctrl", },
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900826 };
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900827 struct device_node *pctrl_np, *wkup_np;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900828 const char *wkup_compat = "samsung,exynos4210-wakeup-eint";
829
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900830 for_each_matching_node(pctrl_np, exynos_pinctrl_ids) {
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900831 if (of_device_is_available(pctrl_np)) {
832 wkup_np = of_find_compatible_node(pctrl_np, NULL,
833 wkup_compat);
834 if (wkup_np)
835 return -ENODEV;
836 }
837 }
838#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900839 if (soc_is_exynos5440())
840 return 0;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900841
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900842 if (soc_is_exynos5250())
Eunki Kim330c90a2012-03-14 01:43:31 -0700843 exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K);
844 else
845 exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K);
846
847 if (exynos_eint_base == NULL) {
848 pr_err("unable to ioremap for EINT base address\n");
849 return -ENOMEM;
850 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900851
Kukjin Kimcc511b82011-12-27 08:18:36 +0100852 for (irq = 0 ; irq <= 31 ; irq++) {
Eunki Kim330c90a2012-03-14 01:43:31 -0700853 irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100854 handle_level_irq);
855 set_irq_flags(IRQ_EINT(irq), IRQF_VALID);
856 }
857
Eunki Kim330c90a2012-03-14 01:43:31 -0700858 irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100859
860 for (irq = 0 ; irq <= 15 ; irq++) {
861 eint0_15_data[irq] = IRQ_EINT(irq);
862
Kukjin Kimbb19a752012-01-25 13:48:11 +0900863 if (soc_is_exynos5250()) {
864 irq_set_handler_data(exynos5_eint0_15_src_int[irq],
865 &eint0_15_data[irq]);
866 irq_set_chained_handler(exynos5_eint0_15_src_int[irq],
867 exynos_irq_eint0_15);
868 } else {
869 irq_set_handler_data(exynos4_eint0_15_src_int[irq],
870 &eint0_15_data[irq]);
871 irq_set_chained_handler(exynos4_eint0_15_src_int[irq],
872 exynos_irq_eint0_15);
873 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100874 }
875
876 return 0;
877}
Eunki Kim330c90a2012-03-14 01:43:31 -0700878arch_initcall(exynos_init_irq_eint);