blob: 2d892e4daa071e0d8b52e4b260b520e6276ffd43 [file] [log] [blame]
Lennert Buytenheke7736d42006-03-20 17:10:13 +00001/*
2 * arch/arm/mach-ep93xx/core.c
3 * Core routines for Cirrus EP93xx chips.
4 *
5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
6 *
7 * Thanks go to Michael Burian and Ray Lehtiniemi for their key
8 * role in the ep93xx linux community.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 */
15
16#include <linux/config.h>
17#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/spinlock.h>
20#include <linux/sched.h>
21#include <linux/interrupt.h>
22#include <linux/serial.h>
23#include <linux/tty.h>
24#include <linux/bitops.h>
25#include <linux/serial.h>
26#include <linux/serial_8250.h>
27#include <linux/serial_core.h>
28#include <linux/device.h>
29#include <linux/mm.h>
30#include <linux/time.h>
31#include <linux/timex.h>
32#include <linux/delay.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010033#include <linux/termios.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000034#include <linux/amba/bus.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010035#include <linux/amba/serial.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000036
37#include <asm/types.h>
38#include <asm/setup.h>
39#include <asm/memory.h>
40#include <asm/hardware.h>
41#include <asm/irq.h>
42#include <asm/system.h>
43#include <asm/tlbflush.h>
44#include <asm/pgtable.h>
45#include <asm/io.h>
46
47#include <asm/mach/map.h>
48#include <asm/mach/time.h>
49#include <asm/mach/irq.h>
Lennert Buytenheka8e19662006-03-20 17:10:14 +000050#include <asm/arch/gpio.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000051
52#include <asm/hardware/vic.h>
53
54
55/*************************************************************************
56 * Static I/O mappings that are needed for all EP93xx platforms
57 *************************************************************************/
58static struct map_desc ep93xx_io_desc[] __initdata = {
59 {
60 .virtual = EP93XX_AHB_VIRT_BASE,
61 .pfn = __phys_to_pfn(EP93XX_AHB_PHYS_BASE),
62 .length = EP93XX_AHB_SIZE,
63 .type = MT_DEVICE,
64 }, {
65 .virtual = EP93XX_APB_VIRT_BASE,
66 .pfn = __phys_to_pfn(EP93XX_APB_PHYS_BASE),
67 .length = EP93XX_APB_SIZE,
68 .type = MT_DEVICE,
69 },
70};
71
72void __init ep93xx_map_io(void)
73{
74 iotable_init(ep93xx_io_desc, ARRAY_SIZE(ep93xx_io_desc));
75}
76
77
78/*************************************************************************
79 * Timer handling for EP93xx
80 *************************************************************************
81 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
82 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
83 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
84 * is free-running, and can't generate interrupts.
85 *
86 * The 508 kHz timers are ideal for use for the timer interrupt, as the
87 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
88 * bit timers (timer 1) since we don't need more than 16 bits of reload
89 * value as long as HZ >= 8.
90 *
91 * The higher clock rate of timer 4 makes it a better choice than the
92 * other timers for use in gettimeoffset(), while the fact that it can't
93 * generate interrupts means we don't have to worry about not being able
94 * to use this timer for something else. We also use timer 4 for keeping
95 * track of lost jiffies.
96 */
97static unsigned int last_jiffy_time;
98
99#define TIMER4_TICKS_PER_JIFFY ((CLOCK_TICK_RATE + (HZ/2)) / HZ)
100
101static int ep93xx_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
102{
103 write_seqlock(&xtime_lock);
104
105 __raw_writel(1, EP93XX_TIMER1_CLEAR);
106 while (__raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time
107 >= TIMER4_TICKS_PER_JIFFY) {
108 last_jiffy_time += TIMER4_TICKS_PER_JIFFY;
109 timer_tick(regs);
110 }
111
112 write_sequnlock(&xtime_lock);
113
114 return IRQ_HANDLED;
115}
116
117static struct irqaction ep93xx_timer_irq = {
118 .name = "ep93xx timer",
119 .flags = SA_INTERRUPT | SA_TIMER,
120 .handler = ep93xx_timer_interrupt,
121};
122
123static void __init ep93xx_timer_init(void)
124{
125 /* Enable periodic HZ timer. */
126 __raw_writel(0x48, EP93XX_TIMER1_CONTROL);
127 __raw_writel((508000 / HZ) - 1, EP93XX_TIMER1_LOAD);
128 __raw_writel(0xc8, EP93XX_TIMER1_CONTROL);
129
130 /* Enable lost jiffy timer. */
131 __raw_writel(0x100, EP93XX_TIMER4_VALUE_HIGH);
132
133 setup_irq(IRQ_EP93XX_TIMER1, &ep93xx_timer_irq);
134}
135
136static unsigned long ep93xx_gettimeoffset(void)
137{
138 int offset;
139
140 offset = __raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time;
141
142 /* Calculate (1000000 / 983040) * offset. */
143 return offset + (53 * offset / 3072);
144}
145
146struct sys_timer ep93xx_timer = {
147 .init = ep93xx_timer_init,
148 .offset = ep93xx_gettimeoffset,
149};
150
151
152/*************************************************************************
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000153 * GPIO handling for EP93xx
154 *************************************************************************/
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000155static unsigned char gpio_int_enable[2];
156static unsigned char gpio_int_type1[2];
157static unsigned char gpio_int_type2[2];
158
159static void update_gpio_ab_int_params(int port)
160{
161 if (port == 0) {
162 __raw_writeb(0, EP93XX_GPIO_A_INT_ENABLE);
163 __raw_writeb(gpio_int_type2[0], EP93XX_GPIO_A_INT_TYPE2);
164 __raw_writeb(gpio_int_type1[0], EP93XX_GPIO_A_INT_TYPE1);
165 __raw_writeb(gpio_int_enable[0], EP93XX_GPIO_A_INT_ENABLE);
166 } else if (port == 1) {
167 __raw_writeb(0, EP93XX_GPIO_B_INT_ENABLE);
168 __raw_writeb(gpio_int_type2[1], EP93XX_GPIO_B_INT_TYPE2);
169 __raw_writeb(gpio_int_type1[1], EP93XX_GPIO_B_INT_TYPE1);
170 __raw_writeb(gpio_int_enable[1], EP93XX_GPIO_B_INT_ENABLE);
171 }
172}
173
174
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000175static unsigned char data_register_offset[8] = {
176 0x00, 0x04, 0x08, 0x0c, 0x20, 0x30, 0x38, 0x40,
177};
178
179static unsigned char data_direction_register_offset[8] = {
180 0x10, 0x14, 0x18, 0x1c, 0x24, 0x34, 0x3c, 0x44,
181};
182
183void gpio_line_config(int line, int direction)
184{
185 unsigned int data_direction_register;
186 unsigned long flags;
187 unsigned char v;
188
189 data_direction_register =
190 EP93XX_GPIO_REG(data_direction_register_offset[line >> 3]);
191
192 local_irq_save(flags);
193 if (direction == GPIO_OUT) {
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000194 if (line >= 0 && line < 16) {
195 gpio_int_enable[line >> 3] &= ~(1 << (line & 7));
196 update_gpio_ab_int_params(line >> 3);
197 }
198
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000199 v = __raw_readb(data_direction_register);
200 v |= 1 << (line & 7);
201 __raw_writeb(v, data_direction_register);
202 } else if (direction == GPIO_IN) {
203 v = __raw_readb(data_direction_register);
204 v &= ~(1 << (line & 7));
205 __raw_writeb(v, data_direction_register);
206 }
207 local_irq_restore(flags);
208}
209EXPORT_SYMBOL(gpio_line_config);
210
211int gpio_line_get(int line)
212{
213 unsigned int data_register;
214
215 data_register = EP93XX_GPIO_REG(data_register_offset[line >> 3]);
216
217 return !!(__raw_readb(data_register) & (1 << (line & 7)));
218}
219EXPORT_SYMBOL(gpio_line_get);
220
221void gpio_line_set(int line, int value)
222{
223 unsigned int data_register;
224 unsigned long flags;
225 unsigned char v;
226
227 data_register = EP93XX_GPIO_REG(data_register_offset[line >> 3]);
228
229 local_irq_save(flags);
230 if (value == EP93XX_GPIO_HIGH) {
231 v = __raw_readb(data_register);
232 v |= 1 << (line & 7);
233 __raw_writeb(v, data_register);
234 } else if (value == EP93XX_GPIO_LOW) {
235 v = __raw_readb(data_register);
236 v &= ~(1 << (line & 7));
237 __raw_writeb(v, data_register);
238 }
239 local_irq_restore(flags);
240}
241EXPORT_SYMBOL(gpio_line_set);
242
243
244/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000245 * EP93xx IRQ handling
246 *************************************************************************/
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000247static void ep93xx_gpio_ab_irq_handler(unsigned int irq,
248 struct irqdesc *desc, struct pt_regs *regs)
249{
250 unsigned char status;
251 int i;
252
253 status = __raw_readb(EP93XX_GPIO_A_INT_STATUS);
254 for (i = 0; i < 8; i++) {
255 if (status & (1 << i)) {
256 desc = irq_desc + IRQ_EP93XX_GPIO(0) + i;
257 desc_handle_irq(IRQ_EP93XX_GPIO(0) + i, desc, regs);
258 }
259 }
260
261 status = __raw_readb(EP93XX_GPIO_B_INT_STATUS);
262 for (i = 0; i < 8; i++) {
263 if (status & (1 << i)) {
264 desc = irq_desc + IRQ_EP93XX_GPIO(8) + i;
265 desc_handle_irq(IRQ_EP93XX_GPIO(8) + i, desc, regs);
266 }
267 }
268}
269
270static void ep93xx_gpio_ab_irq_mask_ack(unsigned int irq)
271{
272 int line = irq - IRQ_EP93XX_GPIO(0);
273 int port = line >> 3;
274
275 gpio_int_enable[port] &= ~(1 << (line & 7));
276 update_gpio_ab_int_params(port);
277
278 if (line >> 3) {
279 __raw_writel(1 << (line & 7), EP93XX_GPIO_B_INT_ACK);
280 } else {
281 __raw_writel(1 << (line & 7), EP93XX_GPIO_A_INT_ACK);
282 }
283}
284
285static void ep93xx_gpio_ab_irq_mask(unsigned int irq)
286{
287 int line = irq - IRQ_EP93XX_GPIO(0);
288 int port = line >> 3;
289
290 gpio_int_enable[port] &= ~(1 << (line & 7));
291 update_gpio_ab_int_params(port);
292}
293
294static void ep93xx_gpio_ab_irq_unmask(unsigned int irq)
295{
296 int line = irq - IRQ_EP93XX_GPIO(0);
297 int port = line >> 3;
298
299 gpio_int_enable[port] |= 1 << (line & 7);
300 update_gpio_ab_int_params(port);
301}
302
303
304/*
305 * gpio_int_type1 controls whether the interrupt is level (0) or
306 * edge (1) triggered, while gpio_int_type2 controls whether it
307 * triggers on low/falling (0) or high/rising (1).
308 */
309static int ep93xx_gpio_ab_irq_type(unsigned int irq, unsigned int type)
310{
311 int port;
312 int line;
313
314 line = irq - IRQ_EP93XX_GPIO(0);
315 gpio_line_config(line, GPIO_IN);
316
317 port = line >> 3;
318 line &= 7;
319
320 if (type & IRQT_RISING) {
321 gpio_int_type1[port] |= 1 << line;
322 gpio_int_type2[port] |= 1 << line;
323 } else if (type & IRQT_FALLING) {
324 gpio_int_type1[port] |= 1 << line;
325 gpio_int_type2[port] &= ~(1 << line);
326 } else if (type & IRQT_HIGH) {
327 gpio_int_type1[port] &= ~(1 << line);
328 gpio_int_type2[port] |= 1 << line;
329 } else if (type & IRQT_LOW) {
330 gpio_int_type1[port] &= ~(1 << line);
331 gpio_int_type2[port] &= ~(1 << line);
332 }
333 update_gpio_ab_int_params(port);
334
335 return 0;
336}
337
338static struct irqchip ep93xx_gpio_ab_irq_chip = {
339 .ack = ep93xx_gpio_ab_irq_mask_ack,
340 .mask = ep93xx_gpio_ab_irq_mask,
341 .unmask = ep93xx_gpio_ab_irq_unmask,
342 .set_type = ep93xx_gpio_ab_irq_type,
343};
344
345
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000346void __init ep93xx_init_irq(void)
347{
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000348 int irq;
349
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000350 vic_init((void *)EP93XX_VIC1_BASE, 0, EP93XX_VIC1_VALID_IRQ_MASK);
351 vic_init((void *)EP93XX_VIC2_BASE, 32, EP93XX_VIC2_VALID_IRQ_MASK);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000352
353 for (irq = IRQ_EP93XX_GPIO(0) ; irq <= IRQ_EP93XX_GPIO(15); irq++) {
354 set_irq_chip(irq, &ep93xx_gpio_ab_irq_chip);
355 set_irq_handler(irq, do_level_IRQ);
356 set_irq_flags(irq, IRQF_VALID);
357 }
358 set_irq_chained_handler(IRQ_EP93XX_GPIO_AB, ep93xx_gpio_ab_irq_handler);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000359}
360
361
362/*************************************************************************
363 * EP93xx peripheral handling
364 *************************************************************************/
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100365#define EP93XX_UART_MCR_OFFSET (0x0100)
366
367static void ep93xx_uart_set_mctrl(struct amba_device *dev,
368 void __iomem *base, unsigned int mctrl)
369{
370 unsigned int mcr;
371
372 mcr = 0;
373 if (!(mctrl & TIOCM_RTS))
374 mcr |= 2;
375 if (!(mctrl & TIOCM_DTR))
376 mcr |= 1;
377
378 __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
379}
380
381static struct amba_pl010_data ep93xx_uart_data = {
382 .set_mctrl = ep93xx_uart_set_mctrl,
383};
384
385static struct amba_device uart1_device = {
386 .dev = {
387 .bus_id = "apb:uart1",
388 .platform_data = &ep93xx_uart_data,
389 },
390 .res = {
391 .start = EP93XX_UART1_PHYS_BASE,
392 .end = EP93XX_UART1_PHYS_BASE + 0x0fff,
393 .flags = IORESOURCE_MEM,
394 },
395 .irq = { IRQ_EP93XX_UART1, NO_IRQ },
396 .periphid = 0x00041010,
397};
398
399static struct amba_device uart2_device = {
400 .dev = {
401 .bus_id = "apb:uart2",
402 .platform_data = &ep93xx_uart_data,
403 },
404 .res = {
405 .start = EP93XX_UART2_PHYS_BASE,
406 .end = EP93XX_UART2_PHYS_BASE + 0x0fff,
407 .flags = IORESOURCE_MEM,
408 },
409 .irq = { IRQ_EP93XX_UART2, NO_IRQ },
410 .periphid = 0x00041010,
411};
412
413static struct amba_device uart3_device = {
414 .dev = {
415 .bus_id = "apb:uart3",
416 .platform_data = &ep93xx_uart_data,
417 },
418 .res = {
419 .start = EP93XX_UART3_PHYS_BASE,
420 .end = EP93XX_UART3_PHYS_BASE + 0x0fff,
421 .flags = IORESOURCE_MEM,
422 },
423 .irq = { IRQ_EP93XX_UART3, NO_IRQ },
424 .periphid = 0x00041010,
425};
426
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000427void __init ep93xx_init_devices(void)
428{
429 unsigned int v;
430
431 /*
432 * Disallow access to MaverickCrunch initially.
433 */
434 v = __raw_readl(EP93XX_SYSCON_DEVICE_CONFIG);
435 v &= ~EP93XX_SYSCON_DEVICE_CONFIG_CRUNCH_ENABLE;
436 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
437 __raw_writel(v, EP93XX_SYSCON_DEVICE_CONFIG);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100438
439 amba_device_register(&uart1_device, &iomem_resource);
440 amba_device_register(&uart2_device, &iomem_resource);
441 amba_device_register(&uart3_device, &iomem_resource);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000442}