blob: 83bd3f0e1519c099ce421dd79e1c886b4f6895ff [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>
Kukjin Kimcc511b82011-12-27 08:18:36 +010029
30#include <asm/proc-fns.h>
Arnd Bergmann40ba95f2012-01-07 11:51:28 +000031#include <asm/exception.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010032#include <asm/hardware/cache-l2x0.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010033#include <asm/mach/map.h>
34#include <asm/mach/irq.h>
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -080035#include <asm/cacheflush.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010036
37#include <mach/regs-irq.h>
38#include <mach/regs-pmu.h>
39#include <mach/regs-gpio.h>
40
41#include <plat/cpu.h>
42#include <plat/clock.h>
43#include <plat/devs.h>
44#include <plat/pm.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010045#include <plat/sdhci.h>
46#include <plat/gpio-cfg.h>
47#include <plat/adc-core.h>
48#include <plat/fb-core.h>
49#include <plat/fimc-core.h>
50#include <plat/iic-core.h>
51#include <plat/tv-core.h>
Heiko Stuebner308b3af2012-10-17 16:47:11 +090052#include <plat/spi-core.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010053#include <plat/regs-serial.h>
54
55#include "common.h"
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -080056#define L2_AUX_VAL 0x7C470001
57#define L2_AUX_MASK 0xC200ffff
Kukjin Kimcc511b82011-12-27 08:18:36 +010058
Kukjin Kimcc511b82011-12-27 08:18:36 +010059static const char name_exynos4210[] = "EXYNOS4210";
60static const char name_exynos4212[] = "EXYNOS4212";
61static const char name_exynos4412[] = "EXYNOS4412";
Kukjin Kim94c7ca72012-02-11 22:15:45 +090062static const char name_exynos5250[] = "EXYNOS5250";
Kukjin Kim2edb36c2012-11-15 15:48:56 +090063static const char name_exynos5440[] = "EXYNOS5440";
Kukjin Kimcc511b82011-12-27 08:18:36 +010064
Kukjin Kim906c7892012-02-11 21:27:08 +090065static void exynos4_map_io(void);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090066static void exynos5_map_io(void);
Kukjin Kim2edb36c2012-11-15 15:48:56 +090067static void exynos5440_map_io(void);
Kukjin Kim906c7892012-02-11 21:27:08 +090068static void exynos4_init_clocks(int xtal);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090069static void exynos5_init_clocks(int xtal);
Thomas Abraham55b6ef72012-10-29 19:46:49 +090070static void exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no);
Kukjin Kim906c7892012-02-11 21:27:08 +090071static int exynos_init(void);
Kukjin Kimcc511b82011-12-27 08:18:36 +010072
73static struct cpu_table cpu_ids[] __initdata = {
74 {
75 .idcode = EXYNOS4210_CPU_ID,
76 .idmask = EXYNOS4_CPU_MASK,
77 .map_io = exynos4_map_io,
78 .init_clocks = exynos4_init_clocks,
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,
86 .init_clocks = exynos4_init_clocks,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090087 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010088 .init = exynos_init,
89 .name = name_exynos4212,
90 }, {
91 .idcode = EXYNOS4412_CPU_ID,
92 .idmask = EXYNOS4_CPU_MASK,
93 .map_io = exynos4_map_io,
94 .init_clocks = exynos4_init_clocks,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090095 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010096 .init = exynos_init,
97 .name = name_exynos4412,
Kukjin Kim94c7ca72012-02-11 22:15:45 +090098 }, {
99 .idcode = EXYNOS5250_SOC_ID,
100 .idmask = EXYNOS5_SOC_MASK,
101 .map_io = exynos5_map_io,
102 .init_clocks = exynos5_init_clocks,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900103 .init = exynos_init,
104 .name = name_exynos5250,
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900105 }, {
106 .idcode = EXYNOS5440_SOC_ID,
107 .idmask = EXYNOS5_SOC_MASK,
108 .map_io = exynos5440_map_io,
109 .init = exynos_init,
110 .name = name_exynos5440,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100111 },
112};
113
114/* Initial IO mappings */
115
116static struct map_desc exynos_iodesc[] __initdata = {
117 {
118 .virtual = (unsigned long)S5P_VA_CHIPID,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900119 .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID),
Kukjin Kimcc511b82011-12-27 08:18:36 +0100120 .length = SZ_4K,
121 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900122 },
123};
124
Doug Anderson5b7897d2012-11-27 11:53:14 -0800125#ifdef CONFIG_ARCH_EXYNOS5
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900126static struct map_desc exynos5440_iodesc[] __initdata = {
127 {
128 .virtual = (unsigned long)S5P_VA_CHIPID,
129 .pfn = __phys_to_pfn(EXYNOS5440_PA_CHIPID),
130 .length = SZ_4K,
131 .type = MT_DEVICE,
132 },
133};
Doug Anderson5b7897d2012-11-27 11:53:14 -0800134#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900135
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900136static struct map_desc exynos4_iodesc[] __initdata = {
137 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100138 .virtual = (unsigned long)S3C_VA_SYS,
139 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
140 .length = SZ_64K,
141 .type = MT_DEVICE,
142 }, {
143 .virtual = (unsigned long)S3C_VA_TIMER,
144 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
145 .length = SZ_16K,
146 .type = MT_DEVICE,
147 }, {
148 .virtual = (unsigned long)S3C_VA_WATCHDOG,
149 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
150 .length = SZ_4K,
151 .type = MT_DEVICE,
152 }, {
153 .virtual = (unsigned long)S5P_VA_SROMC,
154 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
155 .length = SZ_4K,
156 .type = MT_DEVICE,
157 }, {
158 .virtual = (unsigned long)S5P_VA_SYSTIMER,
159 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
160 .length = SZ_4K,
161 .type = MT_DEVICE,
162 }, {
163 .virtual = (unsigned long)S5P_VA_PMU,
164 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
165 .length = SZ_64K,
166 .type = MT_DEVICE,
167 }, {
168 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
169 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
170 .length = SZ_4K,
171 .type = MT_DEVICE,
172 }, {
173 .virtual = (unsigned long)S5P_VA_GIC_CPU,
174 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
175 .length = SZ_64K,
176 .type = MT_DEVICE,
177 }, {
178 .virtual = (unsigned long)S5P_VA_GIC_DIST,
179 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
180 .length = SZ_64K,
181 .type = MT_DEVICE,
182 }, {
183 .virtual = (unsigned long)S3C_VA_UART,
184 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
185 .length = SZ_512K,
186 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900187 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100188 .virtual = (unsigned long)S5P_VA_CMU,
189 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
190 .length = SZ_128K,
191 .type = MT_DEVICE,
192 }, {
193 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
194 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
195 .length = SZ_8K,
196 .type = MT_DEVICE,
197 }, {
198 .virtual = (unsigned long)S5P_VA_L2CC,
199 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
200 .length = SZ_4K,
201 .type = MT_DEVICE,
202 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100203 .virtual = (unsigned long)S5P_VA_DMC0,
204 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900205 .length = SZ_64K,
206 .type = MT_DEVICE,
207 }, {
208 .virtual = (unsigned long)S5P_VA_DMC1,
209 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
210 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100211 .type = MT_DEVICE,
212 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100213 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
214 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
215 .length = SZ_4K,
216 .type = MT_DEVICE,
217 },
218};
219
220static struct map_desc exynos4_iodesc0[] __initdata = {
221 {
222 .virtual = (unsigned long)S5P_VA_SYSRAM,
223 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
224 .length = SZ_4K,
225 .type = MT_DEVICE,
226 },
227};
228
229static struct map_desc exynos4_iodesc1[] __initdata = {
230 {
231 .virtual = (unsigned long)S5P_VA_SYSRAM,
232 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
233 .length = SZ_4K,
234 .type = MT_DEVICE,
235 },
236};
237
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900238static struct map_desc exynos5_iodesc[] __initdata = {
239 {
240 .virtual = (unsigned long)S3C_VA_SYS,
241 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
242 .length = SZ_64K,
243 .type = MT_DEVICE,
244 }, {
245 .virtual = (unsigned long)S3C_VA_TIMER,
246 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
247 .length = SZ_16K,
248 .type = MT_DEVICE,
249 }, {
250 .virtual = (unsigned long)S3C_VA_WATCHDOG,
251 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
252 .length = SZ_4K,
253 .type = MT_DEVICE,
254 }, {
255 .virtual = (unsigned long)S5P_VA_SROMC,
256 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
257 .length = SZ_4K,
258 .type = MT_DEVICE,
259 }, {
260 .virtual = (unsigned long)S5P_VA_SYSTIMER,
261 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSTIMER),
262 .length = SZ_4K,
263 .type = MT_DEVICE,
264 }, {
265 .virtual = (unsigned long)S5P_VA_SYSRAM,
266 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
267 .length = SZ_4K,
268 .type = MT_DEVICE,
269 }, {
270 .virtual = (unsigned long)S5P_VA_CMU,
271 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
272 .length = 144 * SZ_1K,
273 .type = MT_DEVICE,
274 }, {
275 .virtual = (unsigned long)S5P_VA_PMU,
276 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
277 .length = SZ_64K,
278 .type = MT_DEVICE,
279 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900280 .virtual = (unsigned long)S3C_VA_UART,
281 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
282 .length = SZ_512K,
283 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900284 },
285};
286
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900287static struct map_desc exynos5440_iodesc0[] __initdata = {
288 {
289 .virtual = (unsigned long)S3C_VA_UART,
290 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
291 .length = SZ_512K,
292 .type = MT_DEVICE,
293 },
294};
295
Russell King9eb48592012-01-03 11:56:53 +0100296void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100297{
298 __raw_writel(0x1, S5P_SWRESET);
299}
300
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900301void exynos5_restart(char mode, const char *cmd)
302{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800303 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900304 u32 val;
305 void __iomem *addr;
306
307 if (of_machine_is_compatible("samsung,exynos5250")) {
308 val = 0x1;
309 addr = EXYNOS_SWRESET;
310 } else if (of_machine_is_compatible("samsung,exynos5440")) {
Thomas Abraham60db7e52013-01-24 10:09:13 -0800311 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
312 addr = of_iomap(np, 0) + 0xcc;
313 val = (0xfff << 20) | (0x1 << 16);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900314 } else {
315 pr_err("%s: cannot support non-DT\n", __func__);
316 return;
317 }
318
319 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900320}
321
Shawn Guobb13fab2012-04-26 10:35:40 +0800322void __init exynos_init_late(void)
323{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900324 if (of_machine_is_compatible("samsung,exynos5440"))
325 /* to be supported later */
326 return;
327
Shawn Guobb13fab2012-04-26 10:35:40 +0800328 exynos_pm_late_initcall();
329}
330
Kukjin Kimcc511b82011-12-27 08:18:36 +0100331/*
332 * exynos_map_io
333 *
334 * register the standard cpu IO areas
335 */
336
337void __init exynos_init_io(struct map_desc *mach_desc, int size)
338{
Doug Anderson5b7897d2012-11-27 11:53:14 -0800339 struct map_desc *iodesc = exynos_iodesc;
340 int iodesc_sz = ARRAY_SIZE(exynos_iodesc);
341#if defined(CONFIG_OF) && defined(CONFIG_ARCH_EXYNOS5)
342 unsigned long root = of_get_flat_dt_root();
343
Kukjin Kimcc511b82011-12-27 08:18:36 +0100344 /* initialize the io descriptors we need for initialization */
Doug Anderson5b7897d2012-11-27 11:53:14 -0800345 if (of_flat_dt_is_compatible(root, "samsung,exynos5440")) {
346 iodesc = exynos5440_iodesc;
347 iodesc_sz = ARRAY_SIZE(exynos5440_iodesc);
348 }
349#endif
350
351 iotable_init(iodesc, iodesc_sz);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900352
Kukjin Kimcc511b82011-12-27 08:18:36 +0100353 if (mach_desc)
354 iotable_init(mach_desc, size);
355
356 /* detect cpu id and rev. */
357 s5p_init_cpu(S5P_VA_CHIPID);
358
359 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
360}
361
Kukjin Kim906c7892012-02-11 21:27:08 +0900362static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100363{
364 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
365
366 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
367 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
368 else
369 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
370
Arnd Bergmannbd51de52013-04-10 14:57:15 +0200371 if (!IS_ENABLED(CONFIG_EXYNOS_ATAGS))
372 return
373
Kukjin Kimcc511b82011-12-27 08:18:36 +0100374 /* initialize device information early */
375 exynos4_default_sdhci0();
376 exynos4_default_sdhci1();
377 exynos4_default_sdhci2();
378 exynos4_default_sdhci3();
379
380 s3c_adc_setname("samsung-adc-v3");
381
382 s3c_fimc_setname(0, "exynos4-fimc");
383 s3c_fimc_setname(1, "exynos4-fimc");
384 s3c_fimc_setname(2, "exynos4-fimc");
385 s3c_fimc_setname(3, "exynos4-fimc");
386
Thomas Abraham8482c812012-04-14 08:04:46 -0700387 s3c_sdhci_setname(0, "exynos4-sdhci");
388 s3c_sdhci_setname(1, "exynos4-sdhci");
389 s3c_sdhci_setname(2, "exynos4-sdhci");
390 s3c_sdhci_setname(3, "exynos4-sdhci");
391
Kukjin Kimcc511b82011-12-27 08:18:36 +0100392 /* The I2C bus controllers are directly compatible with s3c2440 */
393 s3c_i2c0_setname("s3c2440-i2c");
394 s3c_i2c1_setname("s3c2440-i2c");
395 s3c_i2c2_setname("s3c2440-i2c");
396
397 s5p_fb_setname(0, "exynos4-fb");
398 s5p_hdmi_setname("exynos4-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900399
400 s3c64xx_spi_setname("exynos4210-spi");
Kukjin Kimcc511b82011-12-27 08:18:36 +0100401}
402
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900403static void __init exynos5_map_io(void)
404{
405 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900406}
407
Kukjin Kim906c7892012-02-11 21:27:08 +0900408static void __init exynos4_init_clocks(int xtal)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100409{
410 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
411
412 s3c24xx_register_baseclocks(xtal);
413 s5p_register_clocks(xtal);
414
415 if (soc_is_exynos4210())
416 exynos4210_register_clocks();
417 else if (soc_is_exynos4212() || soc_is_exynos4412())
418 exynos4212_register_clocks();
419
420 exynos4_register_clocks();
421 exynos4_setup_clocks();
422}
423
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900424static void __init exynos5440_map_io(void)
425{
426 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
427}
428
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900429static void __init exynos5_init_clocks(int xtal)
430{
431 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
432
Kukjin Kim61bcbc22013-01-05 08:32:55 -0800433 /* EXYNOS5440 can support only common clock framework */
434
435 if (soc_is_exynos5440())
436 return;
437
438#ifdef CONFIG_SOC_EXYNOS5250
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900439 s3c24xx_register_baseclocks(xtal);
440 s5p_register_clocks(xtal);
441
442 exynos5_register_clocks();
443 exynos5_setup_clocks();
Kukjin Kim61bcbc22013-01-05 08:32:55 -0800444#endif
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900445}
446
Kukjin Kimcc511b82011-12-27 08:18:36 +0100447void __init exynos4_init_irq(void)
448{
Arnd Bergmann40ba95f2012-01-07 11:51:28 +0000449 unsigned int gic_bank_offset;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100450
451 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
452
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000453 if (!of_have_populated_dt())
Grant Likely75294952012-02-14 14:06:57 -0700454 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 +0000455#ifdef CONFIG_OF
456 else
Rob Herring0529e3152012-11-05 16:18:28 -0600457 irqchip_init();
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000458#endif
Kukjin Kimcc511b82011-12-27 08:18:36 +0100459
Thomas Abrahame873a472012-05-15 16:25:23 +0900460 if (!of_have_populated_dt())
461 combiner_init(S5P_VA_COMBINER_BASE, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100462
463 /*
464 * The parameters of s5p_init_irq() are for VIC init.
465 * Theses parameters should be NULL and 0 because EXYNOS4
466 * uses GIC instead of VIC.
467 */
468 s5p_init_irq(NULL, 0);
469}
470
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900471void __init exynos5_init_irq(void)
472{
Tushar Behera6fff5a12012-04-24 13:25:01 -0700473#ifdef CONFIG_OF
Rob Herring0529e3152012-11-05 16:18:28 -0600474 irqchip_init();
Tushar Behera6fff5a12012-04-24 13:25:01 -0700475#endif
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900476 /*
477 * The parameters of s5p_init_irq() are for VIC init.
478 * Theses parameters should be NULL and 0 because EXYNOS4
479 * uses GIC instead of VIC.
480 */
Kukjin Kim12fee192012-12-06 15:31:10 +0900481 if (!of_machine_is_compatible("samsung,exynos5440"))
482 s5p_init_irq(NULL, 0);
Inderpal Singh34455132012-11-22 14:46:21 +0900483
484 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900485}
486
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900487struct bus_type exynos_subsys = {
488 .name = "exynos-core",
489 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900490};
491
Linus Torvalds7affca32012-01-07 12:03:30 -0800492static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900493 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900494};
495
496static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100497{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900498 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100499}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900500core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100501
502#ifdef CONFIG_CACHE_L2X0
503static int __init exynos4_l2x0_cache_init(void)
504{
Il Hane1b19942012-04-05 07:59:36 -0700505 int ret;
506
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900507 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900508 return 0;
509
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800510 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
511 if (!ret) {
512 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
513 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
514 return 0;
515 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100516
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800517 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
518 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
519 /* TAG, Data Latency Control: 2 cycles */
520 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100521
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800522 if (soc_is_exynos4212() || soc_is_exynos4412())
523 l2x0_saved_regs.data_latency = 0x120;
524 else
525 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100526
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800527 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
528 l2x0_saved_regs.pwr_ctrl =
529 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100530
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800531 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100532
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800533 __raw_writel(l2x0_saved_regs.tag_latency,
534 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
535 __raw_writel(l2x0_saved_regs.data_latency,
536 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
537
538 /* L2X0 Prefetch Control */
539 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
540 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
541
542 /* L2X0 Power Control */
543 __raw_writel(l2x0_saved_regs.pwr_ctrl,
544 S5P_VA_L2CC + L2X0_POWER_CTRL);
545
546 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
547 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
548 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100549
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800550 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100551 return 0;
552}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100553early_initcall(exynos4_l2x0_cache_init);
554#endif
555
Kukjin Kim906c7892012-02-11 21:27:08 +0900556static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100557{
558 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900559
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900560 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100561}
562
Kukjin Kimcc511b82011-12-27 08:18:36 +0100563/* uart registration process */
564
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900565static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100566{
567 struct s3c2410_uartcfg *tcfg = cfg;
568 u32 ucnt;
569
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000570 for (ucnt = 0; ucnt < no; ucnt++, tcfg++)
571 tcfg->has_fracval = 1;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100572
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900573 s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100574}
575
Arnd Bergmannbd51de52013-04-10 14:57:15 +0200576
577#ifdef CONFIG_EXYNOS_ATAGS
Eunki Kim330c90a2012-03-14 01:43:31 -0700578static void __iomem *exynos_eint_base;
579
Kukjin Kimcc511b82011-12-27 08:18:36 +0100580static DEFINE_SPINLOCK(eint_lock);
581
582static unsigned int eint0_15_data[16];
583
Eunki Kim330c90a2012-03-14 01:43:31 -0700584static inline int exynos4_irq_to_gpio(unsigned int irq)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100585{
Eunki Kim330c90a2012-03-14 01:43:31 -0700586 if (irq < IRQ_EINT(0))
587 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100588
Eunki Kim330c90a2012-03-14 01:43:31 -0700589 irq -= IRQ_EINT(0);
590 if (irq < 8)
591 return EXYNOS4_GPX0(irq);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100592
Eunki Kim330c90a2012-03-14 01:43:31 -0700593 irq -= 8;
594 if (irq < 8)
595 return EXYNOS4_GPX1(irq);
596
597 irq -= 8;
598 if (irq < 8)
599 return EXYNOS4_GPX2(irq);
600
601 irq -= 8;
602 if (irq < 8)
603 return EXYNOS4_GPX3(irq);
604
605 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100606}
607
Eunki Kim330c90a2012-03-14 01:43:31 -0700608static inline int exynos5_irq_to_gpio(unsigned int irq)
609{
610 if (irq < IRQ_EINT(0))
611 return -EINVAL;
612
613 irq -= IRQ_EINT(0);
614 if (irq < 8)
615 return EXYNOS5_GPX0(irq);
616
617 irq -= 8;
618 if (irq < 8)
619 return EXYNOS5_GPX1(irq);
620
621 irq -= 8;
622 if (irq < 8)
623 return EXYNOS5_GPX2(irq);
624
625 irq -= 8;
626 if (irq < 8)
627 return EXYNOS5_GPX3(irq);
628
629 return -EINVAL;
630}
631
Kukjin Kimbb19a752012-01-25 13:48:11 +0900632static unsigned int exynos4_eint0_15_src_int[16] = {
633 EXYNOS4_IRQ_EINT0,
634 EXYNOS4_IRQ_EINT1,
635 EXYNOS4_IRQ_EINT2,
636 EXYNOS4_IRQ_EINT3,
637 EXYNOS4_IRQ_EINT4,
638 EXYNOS4_IRQ_EINT5,
639 EXYNOS4_IRQ_EINT6,
640 EXYNOS4_IRQ_EINT7,
641 EXYNOS4_IRQ_EINT8,
642 EXYNOS4_IRQ_EINT9,
643 EXYNOS4_IRQ_EINT10,
644 EXYNOS4_IRQ_EINT11,
645 EXYNOS4_IRQ_EINT12,
646 EXYNOS4_IRQ_EINT13,
647 EXYNOS4_IRQ_EINT14,
648 EXYNOS4_IRQ_EINT15,
649};
Kukjin Kimcc511b82011-12-27 08:18:36 +0100650
Kukjin Kimbb19a752012-01-25 13:48:11 +0900651static unsigned int exynos5_eint0_15_src_int[16] = {
652 EXYNOS5_IRQ_EINT0,
653 EXYNOS5_IRQ_EINT1,
654 EXYNOS5_IRQ_EINT2,
655 EXYNOS5_IRQ_EINT3,
656 EXYNOS5_IRQ_EINT4,
657 EXYNOS5_IRQ_EINT5,
658 EXYNOS5_IRQ_EINT6,
659 EXYNOS5_IRQ_EINT7,
660 EXYNOS5_IRQ_EINT8,
661 EXYNOS5_IRQ_EINT9,
662 EXYNOS5_IRQ_EINT10,
663 EXYNOS5_IRQ_EINT11,
664 EXYNOS5_IRQ_EINT12,
665 EXYNOS5_IRQ_EINT13,
666 EXYNOS5_IRQ_EINT14,
667 EXYNOS5_IRQ_EINT15,
668};
Eunki Kim330c90a2012-03-14 01:43:31 -0700669static inline void exynos_irq_eint_mask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100670{
671 u32 mask;
672
673 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700674 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
675 mask |= EINT_OFFSET_BIT(data->irq);
676 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100677 spin_unlock(&eint_lock);
678}
679
Eunki Kim330c90a2012-03-14 01:43:31 -0700680static void exynos_irq_eint_unmask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100681{
682 u32 mask;
683
684 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700685 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
686 mask &= ~(EINT_OFFSET_BIT(data->irq));
687 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100688 spin_unlock(&eint_lock);
689}
690
Eunki Kim330c90a2012-03-14 01:43:31 -0700691static inline void exynos_irq_eint_ack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100692{
Eunki Kim330c90a2012-03-14 01:43:31 -0700693 __raw_writel(EINT_OFFSET_BIT(data->irq),
694 EINT_PEND(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100695}
696
Eunki Kim330c90a2012-03-14 01:43:31 -0700697static void exynos_irq_eint_maskack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100698{
Eunki Kim330c90a2012-03-14 01:43:31 -0700699 exynos_irq_eint_mask(data);
700 exynos_irq_eint_ack(data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100701}
702
Eunki Kim330c90a2012-03-14 01:43:31 -0700703static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100704{
705 int offs = EINT_OFFSET(data->irq);
706 int shift;
707 u32 ctrl, mask;
708 u32 newvalue = 0;
709
710 switch (type) {
711 case IRQ_TYPE_EDGE_RISING:
712 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
713 break;
714
715 case IRQ_TYPE_EDGE_FALLING:
716 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
717 break;
718
719 case IRQ_TYPE_EDGE_BOTH:
720 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
721 break;
722
723 case IRQ_TYPE_LEVEL_LOW:
724 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
725 break;
726
727 case IRQ_TYPE_LEVEL_HIGH:
728 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
729 break;
730
731 default:
732 printk(KERN_ERR "No such irq type %d", type);
733 return -EINVAL;
734 }
735
736 shift = (offs & 0x7) * 4;
737 mask = 0x7 << shift;
738
739 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700740 ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100741 ctrl &= ~mask;
742 ctrl |= newvalue << shift;
Eunki Kim330c90a2012-03-14 01:43:31 -0700743 __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100744 spin_unlock(&eint_lock);
745
Eunki Kim330c90a2012-03-14 01:43:31 -0700746 if (soc_is_exynos5250())
747 s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
748 else
749 s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100750
751 return 0;
752}
753
Eunki Kim330c90a2012-03-14 01:43:31 -0700754static struct irq_chip exynos_irq_eint = {
755 .name = "exynos-eint",
756 .irq_mask = exynos_irq_eint_mask,
757 .irq_unmask = exynos_irq_eint_unmask,
758 .irq_mask_ack = exynos_irq_eint_maskack,
759 .irq_ack = exynos_irq_eint_ack,
760 .irq_set_type = exynos_irq_eint_set_type,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100761#ifdef CONFIG_PM
762 .irq_set_wake = s3c_irqext_wake,
763#endif
764};
765
766/*
767 * exynos4_irq_demux_eint
768 *
769 * This function demuxes the IRQ from from EINTs 16 to 31.
770 * It is designed to be inlined into the specific handler
771 * s5p_irq_demux_eintX_Y.
772 *
773 * Each EINT pend/mask registers handle eight of them.
774 */
Eunki Kim330c90a2012-03-14 01:43:31 -0700775static inline void exynos_irq_demux_eint(unsigned int start)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100776{
777 unsigned int irq;
778
Eunki Kim330c90a2012-03-14 01:43:31 -0700779 u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start));
780 u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100781
782 status &= ~mask;
783 status &= 0xff;
784
785 while (status) {
786 irq = fls(status) - 1;
787 generic_handle_irq(irq + start);
788 status &= ~(1 << irq);
789 }
790}
791
Eunki Kim330c90a2012-03-14 01:43:31 -0700792static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100793{
794 struct irq_chip *chip = irq_get_chip(irq);
795 chained_irq_enter(chip, desc);
Eunki Kim330c90a2012-03-14 01:43:31 -0700796 exynos_irq_demux_eint(IRQ_EINT(16));
797 exynos_irq_demux_eint(IRQ_EINT(24));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100798 chained_irq_exit(chip, desc);
799}
800
Kukjin Kimbb19a752012-01-25 13:48:11 +0900801static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100802{
803 u32 *irq_data = irq_get_handler_data(irq);
804 struct irq_chip *chip = irq_get_chip(irq);
805
806 chained_irq_enter(chip, desc);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100807 generic_handle_irq(*irq_data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100808 chained_irq_exit(chip, desc);
809}
810
Eunki Kim330c90a2012-03-14 01:43:31 -0700811static int __init exynos_init_irq_eint(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100812{
813 int irq;
814
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900815#ifdef CONFIG_PINCTRL_SAMSUNG
816 /*
817 * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf
818 * functionality along with support for external gpio and wakeup
819 * interrupts. If the samsung pinctrl driver is enabled and includes
820 * the wakeup interrupt support, then the setting up external wakeup
821 * interrupts here can be skipped. This check here is temporary to
822 * allow exynos4 platforms that do not use Samsung pinctrl driver to
823 * co-exist with platforms that do. When all of the Samsung Exynos4
824 * platforms switch over to using the pinctrl driver, the wakeup
825 * interrupt support code here can be completely removed.
826 */
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900827 static const struct of_device_id exynos_pinctrl_ids[] = {
Kukjin Kimb533c862013-01-02 16:05:42 -0800828 { .compatible = "samsung,exynos4210-pinctrl", },
829 { .compatible = "samsung,exynos4x12-pinctrl", },
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900830 };
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900831 struct device_node *pctrl_np, *wkup_np;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900832 const char *wkup_compat = "samsung,exynos4210-wakeup-eint";
833
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900834 for_each_matching_node(pctrl_np, exynos_pinctrl_ids) {
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900835 if (of_device_is_available(pctrl_np)) {
836 wkup_np = of_find_compatible_node(pctrl_np, NULL,
837 wkup_compat);
838 if (wkup_np)
839 return -ENODEV;
840 }
841 }
842#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900843 if (soc_is_exynos5440())
844 return 0;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900845
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900846 if (soc_is_exynos5250())
Eunki Kim330c90a2012-03-14 01:43:31 -0700847 exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K);
848 else
849 exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K);
850
851 if (exynos_eint_base == NULL) {
852 pr_err("unable to ioremap for EINT base address\n");
853 return -ENOMEM;
854 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900855
Kukjin Kimcc511b82011-12-27 08:18:36 +0100856 for (irq = 0 ; irq <= 31 ; irq++) {
Eunki Kim330c90a2012-03-14 01:43:31 -0700857 irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100858 handle_level_irq);
859 set_irq_flags(IRQ_EINT(irq), IRQF_VALID);
860 }
861
Eunki Kim330c90a2012-03-14 01:43:31 -0700862 irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100863
864 for (irq = 0 ; irq <= 15 ; irq++) {
865 eint0_15_data[irq] = IRQ_EINT(irq);
866
Kukjin Kimbb19a752012-01-25 13:48:11 +0900867 if (soc_is_exynos5250()) {
868 irq_set_handler_data(exynos5_eint0_15_src_int[irq],
869 &eint0_15_data[irq]);
870 irq_set_chained_handler(exynos5_eint0_15_src_int[irq],
871 exynos_irq_eint0_15);
872 } else {
873 irq_set_handler_data(exynos4_eint0_15_src_int[irq],
874 &eint0_15_data[irq]);
875 irq_set_chained_handler(exynos4_eint0_15_src_int[irq],
876 exynos_irq_eint0_15);
877 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100878 }
879
880 return 0;
881}
Eunki Kim330c90a2012-03-14 01:43:31 -0700882arch_initcall(exynos_init_irq_eint);
Arnd Bergmannbd51de52013-04-10 14:57:15 +0200883#endif