blob: 745e304ad0ded17ab6b2f9d9253592739afbc1df [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>
Thomas Abrahame873a472012-05-15 16:25:23 +090026#include <linux/of_address.h>
Thomas Abraham6923ae42013-03-09 17:03:29 +090027#include <linux/clocksource.h>
28#include <linux/clk-provider.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060029#include <linux/irqchip/arm-gic.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000030#include <linux/irqchip/chained_irq.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010031
32#include <asm/proc-fns.h>
Arnd Bergmann40ba95f2012-01-07 11:51:28 +000033#include <asm/exception.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010034#include <asm/hardware/cache-l2x0.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010035#include <asm/mach/map.h>
36#include <asm/mach/irq.h>
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -080037#include <asm/cacheflush.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010038
39#include <mach/regs-irq.h>
40#include <mach/regs-pmu.h>
41#include <mach/regs-gpio.h>
Chanho Parkb7bbdbe2012-12-12 14:03:54 +090042#include <mach/irqs.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010043
44#include <plat/cpu.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010045#include <plat/devs.h>
46#include <plat/pm.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010047#include <plat/sdhci.h>
48#include <plat/gpio-cfg.h>
49#include <plat/adc-core.h>
50#include <plat/fb-core.h>
51#include <plat/fimc-core.h>
52#include <plat/iic-core.h>
53#include <plat/tv-core.h>
Heiko Stuebner308b3af2012-10-17 16:47:11 +090054#include <plat/spi-core.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010055#include <plat/regs-serial.h>
56
57#include "common.h"
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -080058#define L2_AUX_VAL 0x7C470001
59#define L2_AUX_MASK 0xC200ffff
Kukjin Kimcc511b82011-12-27 08:18:36 +010060
Kukjin Kimcc511b82011-12-27 08:18:36 +010061static const char name_exynos4210[] = "EXYNOS4210";
62static const char name_exynos4212[] = "EXYNOS4212";
63static const char name_exynos4412[] = "EXYNOS4412";
Kukjin Kim94c7ca72012-02-11 22:15:45 +090064static const char name_exynos5250[] = "EXYNOS5250";
Kukjin Kim2edb36c2012-11-15 15:48:56 +090065static const char name_exynos5440[] = "EXYNOS5440";
Kukjin Kimcc511b82011-12-27 08:18:36 +010066
Kukjin Kim906c7892012-02-11 21:27:08 +090067static void exynos4_map_io(void);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090068static void exynos5_map_io(void);
Kukjin Kim2edb36c2012-11-15 15:48:56 +090069static void exynos5440_map_io(void);
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
Thomas Abraham92744272013-03-09 17:03:33 +090073unsigned long xxti_f = 0, xusbxti_f = 0;
74
Kukjin Kimcc511b82011-12-27 08:18:36 +010075static struct cpu_table cpu_ids[] __initdata = {
76 {
77 .idcode = EXYNOS4210_CPU_ID,
78 .idmask = EXYNOS4_CPU_MASK,
79 .map_io = exynos4_map_io,
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,
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,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090094 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010095 .init = exynos_init,
96 .name = name_exynos4412,
Kukjin Kim94c7ca72012-02-11 22:15:45 +090097 }, {
98 .idcode = EXYNOS5250_SOC_ID,
99 .idmask = EXYNOS5_SOC_MASK,
100 .map_io = exynos5_map_io,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900101 .init = exynos_init,
102 .name = name_exynos5250,
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900103 }, {
104 .idcode = EXYNOS5440_SOC_ID,
105 .idmask = EXYNOS5_SOC_MASK,
106 .map_io = exynos5440_map_io,
107 .init = exynos_init,
108 .name = name_exynos5440,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100109 },
110};
111
112/* Initial IO mappings */
113
114static struct map_desc exynos_iodesc[] __initdata = {
115 {
116 .virtual = (unsigned long)S5P_VA_CHIPID,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900117 .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID),
Kukjin Kimcc511b82011-12-27 08:18:36 +0100118 .length = SZ_4K,
119 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900120 },
121};
122
123static struct map_desc exynos4_iodesc[] __initdata = {
124 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100125 .virtual = (unsigned long)S3C_VA_SYS,
126 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
127 .length = SZ_64K,
128 .type = MT_DEVICE,
129 }, {
130 .virtual = (unsigned long)S3C_VA_TIMER,
131 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
132 .length = SZ_16K,
133 .type = MT_DEVICE,
134 }, {
135 .virtual = (unsigned long)S3C_VA_WATCHDOG,
136 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
137 .length = SZ_4K,
138 .type = MT_DEVICE,
139 }, {
140 .virtual = (unsigned long)S5P_VA_SROMC,
141 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
142 .length = SZ_4K,
143 .type = MT_DEVICE,
144 }, {
145 .virtual = (unsigned long)S5P_VA_SYSTIMER,
146 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
147 .length = SZ_4K,
148 .type = MT_DEVICE,
149 }, {
150 .virtual = (unsigned long)S5P_VA_PMU,
151 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
152 .length = SZ_64K,
153 .type = MT_DEVICE,
154 }, {
155 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
156 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
157 .length = SZ_4K,
158 .type = MT_DEVICE,
159 }, {
160 .virtual = (unsigned long)S5P_VA_GIC_CPU,
161 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
162 .length = SZ_64K,
163 .type = MT_DEVICE,
164 }, {
165 .virtual = (unsigned long)S5P_VA_GIC_DIST,
166 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
167 .length = SZ_64K,
168 .type = MT_DEVICE,
169 }, {
170 .virtual = (unsigned long)S3C_VA_UART,
171 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
172 .length = SZ_512K,
173 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900174 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100175 .virtual = (unsigned long)S5P_VA_CMU,
176 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
177 .length = SZ_128K,
178 .type = MT_DEVICE,
179 }, {
180 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
181 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
182 .length = SZ_8K,
183 .type = MT_DEVICE,
184 }, {
185 .virtual = (unsigned long)S5P_VA_L2CC,
186 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
187 .length = SZ_4K,
188 .type = MT_DEVICE,
189 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100190 .virtual = (unsigned long)S5P_VA_DMC0,
191 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900192 .length = SZ_64K,
193 .type = MT_DEVICE,
194 }, {
195 .virtual = (unsigned long)S5P_VA_DMC1,
196 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
197 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100198 .type = MT_DEVICE,
199 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100200 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
201 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
202 .length = SZ_4K,
203 .type = MT_DEVICE,
204 },
205};
206
207static struct map_desc exynos4_iodesc0[] __initdata = {
208 {
209 .virtual = (unsigned long)S5P_VA_SYSRAM,
210 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
211 .length = SZ_4K,
212 .type = MT_DEVICE,
213 },
214};
215
216static struct map_desc exynos4_iodesc1[] __initdata = {
217 {
218 .virtual = (unsigned long)S5P_VA_SYSRAM,
219 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
220 .length = SZ_4K,
221 .type = MT_DEVICE,
222 },
223};
224
Tomasz Figa41de8982012-12-11 13:58:43 +0900225static struct map_desc exynos4210_iodesc[] __initdata = {
226 {
227 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
228 .pfn = __phys_to_pfn(EXYNOS4210_PA_SYSRAM_NS),
229 .length = SZ_4K,
230 .type = MT_DEVICE,
231 },
232};
233
234static struct map_desc exynos4x12_iodesc[] __initdata = {
235 {
236 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
237 .pfn = __phys_to_pfn(EXYNOS4x12_PA_SYSRAM_NS),
238 .length = SZ_4K,
239 .type = MT_DEVICE,
240 },
241};
242
243static struct map_desc exynos5250_iodesc[] __initdata = {
244 {
245 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
246 .pfn = __phys_to_pfn(EXYNOS5250_PA_SYSRAM_NS),
247 .length = SZ_4K,
248 .type = MT_DEVICE,
249 },
250};
251
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900252static struct map_desc exynos5_iodesc[] __initdata = {
253 {
254 .virtual = (unsigned long)S3C_VA_SYS,
255 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
256 .length = SZ_64K,
257 .type = MT_DEVICE,
258 }, {
259 .virtual = (unsigned long)S3C_VA_TIMER,
260 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
261 .length = SZ_16K,
262 .type = MT_DEVICE,
263 }, {
264 .virtual = (unsigned long)S3C_VA_WATCHDOG,
265 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
266 .length = SZ_4K,
267 .type = MT_DEVICE,
268 }, {
269 .virtual = (unsigned long)S5P_VA_SROMC,
270 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
271 .length = SZ_4K,
272 .type = MT_DEVICE,
273 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900274 .virtual = (unsigned long)S5P_VA_SYSRAM,
275 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
276 .length = SZ_4K,
277 .type = MT_DEVICE,
278 }, {
279 .virtual = (unsigned long)S5P_VA_CMU,
280 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
281 .length = 144 * SZ_1K,
282 .type = MT_DEVICE,
283 }, {
284 .virtual = (unsigned long)S5P_VA_PMU,
285 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
286 .length = SZ_64K,
287 .type = MT_DEVICE,
288 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900289 .virtual = (unsigned long)S3C_VA_UART,
290 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
291 .length = SZ_512K,
292 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900293 },
294};
295
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900296static struct map_desc exynos5440_iodesc0[] __initdata = {
297 {
298 .virtual = (unsigned long)S3C_VA_UART,
299 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
300 .length = SZ_512K,
301 .type = MT_DEVICE,
302 },
303};
304
Russell King9eb48592012-01-03 11:56:53 +0100305void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100306{
307 __raw_writel(0x1, S5P_SWRESET);
308}
309
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900310void exynos5_restart(char mode, const char *cmd)
311{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800312 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900313 u32 val;
314 void __iomem *addr;
315
316 if (of_machine_is_compatible("samsung,exynos5250")) {
317 val = 0x1;
318 addr = EXYNOS_SWRESET;
319 } else if (of_machine_is_compatible("samsung,exynos5440")) {
Thomas Abraham60db7e52013-01-24 10:09:13 -0800320 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
321 addr = of_iomap(np, 0) + 0xcc;
322 val = (0xfff << 20) | (0x1 << 16);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900323 } else {
324 pr_err("%s: cannot support non-DT\n", __func__);
325 return;
326 }
327
328 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900329}
330
Shawn Guobb13fab2012-04-26 10:35:40 +0800331void __init exynos_init_late(void)
332{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900333 if (of_machine_is_compatible("samsung,exynos5440"))
334 /* to be supported later */
335 return;
336
Shawn Guobb13fab2012-04-26 10:35:40 +0800337 exynos_pm_late_initcall();
338}
339
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900340#ifdef CONFIG_OF
341int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
342 int depth, void *data)
343{
344 struct map_desc iodesc;
345 __be32 *reg;
346 unsigned long len;
347
348 if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
349 !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock"))
350 return 0;
351
352 reg = of_get_flat_dt_prop(node, "reg", &len);
353 if (reg == NULL || len != (sizeof(unsigned long) * 2))
354 return 0;
355
356 iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0]));
357 iodesc.length = be32_to_cpu(reg[1]) - 1;
358 iodesc.virtual = (unsigned long)S5P_VA_CHIPID;
359 iodesc.type = MT_DEVICE;
360 iotable_init(&iodesc, 1);
361 return 1;
362}
363#endif
364
Kukjin Kimcc511b82011-12-27 08:18:36 +0100365/*
366 * exynos_map_io
367 *
368 * register the standard cpu IO areas
369 */
370
371void __init exynos_init_io(struct map_desc *mach_desc, int size)
372{
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900373#ifdef CONFIG_OF
374 if (initial_boot_params)
375 of_scan_flat_dt(exynos_fdt_map_chipid, NULL);
376 else
Doug Anderson5b7897d2012-11-27 11:53:14 -0800377#endif
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900378 iotable_init(exynos_iodesc, ARRAY_SIZE(exynos_iodesc));
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900379
Kukjin Kimcc511b82011-12-27 08:18:36 +0100380 if (mach_desc)
381 iotable_init(mach_desc, size);
382
383 /* detect cpu id and rev. */
384 s5p_init_cpu(S5P_VA_CHIPID);
385
386 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
387}
388
Kukjin Kim906c7892012-02-11 21:27:08 +0900389static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100390{
391 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
392
393 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
394 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
395 else
396 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
397
Tomasz Figa41de8982012-12-11 13:58:43 +0900398 if (soc_is_exynos4210())
399 iotable_init(exynos4210_iodesc, ARRAY_SIZE(exynos4210_iodesc));
400 if (soc_is_exynos4212() || soc_is_exynos4412())
401 iotable_init(exynos4x12_iodesc, ARRAY_SIZE(exynos4x12_iodesc));
402
Kukjin Kimcc511b82011-12-27 08:18:36 +0100403 /* initialize device information early */
404 exynos4_default_sdhci0();
405 exynos4_default_sdhci1();
406 exynos4_default_sdhci2();
407 exynos4_default_sdhci3();
408
409 s3c_adc_setname("samsung-adc-v3");
410
411 s3c_fimc_setname(0, "exynos4-fimc");
412 s3c_fimc_setname(1, "exynos4-fimc");
413 s3c_fimc_setname(2, "exynos4-fimc");
414 s3c_fimc_setname(3, "exynos4-fimc");
415
Thomas Abraham8482c812012-04-14 08:04:46 -0700416 s3c_sdhci_setname(0, "exynos4-sdhci");
417 s3c_sdhci_setname(1, "exynos4-sdhci");
418 s3c_sdhci_setname(2, "exynos4-sdhci");
419 s3c_sdhci_setname(3, "exynos4-sdhci");
420
Kukjin Kimcc511b82011-12-27 08:18:36 +0100421 /* The I2C bus controllers are directly compatible with s3c2440 */
422 s3c_i2c0_setname("s3c2440-i2c");
423 s3c_i2c1_setname("s3c2440-i2c");
424 s3c_i2c2_setname("s3c2440-i2c");
425
426 s5p_fb_setname(0, "exynos4-fb");
427 s5p_hdmi_setname("exynos4-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900428
429 s3c64xx_spi_setname("exynos4210-spi");
Kukjin Kimcc511b82011-12-27 08:18:36 +0100430}
431
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900432static void __init exynos5_map_io(void)
433{
434 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Tomasz Figa41de8982012-12-11 13:58:43 +0900435
436 if (soc_is_exynos5250())
437 iotable_init(exynos5250_iodesc, ARRAY_SIZE(exynos5250_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900438}
439
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900440static void __init exynos5440_map_io(void)
441{
442 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
443}
444
Thomas Abraham6923ae42013-03-09 17:03:29 +0900445void __init exynos_init_time(void)
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900446{
Thomas Abraham6923ae42013-03-09 17:03:29 +0900447 if (of_have_populated_dt()) {
448#ifdef CONFIG_OF
449 of_clk_init(NULL);
450 clocksource_of_init();
Kukjin Kim61bcbc22013-01-05 08:32:55 -0800451#endif
Thomas Abraham6923ae42013-03-09 17:03:29 +0900452 } else {
453 /* todo: remove after migrating legacy E4 platforms to dt */
Thomas Abraham296f3f22013-04-05 15:17:47 +0900454#ifdef CONFIG_ARCH_EXYNOS4
Arnd Bergmann25e56eb2013-04-10 11:31:44 +0200455 exynos4_clk_init(NULL, !soc_is_exynos4210(), S5P_VA_CMU, readl(S5P_VA_CHIPID + 8) & 1);
Thomas Abraham92744272013-03-09 17:03:33 +0900456 exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f);
Thomas Abraham296f3f22013-04-05 15:17:47 +0900457#endif
Arnd Bergmann034c0972013-04-10 11:35:29 +0200458 mct_init(S5P_VA_SYSTIMER, EXYNOS4_IRQ_MCT_G0, EXYNOS4_IRQ_MCT_L0, EXYNOS4_IRQ_MCT_L1);
Thomas Abraham6923ae42013-03-09 17:03:29 +0900459 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900460}
461
Arnd Bergmann6761dcf2013-04-10 15:17:47 +0200462static unsigned int max_combiner_nr(void)
463{
464 if (soc_is_exynos5250())
465 return EXYNOS5_MAX_COMBINER_NR;
466 else if (soc_is_exynos4412())
467 return EXYNOS4412_MAX_COMBINER_NR;
468 else if (soc_is_exynos4212())
469 return EXYNOS4212_MAX_COMBINER_NR;
470 else
471 return EXYNOS4210_MAX_COMBINER_NR;
472}
473
474
Kukjin Kimcc511b82011-12-27 08:18:36 +0100475void __init exynos4_init_irq(void)
476{
Arnd Bergmann40ba95f2012-01-07 11:51:28 +0000477 unsigned int gic_bank_offset;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100478
479 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
480
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000481 if (!of_have_populated_dt())
Grant Likely75294952012-02-14 14:06:57 -0700482 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 +0000483#ifdef CONFIG_OF
484 else
Rob Herring0529e3152012-11-05 16:18:28 -0600485 irqchip_init();
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000486#endif
Kukjin Kimcc511b82011-12-27 08:18:36 +0100487
Thomas Abrahame873a472012-05-15 16:25:23 +0900488 if (!of_have_populated_dt())
Arnd Bergmann863a08d2013-04-12 15:27:09 +0200489 combiner_init(S5P_VA_COMBINER_BASE, NULL,
490 max_combiner_nr(), COMBINER_IRQ(0, 0));
Inderpal Singh9f370672012-12-27 10:40:16 -0800491
492 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100493}
494
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900495void __init exynos5_init_irq(void)
496{
Tushar Behera6fff5a12012-04-24 13:25:01 -0700497#ifdef CONFIG_OF
Rob Herring0529e3152012-11-05 16:18:28 -0600498 irqchip_init();
Tushar Behera6fff5a12012-04-24 13:25:01 -0700499#endif
Inderpal Singh34455132012-11-22 14:46:21 +0900500 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900501}
502
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900503struct bus_type exynos_subsys = {
504 .name = "exynos-core",
505 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900506};
507
Linus Torvalds7affca32012-01-07 12:03:30 -0800508static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900509 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900510};
511
512static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100513{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900514 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100515}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900516core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100517
518#ifdef CONFIG_CACHE_L2X0
519static int __init exynos4_l2x0_cache_init(void)
520{
Il Hane1b19942012-04-05 07:59:36 -0700521 int ret;
522
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900523 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900524 return 0;
525
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800526 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
527 if (!ret) {
528 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
529 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
530 return 0;
531 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100532
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800533 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
534 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
535 /* TAG, Data Latency Control: 2 cycles */
536 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100537
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800538 if (soc_is_exynos4212() || soc_is_exynos4412())
539 l2x0_saved_regs.data_latency = 0x120;
540 else
541 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100542
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800543 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
544 l2x0_saved_regs.pwr_ctrl =
545 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100546
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800547 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100548
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800549 __raw_writel(l2x0_saved_regs.tag_latency,
550 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
551 __raw_writel(l2x0_saved_regs.data_latency,
552 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
553
554 /* L2X0 Prefetch Control */
555 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
556 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
557
558 /* L2X0 Power Control */
559 __raw_writel(l2x0_saved_regs.pwr_ctrl,
560 S5P_VA_L2CC + L2X0_POWER_CTRL);
561
562 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
563 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
564 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100565
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800566 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100567 return 0;
568}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100569early_initcall(exynos4_l2x0_cache_init);
570#endif
571
Kukjin Kim906c7892012-02-11 21:27:08 +0900572static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100573{
574 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900575
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900576 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100577}
578
Kukjin Kimcc511b82011-12-27 08:18:36 +0100579/* uart registration process */
580
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900581static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100582{
583 struct s3c2410_uartcfg *tcfg = cfg;
584 u32 ucnt;
585
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000586 for (ucnt = 0; ucnt < no; ucnt++, tcfg++)
587 tcfg->has_fracval = 1;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100588
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900589 s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100590}
591
Eunki Kim330c90a2012-03-14 01:43:31 -0700592static void __iomem *exynos_eint_base;
593
Kukjin Kimcc511b82011-12-27 08:18:36 +0100594static DEFINE_SPINLOCK(eint_lock);
595
596static unsigned int eint0_15_data[16];
597
Eunki Kim330c90a2012-03-14 01:43:31 -0700598static inline int exynos4_irq_to_gpio(unsigned int irq)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100599{
Eunki Kim330c90a2012-03-14 01:43:31 -0700600 if (irq < IRQ_EINT(0))
601 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100602
Eunki Kim330c90a2012-03-14 01:43:31 -0700603 irq -= IRQ_EINT(0);
604 if (irq < 8)
605 return EXYNOS4_GPX0(irq);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100606
Eunki Kim330c90a2012-03-14 01:43:31 -0700607 irq -= 8;
608 if (irq < 8)
609 return EXYNOS4_GPX1(irq);
610
611 irq -= 8;
612 if (irq < 8)
613 return EXYNOS4_GPX2(irq);
614
615 irq -= 8;
616 if (irq < 8)
617 return EXYNOS4_GPX3(irq);
618
619 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100620}
621
Eunki Kim330c90a2012-03-14 01:43:31 -0700622static inline int exynos5_irq_to_gpio(unsigned int irq)
623{
624 if (irq < IRQ_EINT(0))
625 return -EINVAL;
626
627 irq -= IRQ_EINT(0);
628 if (irq < 8)
629 return EXYNOS5_GPX0(irq);
630
631 irq -= 8;
632 if (irq < 8)
633 return EXYNOS5_GPX1(irq);
634
635 irq -= 8;
636 if (irq < 8)
637 return EXYNOS5_GPX2(irq);
638
639 irq -= 8;
640 if (irq < 8)
641 return EXYNOS5_GPX3(irq);
642
643 return -EINVAL;
644}
645
Kukjin Kimbb19a752012-01-25 13:48:11 +0900646static unsigned int exynos4_eint0_15_src_int[16] = {
647 EXYNOS4_IRQ_EINT0,
648 EXYNOS4_IRQ_EINT1,
649 EXYNOS4_IRQ_EINT2,
650 EXYNOS4_IRQ_EINT3,
651 EXYNOS4_IRQ_EINT4,
652 EXYNOS4_IRQ_EINT5,
653 EXYNOS4_IRQ_EINT6,
654 EXYNOS4_IRQ_EINT7,
655 EXYNOS4_IRQ_EINT8,
656 EXYNOS4_IRQ_EINT9,
657 EXYNOS4_IRQ_EINT10,
658 EXYNOS4_IRQ_EINT11,
659 EXYNOS4_IRQ_EINT12,
660 EXYNOS4_IRQ_EINT13,
661 EXYNOS4_IRQ_EINT14,
662 EXYNOS4_IRQ_EINT15,
663};
Kukjin Kimcc511b82011-12-27 08:18:36 +0100664
Kukjin Kimbb19a752012-01-25 13:48:11 +0900665static unsigned int exynos5_eint0_15_src_int[16] = {
666 EXYNOS5_IRQ_EINT0,
667 EXYNOS5_IRQ_EINT1,
668 EXYNOS5_IRQ_EINT2,
669 EXYNOS5_IRQ_EINT3,
670 EXYNOS5_IRQ_EINT4,
671 EXYNOS5_IRQ_EINT5,
672 EXYNOS5_IRQ_EINT6,
673 EXYNOS5_IRQ_EINT7,
674 EXYNOS5_IRQ_EINT8,
675 EXYNOS5_IRQ_EINT9,
676 EXYNOS5_IRQ_EINT10,
677 EXYNOS5_IRQ_EINT11,
678 EXYNOS5_IRQ_EINT12,
679 EXYNOS5_IRQ_EINT13,
680 EXYNOS5_IRQ_EINT14,
681 EXYNOS5_IRQ_EINT15,
682};
Eunki Kim330c90a2012-03-14 01:43:31 -0700683static inline void exynos_irq_eint_mask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100684{
685 u32 mask;
686
687 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700688 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
689 mask |= EINT_OFFSET_BIT(data->irq);
690 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100691 spin_unlock(&eint_lock);
692}
693
Eunki Kim330c90a2012-03-14 01:43:31 -0700694static void exynos_irq_eint_unmask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100695{
696 u32 mask;
697
698 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700699 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
700 mask &= ~(EINT_OFFSET_BIT(data->irq));
701 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100702 spin_unlock(&eint_lock);
703}
704
Eunki Kim330c90a2012-03-14 01:43:31 -0700705static inline void exynos_irq_eint_ack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100706{
Eunki Kim330c90a2012-03-14 01:43:31 -0700707 __raw_writel(EINT_OFFSET_BIT(data->irq),
708 EINT_PEND(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100709}
710
Eunki Kim330c90a2012-03-14 01:43:31 -0700711static void exynos_irq_eint_maskack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100712{
Eunki Kim330c90a2012-03-14 01:43:31 -0700713 exynos_irq_eint_mask(data);
714 exynos_irq_eint_ack(data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100715}
716
Eunki Kim330c90a2012-03-14 01:43:31 -0700717static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100718{
719 int offs = EINT_OFFSET(data->irq);
720 int shift;
721 u32 ctrl, mask;
722 u32 newvalue = 0;
723
724 switch (type) {
725 case IRQ_TYPE_EDGE_RISING:
726 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
727 break;
728
729 case IRQ_TYPE_EDGE_FALLING:
730 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
731 break;
732
733 case IRQ_TYPE_EDGE_BOTH:
734 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
735 break;
736
737 case IRQ_TYPE_LEVEL_LOW:
738 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
739 break;
740
741 case IRQ_TYPE_LEVEL_HIGH:
742 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
743 break;
744
745 default:
746 printk(KERN_ERR "No such irq type %d", type);
747 return -EINVAL;
748 }
749
750 shift = (offs & 0x7) * 4;
751 mask = 0x7 << shift;
752
753 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700754 ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100755 ctrl &= ~mask;
756 ctrl |= newvalue << shift;
Eunki Kim330c90a2012-03-14 01:43:31 -0700757 __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100758 spin_unlock(&eint_lock);
759
Eunki Kim330c90a2012-03-14 01:43:31 -0700760 if (soc_is_exynos5250())
761 s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
762 else
763 s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100764
765 return 0;
766}
767
Eunki Kim330c90a2012-03-14 01:43:31 -0700768static struct irq_chip exynos_irq_eint = {
769 .name = "exynos-eint",
770 .irq_mask = exynos_irq_eint_mask,
771 .irq_unmask = exynos_irq_eint_unmask,
772 .irq_mask_ack = exynos_irq_eint_maskack,
773 .irq_ack = exynos_irq_eint_ack,
774 .irq_set_type = exynos_irq_eint_set_type,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100775#ifdef CONFIG_PM
776 .irq_set_wake = s3c_irqext_wake,
777#endif
778};
779
780/*
781 * exynos4_irq_demux_eint
782 *
783 * This function demuxes the IRQ from from EINTs 16 to 31.
784 * It is designed to be inlined into the specific handler
785 * s5p_irq_demux_eintX_Y.
786 *
787 * Each EINT pend/mask registers handle eight of them.
788 */
Eunki Kim330c90a2012-03-14 01:43:31 -0700789static inline void exynos_irq_demux_eint(unsigned int start)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100790{
791 unsigned int irq;
792
Eunki Kim330c90a2012-03-14 01:43:31 -0700793 u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start));
794 u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100795
796 status &= ~mask;
797 status &= 0xff;
798
799 while (status) {
800 irq = fls(status) - 1;
801 generic_handle_irq(irq + start);
802 status &= ~(1 << irq);
803 }
804}
805
Eunki Kim330c90a2012-03-14 01:43:31 -0700806static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100807{
808 struct irq_chip *chip = irq_get_chip(irq);
809 chained_irq_enter(chip, desc);
Eunki Kim330c90a2012-03-14 01:43:31 -0700810 exynos_irq_demux_eint(IRQ_EINT(16));
811 exynos_irq_demux_eint(IRQ_EINT(24));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100812 chained_irq_exit(chip, desc);
813}
814
Kukjin Kimbb19a752012-01-25 13:48:11 +0900815static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100816{
817 u32 *irq_data = irq_get_handler_data(irq);
818 struct irq_chip *chip = irq_get_chip(irq);
819
820 chained_irq_enter(chip, desc);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100821 generic_handle_irq(*irq_data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100822 chained_irq_exit(chip, desc);
823}
824
Eunki Kim330c90a2012-03-14 01:43:31 -0700825static int __init exynos_init_irq_eint(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100826{
827 int irq;
828
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900829#ifdef CONFIG_PINCTRL_SAMSUNG
830 /*
831 * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf
832 * functionality along with support for external gpio and wakeup
833 * interrupts. If the samsung pinctrl driver is enabled and includes
834 * the wakeup interrupt support, then the setting up external wakeup
835 * interrupts here can be skipped. This check here is temporary to
836 * allow exynos4 platforms that do not use Samsung pinctrl driver to
837 * co-exist with platforms that do. When all of the Samsung Exynos4
838 * platforms switch over to using the pinctrl driver, the wakeup
839 * interrupt support code here can be completely removed.
840 */
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900841 static const struct of_device_id exynos_pinctrl_ids[] = {
Kukjin Kimb533c862013-01-02 16:05:42 -0800842 { .compatible = "samsung,exynos4210-pinctrl", },
843 { .compatible = "samsung,exynos4x12-pinctrl", },
Thomas Abraham97916772012-12-28 10:37:27 -0800844 { .compatible = "samsung,exynos5250-pinctrl", },
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900845 };
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900846 struct device_node *pctrl_np, *wkup_np;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900847 const char *wkup_compat = "samsung,exynos4210-wakeup-eint";
848
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900849 for_each_matching_node(pctrl_np, exynos_pinctrl_ids) {
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900850 if (of_device_is_available(pctrl_np)) {
851 wkup_np = of_find_compatible_node(pctrl_np, NULL,
852 wkup_compat);
853 if (wkup_np)
854 return -ENODEV;
855 }
856 }
857#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900858 if (soc_is_exynos5440())
859 return 0;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900860
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900861 if (soc_is_exynos5250())
Eunki Kim330c90a2012-03-14 01:43:31 -0700862 exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K);
863 else
864 exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K);
865
866 if (exynos_eint_base == NULL) {
867 pr_err("unable to ioremap for EINT base address\n");
868 return -ENOMEM;
869 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900870
Kukjin Kimcc511b82011-12-27 08:18:36 +0100871 for (irq = 0 ; irq <= 31 ; irq++) {
Eunki Kim330c90a2012-03-14 01:43:31 -0700872 irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100873 handle_level_irq);
874 set_irq_flags(IRQ_EINT(irq), IRQF_VALID);
875 }
876
Eunki Kim330c90a2012-03-14 01:43:31 -0700877 irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100878
879 for (irq = 0 ; irq <= 15 ; irq++) {
880 eint0_15_data[irq] = IRQ_EINT(irq);
881
Kukjin Kimbb19a752012-01-25 13:48:11 +0900882 if (soc_is_exynos5250()) {
883 irq_set_handler_data(exynos5_eint0_15_src_int[irq],
884 &eint0_15_data[irq]);
885 irq_set_chained_handler(exynos5_eint0_15_src_int[irq],
886 exynos_irq_eint0_15);
887 } else {
888 irq_set_handler_data(exynos4_eint0_15_src_int[irq],
889 &eint0_15_data[irq]);
890 irq_set_chained_handler(exynos4_eint0_15_src_int[irq],
891 exynos_irq_eint0_15);
892 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100893 }
894
895 return 0;
896}
Eunki Kim330c90a2012-03-14 01:43:31 -0700897arch_initcall(exynos_init_irq_eint);
Chanho Parkb7bbdbe2012-12-12 14:03:54 +0900898
899static struct resource exynos4_pmu_resource[] = {
900 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU),
901 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU1),
902#if defined(CONFIG_SOC_EXYNOS4412)
903 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU2),
904 DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU3),
905#endif
906};
907
908static struct platform_device exynos4_device_pmu = {
909 .name = "arm-pmu",
910 .num_resources = ARRAY_SIZE(exynos4_pmu_resource),
911 .resource = exynos4_pmu_resource,
912};
913
914static int __init exynos_armpmu_init(void)
915{
916 if (!of_have_populated_dt()) {
917 if (soc_is_exynos4210() || soc_is_exynos4212())
918 exynos4_device_pmu.num_resources = 2;
919 platform_device_register(&exynos4_device_pmu);
920 }
921
922 return 0;
923}
924arch_initcall(exynos_armpmu_init);