blob: 8bc587cb165a2d2c442a5aeb2f3411679f657400 [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>
Tomasz Figa68a433f2013-05-25 06:27:29 +090013#include <linux/bitops.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010014#include <linux/interrupt.h>
15#include <linux/irq.h>
Rob Herringa900e5d2013-02-12 16:04:52 -060016#include <linux/irqchip.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010017#include <linux/io.h>
Linus Torvalds7affca32012-01-07 12:03:30 -080018#include <linux/device.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010019#include <linux/gpio.h>
Tomasz Figa68a433f2013-05-25 06:27:29 +090020#include <clocksource/samsung_pwm.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010021#include <linux/sched.h>
22#include <linux/serial_core.h>
Arnd Bergmann237c78b2012-01-07 12:30:20 +000023#include <linux/of.h>
Doug Anderson5b7897d2012-11-27 11:53:14 -080024#include <linux/of_fdt.h>
Arnd Bergmann237c78b2012-01-07 12:30:20 +000025#include <linux/of_irq.h>
Thomas Abraham1e60bc02012-05-15 16:18:35 +090026#include <linux/export.h>
27#include <linux/irqdomain.h>
Thomas Abrahame873a472012-05-15 16:25:23 +090028#include <linux/of_address.h>
Thomas Abraham6923ae42013-03-09 17:03:29 +090029#include <linux/clocksource.h>
30#include <linux/clk-provider.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060031#include <linux/irqchip/arm-gic.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000032#include <linux/irqchip/chained_irq.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010033
34#include <asm/proc-fns.h>
Arnd Bergmann40ba95f2012-01-07 11:51:28 +000035#include <asm/exception.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010036#include <asm/hardware/cache-l2x0.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010037#include <asm/mach/map.h>
38#include <asm/mach/irq.h>
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -080039#include <asm/cacheflush.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010040
41#include <mach/regs-irq.h>
42#include <mach/regs-pmu.h>
43#include <mach/regs-gpio.h>
Chanho Parkb7bbdbe2012-12-12 14:03:54 +090044#include <mach/irqs.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010045
46#include <plat/cpu.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010047#include <plat/devs.h>
48#include <plat/pm.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010049#include <plat/sdhci.h>
50#include <plat/gpio-cfg.h>
51#include <plat/adc-core.h>
52#include <plat/fb-core.h>
53#include <plat/fimc-core.h>
54#include <plat/iic-core.h>
55#include <plat/tv-core.h>
Heiko Stuebner308b3af2012-10-17 16:47:11 +090056#include <plat/spi-core.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010057#include <plat/regs-serial.h>
58
59#include "common.h"
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -080060#define L2_AUX_VAL 0x7C470001
61#define L2_AUX_MASK 0xC200ffff
Kukjin Kimcc511b82011-12-27 08:18:36 +010062
Kukjin Kimcc511b82011-12-27 08:18:36 +010063static const char name_exynos4210[] = "EXYNOS4210";
64static const char name_exynos4212[] = "EXYNOS4212";
65static const char name_exynos4412[] = "EXYNOS4412";
Kukjin Kim94c7ca72012-02-11 22:15:45 +090066static const char name_exynos5250[] = "EXYNOS5250";
Chander Kashyap191d7542013-06-19 00:29:34 +090067static const char name_exynos5420[] = "EXYNOS5420";
Kukjin Kim2edb36c2012-11-15 15:48:56 +090068static const char name_exynos5440[] = "EXYNOS5440";
Kukjin Kimcc511b82011-12-27 08:18:36 +010069
Kukjin Kim906c7892012-02-11 21:27:08 +090070static void exynos4_map_io(void);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090071static void exynos5_map_io(void);
Kukjin Kim2edb36c2012-11-15 15:48:56 +090072static void exynos5440_map_io(void);
Thomas Abraham55b6ef72012-10-29 19:46:49 +090073static void exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no);
Kukjin Kim906c7892012-02-11 21:27:08 +090074static int exynos_init(void);
Kukjin Kimcc511b82011-12-27 08:18:36 +010075
Thomas Abraham92744272013-03-09 17:03:33 +090076unsigned long xxti_f = 0, xusbxti_f = 0;
77
Kukjin Kimcc511b82011-12-27 08:18:36 +010078static struct cpu_table cpu_ids[] __initdata = {
79 {
80 .idcode = EXYNOS4210_CPU_ID,
81 .idmask = EXYNOS4_CPU_MASK,
82 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090083 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010084 .init = exynos_init,
85 .name = name_exynos4210,
86 }, {
87 .idcode = EXYNOS4212_CPU_ID,
88 .idmask = EXYNOS4_CPU_MASK,
89 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090090 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010091 .init = exynos_init,
92 .name = name_exynos4212,
93 }, {
94 .idcode = EXYNOS4412_CPU_ID,
95 .idmask = EXYNOS4_CPU_MASK,
96 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090097 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010098 .init = exynos_init,
99 .name = name_exynos4412,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900100 }, {
101 .idcode = EXYNOS5250_SOC_ID,
102 .idmask = EXYNOS5_SOC_MASK,
103 .map_io = exynos5_map_io,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900104 .init = exynos_init,
105 .name = name_exynos5250,
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900106 }, {
Chander Kashyap191d7542013-06-19 00:29:34 +0900107 .idcode = EXYNOS5420_SOC_ID,
108 .idmask = EXYNOS5_SOC_MASK,
109 .map_io = exynos5_map_io,
110 .init = exynos_init,
111 .name = name_exynos5420,
112 }, {
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900113 .idcode = EXYNOS5440_SOC_ID,
114 .idmask = EXYNOS5_SOC_MASK,
115 .map_io = exynos5440_map_io,
116 .init = exynos_init,
117 .name = name_exynos5440,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100118 },
119};
120
121/* Initial IO mappings */
122
123static struct map_desc exynos_iodesc[] __initdata = {
124 {
125 .virtual = (unsigned long)S5P_VA_CHIPID,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900126 .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID),
Kukjin Kimcc511b82011-12-27 08:18:36 +0100127 .length = SZ_4K,
128 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900129 },
130};
131
132static struct map_desc exynos4_iodesc[] __initdata = {
133 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100134 .virtual = (unsigned long)S3C_VA_SYS,
135 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
136 .length = SZ_64K,
137 .type = MT_DEVICE,
138 }, {
139 .virtual = (unsigned long)S3C_VA_TIMER,
140 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
141 .length = SZ_16K,
142 .type = MT_DEVICE,
143 }, {
144 .virtual = (unsigned long)S3C_VA_WATCHDOG,
145 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
146 .length = SZ_4K,
147 .type = MT_DEVICE,
148 }, {
149 .virtual = (unsigned long)S5P_VA_SROMC,
150 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
151 .length = SZ_4K,
152 .type = MT_DEVICE,
153 }, {
154 .virtual = (unsigned long)S5P_VA_SYSTIMER,
155 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
156 .length = SZ_4K,
157 .type = MT_DEVICE,
158 }, {
159 .virtual = (unsigned long)S5P_VA_PMU,
160 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
161 .length = SZ_64K,
162 .type = MT_DEVICE,
163 }, {
164 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
165 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
166 .length = SZ_4K,
167 .type = MT_DEVICE,
168 }, {
169 .virtual = (unsigned long)S5P_VA_GIC_CPU,
170 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
171 .length = SZ_64K,
172 .type = MT_DEVICE,
173 }, {
174 .virtual = (unsigned long)S5P_VA_GIC_DIST,
175 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
176 .length = SZ_64K,
177 .type = MT_DEVICE,
178 }, {
179 .virtual = (unsigned long)S3C_VA_UART,
180 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
181 .length = SZ_512K,
182 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900183 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100184 .virtual = (unsigned long)S5P_VA_CMU,
185 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
186 .length = SZ_128K,
187 .type = MT_DEVICE,
188 }, {
189 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
190 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
191 .length = SZ_8K,
192 .type = MT_DEVICE,
193 }, {
194 .virtual = (unsigned long)S5P_VA_L2CC,
195 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
196 .length = SZ_4K,
197 .type = MT_DEVICE,
198 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100199 .virtual = (unsigned long)S5P_VA_DMC0,
200 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900201 .length = SZ_64K,
202 .type = MT_DEVICE,
203 }, {
204 .virtual = (unsigned long)S5P_VA_DMC1,
205 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
206 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100207 .type = MT_DEVICE,
208 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100209 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
210 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
211 .length = SZ_4K,
212 .type = MT_DEVICE,
213 },
214};
215
216static struct map_desc exynos4_iodesc0[] __initdata = {
217 {
218 .virtual = (unsigned long)S5P_VA_SYSRAM,
219 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
220 .length = SZ_4K,
221 .type = MT_DEVICE,
222 },
223};
224
225static struct map_desc exynos4_iodesc1[] __initdata = {
226 {
227 .virtual = (unsigned long)S5P_VA_SYSRAM,
228 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
229 .length = SZ_4K,
230 .type = MT_DEVICE,
231 },
232};
233
Tomasz Figa41de8982012-12-11 13:58:43 +0900234static struct map_desc exynos4210_iodesc[] __initdata = {
235 {
236 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
237 .pfn = __phys_to_pfn(EXYNOS4210_PA_SYSRAM_NS),
238 .length = SZ_4K,
239 .type = MT_DEVICE,
240 },
241};
242
243static struct map_desc exynos4x12_iodesc[] __initdata = {
244 {
245 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
246 .pfn = __phys_to_pfn(EXYNOS4x12_PA_SYSRAM_NS),
247 .length = SZ_4K,
248 .type = MT_DEVICE,
249 },
250};
251
252static struct map_desc exynos5250_iodesc[] __initdata = {
253 {
254 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
255 .pfn = __phys_to_pfn(EXYNOS5250_PA_SYSRAM_NS),
256 .length = SZ_4K,
257 .type = MT_DEVICE,
258 },
259};
260
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900261static struct map_desc exynos5_iodesc[] __initdata = {
262 {
263 .virtual = (unsigned long)S3C_VA_SYS,
264 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
265 .length = SZ_64K,
266 .type = MT_DEVICE,
267 }, {
268 .virtual = (unsigned long)S3C_VA_TIMER,
269 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
270 .length = SZ_16K,
271 .type = MT_DEVICE,
272 }, {
273 .virtual = (unsigned long)S3C_VA_WATCHDOG,
274 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
275 .length = SZ_4K,
276 .type = MT_DEVICE,
277 }, {
278 .virtual = (unsigned long)S5P_VA_SROMC,
279 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
280 .length = SZ_4K,
281 .type = MT_DEVICE,
282 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900283 .virtual = (unsigned long)S5P_VA_SYSRAM,
284 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
285 .length = SZ_4K,
286 .type = MT_DEVICE,
287 }, {
288 .virtual = (unsigned long)S5P_VA_CMU,
289 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
290 .length = 144 * SZ_1K,
291 .type = MT_DEVICE,
292 }, {
293 .virtual = (unsigned long)S5P_VA_PMU,
294 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
295 .length = SZ_64K,
296 .type = MT_DEVICE,
297 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900298 .virtual = (unsigned long)S3C_VA_UART,
299 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
300 .length = SZ_512K,
301 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900302 },
303};
304
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900305static struct map_desc exynos5440_iodesc0[] __initdata = {
306 {
307 .virtual = (unsigned long)S3C_VA_UART,
308 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
309 .length = SZ_512K,
310 .type = MT_DEVICE,
311 },
312};
313
Tomasz Figa68a433f2013-05-25 06:27:29 +0900314static struct samsung_pwm_variant exynos4_pwm_variant = {
315 .bits = 32,
316 .div_base = 0,
317 .has_tint_cstat = true,
318 .tclk_mask = 0,
319};
320
Russell King9eb48592012-01-03 11:56:53 +0100321void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100322{
323 __raw_writel(0x1, S5P_SWRESET);
324}
325
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900326void exynos5_restart(char mode, const char *cmd)
327{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800328 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900329 u32 val;
330 void __iomem *addr;
331
Chander Kashyapeff4e7c2013-06-19 00:29:35 +0900332 val = 0x1;
333 addr = EXYNOS_SWRESET;
334
335 if (of_machine_is_compatible("samsung,exynos5440")) {
Jungseok Lee1ba830c2013-05-25 06:33:03 +0900336 u32 status;
Thomas Abraham60db7e52013-01-24 10:09:13 -0800337 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
Jungseok Lee1ba830c2013-05-25 06:33:03 +0900338
339 addr = of_iomap(np, 0) + 0xbc;
340 status = __raw_readl(addr);
341
Thomas Abraham60db7e52013-01-24 10:09:13 -0800342 addr = of_iomap(np, 0) + 0xcc;
Jungseok Lee1ba830c2013-05-25 06:33:03 +0900343 val = __raw_readl(addr);
344
345 val = (val & 0xffff0000) | (status & 0xffff);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900346 }
347
348 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900349}
350
Shawn Guobb13fab2012-04-26 10:35:40 +0800351void __init exynos_init_late(void)
352{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900353 if (of_machine_is_compatible("samsung,exynos5440"))
354 /* to be supported later */
355 return;
356
Shawn Guobb13fab2012-04-26 10:35:40 +0800357 exynos_pm_late_initcall();
358}
359
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900360#ifdef CONFIG_OF
361int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
362 int depth, void *data)
363{
364 struct map_desc iodesc;
365 __be32 *reg;
366 unsigned long len;
367
368 if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
369 !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock"))
370 return 0;
371
372 reg = of_get_flat_dt_prop(node, "reg", &len);
373 if (reg == NULL || len != (sizeof(unsigned long) * 2))
374 return 0;
375
376 iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0]));
377 iodesc.length = be32_to_cpu(reg[1]) - 1;
378 iodesc.virtual = (unsigned long)S5P_VA_CHIPID;
379 iodesc.type = MT_DEVICE;
380 iotable_init(&iodesc, 1);
381 return 1;
382}
383#endif
384
Kukjin Kimcc511b82011-12-27 08:18:36 +0100385/*
386 * exynos_map_io
387 *
388 * register the standard cpu IO areas
389 */
390
391void __init exynos_init_io(struct map_desc *mach_desc, int size)
392{
Doug Anderson9c1fcdc2013-06-05 13:56:33 -0700393 debug_ll_io_init();
394
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900395#ifdef CONFIG_OF
396 if (initial_boot_params)
397 of_scan_flat_dt(exynos_fdt_map_chipid, NULL);
398 else
Doug Anderson5b7897d2012-11-27 11:53:14 -0800399#endif
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900400 iotable_init(exynos_iodesc, ARRAY_SIZE(exynos_iodesc));
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900401
Kukjin Kimcc511b82011-12-27 08:18:36 +0100402 if (mach_desc)
403 iotable_init(mach_desc, size);
404
405 /* detect cpu id and rev. */
406 s5p_init_cpu(S5P_VA_CHIPID);
407
408 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
409}
410
Kukjin Kim906c7892012-02-11 21:27:08 +0900411static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100412{
413 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
414
415 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
416 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
417 else
418 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
419
Tomasz Figa41de8982012-12-11 13:58:43 +0900420 if (soc_is_exynos4210())
421 iotable_init(exynos4210_iodesc, ARRAY_SIZE(exynos4210_iodesc));
422 if (soc_is_exynos4212() || soc_is_exynos4412())
423 iotable_init(exynos4x12_iodesc, ARRAY_SIZE(exynos4x12_iodesc));
424
Kukjin Kimcc511b82011-12-27 08:18:36 +0100425 /* initialize device information early */
426 exynos4_default_sdhci0();
427 exynos4_default_sdhci1();
428 exynos4_default_sdhci2();
429 exynos4_default_sdhci3();
430
431 s3c_adc_setname("samsung-adc-v3");
432
433 s3c_fimc_setname(0, "exynos4-fimc");
434 s3c_fimc_setname(1, "exynos4-fimc");
435 s3c_fimc_setname(2, "exynos4-fimc");
436 s3c_fimc_setname(3, "exynos4-fimc");
437
Thomas Abraham8482c812012-04-14 08:04:46 -0700438 s3c_sdhci_setname(0, "exynos4-sdhci");
439 s3c_sdhci_setname(1, "exynos4-sdhci");
440 s3c_sdhci_setname(2, "exynos4-sdhci");
441 s3c_sdhci_setname(3, "exynos4-sdhci");
442
Kukjin Kimcc511b82011-12-27 08:18:36 +0100443 /* The I2C bus controllers are directly compatible with s3c2440 */
444 s3c_i2c0_setname("s3c2440-i2c");
445 s3c_i2c1_setname("s3c2440-i2c");
446 s3c_i2c2_setname("s3c2440-i2c");
447
448 s5p_fb_setname(0, "exynos4-fb");
449 s5p_hdmi_setname("exynos4-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900450
451 s3c64xx_spi_setname("exynos4210-spi");
Kukjin Kimcc511b82011-12-27 08:18:36 +0100452}
453
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900454static void __init exynos5_map_io(void)
455{
456 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Tomasz Figa41de8982012-12-11 13:58:43 +0900457
458 if (soc_is_exynos5250())
459 iotable_init(exynos5250_iodesc, ARRAY_SIZE(exynos5250_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900460}
461
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900462static void __init exynos5440_map_io(void)
463{
464 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
465}
466
Tomasz Figa68a433f2013-05-25 06:27:29 +0900467void __init exynos_set_timer_source(u8 channels)
468{
469 exynos4_pwm_variant.output_mask = BIT(SAMSUNG_PWM_NUM) - 1;
470 exynos4_pwm_variant.output_mask &= ~channels;
471}
472
Thomas Abraham6923ae42013-03-09 17:03:29 +0900473void __init exynos_init_time(void)
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900474{
Tomasz Figa68a433f2013-05-25 06:27:29 +0900475 unsigned int timer_irqs[SAMSUNG_PWM_NUM] = {
476 EXYNOS4_IRQ_TIMER0_VIC, EXYNOS4_IRQ_TIMER1_VIC,
477 EXYNOS4_IRQ_TIMER2_VIC, EXYNOS4_IRQ_TIMER3_VIC,
478 EXYNOS4_IRQ_TIMER4_VIC,
479 };
480
Thomas Abraham6923ae42013-03-09 17:03:29 +0900481 if (of_have_populated_dt()) {
482#ifdef CONFIG_OF
483 of_clk_init(NULL);
484 clocksource_of_init();
Kukjin Kim61bcbc22013-01-05 08:32:55 -0800485#endif
Thomas Abraham6923ae42013-03-09 17:03:29 +0900486 } else {
487 /* todo: remove after migrating legacy E4 platforms to dt */
Thomas Abraham296f3f22013-04-05 15:17:47 +0900488#ifdef CONFIG_ARCH_EXYNOS4
Arnd Bergmann25e56eb2013-04-10 11:31:44 +0200489 exynos4_clk_init(NULL, !soc_is_exynos4210(), S5P_VA_CMU, readl(S5P_VA_CHIPID + 8) & 1);
Thomas Abraham92744272013-03-09 17:03:33 +0900490 exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f);
Thomas Abraham296f3f22013-04-05 15:17:47 +0900491#endif
Tomasz Figa68a433f2013-05-25 06:27:29 +0900492#ifdef CONFIG_CLKSRC_SAMSUNG_PWM
493 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
494 samsung_pwm_clocksource_init(S3C_VA_TIMER,
495 timer_irqs, &exynos4_pwm_variant);
496 else
497#endif
498 mct_init(S5P_VA_SYSTIMER, EXYNOS4_IRQ_MCT_G0,
499 EXYNOS4_IRQ_MCT_L0, EXYNOS4_IRQ_MCT_L1);
Thomas Abraham6923ae42013-03-09 17:03:29 +0900500 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900501}
502
Arnd Bergmann6761dcf2013-04-10 15:17:47 +0200503static unsigned int max_combiner_nr(void)
504{
505 if (soc_is_exynos5250())
506 return EXYNOS5_MAX_COMBINER_NR;
507 else if (soc_is_exynos4412())
508 return EXYNOS4412_MAX_COMBINER_NR;
509 else if (soc_is_exynos4212())
510 return EXYNOS4212_MAX_COMBINER_NR;
511 else
512 return EXYNOS4210_MAX_COMBINER_NR;
513}
514
515
Kukjin Kimcc511b82011-12-27 08:18:36 +0100516void __init exynos4_init_irq(void)
517{
Arnd Bergmann40ba95f2012-01-07 11:51:28 +0000518 unsigned int gic_bank_offset;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100519
520 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
521
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000522 if (!of_have_populated_dt())
Grant Likely75294952012-02-14 14:06:57 -0700523 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 +0000524#ifdef CONFIG_OF
525 else
Rob Herring0529e3152012-11-05 16:18:28 -0600526 irqchip_init();
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000527#endif
Kukjin Kimcc511b82011-12-27 08:18:36 +0100528
Thomas Abrahame873a472012-05-15 16:25:23 +0900529 if (!of_have_populated_dt())
Arnd Bergmann863a08d2013-04-12 15:27:09 +0200530 combiner_init(S5P_VA_COMBINER_BASE, NULL,
531 max_combiner_nr(), COMBINER_IRQ(0, 0));
Inderpal Singh9f370672012-12-27 10:40:16 -0800532
533 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100534}
535
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900536void __init exynos5_init_irq(void)
537{
Tushar Behera6fff5a12012-04-24 13:25:01 -0700538#ifdef CONFIG_OF
Rob Herring0529e3152012-11-05 16:18:28 -0600539 irqchip_init();
Tushar Behera6fff5a12012-04-24 13:25:01 -0700540#endif
Inderpal Singh34455132012-11-22 14:46:21 +0900541 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900542}
543
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900544struct bus_type exynos_subsys = {
545 .name = "exynos-core",
546 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900547};
548
Linus Torvalds7affca32012-01-07 12:03:30 -0800549static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900550 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900551};
552
553static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100554{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900555 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100556}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900557core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100558
559#ifdef CONFIG_CACHE_L2X0
560static int __init exynos4_l2x0_cache_init(void)
561{
Il Hane1b19942012-04-05 07:59:36 -0700562 int ret;
563
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900564 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900565 return 0;
566
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800567 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
568 if (!ret) {
569 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
570 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
571 return 0;
572 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100573
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800574 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
575 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
576 /* TAG, Data Latency Control: 2 cycles */
577 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100578
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800579 if (soc_is_exynos4212() || soc_is_exynos4412())
580 l2x0_saved_regs.data_latency = 0x120;
581 else
582 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100583
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800584 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
585 l2x0_saved_regs.pwr_ctrl =
586 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100587
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800588 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100589
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800590 __raw_writel(l2x0_saved_regs.tag_latency,
591 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
592 __raw_writel(l2x0_saved_regs.data_latency,
593 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
594
595 /* L2X0 Prefetch Control */
596 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
597 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
598
599 /* L2X0 Power Control */
600 __raw_writel(l2x0_saved_regs.pwr_ctrl,
601 S5P_VA_L2CC + L2X0_POWER_CTRL);
602
603 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
604 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
605 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100606
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800607 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100608 return 0;
609}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100610early_initcall(exynos4_l2x0_cache_init);
611#endif
612
Kukjin Kim906c7892012-02-11 21:27:08 +0900613static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100614{
615 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900616
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900617 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100618}
619
Kukjin Kimcc511b82011-12-27 08:18:36 +0100620/* uart registration process */
621
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900622static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100623{
624 struct s3c2410_uartcfg *tcfg = cfg;
625 u32 ucnt;
626
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000627 for (ucnt = 0; ucnt < no; ucnt++, tcfg++)
628 tcfg->has_fracval = 1;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100629
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900630 s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100631}
632
Eunki Kim330c90a2012-03-14 01:43:31 -0700633static void __iomem *exynos_eint_base;
634
Kukjin Kimcc511b82011-12-27 08:18:36 +0100635static DEFINE_SPINLOCK(eint_lock);
636
637static unsigned int eint0_15_data[16];
638
Eunki Kim330c90a2012-03-14 01:43:31 -0700639static inline int exynos4_irq_to_gpio(unsigned int irq)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100640{
Eunki Kim330c90a2012-03-14 01:43:31 -0700641 if (irq < IRQ_EINT(0))
642 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100643
Eunki Kim330c90a2012-03-14 01:43:31 -0700644 irq -= IRQ_EINT(0);
645 if (irq < 8)
646 return EXYNOS4_GPX0(irq);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100647
Eunki Kim330c90a2012-03-14 01:43:31 -0700648 irq -= 8;
649 if (irq < 8)
650 return EXYNOS4_GPX1(irq);
651
652 irq -= 8;
653 if (irq < 8)
654 return EXYNOS4_GPX2(irq);
655
656 irq -= 8;
657 if (irq < 8)
658 return EXYNOS4_GPX3(irq);
659
660 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100661}
662
Eunki Kim330c90a2012-03-14 01:43:31 -0700663static inline int exynos5_irq_to_gpio(unsigned int irq)
664{
665 if (irq < IRQ_EINT(0))
666 return -EINVAL;
667
668 irq -= IRQ_EINT(0);
669 if (irq < 8)
670 return EXYNOS5_GPX0(irq);
671
672 irq -= 8;
673 if (irq < 8)
674 return EXYNOS5_GPX1(irq);
675
676 irq -= 8;
677 if (irq < 8)
678 return EXYNOS5_GPX2(irq);
679
680 irq -= 8;
681 if (irq < 8)
682 return EXYNOS5_GPX3(irq);
683
684 return -EINVAL;
685}
686
Kukjin Kimbb19a752012-01-25 13:48:11 +0900687static unsigned int exynos4_eint0_15_src_int[16] = {
688 EXYNOS4_IRQ_EINT0,
689 EXYNOS4_IRQ_EINT1,
690 EXYNOS4_IRQ_EINT2,
691 EXYNOS4_IRQ_EINT3,
692 EXYNOS4_IRQ_EINT4,
693 EXYNOS4_IRQ_EINT5,
694 EXYNOS4_IRQ_EINT6,
695 EXYNOS4_IRQ_EINT7,
696 EXYNOS4_IRQ_EINT8,
697 EXYNOS4_IRQ_EINT9,
698 EXYNOS4_IRQ_EINT10,
699 EXYNOS4_IRQ_EINT11,
700 EXYNOS4_IRQ_EINT12,
701 EXYNOS4_IRQ_EINT13,
702 EXYNOS4_IRQ_EINT14,
703 EXYNOS4_IRQ_EINT15,
704};
Kukjin Kimcc511b82011-12-27 08:18:36 +0100705
Kukjin Kimbb19a752012-01-25 13:48:11 +0900706static unsigned int exynos5_eint0_15_src_int[16] = {
707 EXYNOS5_IRQ_EINT0,
708 EXYNOS5_IRQ_EINT1,
709 EXYNOS5_IRQ_EINT2,
710 EXYNOS5_IRQ_EINT3,
711 EXYNOS5_IRQ_EINT4,
712 EXYNOS5_IRQ_EINT5,
713 EXYNOS5_IRQ_EINT6,
714 EXYNOS5_IRQ_EINT7,
715 EXYNOS5_IRQ_EINT8,
716 EXYNOS5_IRQ_EINT9,
717 EXYNOS5_IRQ_EINT10,
718 EXYNOS5_IRQ_EINT11,
719 EXYNOS5_IRQ_EINT12,
720 EXYNOS5_IRQ_EINT13,
721 EXYNOS5_IRQ_EINT14,
722 EXYNOS5_IRQ_EINT15,
723};
Eunki Kim330c90a2012-03-14 01:43:31 -0700724static inline void exynos_irq_eint_mask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100725{
726 u32 mask;
727
728 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700729 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
730 mask |= EINT_OFFSET_BIT(data->irq);
731 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100732 spin_unlock(&eint_lock);
733}
734
Eunki Kim330c90a2012-03-14 01:43:31 -0700735static void exynos_irq_eint_unmask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100736{
737 u32 mask;
738
739 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700740 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
741 mask &= ~(EINT_OFFSET_BIT(data->irq));
742 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100743 spin_unlock(&eint_lock);
744}
745
Eunki Kim330c90a2012-03-14 01:43:31 -0700746static inline void exynos_irq_eint_ack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100747{
Eunki Kim330c90a2012-03-14 01:43:31 -0700748 __raw_writel(EINT_OFFSET_BIT(data->irq),
749 EINT_PEND(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100750}
751
Eunki Kim330c90a2012-03-14 01:43:31 -0700752static void exynos_irq_eint_maskack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100753{
Eunki Kim330c90a2012-03-14 01:43:31 -0700754 exynos_irq_eint_mask(data);
755 exynos_irq_eint_ack(data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100756}
757
Eunki Kim330c90a2012-03-14 01:43:31 -0700758static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100759{
760 int offs = EINT_OFFSET(data->irq);
761 int shift;
762 u32 ctrl, mask;
763 u32 newvalue = 0;
764
765 switch (type) {
766 case IRQ_TYPE_EDGE_RISING:
767 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
768 break;
769
770 case IRQ_TYPE_EDGE_FALLING:
771 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
772 break;
773
774 case IRQ_TYPE_EDGE_BOTH:
775 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
776 break;
777
778 case IRQ_TYPE_LEVEL_LOW:
779 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
780 break;
781
782 case IRQ_TYPE_LEVEL_HIGH:
783 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
784 break;
785
786 default:
787 printk(KERN_ERR "No such irq type %d", type);
788 return -EINVAL;
789 }
790
791 shift = (offs & 0x7) * 4;
792 mask = 0x7 << shift;
793
794 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700795 ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100796 ctrl &= ~mask;
797 ctrl |= newvalue << shift;
Eunki Kim330c90a2012-03-14 01:43:31 -0700798 __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100799 spin_unlock(&eint_lock);
800
Eunki Kim330c90a2012-03-14 01:43:31 -0700801 if (soc_is_exynos5250())
802 s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
803 else
804 s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100805
806 return 0;
807}
808
Eunki Kim330c90a2012-03-14 01:43:31 -0700809static struct irq_chip exynos_irq_eint = {
810 .name = "exynos-eint",
811 .irq_mask = exynos_irq_eint_mask,
812 .irq_unmask = exynos_irq_eint_unmask,
813 .irq_mask_ack = exynos_irq_eint_maskack,
814 .irq_ack = exynos_irq_eint_ack,
815 .irq_set_type = exynos_irq_eint_set_type,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100816#ifdef CONFIG_PM
817 .irq_set_wake = s3c_irqext_wake,
818#endif
819};
820
821/*
822 * exynos4_irq_demux_eint
823 *
824 * This function demuxes the IRQ from from EINTs 16 to 31.
825 * It is designed to be inlined into the specific handler
826 * s5p_irq_demux_eintX_Y.
827 *
828 * Each EINT pend/mask registers handle eight of them.
829 */
Eunki Kim330c90a2012-03-14 01:43:31 -0700830static inline void exynos_irq_demux_eint(unsigned int start)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100831{
832 unsigned int irq;
833
Eunki Kim330c90a2012-03-14 01:43:31 -0700834 u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start));
835 u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100836
837 status &= ~mask;
838 status &= 0xff;
839
840 while (status) {
841 irq = fls(status) - 1;
842 generic_handle_irq(irq + start);
843 status &= ~(1 << irq);
844 }
845}
846
Eunki Kim330c90a2012-03-14 01:43:31 -0700847static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100848{
849 struct irq_chip *chip = irq_get_chip(irq);
850 chained_irq_enter(chip, desc);
Eunki Kim330c90a2012-03-14 01:43:31 -0700851 exynos_irq_demux_eint(IRQ_EINT(16));
852 exynos_irq_demux_eint(IRQ_EINT(24));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100853 chained_irq_exit(chip, desc);
854}
855
Kukjin Kimbb19a752012-01-25 13:48:11 +0900856static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100857{
858 u32 *irq_data = irq_get_handler_data(irq);
859 struct irq_chip *chip = irq_get_chip(irq);
860
861 chained_irq_enter(chip, desc);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100862 generic_handle_irq(*irq_data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100863 chained_irq_exit(chip, desc);
864}
865
Eunki Kim330c90a2012-03-14 01:43:31 -0700866static int __init exynos_init_irq_eint(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100867{
868 int irq;
869
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900870#ifdef CONFIG_PINCTRL_SAMSUNG
871 /*
872 * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf
873 * functionality along with support for external gpio and wakeup
874 * interrupts. If the samsung pinctrl driver is enabled and includes
875 * the wakeup interrupt support, then the setting up external wakeup
876 * interrupts here can be skipped. This check here is temporary to
877 * allow exynos4 platforms that do not use Samsung pinctrl driver to
878 * co-exist with platforms that do. When all of the Samsung Exynos4
879 * platforms switch over to using the pinctrl driver, the wakeup
880 * interrupt support code here can be completely removed.
881 */
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900882 static const struct of_device_id exynos_pinctrl_ids[] = {
Kukjin Kimb533c862013-01-02 16:05:42 -0800883 { .compatible = "samsung,exynos4210-pinctrl", },
884 { .compatible = "samsung,exynos4x12-pinctrl", },
Thomas Abraham97916772012-12-28 10:37:27 -0800885 { .compatible = "samsung,exynos5250-pinctrl", },
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900886 };
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900887 struct device_node *pctrl_np, *wkup_np;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900888 const char *wkup_compat = "samsung,exynos4210-wakeup-eint";
889
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900890 for_each_matching_node(pctrl_np, exynos_pinctrl_ids) {
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900891 if (of_device_is_available(pctrl_np)) {
892 wkup_np = of_find_compatible_node(pctrl_np, NULL,
893 wkup_compat);
894 if (wkup_np)
895 return -ENODEV;
896 }
897 }
898#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900899 if (soc_is_exynos5440())
900 return 0;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900901
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900902 if (soc_is_exynos5250())
Eunki Kim330c90a2012-03-14 01:43:31 -0700903 exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K);
904 else
905 exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K);
906
907 if (exynos_eint_base == NULL) {
908 pr_err("unable to ioremap for EINT base address\n");
909 return -ENOMEM;
910 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900911
Kukjin Kimcc511b82011-12-27 08:18:36 +0100912 for (irq = 0 ; irq <= 31 ; irq++) {
Eunki Kim330c90a2012-03-14 01:43:31 -0700913 irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100914 handle_level_irq);
915 set_irq_flags(IRQ_EINT(irq), IRQF_VALID);
916 }
917
Eunki Kim330c90a2012-03-14 01:43:31 -0700918 irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100919
920 for (irq = 0 ; irq <= 15 ; irq++) {
921 eint0_15_data[irq] = IRQ_EINT(irq);
922
Kukjin Kimbb19a752012-01-25 13:48:11 +0900923 if (soc_is_exynos5250()) {
924 irq_set_handler_data(exynos5_eint0_15_src_int[irq],
925 &eint0_15_data[irq]);
926 irq_set_chained_handler(exynos5_eint0_15_src_int[irq],
927 exynos_irq_eint0_15);
928 } else {
929 irq_set_handler_data(exynos4_eint0_15_src_int[irq],
930 &eint0_15_data[irq]);
931 irq_set_chained_handler(exynos4_eint0_15_src_int[irq],
932 exynos_irq_eint0_15);
933 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100934 }
935
936 return 0;
937}
Eunki Kim330c90a2012-03-14 01:43:31 -0700938arch_initcall(exynos_init_irq_eint);
Chanho Parkb7bbdbe2012-12-12 14:03:54 +0900939
940static struct resource exynos4_pmu_resource[] = {
941 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU),
942 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU1),
943#if defined(CONFIG_SOC_EXYNOS4412)
944 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU2),
945 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU3),
946#endif
947};
948
949static struct platform_device exynos4_device_pmu = {
950 .name = "arm-pmu",
951 .num_resources = ARRAY_SIZE(exynos4_pmu_resource),
952 .resource = exynos4_pmu_resource,
953};
954
955static int __init exynos_armpmu_init(void)
956{
957 if (!of_have_populated_dt()) {
958 if (soc_is_exynos4210() || soc_is_exynos4212())
959 exynos4_device_pmu.num_resources = 2;
960 platform_device_register(&exynos4_device_pmu);
961 }
962
963 return 0;
964}
965arch_initcall(exynos_armpmu_init);