blob: 3dea4a4ef165538b385dec240b9afed1769b2b70 [file] [log] [blame]
Kukjin Kimb024043b2011-12-22 23:27:42 +01001/*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
4 *
5 * Copyright 2008 Openmoko, Inc.
6 * Copyright 2008 Simtec Electronics
7 * Ben Dooks <ben@simtec.co.uk>
8 * http://armlinux.simtec.co.uk/
9 *
10 * Common Codes for S3C64XX machines
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16
Tomasz Figac836c902013-08-26 02:37:34 +090017/*
18 * NOTE: Code in this file is not used when booting with Device Tree support.
19 */
20
Kukjin Kimb024043b2011-12-22 23:27:42 +010021#include <linux/kernel.h>
22#include <linux/init.h>
23#include <linux/module.h>
24#include <linux/interrupt.h>
25#include <linux/ioport.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010026#include <linux/serial_core.h>
Tushar Behera334a1c72014-02-14 10:32:45 +090027#include <linux/serial_s3c.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010028#include <linux/platform_device.h>
Robin Holt7b6d8642013-07-08 16:01:40 -070029#include <linux/reboot.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010030#include <linux/io.h>
31#include <linux/dma-mapping.h>
32#include <linux/irq.h>
33#include <linux/gpio.h>
Rob Herring9e47b8b2013-01-07 09:45:59 -060034#include <linux/irqchip/arm-vic.h>
Tomasz Figa1c161fd2013-04-12 21:17:22 +020035#include <clocksource/samsung_pwm.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010036
37#include <asm/mach/arch.h>
38#include <asm/mach/map.h>
David Howells9f97da72012-03-28 18:30:01 +010039#include <asm/system_misc.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010040
41#include <mach/map.h>
42#include <mach/hardware.h>
43#include <mach/regs-gpio.h>
Linus Walleijb0161ca2014-01-14 14:24:24 +010044#include <mach/gpio-samsung.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010045
46#include <plat/cpu.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010047#include <plat/devs.h>
48#include <plat/pm.h>
49#include <plat/gpio-cfg.h>
Tomasz Figa1c161fd2013-04-12 21:17:22 +020050#include <plat/pwm-core.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010051#include <plat/regs-irqtype.h>
Kukjin Kimb024043b2011-12-22 23:27:42 +010052
53#include "common.h"
Kukjin Kim876ba9b2015-07-30 02:00:38 +090054#include "irq-uart.h"
Kukjin Kim96bc0242015-07-30 02:00:52 +090055#include "watchdog-reset.h"
Kukjin Kimb024043b2011-12-22 23:27:42 +010056
Tomasz Figab69f4602013-08-26 02:00:38 +090057/* External clock frequency */
58static unsigned long xtal_f = 12000000, xusbxti_f = 48000000;
59
60void __init s3c64xx_set_xtal_freq(unsigned long freq)
61{
62 xtal_f = freq;
63}
64
65void __init s3c64xx_set_xusbxti_freq(unsigned long freq)
66{
67 xusbxti_f = freq;
68}
69
Kukjin Kimb024043b2011-12-22 23:27:42 +010070/* uart registration process */
71
Mark Brownb7c97052012-01-27 14:41:20 +090072static void __init s3c64xx_init_uarts(struct s3c2410_uartcfg *cfg, int no)
Kukjin Kimb024043b2011-12-22 23:27:42 +010073{
74 s3c24xx_init_uartdevs("s3c6400-uart", s3c64xx_uart_resources, cfg, no);
75}
76
77/* table of supported CPUs */
78
79static const char name_s3c6400[] = "S3C6400";
80static const char name_s3c6410[] = "S3C6410";
81
82static struct cpu_table cpu_ids[] __initdata = {
83 {
84 .idcode = S3C6400_CPU_ID,
85 .idmask = S3C64XX_CPU_MASK,
86 .map_io = s3c6400_map_io,
Kukjin Kimb024043b2011-12-22 23:27:42 +010087 .init_uarts = s3c64xx_init_uarts,
88 .init = s3c6400_init,
89 .name = name_s3c6400,
90 }, {
91 .idcode = S3C6410_CPU_ID,
92 .idmask = S3C64XX_CPU_MASK,
93 .map_io = s3c6410_map_io,
Kukjin Kimb024043b2011-12-22 23:27:42 +010094 .init_uarts = s3c64xx_init_uarts,
95 .init = s3c6410_init,
96 .name = name_s3c6410,
97 },
98};
99
100/* minimal IO mapping */
101
102/* see notes on uart map in arch/arm/mach-s3c64xx/include/mach/debug-macro.S */
103#define UART_OFFS (S3C_PA_UART & 0xfffff)
104
105static struct map_desc s3c_iodesc[] __initdata = {
106 {
107 .virtual = (unsigned long)S3C_VA_SYS,
108 .pfn = __phys_to_pfn(S3C64XX_PA_SYSCON),
109 .length = SZ_4K,
110 .type = MT_DEVICE,
111 }, {
112 .virtual = (unsigned long)S3C_VA_MEM,
113 .pfn = __phys_to_pfn(S3C64XX_PA_SROM),
114 .length = SZ_4K,
115 .type = MT_DEVICE,
116 }, {
117 .virtual = (unsigned long)(S3C_VA_UART + UART_OFFS),
118 .pfn = __phys_to_pfn(S3C_PA_UART),
119 .length = SZ_4K,
120 .type = MT_DEVICE,
121 }, {
122 .virtual = (unsigned long)VA_VIC0,
123 .pfn = __phys_to_pfn(S3C64XX_PA_VIC0),
124 .length = SZ_16K,
125 .type = MT_DEVICE,
126 }, {
127 .virtual = (unsigned long)VA_VIC1,
128 .pfn = __phys_to_pfn(S3C64XX_PA_VIC1),
129 .length = SZ_16K,
130 .type = MT_DEVICE,
131 }, {
132 .virtual = (unsigned long)S3C_VA_TIMER,
133 .pfn = __phys_to_pfn(S3C_PA_TIMER),
134 .length = SZ_16K,
135 .type = MT_DEVICE,
136 }, {
137 .virtual = (unsigned long)S3C64XX_VA_GPIO,
138 .pfn = __phys_to_pfn(S3C64XX_PA_GPIO),
139 .length = SZ_4K,
140 .type = MT_DEVICE,
141 }, {
142 .virtual = (unsigned long)S3C64XX_VA_MODEM,
143 .pfn = __phys_to_pfn(S3C64XX_PA_MODEM),
144 .length = SZ_4K,
145 .type = MT_DEVICE,
146 }, {
147 .virtual = (unsigned long)S3C_VA_WATCHDOG,
148 .pfn = __phys_to_pfn(S3C64XX_PA_WATCHDOG),
149 .length = SZ_4K,
150 .type = MT_DEVICE,
151 }, {
152 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
153 .pfn = __phys_to_pfn(S3C64XX_PA_USB_HSPHY),
154 .length = SZ_1K,
155 .type = MT_DEVICE,
156 },
157};
158
Linus Torvalds7affca32012-01-07 12:03:30 -0800159static struct bus_type s3c64xx_subsys = {
160 .name = "s3c64xx-core",
161 .dev_name = "s3c64xx-core",
Kukjin Kimb024043b2011-12-22 23:27:42 +0100162};
163
Linus Torvalds7affca32012-01-07 12:03:30 -0800164static struct device s3c64xx_dev = {
165 .bus = &s3c64xx_subsys,
Kukjin Kimb024043b2011-12-22 23:27:42 +0100166};
167
Tomasz Figa1c161fd2013-04-12 21:17:22 +0200168static struct samsung_pwm_variant s3c64xx_pwm_variant = {
169 .bits = 32,
170 .div_base = 0,
171 .has_tint_cstat = true,
172 .tclk_mask = (1 << 7) | (1 << 6) | (1 << 5),
173};
174
Tomasz Figa42805062013-04-28 02:25:01 +0200175void __init samsung_set_timer_source(unsigned int event, unsigned int source)
176{
177 s3c64xx_pwm_variant.output_mask = BIT(SAMSUNG_PWM_NUM) - 1;
178 s3c64xx_pwm_variant.output_mask &= ~(BIT(event) | BIT(source));
179}
180
181void __init samsung_timer_init(void)
182{
183 unsigned int timer_irqs[SAMSUNG_PWM_NUM] = {
184 IRQ_TIMER0_VIC, IRQ_TIMER1_VIC, IRQ_TIMER2_VIC,
185 IRQ_TIMER3_VIC, IRQ_TIMER4_VIC,
186 };
187
188 samsung_pwm_clocksource_init(S3C_VA_TIMER,
189 timer_irqs, &s3c64xx_pwm_variant);
190}
191
Kukjin Kimb024043b2011-12-22 23:27:42 +0100192/* read cpu identification code */
193
194void __init s3c64xx_init_io(struct map_desc *mach_desc, int size)
195{
196 /* initialise the io descriptors we need for initialisation */
197 iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));
198 iotable_init(mach_desc, size);
Kukjin Kimb024043b2011-12-22 23:27:42 +0100199
200 /* detect cpu id */
201 s3c64xx_init_cpu();
202
203 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
Tomasz Figa1c161fd2013-04-12 21:17:22 +0200204
205 samsung_pwm_set_platdata(&s3c64xx_pwm_variant);
Kukjin Kimb024043b2011-12-22 23:27:42 +0100206}
207
Linus Torvalds7affca32012-01-07 12:03:30 -0800208static __init int s3c64xx_dev_init(void)
Kukjin Kimb024043b2011-12-22 23:27:42 +0100209{
Tomasz Figac836c902013-08-26 02:37:34 +0900210 /* Not applicable when using DT. */
Arnd Bergmanna0e157a2015-02-27 20:31:51 +0100211 if (of_have_populated_dt() || !soc_is_s3c64xx())
Tomasz Figac836c902013-08-26 02:37:34 +0900212 return 0;
213
Linus Torvalds7affca32012-01-07 12:03:30 -0800214 subsys_system_register(&s3c64xx_subsys, NULL);
215 return device_register(&s3c64xx_dev);
Kukjin Kimb024043b2011-12-22 23:27:42 +0100216}
Linus Torvalds7affca32012-01-07 12:03:30 -0800217core_initcall(s3c64xx_dev_init);
Kukjin Kimb024043b2011-12-22 23:27:42 +0100218
219/*
220 * setup the sources the vic should advertise resume
221 * for, even though it is not doing the wake
222 * (set_irq_wake needs to be valid)
223 */
224#define IRQ_VIC0_RESUME (1 << (IRQ_RTC_TIC - IRQ_VIC0_BASE))
225#define IRQ_VIC1_RESUME (1 << (IRQ_RTC_ALARM - IRQ_VIC1_BASE) | \
226 1 << (IRQ_PENDN - IRQ_VIC1_BASE) | \
227 1 << (IRQ_HSMMC0 - IRQ_VIC1_BASE) | \
228 1 << (IRQ_HSMMC1 - IRQ_VIC1_BASE) | \
229 1 << (IRQ_HSMMC2 - IRQ_VIC1_BASE))
230
231void __init s3c64xx_init_irq(u32 vic0_valid, u32 vic1_valid)
232{
Tomasz Figa88f59732013-06-17 23:45:37 +0900233 /*
234 * FIXME: there is no better place to put this at the moment
Tomasz Figab69f4602013-08-26 02:00:38 +0900235 * (s3c64xx_clk_init needs ioremap and must happen before init_time
236 * samsung_wdt_reset_init needs clocks)
Tomasz Figa88f59732013-06-17 23:45:37 +0900237 */
Tomasz Figab69f4602013-08-26 02:00:38 +0900238 s3c64xx_clk_init(NULL, xtal_f, xusbxti_f, soc_is_s3c6400(), S3C_VA_SYS);
Tomasz Figa88f59732013-06-17 23:45:37 +0900239 samsung_wdt_reset_init(S3C_VA_WATCHDOG);
240
Kukjin Kimb024043b2011-12-22 23:27:42 +0100241 printk(KERN_DEBUG "%s: initialising interrupts\n", __func__);
242
243 /* initialise the pair of VICs */
244 vic_init(VA_VIC0, IRQ_VIC0_BASE, vic0_valid, IRQ_VIC0_RESUME);
245 vic_init(VA_VIC1, IRQ_VIC1_BASE, vic1_valid, IRQ_VIC1_RESUME);
Kukjin Kimb024043b2011-12-22 23:27:42 +0100246}
247
248#define eint_offset(irq) ((irq) - IRQ_EINT(0))
249#define eint_irq_to_bit(irq) ((u32)(1 << eint_offset(irq)))
250
251static inline void s3c_irq_eint_mask(struct irq_data *data)
252{
253 u32 mask;
254
255 mask = __raw_readl(S3C64XX_EINT0MASK);
256 mask |= (u32)data->chip_data;
257 __raw_writel(mask, S3C64XX_EINT0MASK);
258}
259
260static void s3c_irq_eint_unmask(struct irq_data *data)
261{
262 u32 mask;
263
264 mask = __raw_readl(S3C64XX_EINT0MASK);
265 mask &= ~((u32)data->chip_data);
266 __raw_writel(mask, S3C64XX_EINT0MASK);
267}
268
269static inline void s3c_irq_eint_ack(struct irq_data *data)
270{
271 __raw_writel((u32)data->chip_data, S3C64XX_EINT0PEND);
272}
273
274static void s3c_irq_eint_maskack(struct irq_data *data)
275{
276 /* compiler should in-line these */
277 s3c_irq_eint_mask(data);
278 s3c_irq_eint_ack(data);
279}
280
281static int s3c_irq_eint_set_type(struct irq_data *data, unsigned int type)
282{
283 int offs = eint_offset(data->irq);
284 int pin, pin_val;
285 int shift;
286 u32 ctrl, mask;
287 u32 newvalue = 0;
288 void __iomem *reg;
289
290 if (offs > 27)
291 return -EINVAL;
292
293 if (offs <= 15)
294 reg = S3C64XX_EINT0CON0;
295 else
296 reg = S3C64XX_EINT0CON1;
297
298 switch (type) {
299 case IRQ_TYPE_NONE:
300 printk(KERN_WARNING "No edge setting!\n");
301 break;
302
303 case IRQ_TYPE_EDGE_RISING:
304 newvalue = S3C2410_EXTINT_RISEEDGE;
305 break;
306
307 case IRQ_TYPE_EDGE_FALLING:
308 newvalue = S3C2410_EXTINT_FALLEDGE;
309 break;
310
311 case IRQ_TYPE_EDGE_BOTH:
312 newvalue = S3C2410_EXTINT_BOTHEDGE;
313 break;
314
315 case IRQ_TYPE_LEVEL_LOW:
316 newvalue = S3C2410_EXTINT_LOWLEV;
317 break;
318
319 case IRQ_TYPE_LEVEL_HIGH:
320 newvalue = S3C2410_EXTINT_HILEV;
321 break;
322
323 default:
324 printk(KERN_ERR "No such irq type %d", type);
325 return -1;
326 }
327
328 if (offs <= 15)
329 shift = (offs / 2) * 4;
330 else
331 shift = ((offs - 16) / 2) * 4;
332 mask = 0x7 << shift;
333
334 ctrl = __raw_readl(reg);
335 ctrl &= ~mask;
336 ctrl |= newvalue << shift;
337 __raw_writel(ctrl, reg);
338
339 /* set the GPIO pin appropriately */
340
341 if (offs < 16) {
342 pin = S3C64XX_GPN(offs);
343 pin_val = S3C_GPIO_SFN(2);
344 } else if (offs < 23) {
345 pin = S3C64XX_GPL(offs + 8 - 16);
346 pin_val = S3C_GPIO_SFN(3);
347 } else {
348 pin = S3C64XX_GPM(offs - 23);
349 pin_val = S3C_GPIO_SFN(3);
350 }
351
352 s3c_gpio_cfgpin(pin, pin_val);
353
354 return 0;
355}
356
357static struct irq_chip s3c_irq_eint = {
358 .name = "s3c-eint",
359 .irq_mask = s3c_irq_eint_mask,
360 .irq_unmask = s3c_irq_eint_unmask,
361 .irq_mask_ack = s3c_irq_eint_maskack,
362 .irq_ack = s3c_irq_eint_ack,
363 .irq_set_type = s3c_irq_eint_set_type,
364 .irq_set_wake = s3c_irqext_wake,
365};
366
367/* s3c_irq_demux_eint
368 *
369 * This function demuxes the IRQ from the group0 external interrupts,
370 * from IRQ_EINT(0) to IRQ_EINT(27). It is designed to be inlined into
371 * the specific handlers s3c_irq_demux_eintX_Y.
372 */
373static inline void s3c_irq_demux_eint(unsigned int start, unsigned int end)
374{
375 u32 status = __raw_readl(S3C64XX_EINT0PEND);
376 u32 mask = __raw_readl(S3C64XX_EINT0MASK);
377 unsigned int irq;
378
379 status &= ~mask;
380 status >>= start;
381 status &= (1 << (end - start + 1)) - 1;
382
383 for (irq = IRQ_EINT(start); irq <= IRQ_EINT(end); irq++) {
384 if (status & 1)
385 generic_handle_irq(irq);
386
387 status >>= 1;
388 }
389}
390
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200391static void s3c_irq_demux_eint0_3(struct irq_desc *desc)
Kukjin Kimb024043b2011-12-22 23:27:42 +0100392{
393 s3c_irq_demux_eint(0, 3);
394}
395
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200396static void s3c_irq_demux_eint4_11(struct irq_desc *desc)
Kukjin Kimb024043b2011-12-22 23:27:42 +0100397{
398 s3c_irq_demux_eint(4, 11);
399}
400
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200401static void s3c_irq_demux_eint12_19(struct irq_desc *desc)
Kukjin Kimb024043b2011-12-22 23:27:42 +0100402{
403 s3c_irq_demux_eint(12, 19);
404}
405
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200406static void s3c_irq_demux_eint20_27(struct irq_desc *desc)
Kukjin Kimb024043b2011-12-22 23:27:42 +0100407{
408 s3c_irq_demux_eint(20, 27);
409}
410
411static int __init s3c64xx_init_irq_eint(void)
412{
413 int irq;
414
Tomasz Figac836c902013-08-26 02:37:34 +0900415 /* On DT-enabled systems EINTs are handled by pinctrl-s3c64xx driver. */
Arnd Bergmanna0e157a2015-02-27 20:31:51 +0100416 if (of_have_populated_dt() || !soc_is_s3c64xx())
Tomasz Figac836c902013-08-26 02:37:34 +0900417 return -ENODEV;
418
Kukjin Kimb024043b2011-12-22 23:27:42 +0100419 for (irq = IRQ_EINT(0); irq <= IRQ_EINT(27); irq++) {
420 irq_set_chip_and_handler(irq, &s3c_irq_eint, handle_level_irq);
421 irq_set_chip_data(irq, (void *)eint_irq_to_bit(irq));
Rob Herringe8d36d52015-07-27 15:55:13 -0500422 irq_clear_status_flags(irq, IRQ_NOREQUEST);
Kukjin Kimb024043b2011-12-22 23:27:42 +0100423 }
424
425 irq_set_chained_handler(IRQ_EINT0_3, s3c_irq_demux_eint0_3);
426 irq_set_chained_handler(IRQ_EINT4_11, s3c_irq_demux_eint4_11);
427 irq_set_chained_handler(IRQ_EINT12_19, s3c_irq_demux_eint12_19);
428 irq_set_chained_handler(IRQ_EINT20_27, s3c_irq_demux_eint20_27);
429
430 return 0;
431}
432arch_initcall(s3c64xx_init_irq_eint);
Kukjin Kimff84ded2012-01-03 14:03:30 +0100433
Robin Holt7b6d8642013-07-08 16:01:40 -0700434void s3c64xx_restart(enum reboot_mode mode, const char *cmd)
Kukjin Kimff84ded2012-01-03 14:03:30 +0100435{
Robin Holt7b6d8642013-07-08 16:01:40 -0700436 if (mode != REBOOT_SOFT)
Tomasz Figa88f59732013-06-17 23:45:37 +0900437 samsung_wdt_reset();
Kukjin Kimff84ded2012-01-03 14:03:30 +0100438
439 /* if all else fails, or mode was for soft, jump to 0 */
440 soft_restart(0);
441}