blob: f95dc160c34b125e09f7572daebb6aaddbf96d42 [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>
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +01006 * Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org>
Lennert Buytenheke7736d42006-03-20 17:10:13 +00007 *
8 * Thanks go to Michael Burian and Ray Lehtiniemi for their key
9 * role in the ep93xx linux community.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 */
16
Lennert Buytenheke7736d42006-03-20 17:10:13 +000017#include <linux/kernel.h>
18#include <linux/init.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010019#include <linux/platform_device.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000020#include <linux/interrupt.h>
Matthias Kaehlcke63890a02008-10-29 14:14:52 -070021#include <linux/dma-mapping.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000022#include <linux/timex.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010023#include <linux/io.h>
24#include <linux/gpio.h>
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +010025#include <linux/leds.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010026#include <linux/termios.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000027#include <linux/amba/bus.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010028#include <linux/amba/serial.h>
Hartley Sweetend52a26a2008-10-16 23:57:03 +010029#include <linux/i2c.h>
30#include <linux/i2c-gpio.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/hardware.h>
Ryan Mallonc6012182009-09-22 16:47:09 -070033#include <mach/fb.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000034
35#include <asm/mach/map.h>
36#include <asm/mach/time.h>
37#include <asm/mach/irq.h>
38
39#include <asm/hardware/vic.h>
40
41
42/*************************************************************************
43 * Static I/O mappings that are needed for all EP93xx platforms
44 *************************************************************************/
45static struct map_desc ep93xx_io_desc[] __initdata = {
46 {
47 .virtual = EP93XX_AHB_VIRT_BASE,
48 .pfn = __phys_to_pfn(EP93XX_AHB_PHYS_BASE),
49 .length = EP93XX_AHB_SIZE,
50 .type = MT_DEVICE,
51 }, {
52 .virtual = EP93XX_APB_VIRT_BASE,
53 .pfn = __phys_to_pfn(EP93XX_APB_PHYS_BASE),
54 .length = EP93XX_APB_SIZE,
55 .type = MT_DEVICE,
56 },
57};
58
59void __init ep93xx_map_io(void)
60{
61 iotable_init(ep93xx_io_desc, ARRAY_SIZE(ep93xx_io_desc));
62}
63
64
65/*************************************************************************
66 * Timer handling for EP93xx
67 *************************************************************************
68 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
69 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
70 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
71 * is free-running, and can't generate interrupts.
72 *
73 * The 508 kHz timers are ideal for use for the timer interrupt, as the
74 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
75 * bit timers (timer 1) since we don't need more than 16 bits of reload
76 * value as long as HZ >= 8.
77 *
78 * The higher clock rate of timer 4 makes it a better choice than the
79 * other timers for use in gettimeoffset(), while the fact that it can't
80 * generate interrupts means we don't have to worry about not being able
81 * to use this timer for something else. We also use timer 4 for keeping
82 * track of lost jiffies.
83 */
84static unsigned int last_jiffy_time;
85
Julia Lawallaf1057a2009-08-03 11:57:20 +010086#define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ)
Lennert Buytenheke7736d42006-03-20 17:10:13 +000087
Hartley Sweetend5565f72009-04-14 21:38:07 +010088static irqreturn_t ep93xx_timer_interrupt(int irq, void *dev_id)
Lennert Buytenheke7736d42006-03-20 17:10:13 +000089{
Lennert Buytenheke7736d42006-03-20 17:10:13 +000090 __raw_writel(1, EP93XX_TIMER1_CLEAR);
Lennert Buytenhekf869afa2006-06-22 10:30:53 +010091 while ((signed long)
92 (__raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time)
Lennert Buytenheke7736d42006-03-20 17:10:13 +000093 >= TIMER4_TICKS_PER_JIFFY) {
94 last_jiffy_time += TIMER4_TICKS_PER_JIFFY;
Linus Torvalds0cd61b62006-10-06 10:53:39 -070095 timer_tick();
Lennert Buytenheke7736d42006-03-20 17:10:13 +000096 }
97
Lennert Buytenheke7736d42006-03-20 17:10:13 +000098 return IRQ_HANDLED;
99}
100
101static struct irqaction ep93xx_timer_irq = {
102 .name = "ep93xx timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700103 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000104 .handler = ep93xx_timer_interrupt,
105};
106
107static void __init ep93xx_timer_init(void)
108{
109 /* Enable periodic HZ timer. */
110 __raw_writel(0x48, EP93XX_TIMER1_CONTROL);
Lennert Buytenheka059e332006-06-22 10:30:54 +0100111 __raw_writel((508469 / HZ) - 1, EP93XX_TIMER1_LOAD);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000112 __raw_writel(0xc8, EP93XX_TIMER1_CONTROL);
113
114 /* Enable lost jiffy timer. */
115 __raw_writel(0x100, EP93XX_TIMER4_VALUE_HIGH);
116
117 setup_irq(IRQ_EP93XX_TIMER1, &ep93xx_timer_irq);
118}
119
120static unsigned long ep93xx_gettimeoffset(void)
121{
122 int offset;
123
124 offset = __raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time;
125
126 /* Calculate (1000000 / 983040) * offset. */
127 return offset + (53 * offset / 3072);
128}
129
130struct sys_timer ep93xx_timer = {
131 .init = ep93xx_timer_init,
132 .offset = ep93xx_gettimeoffset,
133};
134
135
136/*************************************************************************
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000137 * GPIO handling for EP93xx
138 *************************************************************************/
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100139static unsigned char gpio_int_unmasked[3];
140static unsigned char gpio_int_enabled[3];
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100141static unsigned char gpio_int_type1[3];
142static unsigned char gpio_int_type2[3];
Hartley Sweeten68ee3d82009-05-28 19:58:24 +0100143static unsigned char gpio_int_debounce[3];
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000144
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100145/* Port ordering is: A B F */
146static const u8 int_type1_register_offset[3] = { 0x90, 0xac, 0x4c };
147static const u8 int_type2_register_offset[3] = { 0x94, 0xb0, 0x50 };
148static const u8 eoi_register_offset[3] = { 0x98, 0xb4, 0x54 };
Hartley Sweetenf69162a2008-09-05 17:14:35 +0100149static const u8 int_en_register_offset[3] = { 0x9c, 0xb8, 0x58 };
Hartley Sweeten799a06002008-10-28 17:55:30 +0100150static const u8 int_debounce_register_offset[3] = { 0xa8, 0xc4, 0x64 };
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100151
Ryan Mallonb6850042008-04-16 02:56:35 +0100152void ep93xx_gpio_update_int_params(unsigned port)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000153{
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100154 BUG_ON(port > 2);
155
156 __raw_writeb(0, EP93XX_GPIO_REG(int_en_register_offset[port]));
157
158 __raw_writeb(gpio_int_type2[port],
159 EP93XX_GPIO_REG(int_type2_register_offset[port]));
160
161 __raw_writeb(gpio_int_type1[port],
162 EP93XX_GPIO_REG(int_type1_register_offset[port]));
163
164 __raw_writeb(gpio_int_unmasked[port] & gpio_int_enabled[port],
165 EP93XX_GPIO_REG(int_en_register_offset[port]));
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000166}
167
Ryan Mallonb6850042008-04-16 02:56:35 +0100168void ep93xx_gpio_int_mask(unsigned line)
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000169{
Ryan Mallonb6850042008-04-16 02:56:35 +0100170 gpio_int_unmasked[line >> 3] &= ~(1 << (line & 7));
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000171}
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000172
Hartley Sweeten799a06002008-10-28 17:55:30 +0100173void ep93xx_gpio_int_debounce(unsigned int irq, int enable)
174{
175 int line = irq_to_gpio(irq);
176 int port = line >> 3;
177 int port_mask = 1 << (line & 7);
178
179 if (enable)
Hartley Sweeten68ee3d82009-05-28 19:58:24 +0100180 gpio_int_debounce[port] |= port_mask;
Hartley Sweeten799a06002008-10-28 17:55:30 +0100181 else
Hartley Sweeten68ee3d82009-05-28 19:58:24 +0100182 gpio_int_debounce[port] &= ~port_mask;
Hartley Sweeten799a06002008-10-28 17:55:30 +0100183
Hartley Sweeten68ee3d82009-05-28 19:58:24 +0100184 __raw_writeb(gpio_int_debounce[port],
Hartley Sweeten799a06002008-10-28 17:55:30 +0100185 EP93XX_GPIO_REG(int_debounce_register_offset[port]));
186}
187EXPORT_SYMBOL(ep93xx_gpio_int_debounce);
188
Lennert Buytenheka8e19662006-03-20 17:10:14 +0000189/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000190 * EP93xx IRQ handling
191 *************************************************************************/
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100192static void ep93xx_gpio_ab_irq_handler(unsigned int irq, struct irq_desc *desc)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000193{
194 unsigned char status;
195 int i;
196
197 status = __raw_readb(EP93XX_GPIO_A_INT_STATUS);
198 for (i = 0; i < 8; i++) {
199 if (status & (1 << i)) {
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100200 int gpio_irq = gpio_to_irq(EP93XX_GPIO_LINE_A(0)) + i;
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100201 generic_handle_irq(gpio_irq);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000202 }
203 }
204
205 status = __raw_readb(EP93XX_GPIO_B_INT_STATUS);
206 for (i = 0; i < 8; i++) {
207 if (status & (1 << i)) {
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100208 int gpio_irq = gpio_to_irq(EP93XX_GPIO_LINE_B(0)) + i;
209 desc = irq_desc + gpio_irq;
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100210 generic_handle_irq(gpio_irq);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000211 }
212 }
213}
214
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100215static void ep93xx_gpio_f_irq_handler(unsigned int irq, struct irq_desc *desc)
216{
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100217 /*
218 * map discontiguous hw irq range to continous sw irq range:
219 *
220 * IRQ_EP93XX_GPIO{0..7}MUX -> gpio_to_irq(EP93XX_GPIO_LINE_F({0..7})
221 */
222 int port_f_idx = ((irq + 1) & 7) ^ 4; /* {19..22,47..50} -> {0..7} */
223 int gpio_irq = gpio_to_irq(EP93XX_GPIO_LINE_F(0)) + port_f_idx;
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100224
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100225 generic_handle_irq(gpio_irq);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100226}
227
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100228static void ep93xx_gpio_irq_ack(unsigned int irq)
229{
230 int line = irq_to_gpio(irq);
231 int port = line >> 3;
232 int port_mask = 1 << (line & 7);
233
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100234 if ((irq_desc[irq].status & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH) {
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100235 gpio_int_type2[port] ^= port_mask; /* switch edge direction */
Ryan Mallonb6850042008-04-16 02:56:35 +0100236 ep93xx_gpio_update_int_params(port);
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100237 }
238
239 __raw_writeb(port_mask, EP93XX_GPIO_REG(eoi_register_offset[port]));
240}
241
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100242static void ep93xx_gpio_irq_mask_ack(unsigned int irq)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000243{
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100244 int line = irq_to_gpio(irq);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000245 int port = line >> 3;
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100246 int port_mask = 1 << (line & 7);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000247
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100248 if ((irq_desc[irq].status & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100249 gpio_int_type2[port] ^= port_mask; /* switch edge direction */
250
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100251 gpio_int_unmasked[port] &= ~port_mask;
Ryan Mallonb6850042008-04-16 02:56:35 +0100252 ep93xx_gpio_update_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000253
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100254 __raw_writeb(port_mask, EP93XX_GPIO_REG(eoi_register_offset[port]));
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000255}
256
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100257static void ep93xx_gpio_irq_mask(unsigned int irq)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000258{
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100259 int line = irq_to_gpio(irq);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000260 int port = line >> 3;
261
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100262 gpio_int_unmasked[port] &= ~(1 << (line & 7));
Ryan Mallonb6850042008-04-16 02:56:35 +0100263 ep93xx_gpio_update_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000264}
265
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100266static void ep93xx_gpio_irq_unmask(unsigned int irq)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000267{
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100268 int line = irq_to_gpio(irq);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000269 int port = line >> 3;
270
Lennert Buytenhek271f5ca2007-02-08 01:01:41 +0100271 gpio_int_unmasked[port] |= 1 << (line & 7);
Ryan Mallonb6850042008-04-16 02:56:35 +0100272 ep93xx_gpio_update_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000273}
274
275
276/*
277 * gpio_int_type1 controls whether the interrupt is level (0) or
278 * edge (1) triggered, while gpio_int_type2 controls whether it
279 * triggers on low/falling (0) or high/rising (1).
280 */
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100281static int ep93xx_gpio_irq_type(unsigned int irq, unsigned int type)
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000282{
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100283 struct irq_desc *desc = irq_desc + irq;
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100284 const int gpio = irq_to_gpio(irq);
285 const int port = gpio >> 3;
286 const int port_mask = 1 << (gpio & 7);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000287
Ryan Mallonf8b63892008-04-28 23:35:47 +0100288 gpio_direction_input(gpio);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000289
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100290 switch (type) {
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100291 case IRQ_TYPE_EDGE_RISING:
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100292 gpio_int_type1[port] |= port_mask;
293 gpio_int_type2[port] |= port_mask;
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100294 desc->handle_irq = handle_edge_irq;
295 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100296 case IRQ_TYPE_EDGE_FALLING:
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100297 gpio_int_type1[port] |= port_mask;
298 gpio_int_type2[port] &= ~port_mask;
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100299 desc->handle_irq = handle_edge_irq;
300 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100301 case IRQ_TYPE_LEVEL_HIGH:
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100302 gpio_int_type1[port] &= ~port_mask;
303 gpio_int_type2[port] |= port_mask;
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100304 desc->handle_irq = handle_level_irq;
305 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100306 case IRQ_TYPE_LEVEL_LOW:
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100307 gpio_int_type1[port] &= ~port_mask;
308 gpio_int_type2[port] &= ~port_mask;
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100309 desc->handle_irq = handle_level_irq;
310 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100311 case IRQ_TYPE_EDGE_BOTH:
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100312 gpio_int_type1[port] |= port_mask;
313 /* set initial polarity based on current input level */
314 if (gpio_get_value(gpio))
315 gpio_int_type2[port] &= ~port_mask; /* falling */
316 else
317 gpio_int_type2[port] |= port_mask; /* rising */
318 desc->handle_irq = handle_edge_irq;
319 break;
320 default:
321 pr_err("ep93xx: failed to set irq type %d for gpio %d\n",
322 type, gpio);
323 return -EINVAL;
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000324 }
325
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100326 gpio_int_enabled[port] |= port_mask;
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000327
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100328 desc->status &= ~IRQ_TYPE_SENSE_MASK;
329 desc->status |= type & IRQ_TYPE_SENSE_MASK;
330
Ryan Mallonb6850042008-04-16 02:56:35 +0100331 ep93xx_gpio_update_int_params(port);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000332
333 return 0;
334}
335
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100336static struct irq_chip ep93xx_gpio_irq_chip = {
337 .name = "GPIO",
Herbert Valerio Riedel3c9a0712007-11-26 18:49:08 +0100338 .ack = ep93xx_gpio_irq_ack,
339 .mask_ack = ep93xx_gpio_irq_mask_ack,
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100340 .mask = ep93xx_gpio_irq_mask,
341 .unmask = ep93xx_gpio_irq_unmask,
342 .set_type = ep93xx_gpio_irq_type,
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000343};
344
345
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000346void __init ep93xx_init_irq(void)
347{
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100348 int gpio_irq;
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000349
Hartley Sweeten53967302009-07-09 23:22:07 +0100350 vic_init(EP93XX_VIC1_BASE, 0, EP93XX_VIC1_VALID_IRQ_MASK, 0);
351 vic_init(EP93XX_VIC2_BASE, 32, EP93XX_VIC2_VALID_IRQ_MASK, 0);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000352
Herbert Valerio Riedel7ca72252007-11-26 18:45:59 +0100353 for (gpio_irq = gpio_to_irq(0);
354 gpio_irq <= gpio_to_irq(EP93XX_GPIO_LINE_MAX_IRQ); ++gpio_irq) {
355 set_irq_chip(gpio_irq, &ep93xx_gpio_irq_chip);
356 set_irq_handler(gpio_irq, handle_level_irq);
357 set_irq_flags(gpio_irq, IRQF_VALID);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000358 }
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100359
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000360 set_irq_chained_handler(IRQ_EP93XX_GPIO_AB, ep93xx_gpio_ab_irq_handler);
Lennert Buytenhek4932e392007-02-05 00:38:48 +0100361 set_irq_chained_handler(IRQ_EP93XX_GPIO0MUX, ep93xx_gpio_f_irq_handler);
362 set_irq_chained_handler(IRQ_EP93XX_GPIO1MUX, ep93xx_gpio_f_irq_handler);
363 set_irq_chained_handler(IRQ_EP93XX_GPIO2MUX, ep93xx_gpio_f_irq_handler);
364 set_irq_chained_handler(IRQ_EP93XX_GPIO3MUX, ep93xx_gpio_f_irq_handler);
365 set_irq_chained_handler(IRQ_EP93XX_GPIO4MUX, ep93xx_gpio_f_irq_handler);
366 set_irq_chained_handler(IRQ_EP93XX_GPIO5MUX, ep93xx_gpio_f_irq_handler);
367 set_irq_chained_handler(IRQ_EP93XX_GPIO6MUX, ep93xx_gpio_f_irq_handler);
368 set_irq_chained_handler(IRQ_EP93XX_GPIO7MUX, ep93xx_gpio_f_irq_handler);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000369}
370
371
372/*************************************************************************
Hartley Sweeten02239f02009-07-08 02:00:49 +0100373 * EP93xx System Controller Software Locked register handling
374 *************************************************************************/
375
376/*
377 * syscon_swlock prevents anything else from writing to the syscon
378 * block while a software locked register is being written.
379 */
380static DEFINE_SPINLOCK(syscon_swlock);
381
Ryan Mallonfbeeea52009-07-15 21:51:59 +0100382void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg)
Hartley Sweeten02239f02009-07-08 02:00:49 +0100383{
384 unsigned long flags;
385
386 spin_lock_irqsave(&syscon_swlock, flags);
387
388 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
389 __raw_writel(val, reg);
390
391 spin_unlock_irqrestore(&syscon_swlock, flags);
392}
393EXPORT_SYMBOL(ep93xx_syscon_swlocked_write);
394
395void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits)
396{
397 unsigned long flags;
398 unsigned int val;
399
400 spin_lock_irqsave(&syscon_swlock, flags);
401
402 val = __raw_readl(EP93XX_SYSCON_DEVCFG);
403 val |= set_bits;
404 val &= ~clear_bits;
405 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
406 __raw_writel(val, EP93XX_SYSCON_DEVCFG);
407
408 spin_unlock_irqrestore(&syscon_swlock, flags);
409}
410EXPORT_SYMBOL(ep93xx_devcfg_set_clear);
411
412
413/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000414 * EP93xx peripheral handling
415 *************************************************************************/
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100416#define EP93XX_UART_MCR_OFFSET (0x0100)
417
418static void ep93xx_uart_set_mctrl(struct amba_device *dev,
419 void __iomem *base, unsigned int mctrl)
420{
421 unsigned int mcr;
422
423 mcr = 0;
424 if (!(mctrl & TIOCM_RTS))
425 mcr |= 2;
426 if (!(mctrl & TIOCM_DTR))
427 mcr |= 1;
428
429 __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
430}
431
432static struct amba_pl010_data ep93xx_uart_data = {
433 .set_mctrl = ep93xx_uart_set_mctrl,
434};
435
436static struct amba_device uart1_device = {
437 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800438 .init_name = "apb:uart1",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100439 .platform_data = &ep93xx_uart_data,
440 },
441 .res = {
442 .start = EP93XX_UART1_PHYS_BASE,
443 .end = EP93XX_UART1_PHYS_BASE + 0x0fff,
444 .flags = IORESOURCE_MEM,
445 },
446 .irq = { IRQ_EP93XX_UART1, NO_IRQ },
447 .periphid = 0x00041010,
448};
449
450static struct amba_device uart2_device = {
451 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800452 .init_name = "apb:uart2",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100453 .platform_data = &ep93xx_uart_data,
454 },
455 .res = {
456 .start = EP93XX_UART2_PHYS_BASE,
457 .end = EP93XX_UART2_PHYS_BASE + 0x0fff,
458 .flags = IORESOURCE_MEM,
459 },
460 .irq = { IRQ_EP93XX_UART2, NO_IRQ },
461 .periphid = 0x00041010,
462};
463
464static struct amba_device uart3_device = {
465 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800466 .init_name = "apb:uart3",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100467 .platform_data = &ep93xx_uart_data,
468 },
469 .res = {
470 .start = EP93XX_UART3_PHYS_BASE,
471 .end = EP93XX_UART3_PHYS_BASE + 0x0fff,
472 .flags = IORESOURCE_MEM,
473 },
474 .irq = { IRQ_EP93XX_UART3, NO_IRQ },
475 .periphid = 0x00041010,
476};
477
Lennert Buytenhek41658132006-04-02 16:17:34 +0100478
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100479static struct resource ep93xx_rtc_resource[] = {
480 {
481 .start = EP93XX_RTC_PHYS_BASE,
482 .end = EP93XX_RTC_PHYS_BASE + 0x10c - 1,
483 .flags = IORESOURCE_MEM,
484 },
485};
486
Lennert Buytenhek41658132006-04-02 16:17:34 +0100487static struct platform_device ep93xx_rtc_device = {
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100488 .name = "ep93xx-rtc",
489 .id = -1,
490 .num_resources = ARRAY_SIZE(ep93xx_rtc_resource),
491 .resource = ep93xx_rtc_resource,
Lennert Buytenhek41658132006-04-02 16:17:34 +0100492};
493
494
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100495static struct resource ep93xx_ohci_resources[] = {
496 [0] = {
497 .start = EP93XX_USB_PHYS_BASE,
498 .end = EP93XX_USB_PHYS_BASE + 0x0fff,
499 .flags = IORESOURCE_MEM,
500 },
501 [1] = {
502 .start = IRQ_EP93XX_USB,
503 .end = IRQ_EP93XX_USB,
504 .flags = IORESOURCE_IRQ,
505 },
506};
507
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700508
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100509static struct platform_device ep93xx_ohci_device = {
510 .name = "ep93xx-ohci",
511 .id = -1,
512 .dev = {
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700513 .dma_mask = &ep93xx_ohci_device.dev.coherent_dma_mask,
514 .coherent_dma_mask = DMA_BIT_MASK(32),
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100515 },
516 .num_resources = ARRAY_SIZE(ep93xx_ohci_resources),
517 .resource = ep93xx_ohci_resources,
518};
519
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100520static struct ep93xx_eth_data ep93xx_eth_data;
521
522static struct resource ep93xx_eth_resource[] = {
523 {
524 .start = EP93XX_ETHERNET_PHYS_BASE,
525 .end = EP93XX_ETHERNET_PHYS_BASE + 0xffff,
526 .flags = IORESOURCE_MEM,
527 }, {
528 .start = IRQ_EP93XX_ETHERNET,
529 .end = IRQ_EP93XX_ETHERNET,
530 .flags = IORESOURCE_IRQ,
531 }
532};
533
534static struct platform_device ep93xx_eth_device = {
535 .name = "ep93xx-eth",
536 .id = -1,
537 .dev = {
538 .platform_data = &ep93xx_eth_data,
539 },
540 .num_resources = ARRAY_SIZE(ep93xx_eth_resource),
541 .resource = ep93xx_eth_resource,
542};
543
544void __init ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr)
545{
Hartley Sweeten5b1c3c82009-07-13 19:50:10 +0100546 if (copy_addr)
547 memcpy_fromio(data->dev_addr, EP93XX_ETHERNET_BASE + 0x50, 6);
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100548
549 ep93xx_eth_data = *data;
550 platform_device_register(&ep93xx_eth_device);
551}
552
Hartley Sweeten6531a992009-10-08 00:45:00 +0100553
554/*************************************************************************
555 * EP93xx i2c peripheral handling
556 *************************************************************************/
557static struct i2c_gpio_platform_data ep93xx_i2c_data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100558
559static struct platform_device ep93xx_i2c_device = {
560 .name = "i2c-gpio",
561 .id = 0,
562 .dev.platform_data = &ep93xx_i2c_data,
563};
564
Hartley Sweeten6531a992009-10-08 00:45:00 +0100565void __init ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
566 struct i2c_board_info *devices, int num)
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100567{
Hartley Sweeten6531a992009-10-08 00:45:00 +0100568 /*
569 * Set the EEPROM interface pin drive type control.
570 * Defines the driver type for the EECLK and EEDAT pins as either
571 * open drain, which will require an external pull-up, or a normal
572 * CMOS driver.
573 */
574 if (data->sda_is_open_drain && data->sda_pin != EP93XX_GPIO_LINE_EEDAT)
575 pr_warning("ep93xx: sda != EEDAT, open drain has no effect\n");
576 if (data->scl_is_open_drain && data->scl_pin != EP93XX_GPIO_LINE_EECLK)
577 pr_warning("ep93xx: scl != EECLK, open drain has no effect\n");
578
579 __raw_writel((data->sda_is_open_drain << 1) |
580 (data->scl_is_open_drain << 0),
581 EP93XX_GPIO_EEDRIVE);
582
583 ep93xx_i2c_data = *data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100584 i2c_register_board_info(0, devices, num);
585 platform_device_register(&ep93xx_i2c_device);
586}
587
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100588
589/*************************************************************************
590 * EP93xx LEDs
591 *************************************************************************/
592static struct gpio_led ep93xx_led_pins[] = {
593 {
594 .name = "platform:grled",
595 .gpio = EP93XX_GPIO_LINE_GRLED,
596 }, {
597 .name = "platform:rdled",
598 .gpio = EP93XX_GPIO_LINE_RDLED,
599 },
600};
601
602static struct gpio_led_platform_data ep93xx_led_data = {
603 .num_leds = ARRAY_SIZE(ep93xx_led_pins),
604 .leds = ep93xx_led_pins,
605};
606
607static struct platform_device ep93xx_leds = {
608 .name = "leds-gpio",
609 .id = -1,
610 .dev = {
611 .platform_data = &ep93xx_led_data,
612 },
613};
614
615
Hartley Sweetenef123792009-07-29 22:41:06 +0100616/*************************************************************************
617 * EP93xx pwm peripheral handling
618 *************************************************************************/
619static struct resource ep93xx_pwm0_resource[] = {
620 {
621 .start = EP93XX_PWM_PHYS_BASE,
622 .end = EP93XX_PWM_PHYS_BASE + 0x10 - 1,
623 .flags = IORESOURCE_MEM,
624 },
625};
626
627static struct platform_device ep93xx_pwm0_device = {
628 .name = "ep93xx-pwm",
629 .id = 0,
630 .num_resources = ARRAY_SIZE(ep93xx_pwm0_resource),
631 .resource = ep93xx_pwm0_resource,
632};
633
634static struct resource ep93xx_pwm1_resource[] = {
635 {
636 .start = EP93XX_PWM_PHYS_BASE + 0x20,
637 .end = EP93XX_PWM_PHYS_BASE + 0x30 - 1,
638 .flags = IORESOURCE_MEM,
639 },
640};
641
642static struct platform_device ep93xx_pwm1_device = {
643 .name = "ep93xx-pwm",
644 .id = 1,
645 .num_resources = ARRAY_SIZE(ep93xx_pwm1_resource),
646 .resource = ep93xx_pwm1_resource,
647};
648
649void __init ep93xx_register_pwm(int pwm0, int pwm1)
650{
651 if (pwm0)
652 platform_device_register(&ep93xx_pwm0_device);
653
654 /* NOTE: EP9307 does not have PWMOUT1 (pin EGPIO14) */
655 if (pwm1)
656 platform_device_register(&ep93xx_pwm1_device);
657}
658
659int ep93xx_pwm_acquire_gpio(struct platform_device *pdev)
660{
661 int err;
662
663 if (pdev->id == 0) {
664 err = 0;
665 } else if (pdev->id == 1) {
666 err = gpio_request(EP93XX_GPIO_LINE_EGPIO14,
667 dev_name(&pdev->dev));
668 if (err)
669 return err;
670 err = gpio_direction_output(EP93XX_GPIO_LINE_EGPIO14, 0);
671 if (err)
672 goto fail;
673
674 /* PWM 1 output on EGPIO[14] */
675 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_PONG);
676 } else {
677 err = -ENODEV;
678 }
679
680 return err;
681
682fail:
683 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
684 return err;
685}
686EXPORT_SYMBOL(ep93xx_pwm_acquire_gpio);
687
688void ep93xx_pwm_release_gpio(struct platform_device *pdev)
689{
690 if (pdev->id == 1) {
691 gpio_direction_input(EP93XX_GPIO_LINE_EGPIO14);
692 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
693
694 /* EGPIO[14] used for GPIO */
695 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_PONG);
696 }
697}
698EXPORT_SYMBOL(ep93xx_pwm_release_gpio);
699
700
Ryan Mallonc6012182009-09-22 16:47:09 -0700701/*************************************************************************
702 * EP93xx video peripheral handling
703 *************************************************************************/
704static struct ep93xxfb_mach_info ep93xxfb_data;
705
706static struct resource ep93xx_fb_resource[] = {
707 {
708 .start = EP93XX_RASTER_PHYS_BASE,
709 .end = EP93XX_RASTER_PHYS_BASE + 0x800 - 1,
710 .flags = IORESOURCE_MEM,
711 },
712};
713
714static struct platform_device ep93xx_fb_device = {
715 .name = "ep93xx-fb",
716 .id = -1,
717 .dev = {
718 .platform_data = &ep93xxfb_data,
719 .coherent_dma_mask = DMA_BIT_MASK(32),
720 .dma_mask = &ep93xx_fb_device.dev.coherent_dma_mask,
721 },
722 .num_resources = ARRAY_SIZE(ep93xx_fb_resource),
723 .resource = ep93xx_fb_resource,
724};
725
726void __init ep93xx_register_fb(struct ep93xxfb_mach_info *data)
727{
728 ep93xxfb_data = *data;
729 platform_device_register(&ep93xx_fb_device);
730}
731
Ryan Mallonb6850042008-04-16 02:56:35 +0100732extern void ep93xx_gpio_init(void);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100733
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000734void __init ep93xx_init_devices(void)
735{
Hartley Sweeten02239f02009-07-08 02:00:49 +0100736 /* Disallow access to MaverickCrunch initially */
737 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100738
Ryan Mallonb6850042008-04-16 02:56:35 +0100739 ep93xx_gpio_init();
740
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100741 amba_device_register(&uart1_device, &iomem_resource);
742 amba_device_register(&uart2_device, &iomem_resource);
743 amba_device_register(&uart3_device, &iomem_resource);
Lennert Buytenhek41658132006-04-02 16:17:34 +0100744
745 platform_device_register(&ep93xx_rtc_device);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100746 platform_device_register(&ep93xx_ohci_device);
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100747 platform_device_register(&ep93xx_leds);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000748}