blob: f1074ff02fdbb5fdaebe505157e1a36651a70185 [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
Lennert Buytenheke7736d42006-03-20 17:10:13 +000016#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/spinlock.h>
19#include <linux/sched.h>
20#include <linux/interrupt.h>
21#include <linux/serial.h>
22#include <linux/tty.h>
23#include <linux/bitops.h>
24#include <linux/serial.h>
25#include <linux/serial_8250.h>
26#include <linux/serial_core.h>
27#include <linux/device.h>
28#include <linux/mm.h>
29#include <linux/time.h>
30#include <linux/timex.h>
31#include <linux/delay.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010032#include <linux/termios.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000033#include <linux/amba/bus.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010034#include <linux/amba/serial.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000035
36#include <asm/types.h>
37#include <asm/setup.h>
38#include <asm/memory.h>
39#include <asm/hardware.h>
40#include <asm/irq.h>
41#include <asm/system.h>
42#include <asm/tlbflush.h>
43#include <asm/pgtable.h>
44#include <asm/io.h>
45
46#include <asm/mach/map.h>
47#include <asm/mach/time.h>
48#include <asm/mach/irq.h>
Lennert Buytenheka8e19662006-03-20 17:10:14 +000049#include <asm/arch/gpio.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000050
51#include <asm/hardware/vic.h>
52
53
54/*************************************************************************
55 * Static I/O mappings that are needed for all EP93xx platforms
56 *************************************************************************/
57static struct map_desc ep93xx_io_desc[] __initdata = {
58 {
59 .virtual = EP93XX_AHB_VIRT_BASE,
60 .pfn = __phys_to_pfn(EP93XX_AHB_PHYS_BASE),
61 .length = EP93XX_AHB_SIZE,
62 .type = MT_DEVICE,
63 }, {
64 .virtual = EP93XX_APB_VIRT_BASE,
65 .pfn = __phys_to_pfn(EP93XX_APB_PHYS_BASE),
66 .length = EP93XX_APB_SIZE,
67 .type = MT_DEVICE,
68 },
69};
70
71void __init ep93xx_map_io(void)
72{
73 iotable_init(ep93xx_io_desc, ARRAY_SIZE(ep93xx_io_desc));
74}
75
76
77/*************************************************************************
78 * Timer handling for EP93xx
79 *************************************************************************
80 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
81 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
82 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
83 * is free-running, and can't generate interrupts.
84 *
85 * The 508 kHz timers are ideal for use for the timer interrupt, as the
86 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
87 * bit timers (timer 1) since we don't need more than 16 bits of reload
88 * value as long as HZ >= 8.
89 *
90 * The higher clock rate of timer 4 makes it a better choice than the
91 * other timers for use in gettimeoffset(), while the fact that it can't
92 * generate interrupts means we don't have to worry about not being able
93 * to use this timer for something else. We also use timer 4 for keeping
94 * track of lost jiffies.
95 */
96static unsigned int last_jiffy_time;
97
98#define TIMER4_TICKS_PER_JIFFY ((CLOCK_TICK_RATE + (HZ/2)) / HZ)
99
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700100static int ep93xx_timer_interrupt(int irq, void *dev_id)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000101{
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000102 __raw_writel(1, EP93XX_TIMER1_CLEAR);
Lennert Buytenhekf869afa2006-06-22 10:30:53 +0100103 while ((signed long)
104 (__raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000105 >= TIMER4_TICKS_PER_JIFFY) {
106 last_jiffy_time += TIMER4_TICKS_PER_JIFFY;
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700107 timer_tick();
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000108 }
109
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000110 return IRQ_HANDLED;
111}
112
113static struct irqaction ep93xx_timer_irq = {
114 .name = "ep93xx timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700115 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000116 .handler = ep93xx_timer_interrupt,
117};
118
119static void __init ep93xx_timer_init(void)
120{
121 /* Enable periodic HZ timer. */
122 __raw_writel(0x48, EP93XX_TIMER1_CONTROL);
Lennert Buytenheka059e332006-06-22 10:30:54 +0100123 __raw_writel((508469 / HZ) - 1, EP93XX_TIMER1_LOAD);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000124 __raw_writel(0xc8, EP93XX_TIMER1_CONTROL);
125
126 /* Enable lost jiffy timer. */
127 __raw_writel(0x100, EP93XX_TIMER4_VALUE_HIGH);
128
129 setup_irq(IRQ_EP93XX_TIMER1, &ep93xx_timer_irq);
130}
131
132static unsigned long ep93xx_gettimeoffset(void)
133{
134 int offset;
135
136 offset = __raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time;
137
138 /* Calculate (1000000 / 983040) * offset. */
139 return offset + (53 * offset / 3072);
140}
141
142struct sys_timer ep93xx_timer = {
143 .init = ep93xx_timer_init,
144 .offset = ep93xx_gettimeoffset,
145};
146
147
148/*************************************************************************
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000149 * GPIO handling for EP93xx
150 *************************************************************************/
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100151static unsigned char gpio_int_unmasked[3];
152static unsigned char gpio_int_enabled[3];
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100153static unsigned char gpio_int_type1[3];
154static unsigned char gpio_int_type2[3];
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000155
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100156static void update_gpio_int_params(int abf)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000157{
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100158 if (abf == 0) {
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000159 __raw_writeb(0, EP93XX_GPIO_A_INT_ENABLE);
160 __raw_writeb(gpio_int_type2[0], EP93XX_GPIO_A_INT_TYPE2);
161 __raw_writeb(gpio_int_type1[0], EP93XX_GPIO_A_INT_TYPE1);
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100162 __raw_writeb(gpio_int_unmasked[0] & gpio_int_enabled[0], EP93XX_GPIO_A_INT_ENABLE);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100163 } else if (abf == 1) {
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000164 __raw_writeb(0, EP93XX_GPIO_B_INT_ENABLE);
165 __raw_writeb(gpio_int_type2[1], EP93XX_GPIO_B_INT_TYPE2);
166 __raw_writeb(gpio_int_type1[1], EP93XX_GPIO_B_INT_TYPE1);
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100167 __raw_writeb(gpio_int_unmasked[1] & gpio_int_enabled[1], EP93XX_GPIO_B_INT_ENABLE);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100168 } else if (abf == 2) {
169 __raw_writeb(0, EP93XX_GPIO_F_INT_ENABLE);
170 __raw_writeb(gpio_int_type2[2], EP93XX_GPIO_F_INT_TYPE2);
171 __raw_writeb(gpio_int_type1[2], EP93XX_GPIO_F_INT_TYPE1);
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100172 __raw_writeb(gpio_int_unmasked[2] & gpio_int_enabled[2], EP93XX_GPIO_F_INT_ENABLE);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100173 } else {
174 BUG();
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000175 }
176}
177
178
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000179static unsigned char data_register_offset[8] = {
180 0x00, 0x04, 0x08, 0x0c, 0x20, 0x30, 0x38, 0x40,
181};
182
183static unsigned char data_direction_register_offset[8] = {
184 0x10, 0x14, 0x18, 0x1c, 0x24, 0x34, 0x3c, 0x44,
185};
186
187void gpio_line_config(int line, int direction)
188{
189 unsigned int data_direction_register;
190 unsigned long flags;
191 unsigned char v;
192
193 data_direction_register =
194 EP93XX_GPIO_REG(data_direction_register_offset[line >> 3]);
195
196 local_irq_save(flags);
197 if (direction == GPIO_OUT) {
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000198 if (line >= 0 && line < 16) {
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100199 /* Port A/B. */
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100200 gpio_int_unmasked[line >> 3] &= ~(1 << (line & 7));
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100201 update_gpio_int_params(line >> 3);
202 } else if (line >= 40 && line < 48) {
203 /* Port F. */
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100204 gpio_int_unmasked[2] &= ~(1 << (line & 7));
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100205 update_gpio_int_params(2);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000206 }
207
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000208 v = __raw_readb(data_direction_register);
209 v |= 1 << (line & 7);
210 __raw_writeb(v, data_direction_register);
211 } else if (direction == GPIO_IN) {
212 v = __raw_readb(data_direction_register);
213 v &= ~(1 << (line & 7));
214 __raw_writeb(v, data_direction_register);
215 }
216 local_irq_restore(flags);
217}
218EXPORT_SYMBOL(gpio_line_config);
219
220int gpio_line_get(int line)
221{
222 unsigned int data_register;
223
224 data_register = EP93XX_GPIO_REG(data_register_offset[line >> 3]);
225
226 return !!(__raw_readb(data_register) & (1 << (line & 7)));
227}
228EXPORT_SYMBOL(gpio_line_get);
229
230void gpio_line_set(int line, int value)
231{
232 unsigned int data_register;
233 unsigned long flags;
234 unsigned char v;
235
236 data_register = EP93XX_GPIO_REG(data_register_offset[line >> 3]);
237
238 local_irq_save(flags);
239 if (value == EP93XX_GPIO_HIGH) {
240 v = __raw_readb(data_register);
241 v |= 1 << (line & 7);
242 __raw_writeb(v, data_register);
243 } else if (value == EP93XX_GPIO_LOW) {
244 v = __raw_readb(data_register);
245 v &= ~(1 << (line & 7));
246 __raw_writeb(v, data_register);
247 }
248 local_irq_restore(flags);
249}
250EXPORT_SYMBOL(gpio_line_set);
251
252
253/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000254 * EP93xx IRQ handling
255 *************************************************************************/
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100256static void ep93xx_gpio_ab_irq_handler(unsigned int irq, struct irq_desc *desc)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000257{
258 unsigned char status;
259 int i;
260
261 status = __raw_readb(EP93XX_GPIO_A_INT_STATUS);
262 for (i = 0; i < 8; i++) {
263 if (status & (1 << i)) {
264 desc = irq_desc + IRQ_EP93XX_GPIO(0) + i;
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700265 desc_handle_irq(IRQ_EP93XX_GPIO(0) + i, desc);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000266 }
267 }
268
269 status = __raw_readb(EP93XX_GPIO_B_INT_STATUS);
270 for (i = 0; i < 8; i++) {
271 if (status & (1 << i)) {
272 desc = irq_desc + IRQ_EP93XX_GPIO(8) + i;
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700273 desc_handle_irq(IRQ_EP93XX_GPIO(8) + i, desc);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000274 }
275 }
276}
277
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100278static void ep93xx_gpio_f_irq_handler(unsigned int irq, struct irq_desc *desc)
279{
280 int gpio_irq = IRQ_EP93XX_GPIO(16) + (((irq + 1) & 7) ^ 4);
281
282 desc_handle_irq(gpio_irq, irq_desc + gpio_irq);
283}
284
285static void ep93xx_gpio_irq_mask_ack(unsigned int irq)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000286{
287 int line = irq - IRQ_EP93XX_GPIO(0);
288 int port = line >> 3;
289
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100290 gpio_int_unmasked[port] &= ~(1 << (line & 7));
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100291 update_gpio_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000292
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100293 if (port == 0) {
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000294 __raw_writel(1 << (line & 7), EP93XX_GPIO_A_INT_ACK);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100295 } else if (port == 1) {
296 __raw_writel(1 << (line & 7), EP93XX_GPIO_B_INT_ACK);
297 } else if (port == 2) {
298 __raw_writel(1 << (line & 7), EP93XX_GPIO_F_INT_ACK);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000299 }
300}
301
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100302static void ep93xx_gpio_irq_mask(unsigned int irq)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000303{
304 int line = irq - IRQ_EP93XX_GPIO(0);
305 int port = line >> 3;
306
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100307 gpio_int_unmasked[port] &= ~(1 << (line & 7));
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100308 update_gpio_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000309}
310
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100311static void ep93xx_gpio_irq_unmask(unsigned int irq)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000312{
313 int line = irq - IRQ_EP93XX_GPIO(0);
314 int port = line >> 3;
315
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100316 gpio_int_unmasked[port] |= 1 << (line & 7);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100317 update_gpio_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000318}
319
320
321/*
322 * gpio_int_type1 controls whether the interrupt is level (0) or
323 * edge (1) triggered, while gpio_int_type2 controls whether it
324 * triggers on low/falling (0) or high/rising (1).
325 */
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100326static int ep93xx_gpio_irq_type(unsigned int irq, unsigned int type)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000327{
328 int port;
329 int line;
330
331 line = irq - IRQ_EP93XX_GPIO(0);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100332 if (line >= 0 && line < 16) {
333 gpio_line_config(line, GPIO_IN);
334 } else {
Herbert Valerio Riedel8742bc92007-09-16 16:44:39 +0100335 gpio_line_config(EP93XX_GPIO_LINE_F(line-16), GPIO_IN);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100336 }
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000337
338 port = line >> 3;
339 line &= 7;
340
341 if (type & IRQT_RISING) {
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100342 gpio_int_enabled[port] |= 1 << line;
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000343 gpio_int_type1[port] |= 1 << line;
344 gpio_int_type2[port] |= 1 << line;
345 } else if (type & IRQT_FALLING) {
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100346 gpio_int_enabled[port] |= 1 << line;
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000347 gpio_int_type1[port] |= 1 << line;
348 gpio_int_type2[port] &= ~(1 << line);
349 } else if (type & IRQT_HIGH) {
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100350 gpio_int_enabled[port] |= 1 << line;
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000351 gpio_int_type1[port] &= ~(1 << line);
352 gpio_int_type2[port] |= 1 << line;
353 } else if (type & IRQT_LOW) {
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100354 gpio_int_enabled[port] |= 1 << line;
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000355 gpio_int_type1[port] &= ~(1 << line);
356 gpio_int_type2[port] &= ~(1 << line);
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100357 } else {
358 gpio_int_enabled[port] &= ~(1 << line);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000359 }
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100360 update_gpio_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000361
362 return 0;
363}
364
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100365static struct irq_chip ep93xx_gpio_irq_chip = {
366 .name = "GPIO",
367 .ack = ep93xx_gpio_irq_mask_ack,
368 .mask = ep93xx_gpio_irq_mask,
369 .unmask = ep93xx_gpio_irq_unmask,
370 .set_type = ep93xx_gpio_irq_type,
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000371};
372
373
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000374void __init ep93xx_init_irq(void)
375{
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000376 int irq;
377
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000378 vic_init((void *)EP93XX_VIC1_BASE, 0, EP93XX_VIC1_VALID_IRQ_MASK);
379 vic_init((void *)EP93XX_VIC2_BASE, 32, EP93XX_VIC2_VALID_IRQ_MASK);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000380
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100381 for (irq = IRQ_EP93XX_GPIO(0); irq <= IRQ_EP93XX_GPIO(23); irq++) {
382 set_irq_chip(irq, &ep93xx_gpio_irq_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000383 set_irq_handler(irq, handle_level_irq);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000384 set_irq_flags(irq, IRQF_VALID);
385 }
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100386
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000387 set_irq_chained_handler(IRQ_EP93XX_GPIO_AB, ep93xx_gpio_ab_irq_handler);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100388 set_irq_chained_handler(IRQ_EP93XX_GPIO0MUX, ep93xx_gpio_f_irq_handler);
389 set_irq_chained_handler(IRQ_EP93XX_GPIO1MUX, ep93xx_gpio_f_irq_handler);
390 set_irq_chained_handler(IRQ_EP93XX_GPIO2MUX, ep93xx_gpio_f_irq_handler);
391 set_irq_chained_handler(IRQ_EP93XX_GPIO3MUX, ep93xx_gpio_f_irq_handler);
392 set_irq_chained_handler(IRQ_EP93XX_GPIO4MUX, ep93xx_gpio_f_irq_handler);
393 set_irq_chained_handler(IRQ_EP93XX_GPIO5MUX, ep93xx_gpio_f_irq_handler);
394 set_irq_chained_handler(IRQ_EP93XX_GPIO6MUX, ep93xx_gpio_f_irq_handler);
395 set_irq_chained_handler(IRQ_EP93XX_GPIO7MUX, ep93xx_gpio_f_irq_handler);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000396}
397
398
399/*************************************************************************
400 * EP93xx peripheral handling
401 *************************************************************************/
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100402#define EP93XX_UART_MCR_OFFSET (0x0100)
403
404static void ep93xx_uart_set_mctrl(struct amba_device *dev,
405 void __iomem *base, unsigned int mctrl)
406{
407 unsigned int mcr;
408
409 mcr = 0;
410 if (!(mctrl & TIOCM_RTS))
411 mcr |= 2;
412 if (!(mctrl & TIOCM_DTR))
413 mcr |= 1;
414
415 __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
416}
417
418static struct amba_pl010_data ep93xx_uart_data = {
419 .set_mctrl = ep93xx_uart_set_mctrl,
420};
421
422static struct amba_device uart1_device = {
423 .dev = {
424 .bus_id = "apb:uart1",
425 .platform_data = &ep93xx_uart_data,
426 },
427 .res = {
428 .start = EP93XX_UART1_PHYS_BASE,
429 .end = EP93XX_UART1_PHYS_BASE + 0x0fff,
430 .flags = IORESOURCE_MEM,
431 },
432 .irq = { IRQ_EP93XX_UART1, NO_IRQ },
433 .periphid = 0x00041010,
434};
435
436static struct amba_device uart2_device = {
437 .dev = {
438 .bus_id = "apb:uart2",
439 .platform_data = &ep93xx_uart_data,
440 },
441 .res = {
442 .start = EP93XX_UART2_PHYS_BASE,
443 .end = EP93XX_UART2_PHYS_BASE + 0x0fff,
444 .flags = IORESOURCE_MEM,
445 },
446 .irq = { IRQ_EP93XX_UART2, NO_IRQ },
447 .periphid = 0x00041010,
448};
449
450static struct amba_device uart3_device = {
451 .dev = {
452 .bus_id = "apb:uart3",
453 .platform_data = &ep93xx_uart_data,
454 },
455 .res = {
456 .start = EP93XX_UART3_PHYS_BASE,
457 .end = EP93XX_UART3_PHYS_BASE + 0x0fff,
458 .flags = IORESOURCE_MEM,
459 },
460 .irq = { IRQ_EP93XX_UART3, NO_IRQ },
461 .periphid = 0x00041010,
462};
463
Lennert Buytenhek41658132006-04-02 16:17:34 +0100464
465static struct platform_device ep93xx_rtc_device = {
466 .name = "ep93xx-rtc",
467 .id = -1,
468 .num_resources = 0,
469};
470
471
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100472static struct resource ep93xx_ohci_resources[] = {
473 [0] = {
474 .start = EP93XX_USB_PHYS_BASE,
475 .end = EP93XX_USB_PHYS_BASE + 0x0fff,
476 .flags = IORESOURCE_MEM,
477 },
478 [1] = {
479 .start = IRQ_EP93XX_USB,
480 .end = IRQ_EP93XX_USB,
481 .flags = IORESOURCE_IRQ,
482 },
483};
484
485static struct platform_device ep93xx_ohci_device = {
486 .name = "ep93xx-ohci",
487 .id = -1,
488 .dev = {
489 .dma_mask = (void *)0xffffffff,
490 .coherent_dma_mask = 0xffffffff,
491 },
492 .num_resources = ARRAY_SIZE(ep93xx_ohci_resources),
493 .resource = ep93xx_ohci_resources,
494};
495
496
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000497void __init ep93xx_init_devices(void)
498{
499 unsigned int v;
500
501 /*
502 * Disallow access to MaverickCrunch initially.
503 */
504 v = __raw_readl(EP93XX_SYSCON_DEVICE_CONFIG);
505 v &= ~EP93XX_SYSCON_DEVICE_CONFIG_CRUNCH_ENABLE;
506 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
507 __raw_writel(v, EP93XX_SYSCON_DEVICE_CONFIG);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100508
509 amba_device_register(&uart1_device, &iomem_resource);
510 amba_device_register(&uart2_device, &iomem_resource);
511 amba_device_register(&uart3_device, &iomem_resource);
Lennert Buytenhek41658132006-04-02 16:17:34 +0100512
513 platform_device_register(&ep93xx_rtc_device);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100514 platform_device_register(&ep93xx_ohci_device);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000515}