Merge branch 'driver-core-next' into Linux 3.2
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / arch / arm / mach-exynos / cpu.c
1 /* linux/arch/arm/mach-exynos/cpu.c
2 *
3 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11 #include <linux/sched.h>
12 #include <linux/device.h>
13
14 #include <asm/mach/map.h>
15 #include <asm/mach/irq.h>
16
17 #include <asm/proc-fns.h>
18 #include <asm/hardware/cache-l2x0.h>
19 #include <asm/hardware/gic.h>
20
21 #include <plat/cpu.h>
22 #include <plat/clock.h>
23 #include <plat/devs.h>
24 #include <plat/exynos4.h>
25 #include <plat/adc-core.h>
26 #include <plat/sdhci.h>
27 #include <plat/fb-core.h>
28 #include <plat/fimc-core.h>
29 #include <plat/iic-core.h>
30 #include <plat/reset.h>
31 #include <plat/tv-core.h>
32
33 #include <mach/regs-irq.h>
34 #include <mach/regs-pmu.h>
35
36 unsigned int gic_bank_offset __read_mostly;
37
38 extern int combiner_init(unsigned int combiner_nr, void __iomem *base,
39 unsigned int irq_start);
40 extern void combiner_cascade_irq(unsigned int combiner_nr, unsigned int irq);
41
42 /* Initial IO mappings */
43 static struct map_desc exynos_iodesc[] __initdata = {
44 {
45 .virtual = (unsigned long)S5P_VA_SYSTIMER,
46 .pfn = __phys_to_pfn(EXYNOS_PA_SYSTIMER),
47 .length = SZ_4K,
48 .type = MT_DEVICE,
49 }, {
50 .virtual = (unsigned long)S5P_VA_PMU,
51 .pfn = __phys_to_pfn(EXYNOS_PA_PMU),
52 .length = SZ_64K,
53 .type = MT_DEVICE,
54 }, {
55 .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
56 .pfn = __phys_to_pfn(EXYNOS_PA_COMBINER),
57 .length = SZ_4K,
58 .type = MT_DEVICE,
59 }, {
60 .virtual = (unsigned long)S5P_VA_GIC_CPU,
61 .pfn = __phys_to_pfn(EXYNOS_PA_GIC_CPU),
62 .length = SZ_64K,
63 .type = MT_DEVICE,
64 }, {
65 .virtual = (unsigned long)S5P_VA_GIC_DIST,
66 .pfn = __phys_to_pfn(EXYNOS_PA_GIC_DIST),
67 .length = SZ_64K,
68 .type = MT_DEVICE,
69 }, {
70 .virtual = (unsigned long)S3C_VA_UART,
71 .pfn = __phys_to_pfn(S3C_PA_UART),
72 .length = SZ_512K,
73 .type = MT_DEVICE,
74 },
75 };
76
77 static struct map_desc exynos4_iodesc[] __initdata = {
78 {
79 .virtual = (unsigned long)S5P_VA_CMU,
80 .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
81 .length = SZ_128K,
82 .type = MT_DEVICE,
83 }, {
84 .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
85 .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
86 .length = SZ_8K,
87 .type = MT_DEVICE,
88 }, {
89 .virtual = (unsigned long)S5P_VA_L2CC,
90 .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
91 .length = SZ_4K,
92 .type = MT_DEVICE,
93 }, {
94 .virtual = (unsigned long)S5P_VA_GPIO1,
95 .pfn = __phys_to_pfn(EXYNOS4_PA_GPIO1),
96 .length = SZ_4K,
97 .type = MT_DEVICE,
98 }, {
99 .virtual = (unsigned long)S5P_VA_GPIO2,
100 .pfn = __phys_to_pfn(EXYNOS4_PA_GPIO2),
101 .length = SZ_4K,
102 .type = MT_DEVICE,
103 }, {
104 .virtual = (unsigned long)S5P_VA_GPIO3,
105 .pfn = __phys_to_pfn(EXYNOS4_PA_GPIO3),
106 .length = SZ_256,
107 .type = MT_DEVICE,
108 }, {
109 .virtual = (unsigned long)S5P_VA_DMC0,
110 .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
111 .length = SZ_4K,
112 .type = MT_DEVICE,
113 }, {
114 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
115 .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
116 .length = SZ_4K,
117 .type = MT_DEVICE,
118 },
119 };
120
121 static struct map_desc exynos4_iodesc0[] __initdata = {
122 {
123 .virtual = (unsigned long)S5P_VA_SYSRAM,
124 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0),
125 .length = SZ_4K,
126 .type = MT_DEVICE,
127 },
128 };
129
130 static struct map_desc exynos4_iodesc1[] __initdata = {
131 {
132 .virtual = (unsigned long)S5P_VA_SYSRAM,
133 .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1),
134 .length = SZ_4K,
135 .type = MT_DEVICE,
136 },
137 };
138
139 static void exynos_idle(void)
140 {
141 if (!need_resched())
142 cpu_do_idle();
143
144 local_irq_enable();
145 }
146
147 static void exynos4_sw_reset(void)
148 {
149 __raw_writel(0x1, S5P_SWRESET);
150 }
151
152 /*
153 * exynos_map_io
154 *
155 * register the standard cpu IO areas
156 */
157 void __init exynos4_map_io(void)
158 {
159 iotable_init(exynos_iodesc, ARRAY_SIZE(exynos_iodesc));
160 iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
161
162 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0)
163 iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0));
164 else
165 iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1));
166
167 /* initialize device information early */
168 exynos4_default_sdhci0();
169 exynos4_default_sdhci1();
170 exynos4_default_sdhci2();
171 exynos4_default_sdhci3();
172
173 s3c_adc_setname("samsung-adc-v3");
174
175 s3c_fimc_setname(0, "exynos4-fimc");
176 s3c_fimc_setname(1, "exynos4-fimc");
177 s3c_fimc_setname(2, "exynos4-fimc");
178 s3c_fimc_setname(3, "exynos4-fimc");
179
180 /* The I2C bus controllers are directly compatible with s3c2440 */
181 s3c_i2c0_setname("s3c2440-i2c");
182 s3c_i2c1_setname("s3c2440-i2c");
183 s3c_i2c2_setname("s3c2440-i2c");
184
185 s5p_fb_setname(0, "exynos4-fb");
186 s5p_hdmi_setname("exynos4-hdmi");
187 }
188
189 void __init exynos4_init_clocks(int xtal)
190 {
191 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
192
193 s3c24xx_register_baseclocks(xtal);
194 s5p_register_clocks(xtal);
195
196 if (soc_is_exynos4210())
197 exynos4210_register_clocks();
198 else if (soc_is_exynos4212() || soc_is_exynos4412())
199 exynos4212_register_clocks();
200
201 exynos4_register_clocks();
202 exynos4_setup_clocks();
203 }
204
205 static void exynos4_gic_irq_fix_base(struct irq_data *d)
206 {
207 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
208
209 gic_data->cpu_base = S5P_VA_GIC_CPU +
210 (gic_bank_offset * smp_processor_id());
211
212 gic_data->dist_base = S5P_VA_GIC_DIST +
213 (gic_bank_offset * smp_processor_id());
214 }
215
216 void __init exynos4_init_irq(void)
217 {
218 int irq;
219
220 gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000;
221
222 gic_init(0, IRQ_PPI(0), S5P_VA_GIC_DIST, S5P_VA_GIC_CPU);
223 gic_arch_extn.irq_eoi = exynos4_gic_irq_fix_base;
224 gic_arch_extn.irq_unmask = exynos4_gic_irq_fix_base;
225 gic_arch_extn.irq_mask = exynos4_gic_irq_fix_base;
226
227 for (irq = 0; irq < MAX_COMBINER_NR; irq++) {
228
229 combiner_init(irq, (void __iomem *)S5P_VA_COMBINER(irq),
230 COMBINER_IRQ(irq, 0));
231 combiner_cascade_irq(irq, IRQ_SPI(irq));
232 }
233
234 /* The parameters of s5p_init_irq() are for VIC init.
235 * Theses parameters should be NULL and 0 because EXYNOS4
236 * uses GIC instead of VIC.
237 */
238 s5p_init_irq(NULL, 0);
239 }
240
241 struct bus_type exynos4_subsys = {
242 .name = "exynos4-core",
243 .dev_name = "exynos4-core",
244 };
245
246 static struct device exynos4_dev = {
247 .bus = &exynos4_subsys,
248 };
249
250 static int __init exynos4_core_init(void)
251 {
252 return subsys_system_register(&exynos4_subsys, NULL);
253 }
254 core_initcall(exynos4_core_init);
255
256 #ifdef CONFIG_CACHE_L2X0
257 static int __init exynos4_l2x0_cache_init(void)
258 {
259 /* TAG, Data Latency Control: 2cycle */
260 __raw_writel(0x110, S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL);
261
262 if (soc_is_exynos4210())
263 __raw_writel(0x110, S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
264 else if (soc_is_exynos4212() || soc_is_exynos4412())
265 __raw_writel(0x120, S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL);
266
267 /* L2X0 Prefetch Control */
268 __raw_writel(0x30000007, S5P_VA_L2CC + L2X0_PREFETCH_CTRL);
269
270 /* L2X0 Power Control */
271 __raw_writel(L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN,
272 S5P_VA_L2CC + L2X0_POWER_CTRL);
273
274 l2x0_init(S5P_VA_L2CC, 0x7C470001, 0xC200ffff);
275
276 return 0;
277 }
278
279 early_initcall(exynos4_l2x0_cache_init);
280 #endif
281
282 int __init exynos_init(void)
283 {
284 printk(KERN_INFO "EXYNOS: Initializing architecture\n");
285
286 /* set idle function */
287 pm_idle = exynos_idle;
288
289 /* set sw_reset function */
290 if (soc_is_exynos4210() || soc_is_exynos4212() || soc_is_exynos4412())
291 s5p_reset_hook = exynos4_sw_reset;
292
293 return device_register(&exynos4_dev);
294 }