blob: 90fb591cbffa6066e0b5fb732a0079834471c357 [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
Hartley Sweeten64d68822010-01-11 19:33:16 +010017#define pr_fmt(fmt) "ep93xx " KBUILD_MODNAME ": " fmt
18
Lennert Buytenheke7736d42006-03-20 17:10:13 +000019#include <linux/kernel.h>
20#include <linux/init.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010021#include <linux/platform_device.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000022#include <linux/interrupt.h>
Matthias Kaehlcke63890a02008-10-29 14:14:52 -070023#include <linux/dma-mapping.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000024#include <linux/timex.h>
Hartley Sweeten6bd4b382010-02-18 18:16:11 +010025#include <linux/irq.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010026#include <linux/io.h>
27#include <linux/gpio.h>
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +010028#include <linux/leds.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010029#include <linux/termios.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000030#include <linux/amba/bus.h>
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +010031#include <linux/amba/serial.h>
Hartley Sweetend52a26a2008-10-16 23:57:03 +010032#include <linux/i2c.h>
33#include <linux/i2c-gpio.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000034
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/hardware.h>
Ryan Mallonc6012182009-09-22 16:47:09 -070036#include <mach/fb.h>
Hartley Sweeten12f56c62009-10-28 21:04:46 +010037#include <mach/ep93xx_keypad.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000038
39#include <asm/mach/map.h>
40#include <asm/mach/time.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000041
42#include <asm/hardware/vic.h>
43
44
45/*************************************************************************
46 * Static I/O mappings that are needed for all EP93xx platforms
47 *************************************************************************/
48static struct map_desc ep93xx_io_desc[] __initdata = {
49 {
50 .virtual = EP93XX_AHB_VIRT_BASE,
51 .pfn = __phys_to_pfn(EP93XX_AHB_PHYS_BASE),
52 .length = EP93XX_AHB_SIZE,
53 .type = MT_DEVICE,
54 }, {
55 .virtual = EP93XX_APB_VIRT_BASE,
56 .pfn = __phys_to_pfn(EP93XX_APB_PHYS_BASE),
57 .length = EP93XX_APB_SIZE,
58 .type = MT_DEVICE,
59 },
60};
61
62void __init ep93xx_map_io(void)
63{
64 iotable_init(ep93xx_io_desc, ARRAY_SIZE(ep93xx_io_desc));
65}
66
67
68/*************************************************************************
69 * Timer handling for EP93xx
70 *************************************************************************
71 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
72 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
73 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
74 * is free-running, and can't generate interrupts.
75 *
76 * The 508 kHz timers are ideal for use for the timer interrupt, as the
77 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
78 * bit timers (timer 1) since we don't need more than 16 bits of reload
79 * value as long as HZ >= 8.
80 *
81 * The higher clock rate of timer 4 makes it a better choice than the
82 * other timers for use in gettimeoffset(), while the fact that it can't
83 * generate interrupts means we don't have to worry about not being able
84 * to use this timer for something else. We also use timer 4 for keeping
85 * track of lost jiffies.
86 */
Hartley Sweeten1587a372010-02-23 21:45:22 +010087#define EP93XX_TIMER_REG(x) (EP93XX_TIMER_BASE + (x))
88#define EP93XX_TIMER1_LOAD EP93XX_TIMER_REG(0x00)
89#define EP93XX_TIMER1_VALUE EP93XX_TIMER_REG(0x04)
90#define EP93XX_TIMER1_CONTROL EP93XX_TIMER_REG(0x08)
91#define EP93XX_TIMER123_CONTROL_ENABLE (1 << 7)
92#define EP93XX_TIMER123_CONTROL_MODE (1 << 6)
93#define EP93XX_TIMER123_CONTROL_CLKSEL (1 << 3)
94#define EP93XX_TIMER1_CLEAR EP93XX_TIMER_REG(0x0c)
95#define EP93XX_TIMER2_LOAD EP93XX_TIMER_REG(0x20)
96#define EP93XX_TIMER2_VALUE EP93XX_TIMER_REG(0x24)
97#define EP93XX_TIMER2_CONTROL EP93XX_TIMER_REG(0x28)
98#define EP93XX_TIMER2_CLEAR EP93XX_TIMER_REG(0x2c)
99#define EP93XX_TIMER4_VALUE_LOW EP93XX_TIMER_REG(0x60)
100#define EP93XX_TIMER4_VALUE_HIGH EP93XX_TIMER_REG(0x64)
101#define EP93XX_TIMER4_VALUE_HIGH_ENABLE (1 << 8)
102#define EP93XX_TIMER3_LOAD EP93XX_TIMER_REG(0x80)
103#define EP93XX_TIMER3_VALUE EP93XX_TIMER_REG(0x84)
104#define EP93XX_TIMER3_CONTROL EP93XX_TIMER_REG(0x88)
105#define EP93XX_TIMER3_CLEAR EP93XX_TIMER_REG(0x8c)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000106
Hartley Sweeten1587a372010-02-23 21:45:22 +0100107#define EP93XX_TIMER123_CLOCK 508469
108#define EP93XX_TIMER4_CLOCK 983040
109
110#define TIMER1_RELOAD ((EP93XX_TIMER123_CLOCK / HZ) - 1)
Julia Lawallaf1057a2009-08-03 11:57:20 +0100111#define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000112
Hartley Sweeten1587a372010-02-23 21:45:22 +0100113static unsigned int last_jiffy_time;
114
Hartley Sweetend5565f72009-04-14 21:38:07 +0100115static irqreturn_t ep93xx_timer_interrupt(int irq, void *dev_id)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000116{
Hartley Sweeten1587a372010-02-23 21:45:22 +0100117 /* Writing any value clears the timer interrupt */
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000118 __raw_writel(1, EP93XX_TIMER1_CLEAR);
Hartley Sweeten1587a372010-02-23 21:45:22 +0100119
120 /* Recover lost jiffies */
Lennert Buytenhekf869afa2006-06-22 10:30:53 +0100121 while ((signed long)
122 (__raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000123 >= TIMER4_TICKS_PER_JIFFY) {
124 last_jiffy_time += TIMER4_TICKS_PER_JIFFY;
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700125 timer_tick();
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000126 }
127
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000128 return IRQ_HANDLED;
129}
130
131static struct irqaction ep93xx_timer_irq = {
132 .name = "ep93xx timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700133 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000134 .handler = ep93xx_timer_interrupt,
135};
136
137static void __init ep93xx_timer_init(void)
138{
Hartley Sweeten1587a372010-02-23 21:45:22 +0100139 u32 tmode = EP93XX_TIMER123_CONTROL_MODE |
140 EP93XX_TIMER123_CONTROL_CLKSEL;
141
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000142 /* Enable periodic HZ timer. */
Hartley Sweeten1587a372010-02-23 21:45:22 +0100143 __raw_writel(tmode, EP93XX_TIMER1_CONTROL);
144 __raw_writel(TIMER1_RELOAD, EP93XX_TIMER1_LOAD);
145 __raw_writel(tmode | EP93XX_TIMER123_CONTROL_ENABLE,
146 EP93XX_TIMER1_CONTROL);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000147
148 /* Enable lost jiffy timer. */
Hartley Sweeten1587a372010-02-23 21:45:22 +0100149 __raw_writel(EP93XX_TIMER4_VALUE_HIGH_ENABLE,
150 EP93XX_TIMER4_VALUE_HIGH);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000151
152 setup_irq(IRQ_EP93XX_TIMER1, &ep93xx_timer_irq);
153}
154
155static unsigned long ep93xx_gettimeoffset(void)
156{
157 int offset;
158
159 offset = __raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time;
160
161 /* Calculate (1000000 / 983040) * offset. */
162 return offset + (53 * offset / 3072);
163}
164
165struct sys_timer ep93xx_timer = {
166 .init = ep93xx_timer_init,
167 .offset = ep93xx_gettimeoffset,
168};
169
170
171/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000172 * EP93xx IRQ handling
173 *************************************************************************/
Hartley Sweetend056ab72010-02-23 21:41:17 +0100174extern void ep93xx_gpio_init_irq(void);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000175
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000176void __init ep93xx_init_irq(void)
177{
Hartley Sweeten53967302009-07-09 23:22:07 +0100178 vic_init(EP93XX_VIC1_BASE, 0, EP93XX_VIC1_VALID_IRQ_MASK, 0);
179 vic_init(EP93XX_VIC2_BASE, 32, EP93XX_VIC2_VALID_IRQ_MASK, 0);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000180
Hartley Sweetend056ab72010-02-23 21:41:17 +0100181 ep93xx_gpio_init_irq();
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000182}
183
184
185/*************************************************************************
Hartley Sweeten02239f02009-07-08 02:00:49 +0100186 * EP93xx System Controller Software Locked register handling
187 *************************************************************************/
188
189/*
190 * syscon_swlock prevents anything else from writing to the syscon
191 * block while a software locked register is being written.
192 */
193static DEFINE_SPINLOCK(syscon_swlock);
194
Ryan Mallonfbeeea52009-07-15 21:51:59 +0100195void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg)
Hartley Sweeten02239f02009-07-08 02:00:49 +0100196{
197 unsigned long flags;
198
199 spin_lock_irqsave(&syscon_swlock, flags);
200
201 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
202 __raw_writel(val, reg);
203
204 spin_unlock_irqrestore(&syscon_swlock, flags);
205}
206EXPORT_SYMBOL(ep93xx_syscon_swlocked_write);
207
208void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits)
209{
210 unsigned long flags;
211 unsigned int val;
212
213 spin_lock_irqsave(&syscon_swlock, flags);
214
215 val = __raw_readl(EP93XX_SYSCON_DEVCFG);
216 val |= set_bits;
217 val &= ~clear_bits;
218 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
219 __raw_writel(val, EP93XX_SYSCON_DEVCFG);
220
221 spin_unlock_irqrestore(&syscon_swlock, flags);
222}
223EXPORT_SYMBOL(ep93xx_devcfg_set_clear);
224
225
226/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000227 * EP93xx peripheral handling
228 *************************************************************************/
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100229#define EP93XX_UART_MCR_OFFSET (0x0100)
230
231static void ep93xx_uart_set_mctrl(struct amba_device *dev,
232 void __iomem *base, unsigned int mctrl)
233{
234 unsigned int mcr;
235
236 mcr = 0;
237 if (!(mctrl & TIOCM_RTS))
238 mcr |= 2;
239 if (!(mctrl & TIOCM_DTR))
240 mcr |= 1;
241
242 __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
243}
244
245static struct amba_pl010_data ep93xx_uart_data = {
246 .set_mctrl = ep93xx_uart_set_mctrl,
247};
248
249static struct amba_device uart1_device = {
250 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800251 .init_name = "apb:uart1",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100252 .platform_data = &ep93xx_uart_data,
253 },
254 .res = {
255 .start = EP93XX_UART1_PHYS_BASE,
256 .end = EP93XX_UART1_PHYS_BASE + 0x0fff,
257 .flags = IORESOURCE_MEM,
258 },
259 .irq = { IRQ_EP93XX_UART1, NO_IRQ },
260 .periphid = 0x00041010,
261};
262
263static struct amba_device uart2_device = {
264 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800265 .init_name = "apb:uart2",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100266 .platform_data = &ep93xx_uart_data,
267 },
268 .res = {
269 .start = EP93XX_UART2_PHYS_BASE,
270 .end = EP93XX_UART2_PHYS_BASE + 0x0fff,
271 .flags = IORESOURCE_MEM,
272 },
273 .irq = { IRQ_EP93XX_UART2, NO_IRQ },
274 .periphid = 0x00041010,
275};
276
277static struct amba_device uart3_device = {
278 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800279 .init_name = "apb:uart3",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100280 .platform_data = &ep93xx_uart_data,
281 },
282 .res = {
283 .start = EP93XX_UART3_PHYS_BASE,
284 .end = EP93XX_UART3_PHYS_BASE + 0x0fff,
285 .flags = IORESOURCE_MEM,
286 },
287 .irq = { IRQ_EP93XX_UART3, NO_IRQ },
288 .periphid = 0x00041010,
289};
290
Lennert Buytenhek41658132006-04-02 16:17:34 +0100291
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100292static struct resource ep93xx_rtc_resource[] = {
293 {
294 .start = EP93XX_RTC_PHYS_BASE,
295 .end = EP93XX_RTC_PHYS_BASE + 0x10c - 1,
296 .flags = IORESOURCE_MEM,
297 },
298};
299
Lennert Buytenhek41658132006-04-02 16:17:34 +0100300static struct platform_device ep93xx_rtc_device = {
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100301 .name = "ep93xx-rtc",
302 .id = -1,
303 .num_resources = ARRAY_SIZE(ep93xx_rtc_resource),
304 .resource = ep93xx_rtc_resource,
Lennert Buytenhek41658132006-04-02 16:17:34 +0100305};
306
307
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100308static struct resource ep93xx_ohci_resources[] = {
309 [0] = {
310 .start = EP93XX_USB_PHYS_BASE,
311 .end = EP93XX_USB_PHYS_BASE + 0x0fff,
312 .flags = IORESOURCE_MEM,
313 },
314 [1] = {
315 .start = IRQ_EP93XX_USB,
316 .end = IRQ_EP93XX_USB,
317 .flags = IORESOURCE_IRQ,
318 },
319};
320
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700321
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100322static struct platform_device ep93xx_ohci_device = {
323 .name = "ep93xx-ohci",
324 .id = -1,
325 .dev = {
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700326 .dma_mask = &ep93xx_ohci_device.dev.coherent_dma_mask,
327 .coherent_dma_mask = DMA_BIT_MASK(32),
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100328 },
329 .num_resources = ARRAY_SIZE(ep93xx_ohci_resources),
330 .resource = ep93xx_ohci_resources,
331};
332
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100333static struct ep93xx_eth_data ep93xx_eth_data;
334
335static struct resource ep93xx_eth_resource[] = {
336 {
337 .start = EP93XX_ETHERNET_PHYS_BASE,
338 .end = EP93XX_ETHERNET_PHYS_BASE + 0xffff,
339 .flags = IORESOURCE_MEM,
340 }, {
341 .start = IRQ_EP93XX_ETHERNET,
342 .end = IRQ_EP93XX_ETHERNET,
343 .flags = IORESOURCE_IRQ,
344 }
345};
346
347static struct platform_device ep93xx_eth_device = {
348 .name = "ep93xx-eth",
349 .id = -1,
350 .dev = {
351 .platform_data = &ep93xx_eth_data,
352 },
353 .num_resources = ARRAY_SIZE(ep93xx_eth_resource),
354 .resource = ep93xx_eth_resource,
355};
356
357void __init ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr)
358{
Hartley Sweeten5b1c3c82009-07-13 19:50:10 +0100359 if (copy_addr)
360 memcpy_fromio(data->dev_addr, EP93XX_ETHERNET_BASE + 0x50, 6);
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100361
362 ep93xx_eth_data = *data;
363 platform_device_register(&ep93xx_eth_device);
364}
365
Hartley Sweeten6531a992009-10-08 00:45:00 +0100366
367/*************************************************************************
368 * EP93xx i2c peripheral handling
369 *************************************************************************/
370static struct i2c_gpio_platform_data ep93xx_i2c_data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100371
372static struct platform_device ep93xx_i2c_device = {
373 .name = "i2c-gpio",
374 .id = 0,
375 .dev.platform_data = &ep93xx_i2c_data,
376};
377
Hartley Sweeten6531a992009-10-08 00:45:00 +0100378void __init ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
379 struct i2c_board_info *devices, int num)
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100380{
Hartley Sweeten6531a992009-10-08 00:45:00 +0100381 /*
382 * Set the EEPROM interface pin drive type control.
383 * Defines the driver type for the EECLK and EEDAT pins as either
384 * open drain, which will require an external pull-up, or a normal
385 * CMOS driver.
386 */
387 if (data->sda_is_open_drain && data->sda_pin != EP93XX_GPIO_LINE_EEDAT)
Hartley Sweeten64d68822010-01-11 19:33:16 +0100388 pr_warning("sda != EEDAT, open drain has no effect\n");
Hartley Sweeten6531a992009-10-08 00:45:00 +0100389 if (data->scl_is_open_drain && data->scl_pin != EP93XX_GPIO_LINE_EECLK)
Hartley Sweeten64d68822010-01-11 19:33:16 +0100390 pr_warning("scl != EECLK, open drain has no effect\n");
Hartley Sweeten6531a992009-10-08 00:45:00 +0100391
392 __raw_writel((data->sda_is_open_drain << 1) |
393 (data->scl_is_open_drain << 0),
394 EP93XX_GPIO_EEDRIVE);
395
396 ep93xx_i2c_data = *data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100397 i2c_register_board_info(0, devices, num);
398 platform_device_register(&ep93xx_i2c_device);
399}
400
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100401
402/*************************************************************************
403 * EP93xx LEDs
404 *************************************************************************/
405static struct gpio_led ep93xx_led_pins[] = {
406 {
407 .name = "platform:grled",
408 .gpio = EP93XX_GPIO_LINE_GRLED,
409 }, {
410 .name = "platform:rdled",
411 .gpio = EP93XX_GPIO_LINE_RDLED,
412 },
413};
414
415static struct gpio_led_platform_data ep93xx_led_data = {
416 .num_leds = ARRAY_SIZE(ep93xx_led_pins),
417 .leds = ep93xx_led_pins,
418};
419
420static struct platform_device ep93xx_leds = {
421 .name = "leds-gpio",
422 .id = -1,
423 .dev = {
424 .platform_data = &ep93xx_led_data,
425 },
426};
427
428
Hartley Sweetenef123792009-07-29 22:41:06 +0100429/*************************************************************************
430 * EP93xx pwm peripheral handling
431 *************************************************************************/
432static struct resource ep93xx_pwm0_resource[] = {
433 {
434 .start = EP93XX_PWM_PHYS_BASE,
435 .end = EP93XX_PWM_PHYS_BASE + 0x10 - 1,
436 .flags = IORESOURCE_MEM,
437 },
438};
439
440static struct platform_device ep93xx_pwm0_device = {
441 .name = "ep93xx-pwm",
442 .id = 0,
443 .num_resources = ARRAY_SIZE(ep93xx_pwm0_resource),
444 .resource = ep93xx_pwm0_resource,
445};
446
447static struct resource ep93xx_pwm1_resource[] = {
448 {
449 .start = EP93XX_PWM_PHYS_BASE + 0x20,
450 .end = EP93XX_PWM_PHYS_BASE + 0x30 - 1,
451 .flags = IORESOURCE_MEM,
452 },
453};
454
455static struct platform_device ep93xx_pwm1_device = {
456 .name = "ep93xx-pwm",
457 .id = 1,
458 .num_resources = ARRAY_SIZE(ep93xx_pwm1_resource),
459 .resource = ep93xx_pwm1_resource,
460};
461
462void __init ep93xx_register_pwm(int pwm0, int pwm1)
463{
464 if (pwm0)
465 platform_device_register(&ep93xx_pwm0_device);
466
467 /* NOTE: EP9307 does not have PWMOUT1 (pin EGPIO14) */
468 if (pwm1)
469 platform_device_register(&ep93xx_pwm1_device);
470}
471
472int ep93xx_pwm_acquire_gpio(struct platform_device *pdev)
473{
474 int err;
475
476 if (pdev->id == 0) {
477 err = 0;
478 } else if (pdev->id == 1) {
479 err = gpio_request(EP93XX_GPIO_LINE_EGPIO14,
480 dev_name(&pdev->dev));
481 if (err)
482 return err;
483 err = gpio_direction_output(EP93XX_GPIO_LINE_EGPIO14, 0);
484 if (err)
485 goto fail;
486
487 /* PWM 1 output on EGPIO[14] */
488 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_PONG);
489 } else {
490 err = -ENODEV;
491 }
492
493 return err;
494
495fail:
496 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
497 return err;
498}
499EXPORT_SYMBOL(ep93xx_pwm_acquire_gpio);
500
501void ep93xx_pwm_release_gpio(struct platform_device *pdev)
502{
503 if (pdev->id == 1) {
504 gpio_direction_input(EP93XX_GPIO_LINE_EGPIO14);
505 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
506
507 /* EGPIO[14] used for GPIO */
508 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_PONG);
509 }
510}
511EXPORT_SYMBOL(ep93xx_pwm_release_gpio);
512
513
Ryan Mallonc6012182009-09-22 16:47:09 -0700514/*************************************************************************
515 * EP93xx video peripheral handling
516 *************************************************************************/
517static struct ep93xxfb_mach_info ep93xxfb_data;
518
519static struct resource ep93xx_fb_resource[] = {
520 {
521 .start = EP93XX_RASTER_PHYS_BASE,
522 .end = EP93XX_RASTER_PHYS_BASE + 0x800 - 1,
523 .flags = IORESOURCE_MEM,
524 },
525};
526
527static struct platform_device ep93xx_fb_device = {
528 .name = "ep93xx-fb",
529 .id = -1,
530 .dev = {
531 .platform_data = &ep93xxfb_data,
532 .coherent_dma_mask = DMA_BIT_MASK(32),
533 .dma_mask = &ep93xx_fb_device.dev.coherent_dma_mask,
534 },
535 .num_resources = ARRAY_SIZE(ep93xx_fb_resource),
536 .resource = ep93xx_fb_resource,
537};
538
539void __init ep93xx_register_fb(struct ep93xxfb_mach_info *data)
540{
541 ep93xxfb_data = *data;
542 platform_device_register(&ep93xx_fb_device);
543}
544
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100545
546/*************************************************************************
547 * EP93xx matrix keypad peripheral handling
548 *************************************************************************/
549static struct resource ep93xx_keypad_resource[] = {
550 {
551 .start = EP93XX_KEY_MATRIX_PHYS_BASE,
552 .end = EP93XX_KEY_MATRIX_PHYS_BASE + 0x0c - 1,
553 .flags = IORESOURCE_MEM,
554 }, {
555 .start = IRQ_EP93XX_KEY,
556 .end = IRQ_EP93XX_KEY,
557 .flags = IORESOURCE_IRQ,
558 },
559};
560
561static struct platform_device ep93xx_keypad_device = {
562 .name = "ep93xx-keypad",
563 .id = -1,
564 .num_resources = ARRAY_SIZE(ep93xx_keypad_resource),
565 .resource = ep93xx_keypad_resource,
566};
567
568void __init ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data)
569{
570 ep93xx_keypad_device.dev.platform_data = data;
571 platform_device_register(&ep93xx_keypad_device);
572}
573
574int ep93xx_keypad_acquire_gpio(struct platform_device *pdev)
575{
576 int err;
577 int i;
578
579 for (i = 0; i < 8; i++) {
580 err = gpio_request(EP93XX_GPIO_LINE_C(i), dev_name(&pdev->dev));
581 if (err)
582 goto fail_gpio_c;
583 err = gpio_request(EP93XX_GPIO_LINE_D(i), dev_name(&pdev->dev));
584 if (err)
585 goto fail_gpio_d;
586 }
587
588 /* Enable the keypad controller; GPIO ports C and D used for keypad */
589 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_KEYS |
590 EP93XX_SYSCON_DEVCFG_GONK);
591
592 return 0;
593
594fail_gpio_d:
595 gpio_free(EP93XX_GPIO_LINE_C(i));
596fail_gpio_c:
597 for ( ; i >= 0; --i) {
598 gpio_free(EP93XX_GPIO_LINE_C(i));
599 gpio_free(EP93XX_GPIO_LINE_D(i));
600 }
601 return err;
602}
603EXPORT_SYMBOL(ep93xx_keypad_acquire_gpio);
604
605void ep93xx_keypad_release_gpio(struct platform_device *pdev)
606{
607 int i;
608
609 for (i = 0; i < 8; i++) {
610 gpio_free(EP93XX_GPIO_LINE_C(i));
611 gpio_free(EP93XX_GPIO_LINE_D(i));
612 }
613
614 /* Disable the keypad controller; GPIO ports C and D used for GPIO */
615 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS |
616 EP93XX_SYSCON_DEVCFG_GONK);
617}
618EXPORT_SYMBOL(ep93xx_keypad_release_gpio);
619
620
Ryan Mallonb6850042008-04-16 02:56:35 +0100621extern void ep93xx_gpio_init(void);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100622
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000623void __init ep93xx_init_devices(void)
624{
Hartley Sweeten02239f02009-07-08 02:00:49 +0100625 /* Disallow access to MaverickCrunch initially */
626 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100627
Ryan Mallonb6850042008-04-16 02:56:35 +0100628 ep93xx_gpio_init();
629
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100630 amba_device_register(&uart1_device, &iomem_resource);
631 amba_device_register(&uart2_device, &iomem_resource);
632 amba_device_register(&uart3_device, &iomem_resource);
Lennert Buytenhek41658132006-04-02 16:17:34 +0100633
634 platform_device_register(&ep93xx_rtc_device);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100635 platform_device_register(&ep93xx_ohci_device);
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100636 platform_device_register(&ep93xx_leds);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000637}