diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2011-12-22 17:28:28 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-12-23 14:11:05 -0500 |
commit | 95af214becab511b5ef76082688865d434dada1a (patch) | |
tree | dabef4884baac7d2d1a1dd154fd29e06032870cc /arch/arm/mach-s5p64x0/common.c | |
parent | b024043b6d0d3feecb1de350de9762a00a79eda1 (diff) |
ARM: 7246/1: S5P64X0: introduce arch/arm/mach-s5p64x0/common.[ch]
This patch introduces common.[ch] which are used only in the
arch/arm/mach-s5p64x0/ directory. The common.c file merges
the cpu.c, init.c and irq-eint.c files which are used commonly
on S5P64X0 SoCs and the common.h local header file replaces
with plat/s5p6440.h and plat/s5p6450.h files.
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s5p64x0/common.c')
-rw-r--r-- | arch/arm/mach-s5p64x0/common.c | 459 |
1 files changed, 459 insertions, 0 deletions
diff --git a/arch/arm/mach-s5p64x0/common.c b/arch/arm/mach-s5p64x0/common.c new file mode 100644 index 000000000000..af02dc34769d --- /dev/null +++ b/arch/arm/mach-s5p64x0/common.c | |||
@@ -0,0 +1,459 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd. | ||
3 | * http://www.samsung.com | ||
4 | * | ||
5 | * Common Codes for S5P64X0 machines | ||
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/types.h> | ||
14 | #include <linux/interrupt.h> | ||
15 | #include <linux/list.h> | ||
16 | #include <linux/timer.h> | ||
17 | #include <linux/init.h> | ||
18 | #include <linux/clk.h> | ||
19 | #include <linux/io.h> | ||
20 | #include <linux/sysdev.h> | ||
21 | #include <linux/serial_core.h> | ||
22 | #include <linux/platform_device.h> | ||
23 | #include <linux/sched.h> | ||
24 | #include <linux/dma-mapping.h> | ||
25 | #include <linux/gpio.h> | ||
26 | #include <linux/irq.h> | ||
27 | |||
28 | #include <asm/irq.h> | ||
29 | #include <asm/proc-fns.h> | ||
30 | #include <asm/mach/arch.h> | ||
31 | #include <asm/mach/map.h> | ||
32 | #include <asm/mach/irq.h> | ||
33 | |||
34 | #include <mach/map.h> | ||
35 | #include <mach/hardware.h> | ||
36 | #include <mach/regs-clock.h> | ||
37 | #include <mach/regs-gpio.h> | ||
38 | |||
39 | #include <plat/cpu.h> | ||
40 | #include <plat/clock.h> | ||
41 | #include <plat/devs.h> | ||
42 | #include <plat/pm.h> | ||
43 | #include <plat/adc-core.h> | ||
44 | #include <plat/fb-core.h> | ||
45 | #include <plat/gpio-cfg.h> | ||
46 | #include <plat/regs-irqtype.h> | ||
47 | #include <plat/regs-serial.h> | ||
48 | |||
49 | #include "common.h" | ||
50 | |||
51 | static const char name_s5p6440[] = "S5P6440"; | ||
52 | static const char name_s5p6450[] = "S5P6450"; | ||
53 | |||
54 | static struct cpu_table cpu_ids[] __initdata = { | ||
55 | { | ||
56 | .idcode = S5P6440_CPU_ID, | ||
57 | .idmask = S5P64XX_CPU_MASK, | ||
58 | .map_io = s5p6440_map_io, | ||
59 | .init_clocks = s5p6440_init_clocks, | ||
60 | .init_uarts = s5p6440_init_uarts, | ||
61 | .init = s5p64x0_init, | ||
62 | .name = name_s5p6440, | ||
63 | }, { | ||
64 | .idcode = S5P6450_CPU_ID, | ||
65 | .idmask = S5P64XX_CPU_MASK, | ||
66 | .map_io = s5p6450_map_io, | ||
67 | .init_clocks = s5p6450_init_clocks, | ||
68 | .init_uarts = s5p6450_init_uarts, | ||
69 | .init = s5p64x0_init, | ||
70 | .name = name_s5p6450, | ||
71 | }, | ||
72 | }; | ||
73 | |||
74 | /* Initial IO mappings */ | ||
75 | |||
76 | static struct map_desc s5p64x0_iodesc[] __initdata = { | ||
77 | { | ||
78 | .virtual = (unsigned long)S5P_VA_CHIPID, | ||
79 | .pfn = __phys_to_pfn(S5P64X0_PA_CHIPID), | ||
80 | .length = SZ_4K, | ||
81 | .type = MT_DEVICE, | ||
82 | }, { | ||
83 | .virtual = (unsigned long)S3C_VA_SYS, | ||
84 | .pfn = __phys_to_pfn(S5P64X0_PA_SYSCON), | ||
85 | .length = SZ_64K, | ||
86 | .type = MT_DEVICE, | ||
87 | }, { | ||
88 | .virtual = (unsigned long)S3C_VA_TIMER, | ||
89 | .pfn = __phys_to_pfn(S5P64X0_PA_TIMER), | ||
90 | .length = SZ_16K, | ||
91 | .type = MT_DEVICE, | ||
92 | }, { | ||
93 | .virtual = (unsigned long)S3C_VA_WATCHDOG, | ||
94 | .pfn = __phys_to_pfn(S5P64X0_PA_WDT), | ||
95 | .length = SZ_4K, | ||
96 | .type = MT_DEVICE, | ||
97 | }, { | ||
98 | .virtual = (unsigned long)S5P_VA_SROMC, | ||
99 | .pfn = __phys_to_pfn(S5P64X0_PA_SROMC), | ||
100 | .length = SZ_4K, | ||
101 | .type = MT_DEVICE, | ||
102 | }, { | ||
103 | .virtual = (unsigned long)S5P_VA_GPIO, | ||
104 | .pfn = __phys_to_pfn(S5P64X0_PA_GPIO), | ||
105 | .length = SZ_4K, | ||
106 | .type = MT_DEVICE, | ||
107 | }, { | ||
108 | .virtual = (unsigned long)VA_VIC0, | ||
109 | .pfn = __phys_to_pfn(S5P64X0_PA_VIC0), | ||
110 | .length = SZ_16K, | ||
111 | .type = MT_DEVICE, | ||
112 | }, { | ||
113 | .virtual = (unsigned long)VA_VIC1, | ||
114 | .pfn = __phys_to_pfn(S5P64X0_PA_VIC1), | ||
115 | .length = SZ_16K, | ||
116 | .type = MT_DEVICE, | ||
117 | }, | ||
118 | }; | ||
119 | |||
120 | static struct map_desc s5p6440_iodesc[] __initdata = { | ||
121 | { | ||
122 | .virtual = (unsigned long)S3C_VA_UART, | ||
123 | .pfn = __phys_to_pfn(S5P6440_PA_UART(0)), | ||
124 | .length = SZ_4K, | ||
125 | .type = MT_DEVICE, | ||
126 | }, | ||
127 | }; | ||
128 | |||
129 | static struct map_desc s5p6450_iodesc[] __initdata = { | ||
130 | { | ||
131 | .virtual = (unsigned long)S3C_VA_UART, | ||
132 | .pfn = __phys_to_pfn(S5P6450_PA_UART(0)), | ||
133 | .length = SZ_512K, | ||
134 | .type = MT_DEVICE, | ||
135 | }, { | ||
136 | .virtual = (unsigned long)S3C_VA_UART + SZ_512K, | ||
137 | .pfn = __phys_to_pfn(S5P6450_PA_UART(5)), | ||
138 | .length = SZ_4K, | ||
139 | .type = MT_DEVICE, | ||
140 | }, | ||
141 | }; | ||
142 | |||
143 | static void s5p64x0_idle(void) | ||
144 | { | ||
145 | unsigned long val; | ||
146 | |||
147 | if (!need_resched()) { | ||
148 | val = __raw_readl(S5P64X0_PWR_CFG); | ||
149 | val &= ~(0x3 << 5); | ||
150 | val |= (0x1 << 5); | ||
151 | __raw_writel(val, S5P64X0_PWR_CFG); | ||
152 | |||
153 | cpu_do_idle(); | ||
154 | } | ||
155 | local_irq_enable(); | ||
156 | } | ||
157 | |||
158 | /* | ||
159 | * s5p64x0_map_io | ||
160 | * | ||
161 | * register the standard CPU IO areas | ||
162 | */ | ||
163 | |||
164 | void __init s5p64x0_init_io(struct map_desc *mach_desc, int size) | ||
165 | { | ||
166 | /* initialize the io descriptors we need for initialization */ | ||
167 | iotable_init(s5p64x0_iodesc, ARRAY_SIZE(s5p64x0_iodesc)); | ||
168 | if (mach_desc) | ||
169 | iotable_init(mach_desc, size); | ||
170 | |||
171 | /* detect cpu id and rev. */ | ||
172 | s5p_init_cpu(S5P64X0_SYS_ID); | ||
173 | |||
174 | s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids)); | ||
175 | } | ||
176 | |||
177 | void __init s5p6440_map_io(void) | ||
178 | { | ||
179 | /* initialize any device information early */ | ||
180 | s3c_adc_setname("s3c64xx-adc"); | ||
181 | s3c_fb_setname("s5p64x0-fb"); | ||
182 | |||
183 | iotable_init(s5p6440_iodesc, ARRAY_SIZE(s5p6440_iodesc)); | ||
184 | init_consistent_dma_size(SZ_8M); | ||
185 | } | ||
186 | |||
187 | void __init s5p6450_map_io(void) | ||
188 | { | ||
189 | /* initialize any device information early */ | ||
190 | s3c_adc_setname("s3c64xx-adc"); | ||
191 | s3c_fb_setname("s5p64x0-fb"); | ||
192 | |||
193 | iotable_init(s5p6450_iodesc, ARRAY_SIZE(s5p6450_iodesc)); | ||
194 | init_consistent_dma_size(SZ_8M); | ||
195 | } | ||
196 | |||
197 | /* | ||
198 | * s5p64x0_init_clocks | ||
199 | * | ||
200 | * register and setup the CPU clocks | ||
201 | */ | ||
202 | |||
203 | void __init s5p6440_init_clocks(int xtal) | ||
204 | { | ||
205 | printk(KERN_DEBUG "%s: initializing clocks\n", __func__); | ||
206 | |||
207 | s3c24xx_register_baseclocks(xtal); | ||
208 | s5p_register_clocks(xtal); | ||
209 | s5p6440_register_clocks(); | ||
210 | s5p6440_setup_clocks(); | ||
211 | } | ||
212 | |||
213 | void __init s5p6450_init_clocks(int xtal) | ||
214 | { | ||
215 | printk(KERN_DEBUG "%s: initializing clocks\n", __func__); | ||
216 | |||
217 | s3c24xx_register_baseclocks(xtal); | ||
218 | s5p_register_clocks(xtal); | ||
219 | s5p6450_register_clocks(); | ||
220 | s5p6450_setup_clocks(); | ||
221 | } | ||
222 | |||
223 | /* | ||
224 | * s5p64x0_init_irq | ||
225 | * | ||
226 | * register the CPU interrupts | ||
227 | */ | ||
228 | |||
229 | void __init s5p6440_init_irq(void) | ||
230 | { | ||
231 | /* S5P6440 supports 2 VIC */ | ||
232 | u32 vic[2]; | ||
233 | |||
234 | /* | ||
235 | * VIC0 is missing IRQ_VIC0[3, 4, 8, 10, (12-22)] | ||
236 | * VIC1 is missing IRQ VIC1[1, 3, 4, 10, 11, 12, 14, 15, 22] | ||
237 | */ | ||
238 | vic[0] = 0xff800ae7; | ||
239 | vic[1] = 0xffbf23e5; | ||
240 | |||
241 | s5p_init_irq(vic, ARRAY_SIZE(vic)); | ||
242 | } | ||
243 | |||
244 | void __init s5p6450_init_irq(void) | ||
245 | { | ||
246 | /* S5P6450 supports only 2 VIC */ | ||
247 | u32 vic[2]; | ||
248 | |||
249 | /* | ||
250 | * VIC0 is missing IRQ_VIC0[(13-15), (21-22)] | ||
251 | * VIC1 is missing IRQ VIC1[12, 14, 23] | ||
252 | */ | ||
253 | vic[0] = 0xff9f1fff; | ||
254 | vic[1] = 0xff7fafff; | ||
255 | |||
256 | s5p_init_irq(vic, ARRAY_SIZE(vic)); | ||
257 | } | ||
258 | |||
259 | struct sysdev_class s5p64x0_sysclass = { | ||
260 | .name = "s5p64x0-core", | ||
261 | }; | ||
262 | |||
263 | static struct sys_device s5p64x0_sysdev = { | ||
264 | .cls = &s5p64x0_sysclass, | ||
265 | }; | ||
266 | |||
267 | static int __init s5p64x0_core_init(void) | ||
268 | { | ||
269 | return sysdev_class_register(&s5p64x0_sysclass); | ||
270 | } | ||
271 | core_initcall(s5p64x0_core_init); | ||
272 | |||
273 | int __init s5p64x0_init(void) | ||
274 | { | ||
275 | printk(KERN_INFO "S5P64X0(S5P6440/S5P6450): Initializing architecture\n"); | ||
276 | |||
277 | /* set idle function */ | ||
278 | pm_idle = s5p64x0_idle; | ||
279 | |||
280 | return sysdev_register(&s5p64x0_sysdev); | ||
281 | } | ||
282 | |||
283 | static struct s3c24xx_uart_clksrc s5p64x0_serial_clocks[] = { | ||
284 | [0] = { | ||
285 | .name = "pclk_low", | ||
286 | .divisor = 1, | ||
287 | .min_baud = 0, | ||
288 | .max_baud = 0, | ||
289 | }, | ||
290 | [1] = { | ||
291 | .name = "uclk1", | ||
292 | .divisor = 1, | ||
293 | .min_baud = 0, | ||
294 | .max_baud = 0, | ||
295 | }, | ||
296 | }; | ||
297 | |||
298 | /* uart registration process */ | ||
299 | |||
300 | void __init s5p64x0_common_init_uarts(struct s3c2410_uartcfg *cfg, int no) | ||
301 | { | ||
302 | struct s3c2410_uartcfg *tcfg = cfg; | ||
303 | u32 ucnt; | ||
304 | |||
305 | for (ucnt = 0; ucnt < no; ucnt++, tcfg++) { | ||
306 | if (!tcfg->clocks) { | ||
307 | tcfg->clocks = s5p64x0_serial_clocks; | ||
308 | tcfg->clocks_size = ARRAY_SIZE(s5p64x0_serial_clocks); | ||
309 | } | ||
310 | } | ||
311 | } | ||
312 | |||
313 | void __init s5p6440_init_uarts(struct s3c2410_uartcfg *cfg, int no) | ||
314 | { | ||
315 | int uart; | ||
316 | |||
317 | for (uart = 0; uart < no; uart++) { | ||
318 | s5p_uart_resources[uart].resources->start = S5P6440_PA_UART(uart); | ||
319 | s5p_uart_resources[uart].resources->end = S5P6440_PA_UART(uart) + S5P_SZ_UART; | ||
320 | } | ||
321 | |||
322 | s5p64x0_common_init_uarts(cfg, no); | ||
323 | s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no); | ||
324 | } | ||
325 | |||
326 | void __init s5p6450_init_uarts(struct s3c2410_uartcfg *cfg, int no) | ||
327 | { | ||
328 | s5p64x0_common_init_uarts(cfg, no); | ||
329 | s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no); | ||
330 | } | ||
331 | |||
332 | #define eint_offset(irq) ((irq) - IRQ_EINT(0)) | ||
333 | |||
334 | static int s5p64x0_irq_eint_set_type(struct irq_data *data, unsigned int type) | ||
335 | { | ||
336 | int offs = eint_offset(data->irq); | ||
337 | int shift; | ||
338 | u32 ctrl, mask; | ||
339 | u32 newvalue = 0; | ||
340 | |||
341 | if (offs > 15) | ||
342 | return -EINVAL; | ||
343 | |||
344 | switch (type) { | ||
345 | case IRQ_TYPE_NONE: | ||
346 | printk(KERN_WARNING "No edge setting!\n"); | ||
347 | break; | ||
348 | case IRQ_TYPE_EDGE_RISING: | ||
349 | newvalue = S3C2410_EXTINT_RISEEDGE; | ||
350 | break; | ||
351 | case IRQ_TYPE_EDGE_FALLING: | ||
352 | newvalue = S3C2410_EXTINT_FALLEDGE; | ||
353 | break; | ||
354 | case IRQ_TYPE_EDGE_BOTH: | ||
355 | newvalue = S3C2410_EXTINT_BOTHEDGE; | ||
356 | break; | ||
357 | case IRQ_TYPE_LEVEL_LOW: | ||
358 | newvalue = S3C2410_EXTINT_LOWLEV; | ||
359 | break; | ||
360 | case IRQ_TYPE_LEVEL_HIGH: | ||
361 | newvalue = S3C2410_EXTINT_HILEV; | ||
362 | break; | ||
363 | default: | ||
364 | printk(KERN_ERR "No such irq type %d", type); | ||
365 | return -EINVAL; | ||
366 | } | ||
367 | |||
368 | shift = (offs / 2) * 4; | ||
369 | mask = 0x7 << shift; | ||
370 | |||
371 | ctrl = __raw_readl(S5P64X0_EINT0CON0) & ~mask; | ||
372 | ctrl |= newvalue << shift; | ||
373 | __raw_writel(ctrl, S5P64X0_EINT0CON0); | ||
374 | |||
375 | /* Configure the GPIO pin for 6450 or 6440 based on CPU ID */ | ||
376 | if (soc_is_s5p6450()) | ||
377 | s3c_gpio_cfgpin(S5P6450_GPN(offs), S3C_GPIO_SFN(2)); | ||
378 | else | ||
379 | s3c_gpio_cfgpin(S5P6440_GPN(offs), S3C_GPIO_SFN(2)); | ||
380 | |||
381 | return 0; | ||
382 | } | ||
383 | |||
384 | /* | ||
385 | * s5p64x0_irq_demux_eint | ||
386 | * | ||
387 | * This function demuxes the IRQ from the group0 external interrupts, | ||
388 | * from IRQ_EINT(0) to IRQ_EINT(15). It is designed to be inlined into | ||
389 | * the specific handlers s5p64x0_irq_demux_eintX_Y. | ||
390 | */ | ||
391 | static inline void s5p64x0_irq_demux_eint(unsigned int start, unsigned int end) | ||
392 | { | ||
393 | u32 status = __raw_readl(S5P64X0_EINT0PEND); | ||
394 | u32 mask = __raw_readl(S5P64X0_EINT0MASK); | ||
395 | unsigned int irq; | ||
396 | |||
397 | status &= ~mask; | ||
398 | status >>= start; | ||
399 | status &= (1 << (end - start + 1)) - 1; | ||
400 | |||
401 | for (irq = IRQ_EINT(start); irq <= IRQ_EINT(end); irq++) { | ||
402 | if (status & 1) | ||
403 | generic_handle_irq(irq); | ||
404 | status >>= 1; | ||
405 | } | ||
406 | } | ||
407 | |||
408 | static void s5p64x0_irq_demux_eint0_3(unsigned int irq, struct irq_desc *desc) | ||
409 | { | ||
410 | s5p64x0_irq_demux_eint(0, 3); | ||
411 | } | ||
412 | |||
413 | static void s5p64x0_irq_demux_eint4_11(unsigned int irq, struct irq_desc *desc) | ||
414 | { | ||
415 | s5p64x0_irq_demux_eint(4, 11); | ||
416 | } | ||
417 | |||
418 | static void s5p64x0_irq_demux_eint12_15(unsigned int irq, | ||
419 | struct irq_desc *desc) | ||
420 | { | ||
421 | s5p64x0_irq_demux_eint(12, 15); | ||
422 | } | ||
423 | |||
424 | static int s5p64x0_alloc_gc(void) | ||
425 | { | ||
426 | struct irq_chip_generic *gc; | ||
427 | struct irq_chip_type *ct; | ||
428 | |||
429 | gc = irq_alloc_generic_chip("s5p64x0-eint", 1, S5P_IRQ_EINT_BASE, | ||
430 | S5P_VA_GPIO, handle_level_irq); | ||
431 | if (!gc) { | ||
432 | printk(KERN_ERR "%s: irq_alloc_generic_chip for group 0" | ||
433 | "external interrupts failed\n", __func__); | ||
434 | return -EINVAL; | ||
435 | } | ||
436 | |||
437 | ct = gc->chip_types; | ||
438 | ct->chip.irq_ack = irq_gc_ack_set_bit; | ||
439 | ct->chip.irq_mask = irq_gc_mask_set_bit; | ||
440 | ct->chip.irq_unmask = irq_gc_mask_clr_bit; | ||
441 | ct->chip.irq_set_type = s5p64x0_irq_eint_set_type; | ||
442 | ct->chip.irq_set_wake = s3c_irqext_wake; | ||
443 | ct->regs.ack = EINT0PEND_OFFSET; | ||
444 | ct->regs.mask = EINT0MASK_OFFSET; | ||
445 | irq_setup_generic_chip(gc, IRQ_MSK(16), IRQ_GC_INIT_MASK_CACHE, | ||
446 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); | ||
447 | return 0; | ||
448 | } | ||
449 | |||
450 | static int __init s5p64x0_init_irq_eint(void) | ||
451 | { | ||
452 | int ret = s5p64x0_alloc_gc(); | ||
453 | irq_set_chained_handler(IRQ_EINT0_3, s5p64x0_irq_demux_eint0_3); | ||
454 | irq_set_chained_handler(IRQ_EINT4_11, s5p64x0_irq_demux_eint4_11); | ||
455 | irq_set_chained_handler(IRQ_EINT12_15, s5p64x0_irq_demux_eint12_15); | ||
456 | |||
457 | return ret; | ||
458 | } | ||
459 | arch_initcall(s5p64x0_init_irq_eint); | ||