blob: 02e35abd136b4ae39aba1c70a7068715cfdab0c8 [file] [log] [blame]
Kukjin Kimcc511b82011-12-27 08:18:36 +01001/*
2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
4 *
5 * Common Codes for EXYNOS
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/kernel.h>
13#include <linux/interrupt.h>
14#include <linux/irq.h>
Rob Herringa900e5d2013-02-12 16:04:52 -060015#include <linux/irqchip.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010016#include <linux/io.h>
Linus Torvalds7affca32012-01-07 12:03:30 -080017#include <linux/device.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010018#include <linux/gpio.h>
19#include <linux/sched.h>
20#include <linux/serial_core.h>
Arnd Bergmann237c78b2012-01-07 12:30:20 +000021#include <linux/of.h>
Doug Anderson5b7897d2012-11-27 11:53:14 -080022#include <linux/of_fdt.h>
Arnd Bergmann237c78b2012-01-07 12:30:20 +000023#include <linux/of_irq.h>
Thomas Abraham1e60bc02012-05-15 16:18:35 +090024#include <linux/export.h>
25#include <linux/irqdomain.h>
Rob Herring0529e3152012-11-05 16:18:28 -060026#include <linux/irqchip.h>
Thomas Abrahame873a472012-05-15 16:25:23 +090027#include <linux/of_address.h>
Thomas Abraham6923ae42013-03-09 17:03:29 +090028#include <linux/clocksource.h>
29#include <linux/clk-provider.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060030#include <linux/irqchip/arm-gic.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010031
32#include <asm/proc-fns.h>
Arnd Bergmann40ba95f2012-01-07 11:51:28 +000033#include <asm/exception.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010034#include <asm/hardware/cache-l2x0.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010035#include <asm/mach/map.h>
36#include <asm/mach/irq.h>
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -080037#include <asm/cacheflush.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010038
39#include <mach/regs-irq.h>
40#include <mach/regs-pmu.h>
41#include <mach/regs-gpio.h>
42
43#include <plat/cpu.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010044#include <plat/devs.h>
45#include <plat/pm.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010046#include <plat/sdhci.h>
47#include <plat/gpio-cfg.h>
48#include <plat/adc-core.h>
49#include <plat/fb-core.h>
50#include <plat/fimc-core.h>
51#include <plat/iic-core.h>
52#include <plat/tv-core.h>
Heiko Stuebner308b3af2012-10-17 16:47:11 +090053#include <plat/spi-core.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010054#include <plat/regs-serial.h>
55
56#include "common.h"
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -080057#define L2_AUX_VAL 0x7C470001
58#define L2_AUX_MASK 0xC200ffff
Kukjin Kimcc511b82011-12-27 08:18:36 +010059
Kukjin Kimcc511b82011-12-27 08:18:36 +010060static const char name_exynos4210[] = "EXYNOS4210";
61static const char name_exynos4212[] = "EXYNOS4212";
62static const char name_exynos4412[] = "EXYNOS4412";
Kukjin Kim94c7ca72012-02-11 22:15:45 +090063static const char name_exynos5250[] = "EXYNOS5250";
Kukjin Kim2edb36c2012-11-15 15:48:56 +090064static const char name_exynos5440[] = "EXYNOS5440";
Kukjin Kimcc511b82011-12-27 08:18:36 +010065
Kukjin Kim906c7892012-02-11 21:27:08 +090066static void exynos4_map_io(void);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090067static void exynos5_map_io(void);
Kukjin Kim2edb36c2012-11-15 15:48:56 +090068static void exynos5440_map_io(void);
Thomas Abraham55b6ef72012-10-29 19:46:49 +090069static void exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no);
Kukjin Kim906c7892012-02-11 21:27:08 +090070static int exynos_init(void);
Kukjin Kimcc511b82011-12-27 08:18:36 +010071
Thomas Abraham92744272013-03-09 17:03:33 +090072unsigned long xxti_f = 0, xusbxti_f = 0;
73
Kukjin Kimcc511b82011-12-27 08:18:36 +010074static struct cpu_table cpu_ids[] __initdata = {
75 {
76 .idcode = EXYNOS4210_CPU_ID,
77 .idmask = EXYNOS4_CPU_MASK,
78 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090079 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010080 .init = exynos_init,
81 .name = name_exynos4210,
82 }, {
83 .idcode = EXYNOS4212_CPU_ID,
84 .idmask = EXYNOS4_CPU_MASK,
85 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090086 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010087 .init = exynos_init,
88 .name = name_exynos4212,
89 }, {
90 .idcode = EXYNOS4412_CPU_ID,
91 .idmask = EXYNOS4_CPU_MASK,
92 .map_io = exynos4_map_io,
Thomas Abraham55b6ef72012-10-29 19:46:49 +090093 .init_uarts = exynos4_init_uarts,
Kukjin Kimcc511b82011-12-27 08:18:36 +010094 .init = exynos_init,
95 .name = name_exynos4412,
Kukjin Kim94c7ca72012-02-11 22:15:45 +090096 }, {
97 .idcode = EXYNOS5250_SOC_ID,
98 .idmask = EXYNOS5_SOC_MASK,
99 .map_io = exynos5_map_io,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900100 .init = exynos_init,
101 .name = name_exynos5250,
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900102 }, {
103 .idcode = EXYNOS5440_SOC_ID,
104 .idmask = EXYNOS5_SOC_MASK,
105 .map_io = exynos5440_map_io,
106 .init = exynos_init,
107 .name = name_exynos5440,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100108 },
109};
110
111/* Initial IO mappings */
112
113static struct map_desc exynos_iodesc[] __initdata = {
114 {
115 .virtual = (unsigned long)S5P_VA_CHIPID,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900116 .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID),
Kukjin Kimcc511b82011-12-27 08:18:36 +0100117 .length = SZ_4K,
118 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900119 },
120};
121
Doug Anderson5b7897d2012-11-27 11:53:14 -0800122#ifdef CONFIG_ARCH_EXYNOS5
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900123static struct map_desc exynos5440_iodesc[] __initdata = {
124 {
125 .virtual = (unsigned long)S5P_VA_CHIPID,
126 .pfn = __phys_to_pfn(EXYNOS5440_PA_CHIPID),
127 .length = SZ_4K,
128 .type = MT_DEVICE,
129 },
130};
Doug Anderson5b7897d2012-11-27 11:53:14 -0800131#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900132
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900133static struct map_desc exynos4_iodesc[] __initdata = {
134 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100135 .virtual = (unsigned long)S3C_VA_SYS,
136 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
137 .length = SZ_64K,
138 .type = MT_DEVICE,
139 }, {
140 .virtual = (unsigned long)S3C_VA_TIMER,
141 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
142 .length = SZ_16K,
143 .type = MT_DEVICE,
144 }, {
145 .virtual = (unsigned long)S3C_VA_WATCHDOG,
146 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
147 .length = SZ_4K,
148 .type = MT_DEVICE,
149 }, {
150 .virtual = (unsigned long)S5P_VA_SROMC,
151 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
152 .length = SZ_4K,
153 .type = MT_DEVICE,
154 }, {
155 .virtual = (unsigned long)S5P_VA_SYSTIMER,
156 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
157 .length = SZ_4K,
158 .type = MT_DEVICE,
159 }, {
160 .virtual = (unsigned long)S5P_VA_PMU,
161 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
162 .length = SZ_64K,
163 .type = MT_DEVICE,
164 }, {
165 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
166 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
167 .length = SZ_4K,
168 .type = MT_DEVICE,
169 }, {
170 .virtual = (unsigned long)S5P_VA_GIC_CPU,
171 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
172 .length = SZ_64K,
173 .type = MT_DEVICE,
174 }, {
175 .virtual = (unsigned long)S5P_VA_GIC_DIST,
176 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
177 .length = SZ_64K,
178 .type = MT_DEVICE,
179 }, {
180 .virtual = (unsigned long)S3C_VA_UART,
181 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
182 .length = SZ_512K,
183 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900184 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100185 .virtual = (unsigned long)S5P_VA_CMU,
186 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
187 .length = SZ_128K,
188 .type = MT_DEVICE,
189 }, {
190 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
191 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
192 .length = SZ_8K,
193 .type = MT_DEVICE,
194 }, {
195 .virtual = (unsigned long)S5P_VA_L2CC,
196 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
197 .length = SZ_4K,
198 .type = MT_DEVICE,
199 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100200 .virtual = (unsigned long)S5P_VA_DMC0,
201 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900202 .length = SZ_64K,
203 .type = MT_DEVICE,
204 }, {
205 .virtual = (unsigned long)S5P_VA_DMC1,
206 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
207 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100208 .type = MT_DEVICE,
209 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100210 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
211 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
212 .length = SZ_4K,
213 .type = MT_DEVICE,
214 },
215};
216
217static struct map_desc exynos4_iodesc0[] __initdata = {
218 {
219 .virtual = (unsigned long)S5P_VA_SYSRAM,
220 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
221 .length = SZ_4K,
222 .type = MT_DEVICE,
223 },
224};
225
226static struct map_desc exynos4_iodesc1[] __initdata = {
227 {
228 .virtual = (unsigned long)S5P_VA_SYSRAM,
229 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
230 .length = SZ_4K,
231 .type = MT_DEVICE,
232 },
233};
234
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900235static struct map_desc exynos5_iodesc[] __initdata = {
236 {
237 .virtual = (unsigned long)S3C_VA_SYS,
238 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
239 .length = SZ_64K,
240 .type = MT_DEVICE,
241 }, {
242 .virtual = (unsigned long)S3C_VA_TIMER,
243 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
244 .length = SZ_16K,
245 .type = MT_DEVICE,
246 }, {
247 .virtual = (unsigned long)S3C_VA_WATCHDOG,
248 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
249 .length = SZ_4K,
250 .type = MT_DEVICE,
251 }, {
252 .virtual = (unsigned long)S5P_VA_SROMC,
253 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
254 .length = SZ_4K,
255 .type = MT_DEVICE,
256 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900257 .virtual = (unsigned long)S5P_VA_SYSRAM,
258 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
259 .length = SZ_4K,
260 .type = MT_DEVICE,
261 }, {
262 .virtual = (unsigned long)S5P_VA_CMU,
263 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
264 .length = 144 * SZ_1K,
265 .type = MT_DEVICE,
266 }, {
267 .virtual = (unsigned long)S5P_VA_PMU,
268 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
269 .length = SZ_64K,
270 .type = MT_DEVICE,
271 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900272 .virtual = (unsigned long)S3C_VA_UART,
273 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
274 .length = SZ_512K,
275 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900276 },
277};
278
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900279static struct map_desc exynos5440_iodesc0[] __initdata = {
280 {
281 .virtual = (unsigned long)S3C_VA_UART,
282 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
283 .length = SZ_512K,
284 .type = MT_DEVICE,
285 },
286};
287
Russell King9eb48592012-01-03 11:56:53 +0100288void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100289{
290 __raw_writel(0x1, S5P_SWRESET);
291}
292
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900293void exynos5_restart(char mode, const char *cmd)
294{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800295 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900296 u32 val;
297 void __iomem *addr;
298
299 if (of_machine_is_compatible("samsung,exynos5250")) {
300 val = 0x1;
301 addr = EXYNOS_SWRESET;
302 } else if (of_machine_is_compatible("samsung,exynos5440")) {
Thomas Abraham60db7e52013-01-24 10:09:13 -0800303 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
304 addr = of_iomap(np, 0) + 0xcc;
305 val = (0xfff << 20) | (0x1 << 16);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900306 } else {
307 pr_err("%s: cannot support non-DT\n", __func__);
308 return;
309 }
310
311 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900312}
313
Shawn Guobb13fab2012-04-26 10:35:40 +0800314void __init exynos_init_late(void)
315{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900316 if (of_machine_is_compatible("samsung,exynos5440"))
317 /* to be supported later */
318 return;
319
Shawn Guobb13fab2012-04-26 10:35:40 +0800320 exynos_pm_late_initcall();
321}
322
Kukjin Kimcc511b82011-12-27 08:18:36 +0100323/*
324 * exynos_map_io
325 *
326 * register the standard cpu IO areas
327 */
328
329void __init exynos_init_io(struct map_desc *mach_desc, int size)
330{
Doug Anderson5b7897d2012-11-27 11:53:14 -0800331 struct map_desc *iodesc = exynos_iodesc;
332 int iodesc_sz = ARRAY_SIZE(exynos_iodesc);
333#if defined(CONFIG_OF) && defined(CONFIG_ARCH_EXYNOS5)
334 unsigned long root = of_get_flat_dt_root();
335
Kukjin Kimcc511b82011-12-27 08:18:36 +0100336 /* initialize the io descriptors we need for initialization */
Doug Anderson5b7897d2012-11-27 11:53:14 -0800337 if (of_flat_dt_is_compatible(root, "samsung,exynos5440")) {
338 iodesc = exynos5440_iodesc;
339 iodesc_sz = ARRAY_SIZE(exynos5440_iodesc);
340 }
341#endif
342
343 iotable_init(iodesc, iodesc_sz);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900344
Kukjin Kimcc511b82011-12-27 08:18:36 +0100345 if (mach_desc)
346 iotable_init(mach_desc, size);
347
348 /* detect cpu id and rev. */
349 s5p_init_cpu(S5P_VA_CHIPID);
350
351 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
352}
353
Kukjin Kim906c7892012-02-11 21:27:08 +0900354static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100355{
356 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
357
358 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
359 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
360 else
361 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
362
363 /* initialize device information early */
364 exynos4_default_sdhci0();
365 exynos4_default_sdhci1();
366 exynos4_default_sdhci2();
367 exynos4_default_sdhci3();
368
369 s3c_adc_setname("samsung-adc-v3");
370
371 s3c_fimc_setname(0, "exynos4-fimc");
372 s3c_fimc_setname(1, "exynos4-fimc");
373 s3c_fimc_setname(2, "exynos4-fimc");
374 s3c_fimc_setname(3, "exynos4-fimc");
375
Thomas Abraham8482c812012-04-14 08:04:46 -0700376 s3c_sdhci_setname(0, "exynos4-sdhci");
377 s3c_sdhci_setname(1, "exynos4-sdhci");
378 s3c_sdhci_setname(2, "exynos4-sdhci");
379 s3c_sdhci_setname(3, "exynos4-sdhci");
380
Kukjin Kimcc511b82011-12-27 08:18:36 +0100381 /* The I2C bus controllers are directly compatible with s3c2440 */
382 s3c_i2c0_setname("s3c2440-i2c");
383 s3c_i2c1_setname("s3c2440-i2c");
384 s3c_i2c2_setname("s3c2440-i2c");
385
386 s5p_fb_setname(0, "exynos4-fb");
387 s5p_hdmi_setname("exynos4-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900388
389 s3c64xx_spi_setname("exynos4210-spi");
Kukjin Kimcc511b82011-12-27 08:18:36 +0100390}
391
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900392static void __init exynos5_map_io(void)
393{
394 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900395}
396
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900397static void __init exynos5440_map_io(void)
398{
399 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
400}
401
Thomas Abraham6923ae42013-03-09 17:03:29 +0900402void __init exynos_init_time(void)
403{
404 if (of_have_populated_dt()) {
405#ifdef CONFIG_OF
406 of_clk_init(NULL);
407 clocksource_of_init();
408#endif
409 } else {
410 /* todo: remove after migrating legacy E4 platforms to dt */
Thomas Abraham296f3f22013-04-05 15:17:47 +0900411#ifdef CONFIG_ARCH_EXYNOS4
Thomas Abraham6923ae42013-03-09 17:03:29 +0900412 exynos4_clk_init(NULL);
Thomas Abraham92744272013-03-09 17:03:33 +0900413 exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f);
Thomas Abraham296f3f22013-04-05 15:17:47 +0900414#endif
Thomas Abraham6923ae42013-03-09 17:03:29 +0900415 mct_init();
416 }
417}
418
Kukjin Kimcc511b82011-12-27 08:18:36 +0100419void __init exynos4_init_irq(void)
420{
Arnd Bergmann40ba95f2012-01-07 11:51:28 +0000421 unsigned int gic_bank_offset;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100422
423 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
424
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000425 if (!of_have_populated_dt())
Grant Likely75294952012-02-14 14:06:57 -0700426 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 +0000427#ifdef CONFIG_OF
428 else
Rob Herring0529e3152012-11-05 16:18:28 -0600429 irqchip_init();
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000430#endif
Kukjin Kimcc511b82011-12-27 08:18:36 +0100431
Thomas Abrahame873a472012-05-15 16:25:23 +0900432 if (!of_have_populated_dt())
433 combiner_init(S5P_VA_COMBINER_BASE, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100434
435 /*
436 * The parameters of s5p_init_irq() are for VIC init.
437 * Theses parameters should be NULL and 0 because EXYNOS4
438 * uses GIC instead of VIC.
439 */
440 s5p_init_irq(NULL, 0);
441}
442
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900443void __init exynos5_init_irq(void)
444{
Tushar Behera6fff5a12012-04-24 13:25:01 -0700445#ifdef CONFIG_OF
Rob Herring0529e3152012-11-05 16:18:28 -0600446 irqchip_init();
Tushar Behera6fff5a12012-04-24 13:25:01 -0700447#endif
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900448 /*
449 * The parameters of s5p_init_irq() are for VIC init.
450 * Theses parameters should be NULL and 0 because EXYNOS4
451 * uses GIC instead of VIC.
452 */
Kukjin Kim12fee192012-12-06 15:31:10 +0900453 if (!of_machine_is_compatible("samsung,exynos5440"))
454 s5p_init_irq(NULL, 0);
Inderpal Singh34455132012-11-22 14:46:21 +0900455
456 gic_arch_extn.irq_set_wake = s3c_irq_wake;
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900457}
458
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900459struct bus_type exynos_subsys = {
460 .name = "exynos-core",
461 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900462};
463
Linus Torvalds7affca32012-01-07 12:03:30 -0800464static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900465 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900466};
467
468static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100469{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900470 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100471}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900472core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100473
474#ifdef CONFIG_CACHE_L2X0
475static int __init exynos4_l2x0_cache_init(void)
476{
Il Hane1b19942012-04-05 07:59:36 -0700477 int ret;
478
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900479 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900480 return 0;
481
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800482 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
483 if (!ret) {
484 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
485 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
486 return 0;
487 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100488
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800489 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
490 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
491 /* TAG, Data Latency Control: 2 cycles */
492 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100493
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800494 if (soc_is_exynos4212() || soc_is_exynos4412())
495 l2x0_saved_regs.data_latency = 0x120;
496 else
497 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100498
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800499 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
500 l2x0_saved_regs.pwr_ctrl =
501 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100502
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800503 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100504
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800505 __raw_writel(l2x0_saved_regs.tag_latency,
506 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
507 __raw_writel(l2x0_saved_regs.data_latency,
508 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
509
510 /* L2X0 Prefetch Control */
511 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
512 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
513
514 /* L2X0 Power Control */
515 __raw_writel(l2x0_saved_regs.pwr_ctrl,
516 S5P_VA_L2CC + L2X0_POWER_CTRL);
517
518 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
519 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
520 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100521
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800522 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100523 return 0;
524}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100525early_initcall(exynos4_l2x0_cache_init);
526#endif
527
Kukjin Kim906c7892012-02-11 21:27:08 +0900528static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100529{
530 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900531
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900532 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100533}
534
Kukjin Kimcc511b82011-12-27 08:18:36 +0100535/* uart registration process */
536
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900537static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100538{
539 struct s3c2410_uartcfg *tcfg = cfg;
540 u32 ucnt;
541
Arnd Bergmann237c78b2012-01-07 12:30:20 +0000542 for (ucnt = 0; ucnt < no; ucnt++, tcfg++)
543 tcfg->has_fracval = 1;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100544
Thomas Abraham55b6ef72012-10-29 19:46:49 +0900545 s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100546}
547
Eunki Kim330c90a2012-03-14 01:43:31 -0700548static void __iomem *exynos_eint_base;
549
Kukjin Kimcc511b82011-12-27 08:18:36 +0100550static DEFINE_SPINLOCK(eint_lock);
551
552static unsigned int eint0_15_data[16];
553
Eunki Kim330c90a2012-03-14 01:43:31 -0700554static inline int exynos4_irq_to_gpio(unsigned int irq)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100555{
Eunki Kim330c90a2012-03-14 01:43:31 -0700556 if (irq < IRQ_EINT(0))
557 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100558
Eunki Kim330c90a2012-03-14 01:43:31 -0700559 irq -= IRQ_EINT(0);
560 if (irq < 8)
561 return EXYNOS4_GPX0(irq);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100562
Eunki Kim330c90a2012-03-14 01:43:31 -0700563 irq -= 8;
564 if (irq < 8)
565 return EXYNOS4_GPX1(irq);
566
567 irq -= 8;
568 if (irq < 8)
569 return EXYNOS4_GPX2(irq);
570
571 irq -= 8;
572 if (irq < 8)
573 return EXYNOS4_GPX3(irq);
574
575 return -EINVAL;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100576}
577
Eunki Kim330c90a2012-03-14 01:43:31 -0700578static inline int exynos5_irq_to_gpio(unsigned int irq)
579{
580 if (irq < IRQ_EINT(0))
581 return -EINVAL;
582
583 irq -= IRQ_EINT(0);
584 if (irq < 8)
585 return EXYNOS5_GPX0(irq);
586
587 irq -= 8;
588 if (irq < 8)
589 return EXYNOS5_GPX1(irq);
590
591 irq -= 8;
592 if (irq < 8)
593 return EXYNOS5_GPX2(irq);
594
595 irq -= 8;
596 if (irq < 8)
597 return EXYNOS5_GPX3(irq);
598
599 return -EINVAL;
600}
601
Kukjin Kimbb19a752012-01-25 13:48:11 +0900602static unsigned int exynos4_eint0_15_src_int[16] = {
603 EXYNOS4_IRQ_EINT0,
604 EXYNOS4_IRQ_EINT1,
605 EXYNOS4_IRQ_EINT2,
606 EXYNOS4_IRQ_EINT3,
607 EXYNOS4_IRQ_EINT4,
608 EXYNOS4_IRQ_EINT5,
609 EXYNOS4_IRQ_EINT6,
610 EXYNOS4_IRQ_EINT7,
611 EXYNOS4_IRQ_EINT8,
612 EXYNOS4_IRQ_EINT9,
613 EXYNOS4_IRQ_EINT10,
614 EXYNOS4_IRQ_EINT11,
615 EXYNOS4_IRQ_EINT12,
616 EXYNOS4_IRQ_EINT13,
617 EXYNOS4_IRQ_EINT14,
618 EXYNOS4_IRQ_EINT15,
619};
Kukjin Kimcc511b82011-12-27 08:18:36 +0100620
Kukjin Kimbb19a752012-01-25 13:48:11 +0900621static unsigned int exynos5_eint0_15_src_int[16] = {
622 EXYNOS5_IRQ_EINT0,
623 EXYNOS5_IRQ_EINT1,
624 EXYNOS5_IRQ_EINT2,
625 EXYNOS5_IRQ_EINT3,
626 EXYNOS5_IRQ_EINT4,
627 EXYNOS5_IRQ_EINT5,
628 EXYNOS5_IRQ_EINT6,
629 EXYNOS5_IRQ_EINT7,
630 EXYNOS5_IRQ_EINT8,
631 EXYNOS5_IRQ_EINT9,
632 EXYNOS5_IRQ_EINT10,
633 EXYNOS5_IRQ_EINT11,
634 EXYNOS5_IRQ_EINT12,
635 EXYNOS5_IRQ_EINT13,
636 EXYNOS5_IRQ_EINT14,
637 EXYNOS5_IRQ_EINT15,
638};
Eunki Kim330c90a2012-03-14 01:43:31 -0700639static inline void exynos_irq_eint_mask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100640{
641 u32 mask;
642
643 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700644 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
645 mask |= EINT_OFFSET_BIT(data->irq);
646 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100647 spin_unlock(&eint_lock);
648}
649
Eunki Kim330c90a2012-03-14 01:43:31 -0700650static void exynos_irq_eint_unmask(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100651{
652 u32 mask;
653
654 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700655 mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq));
656 mask &= ~(EINT_OFFSET_BIT(data->irq));
657 __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100658 spin_unlock(&eint_lock);
659}
660
Eunki Kim330c90a2012-03-14 01:43:31 -0700661static inline void exynos_irq_eint_ack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100662{
Eunki Kim330c90a2012-03-14 01:43:31 -0700663 __raw_writel(EINT_OFFSET_BIT(data->irq),
664 EINT_PEND(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100665}
666
Eunki Kim330c90a2012-03-14 01:43:31 -0700667static void exynos_irq_eint_maskack(struct irq_data *data)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100668{
Eunki Kim330c90a2012-03-14 01:43:31 -0700669 exynos_irq_eint_mask(data);
670 exynos_irq_eint_ack(data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100671}
672
Eunki Kim330c90a2012-03-14 01:43:31 -0700673static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100674{
675 int offs = EINT_OFFSET(data->irq);
676 int shift;
677 u32 ctrl, mask;
678 u32 newvalue = 0;
679
680 switch (type) {
681 case IRQ_TYPE_EDGE_RISING:
682 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
683 break;
684
685 case IRQ_TYPE_EDGE_FALLING:
686 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
687 break;
688
689 case IRQ_TYPE_EDGE_BOTH:
690 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
691 break;
692
693 case IRQ_TYPE_LEVEL_LOW:
694 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
695 break;
696
697 case IRQ_TYPE_LEVEL_HIGH:
698 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
699 break;
700
701 default:
702 printk(KERN_ERR "No such irq type %d", type);
703 return -EINVAL;
704 }
705
706 shift = (offs & 0x7) * 4;
707 mask = 0x7 << shift;
708
709 spin_lock(&eint_lock);
Eunki Kim330c90a2012-03-14 01:43:31 -0700710 ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100711 ctrl &= ~mask;
712 ctrl |= newvalue << shift;
Eunki Kim330c90a2012-03-14 01:43:31 -0700713 __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100714 spin_unlock(&eint_lock);
715
Eunki Kim330c90a2012-03-14 01:43:31 -0700716 if (soc_is_exynos5250())
717 s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
718 else
719 s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100720
721 return 0;
722}
723
Eunki Kim330c90a2012-03-14 01:43:31 -0700724static struct irq_chip exynos_irq_eint = {
725 .name = "exynos-eint",
726 .irq_mask = exynos_irq_eint_mask,
727 .irq_unmask = exynos_irq_eint_unmask,
728 .irq_mask_ack = exynos_irq_eint_maskack,
729 .irq_ack = exynos_irq_eint_ack,
730 .irq_set_type = exynos_irq_eint_set_type,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100731#ifdef CONFIG_PM
732 .irq_set_wake = s3c_irqext_wake,
733#endif
734};
735
736/*
737 * exynos4_irq_demux_eint
738 *
739 * This function demuxes the IRQ from from EINTs 16 to 31.
740 * It is designed to be inlined into the specific handler
741 * s5p_irq_demux_eintX_Y.
742 *
743 * Each EINT pend/mask registers handle eight of them.
744 */
Eunki Kim330c90a2012-03-14 01:43:31 -0700745static inline void exynos_irq_demux_eint(unsigned int start)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100746{
747 unsigned int irq;
748
Eunki Kim330c90a2012-03-14 01:43:31 -0700749 u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start));
750 u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100751
752 status &= ~mask;
753 status &= 0xff;
754
755 while (status) {
756 irq = fls(status) - 1;
757 generic_handle_irq(irq + start);
758 status &= ~(1 << irq);
759 }
760}
761
Eunki Kim330c90a2012-03-14 01:43:31 -0700762static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100763{
764 struct irq_chip *chip = irq_get_chip(irq);
765 chained_irq_enter(chip, desc);
Eunki Kim330c90a2012-03-14 01:43:31 -0700766 exynos_irq_demux_eint(IRQ_EINT(16));
767 exynos_irq_demux_eint(IRQ_EINT(24));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100768 chained_irq_exit(chip, desc);
769}
770
Kukjin Kimbb19a752012-01-25 13:48:11 +0900771static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100772{
773 u32 *irq_data = irq_get_handler_data(irq);
774 struct irq_chip *chip = irq_get_chip(irq);
775
776 chained_irq_enter(chip, desc);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100777 generic_handle_irq(*irq_data);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100778 chained_irq_exit(chip, desc);
779}
780
Eunki Kim330c90a2012-03-14 01:43:31 -0700781static int __init exynos_init_irq_eint(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100782{
783 int irq;
784
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900785#ifdef CONFIG_PINCTRL_SAMSUNG
786 /*
787 * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf
788 * functionality along with support for external gpio and wakeup
789 * interrupts. If the samsung pinctrl driver is enabled and includes
790 * the wakeup interrupt support, then the setting up external wakeup
791 * interrupts here can be skipped. This check here is temporary to
792 * allow exynos4 platforms that do not use Samsung pinctrl driver to
793 * co-exist with platforms that do. When all of the Samsung Exynos4
794 * platforms switch over to using the pinctrl driver, the wakeup
795 * interrupt support code here can be completely removed.
796 */
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900797 static const struct of_device_id exynos_pinctrl_ids[] = {
Kukjin Kimb533c862013-01-02 16:05:42 -0800798 { .compatible = "samsung,exynos4210-pinctrl", },
799 { .compatible = "samsung,exynos4x12-pinctrl", },
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900800 };
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900801 struct device_node *pctrl_np, *wkup_np;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900802 const char *wkup_compat = "samsung,exynos4210-wakeup-eint";
803
Tomasz Figaab7b51f2012-11-07 08:44:51 +0900804 for_each_matching_node(pctrl_np, exynos_pinctrl_ids) {
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900805 if (of_device_is_available(pctrl_np)) {
806 wkup_np = of_find_compatible_node(pctrl_np, NULL,
807 wkup_compat);
808 if (wkup_np)
809 return -ENODEV;
810 }
811 }
812#endif
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900813 if (soc_is_exynos5440())
814 return 0;
Thomas Abrahamfef05c22012-09-07 06:07:40 +0900815
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900816 if (soc_is_exynos5250())
Eunki Kim330c90a2012-03-14 01:43:31 -0700817 exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K);
818 else
819 exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K);
820
821 if (exynos_eint_base == NULL) {
822 pr_err("unable to ioremap for EINT base address\n");
823 return -ENOMEM;
824 }
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900825
Kukjin Kimcc511b82011-12-27 08:18:36 +0100826 for (irq = 0 ; irq <= 31 ; irq++) {
Eunki Kim330c90a2012-03-14 01:43:31 -0700827 irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100828 handle_level_irq);
829 set_irq_flags(IRQ_EINT(irq), IRQF_VALID);
830 }
831
Eunki Kim330c90a2012-03-14 01:43:31 -0700832 irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100833
834 for (irq = 0 ; irq <= 15 ; irq++) {
835 eint0_15_data[irq] = IRQ_EINT(irq);
836
Kukjin Kimbb19a752012-01-25 13:48:11 +0900837 if (soc_is_exynos5250()) {
838 irq_set_handler_data(exynos5_eint0_15_src_int[irq],
839 &eint0_15_data[irq]);
840 irq_set_chained_handler(exynos5_eint0_15_src_int[irq],
841 exynos_irq_eint0_15);
842 } else {
843 irq_set_handler_data(exynos4_eint0_15_src_int[irq],
844 &eint0_15_data[irq]);
845 irq_set_chained_handler(exynos4_eint0_15_src_int[irq],
846 exynos_irq_eint0_15);
847 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100848 }
849
850 return 0;
851}
Eunki Kim330c90a2012-03-14 01:43:31 -0700852arch_initcall(exynos_init_irq_eint);