blob: 2c8527c3e04e41068344c979d59cee30459157cc [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>
44
45#include <plat/cpu.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010046#include <plat/pm.h>
Kukjin Kimcc511b82011-12-27 08:18:36 +010047#include <plat/regs-serial.h>
48
49#include "common.h"
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -080050#define L2_AUX_VAL 0x7C470001
51#define L2_AUX_MASK 0xC200ffff
Kukjin Kimcc511b82011-12-27 08:18:36 +010052
Kukjin Kimcc511b82011-12-27 08:18:36 +010053static const char name_exynos4210[] = "EXYNOS4210";
54static const char name_exynos4212[] = "EXYNOS4212";
55static const char name_exynos4412[] = "EXYNOS4412";
Kukjin Kim94c7ca72012-02-11 22:15:45 +090056static const char name_exynos5250[] = "EXYNOS5250";
Kukjin Kim2edb36c2012-11-15 15:48:56 +090057static const char name_exynos5440[] = "EXYNOS5440";
Kukjin Kimcc511b82011-12-27 08:18:36 +010058
Kukjin Kim906c7892012-02-11 21:27:08 +090059static void exynos4_map_io(void);
Kukjin Kim94c7ca72012-02-11 22:15:45 +090060static void exynos5_map_io(void);
Kukjin Kim2edb36c2012-11-15 15:48:56 +090061static void exynos5440_map_io(void);
Kukjin Kim906c7892012-02-11 21:27:08 +090062static int exynos_init(void);
Kukjin Kimcc511b82011-12-27 08:18:36 +010063
Thomas Abraham92744272013-03-09 17:03:33 +090064unsigned long xxti_f = 0, xusbxti_f = 0;
65
Kukjin Kimcc511b82011-12-27 08:18:36 +010066static struct cpu_table cpu_ids[] __initdata = {
67 {
68 .idcode = EXYNOS4210_CPU_ID,
69 .idmask = EXYNOS4_CPU_MASK,
70 .map_io = exynos4_map_io,
Kukjin Kimcc511b82011-12-27 08:18:36 +010071 .init = exynos_init,
72 .name = name_exynos4210,
73 }, {
74 .idcode = EXYNOS4212_CPU_ID,
75 .idmask = EXYNOS4_CPU_MASK,
76 .map_io = exynos4_map_io,
Kukjin Kimcc511b82011-12-27 08:18:36 +010077 .init = exynos_init,
78 .name = name_exynos4212,
79 }, {
80 .idcode = EXYNOS4412_CPU_ID,
81 .idmask = EXYNOS4_CPU_MASK,
82 .map_io = exynos4_map_io,
Kukjin Kimcc511b82011-12-27 08:18:36 +010083 .init = exynos_init,
84 .name = name_exynos4412,
Kukjin Kim94c7ca72012-02-11 22:15:45 +090085 }, {
86 .idcode = EXYNOS5250_SOC_ID,
87 .idmask = EXYNOS5_SOC_MASK,
88 .map_io = exynos5_map_io,
Kukjin Kim94c7ca72012-02-11 22:15:45 +090089 .init = exynos_init,
90 .name = name_exynos5250,
Kukjin Kim2edb36c2012-11-15 15:48:56 +090091 }, {
92 .idcode = EXYNOS5440_SOC_ID,
93 .idmask = EXYNOS5_SOC_MASK,
94 .map_io = exynos5440_map_io,
95 .init = exynos_init,
96 .name = name_exynos5440,
Kukjin Kimcc511b82011-12-27 08:18:36 +010097 },
98};
99
100/* Initial IO mappings */
101
102static struct map_desc exynos_iodesc[] __initdata = {
103 {
104 .virtual = (unsigned long)S5P_VA_CHIPID,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900105 .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID),
Kukjin Kimcc511b82011-12-27 08:18:36 +0100106 .length = SZ_4K,
107 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900108 },
109};
110
111static struct map_desc exynos4_iodesc[] __initdata = {
112 {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100113 .virtual = (unsigned long)S3C_VA_SYS,
114 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
115 .length = SZ_64K,
116 .type = MT_DEVICE,
117 }, {
118 .virtual = (unsigned long)S3C_VA_TIMER,
119 .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
120 .length = SZ_16K,
121 .type = MT_DEVICE,
122 }, {
123 .virtual = (unsigned long)S3C_VA_WATCHDOG,
124 .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
125 .length = SZ_4K,
126 .type = MT_DEVICE,
127 }, {
128 .virtual = (unsigned long)S5P_VA_SROMC,
129 .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
130 .length = SZ_4K,
131 .type = MT_DEVICE,
132 }, {
133 .virtual = (unsigned long)S5P_VA_SYSTIMER,
134 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
135 .length = SZ_4K,
136 .type = MT_DEVICE,
137 }, {
138 .virtual = (unsigned long)S5P_VA_PMU,
139 .pfn = __phys_to_pfn(EXYNOS4_PA_PMU),
140 .length = SZ_64K,
141 .type = MT_DEVICE,
142 }, {
143 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
144 .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
145 .length = SZ_4K,
146 .type = MT_DEVICE,
147 }, {
148 .virtual = (unsigned long)S5P_VA_GIC_CPU,
149 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
150 .length = SZ_64K,
151 .type = MT_DEVICE,
152 }, {
153 .virtual = (unsigned long)S5P_VA_GIC_DIST,
154 .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
155 .length = SZ_64K,
156 .type = MT_DEVICE,
157 }, {
158 .virtual = (unsigned long)S3C_VA_UART,
159 .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
160 .length = SZ_512K,
161 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900162 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100163 .virtual = (unsigned long)S5P_VA_CMU,
164 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
165 .length = SZ_128K,
166 .type = MT_DEVICE,
167 }, {
168 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
169 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
170 .length = SZ_8K,
171 .type = MT_DEVICE,
172 }, {
173 .virtual = (unsigned long)S5P_VA_L2CC,
174 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
175 .length = SZ_4K,
176 .type = MT_DEVICE,
177 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100178 .virtual = (unsigned long)S5P_VA_DMC0,
179 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
MyungJoo Ham2bde0b02011-12-01 15:12:30 +0900180 .length = SZ_64K,
181 .type = MT_DEVICE,
182 }, {
183 .virtual = (unsigned long)S5P_VA_DMC1,
184 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
185 .length = SZ_64K,
Kukjin Kimcc511b82011-12-27 08:18:36 +0100186 .type = MT_DEVICE,
187 }, {
Kukjin Kimcc511b82011-12-27 08:18:36 +0100188 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
189 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
190 .length = SZ_4K,
191 .type = MT_DEVICE,
192 },
193};
194
195static struct map_desc exynos4_iodesc0[] __initdata = {
196 {
197 .virtual = (unsigned long)S5P_VA_SYSRAM,
198 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
199 .length = SZ_4K,
200 .type = MT_DEVICE,
201 },
202};
203
204static struct map_desc exynos4_iodesc1[] __initdata = {
205 {
206 .virtual = (unsigned long)S5P_VA_SYSRAM,
207 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
208 .length = SZ_4K,
209 .type = MT_DEVICE,
210 },
211};
212
Tomasz Figa41de8982012-12-11 13:58:43 +0900213static struct map_desc exynos4210_iodesc[] __initdata = {
214 {
215 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
216 .pfn = __phys_to_pfn(EXYNOS4210_PA_SYSRAM_NS),
217 .length = SZ_4K,
218 .type = MT_DEVICE,
219 },
220};
221
222static struct map_desc exynos4x12_iodesc[] __initdata = {
223 {
224 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
225 .pfn = __phys_to_pfn(EXYNOS4x12_PA_SYSRAM_NS),
226 .length = SZ_4K,
227 .type = MT_DEVICE,
228 },
229};
230
231static struct map_desc exynos5250_iodesc[] __initdata = {
232 {
233 .virtual = (unsigned long)S5P_VA_SYSRAM_NS,
234 .pfn = __phys_to_pfn(EXYNOS5250_PA_SYSRAM_NS),
235 .length = SZ_4K,
236 .type = MT_DEVICE,
237 },
238};
239
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900240static struct map_desc exynos5_iodesc[] __initdata = {
241 {
242 .virtual = (unsigned long)S3C_VA_SYS,
243 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
244 .length = SZ_64K,
245 .type = MT_DEVICE,
246 }, {
247 .virtual = (unsigned long)S3C_VA_TIMER,
248 .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
249 .length = SZ_16K,
250 .type = MT_DEVICE,
251 }, {
252 .virtual = (unsigned long)S3C_VA_WATCHDOG,
253 .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
254 .length = SZ_4K,
255 .type = MT_DEVICE,
256 }, {
257 .virtual = (unsigned long)S5P_VA_SROMC,
258 .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
259 .length = SZ_4K,
260 .type = MT_DEVICE,
261 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900262 .virtual = (unsigned long)S5P_VA_SYSRAM,
263 .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM),
264 .length = SZ_4K,
265 .type = MT_DEVICE,
266 }, {
267 .virtual = (unsigned long)S5P_VA_CMU,
268 .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
269 .length = 144 * SZ_1K,
270 .type = MT_DEVICE,
271 }, {
272 .virtual = (unsigned long)S5P_VA_PMU,
273 .pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
274 .length = SZ_64K,
275 .type = MT_DEVICE,
276 }, {
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900277 .virtual = (unsigned long)S3C_VA_UART,
278 .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
279 .length = SZ_512K,
280 .type = MT_DEVICE,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900281 },
282};
283
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900284static struct map_desc exynos5440_iodesc0[] __initdata = {
285 {
286 .virtual = (unsigned long)S3C_VA_UART,
287 .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
288 .length = SZ_512K,
289 .type = MT_DEVICE,
290 },
291};
292
Russell King9eb48592012-01-03 11:56:53 +0100293void exynos4_restart(char mode, const char *cmd)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100294{
295 __raw_writel(0x1, S5P_SWRESET);
296}
297
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900298void exynos5_restart(char mode, const char *cmd)
299{
Thomas Abraham60db7e52013-01-24 10:09:13 -0800300 struct device_node *np;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900301 u32 val;
302 void __iomem *addr;
303
304 if (of_machine_is_compatible("samsung,exynos5250")) {
305 val = 0x1;
306 addr = EXYNOS_SWRESET;
307 } else if (of_machine_is_compatible("samsung,exynos5440")) {
Jungseok Lee1ba830c2013-05-25 06:33:03 +0900308 u32 status;
Thomas Abraham60db7e52013-01-24 10:09:13 -0800309 np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
Jungseok Lee1ba830c2013-05-25 06:33:03 +0900310
311 addr = of_iomap(np, 0) + 0xbc;
312 status = __raw_readl(addr);
313
Thomas Abraham60db7e52013-01-24 10:09:13 -0800314 addr = of_iomap(np, 0) + 0xcc;
Jungseok Lee1ba830c2013-05-25 06:33:03 +0900315 val = __raw_readl(addr);
316
317 val = (val & 0xffff0000) | (status & 0xffff);
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900318 } else {
319 pr_err("%s: cannot support non-DT\n", __func__);
320 return;
321 }
322
323 __raw_writel(val, addr);
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900324}
325
Shawn Guobb13fab2012-04-26 10:35:40 +0800326void __init exynos_init_late(void)
327{
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900328 if (of_machine_is_compatible("samsung,exynos5440"))
329 /* to be supported later */
330 return;
331
Shawn Guobb13fab2012-04-26 10:35:40 +0800332 exynos_pm_late_initcall();
333}
334
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900335int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
336 int depth, void *data)
337{
338 struct map_desc iodesc;
339 __be32 *reg;
340 unsigned long len;
341
342 if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
343 !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock"))
344 return 0;
345
346 reg = of_get_flat_dt_prop(node, "reg", &len);
347 if (reg == NULL || len != (sizeof(unsigned long) * 2))
348 return 0;
349
350 iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0]));
351 iodesc.length = be32_to_cpu(reg[1]) - 1;
352 iodesc.virtual = (unsigned long)S5P_VA_CHIPID;
353 iodesc.type = MT_DEVICE;
354 iotable_init(&iodesc, 1);
355 return 1;
356}
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900357
Kukjin Kimcc511b82011-12-27 08:18:36 +0100358/*
359 * exynos_map_io
360 *
361 * register the standard cpu IO areas
362 */
363
364void __init exynos_init_io(struct map_desc *mach_desc, int size)
365{
Doug Anderson9c1fcdc2013-06-05 13:56:33 -0700366 debug_ll_io_init();
367
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900368 if (initial_boot_params)
369 of_scan_flat_dt(exynos_fdt_map_chipid, NULL);
370 else
Thomas Abrahamf5f83c72013-04-23 22:46:53 +0900371 iotable_init(exynos_iodesc, ARRAY_SIZE(exynos_iodesc));
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900372
Kukjin Kimcc511b82011-12-27 08:18:36 +0100373 if (mach_desc)
374 iotable_init(mach_desc, size);
375
376 /* detect cpu id and rev. */
377 s5p_init_cpu(S5P_VA_CHIPID);
378
379 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
380}
381
Kukjin Kim906c7892012-02-11 21:27:08 +0900382static void __init exynos4_map_io(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100383{
384 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
385
386 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
387 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
388 else
389 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
390
Tomasz Figa41de8982012-12-11 13:58:43 +0900391 if (soc_is_exynos4210())
392 iotable_init(exynos4210_iodesc, ARRAY_SIZE(exynos4210_iodesc));
393 if (soc_is_exynos4212() || soc_is_exynos4412())
394 iotable_init(exynos4x12_iodesc, ARRAY_SIZE(exynos4x12_iodesc));
Kukjin Kimcc511b82011-12-27 08:18:36 +0100395}
396
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900397static void __init exynos5_map_io(void)
398{
399 iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
Tomasz Figa41de8982012-12-11 13:58:43 +0900400
401 if (soc_is_exynos5250())
402 iotable_init(exynos5250_iodesc, ARRAY_SIZE(exynos5250_iodesc));
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900403}
404
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900405static void __init exynos5440_map_io(void)
406{
407 iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
408}
409
Thomas Abraham6923ae42013-03-09 17:03:29 +0900410void __init exynos_init_time(void)
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900411{
Tomasz Figa3c703482013-06-15 09:04:58 +0900412 of_clk_init(NULL);
413 clocksource_of_init();
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900414}
415
Kukjin Kimcc511b82011-12-27 08:18:36 +0100416void __init exynos4_init_irq(void)
417{
Tomasz Figad2439972013-06-15 09:04:55 +0900418 irqchip_init();
Kukjin Kimcc511b82011-12-27 08:18:36 +0100419}
420
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900421void __init exynos5_init_irq(void)
422{
Rob Herring0529e3152012-11-05 16:18:28 -0600423 irqchip_init();
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900424}
425
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900426struct bus_type exynos_subsys = {
427 .name = "exynos-core",
428 .dev_name = "exynos-core",
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900429};
430
Linus Torvalds7affca32012-01-07 12:03:30 -0800431static struct device exynos4_dev = {
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900432 .bus = &exynos_subsys,
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900433};
434
435static int __init exynos_core_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100436{
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900437 return subsys_system_register(&exynos_subsys, NULL);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100438}
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900439core_initcall(exynos_core_init);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100440
441#ifdef CONFIG_CACHE_L2X0
442static int __init exynos4_l2x0_cache_init(void)
443{
Il Hane1b19942012-04-05 07:59:36 -0700444 int ret;
445
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900446 if (soc_is_exynos5250() || soc_is_exynos5440())
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900447 return 0;
448
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800449 ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK);
450 if (!ret) {
451 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
452 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
453 return 0;
454 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100455
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800456 if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) {
457 l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC;
458 /* TAG, Data Latency Control: 2 cycles */
459 l2x0_saved_regs.tag_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100460
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800461 if (soc_is_exynos4212() || soc_is_exynos4412())
462 l2x0_saved_regs.data_latency = 0x120;
463 else
464 l2x0_saved_regs.data_latency = 0x110;
Kukjin Kimcc511b82011-12-27 08:18:36 +0100465
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800466 l2x0_saved_regs.prefetch_ctrl = 0x30000007;
467 l2x0_saved_regs.pwr_ctrl =
468 (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100469
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800470 l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100471
Amit Daniel Kachhapb756a502012-03-08 02:07:41 -0800472 __raw_writel(l2x0_saved_regs.tag_latency,
473 S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
474 __raw_writel(l2x0_saved_regs.data_latency,
475 S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
476
477 /* L2X0 Prefetch Control */
478 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
479 S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
480
481 /* L2X0 Power Control */
482 __raw_writel(l2x0_saved_regs.pwr_ctrl,
483 S5P_VA_L2CC + L2X0_POWER_CTRL);
484
485 clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long));
486 clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs));
487 }
Kukjin Kimcc511b82011-12-27 08:18:36 +0100488
Amit Daniel Kachhap6cdeddc2012-03-08 02:09:12 -0800489 l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100490 return 0;
491}
Kukjin Kimcc511b82011-12-27 08:18:36 +0100492early_initcall(exynos4_l2x0_cache_init);
493#endif
494
Kukjin Kim906c7892012-02-11 21:27:08 +0900495static int __init exynos_init(void)
Kukjin Kimcc511b82011-12-27 08:18:36 +0100496{
497 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
Kukjin Kim94c7ca72012-02-11 22:15:45 +0900498
Thomas Abraham9ee6af92012-05-15 15:47:40 +0900499 return device_register(&exynos4_dev);
Kukjin Kimcc511b82011-12-27 08:18:36 +0100500}