blob: 1d4b65fd673eb23e9d2ac2fd9dbded0f2e8ba6d9 [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 Sweeten16bcf782010-06-10 16:19:08 +010032#include <linux/mtd/physmap.h>
Hartley Sweetend52a26a2008-10-16 23:57:03 +010033#include <linux/i2c.h>
34#include <linux/i2c-gpio.h>
Mika Westerberg4fec9972010-05-11 15:34:54 +010035#include <linux/spi/spi.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000036
Russell Kinga09e64f2008-08-05 16:14:15 +010037#include <mach/hardware.h>
Ryan Mallonc6012182009-09-22 16:47:09 -070038#include <mach/fb.h>
Hartley Sweeten12f56c62009-10-28 21:04:46 +010039#include <mach/ep93xx_keypad.h>
Mika Westerberg4fec9972010-05-11 15:34:54 +010040#include <mach/ep93xx_spi.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000041
42#include <asm/mach/map.h>
43#include <asm/mach/time.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000044
45#include <asm/hardware/vic.h>
46
47
48/*************************************************************************
49 * Static I/O mappings that are needed for all EP93xx platforms
50 *************************************************************************/
51static struct map_desc ep93xx_io_desc[] __initdata = {
52 {
53 .virtual = EP93XX_AHB_VIRT_BASE,
54 .pfn = __phys_to_pfn(EP93XX_AHB_PHYS_BASE),
55 .length = EP93XX_AHB_SIZE,
56 .type = MT_DEVICE,
57 }, {
58 .virtual = EP93XX_APB_VIRT_BASE,
59 .pfn = __phys_to_pfn(EP93XX_APB_PHYS_BASE),
60 .length = EP93XX_APB_SIZE,
61 .type = MT_DEVICE,
62 },
63};
64
65void __init ep93xx_map_io(void)
66{
67 iotable_init(ep93xx_io_desc, ARRAY_SIZE(ep93xx_io_desc));
68}
69
70
71/*************************************************************************
72 * Timer handling for EP93xx
73 *************************************************************************
74 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
75 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
76 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
77 * is free-running, and can't generate interrupts.
78 *
79 * The 508 kHz timers are ideal for use for the timer interrupt, as the
80 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
81 * bit timers (timer 1) since we don't need more than 16 bits of reload
82 * value as long as HZ >= 8.
83 *
84 * The higher clock rate of timer 4 makes it a better choice than the
85 * other timers for use in gettimeoffset(), while the fact that it can't
86 * generate interrupts means we don't have to worry about not being able
87 * to use this timer for something else. We also use timer 4 for keeping
88 * track of lost jiffies.
89 */
Hartley Sweeten1587a372010-02-23 21:45:22 +010090#define EP93XX_TIMER_REG(x) (EP93XX_TIMER_BASE + (x))
91#define EP93XX_TIMER1_LOAD EP93XX_TIMER_REG(0x00)
92#define EP93XX_TIMER1_VALUE EP93XX_TIMER_REG(0x04)
93#define EP93XX_TIMER1_CONTROL EP93XX_TIMER_REG(0x08)
94#define EP93XX_TIMER123_CONTROL_ENABLE (1 << 7)
95#define EP93XX_TIMER123_CONTROL_MODE (1 << 6)
96#define EP93XX_TIMER123_CONTROL_CLKSEL (1 << 3)
97#define EP93XX_TIMER1_CLEAR EP93XX_TIMER_REG(0x0c)
98#define EP93XX_TIMER2_LOAD EP93XX_TIMER_REG(0x20)
99#define EP93XX_TIMER2_VALUE EP93XX_TIMER_REG(0x24)
100#define EP93XX_TIMER2_CONTROL EP93XX_TIMER_REG(0x28)
101#define EP93XX_TIMER2_CLEAR EP93XX_TIMER_REG(0x2c)
102#define EP93XX_TIMER4_VALUE_LOW EP93XX_TIMER_REG(0x60)
103#define EP93XX_TIMER4_VALUE_HIGH EP93XX_TIMER_REG(0x64)
104#define EP93XX_TIMER4_VALUE_HIGH_ENABLE (1 << 8)
105#define EP93XX_TIMER3_LOAD EP93XX_TIMER_REG(0x80)
106#define EP93XX_TIMER3_VALUE EP93XX_TIMER_REG(0x84)
107#define EP93XX_TIMER3_CONTROL EP93XX_TIMER_REG(0x88)
108#define EP93XX_TIMER3_CLEAR EP93XX_TIMER_REG(0x8c)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000109
Hartley Sweeten1587a372010-02-23 21:45:22 +0100110#define EP93XX_TIMER123_CLOCK 508469
111#define EP93XX_TIMER4_CLOCK 983040
112
113#define TIMER1_RELOAD ((EP93XX_TIMER123_CLOCK / HZ) - 1)
Julia Lawallaf1057a2009-08-03 11:57:20 +0100114#define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000115
Hartley Sweeten1587a372010-02-23 21:45:22 +0100116static unsigned int last_jiffy_time;
117
Hartley Sweetend5565f72009-04-14 21:38:07 +0100118static irqreturn_t ep93xx_timer_interrupt(int irq, void *dev_id)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000119{
Hartley Sweeten1587a372010-02-23 21:45:22 +0100120 /* Writing any value clears the timer interrupt */
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000121 __raw_writel(1, EP93XX_TIMER1_CLEAR);
Hartley Sweeten1587a372010-02-23 21:45:22 +0100122
123 /* Recover lost jiffies */
Lennert Buytenhekf869afa2006-06-22 10:30:53 +0100124 while ((signed long)
125 (__raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000126 >= TIMER4_TICKS_PER_JIFFY) {
127 last_jiffy_time += TIMER4_TICKS_PER_JIFFY;
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700128 timer_tick();
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000129 }
130
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000131 return IRQ_HANDLED;
132}
133
134static struct irqaction ep93xx_timer_irq = {
135 .name = "ep93xx timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700136 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000137 .handler = ep93xx_timer_interrupt,
138};
139
140static void __init ep93xx_timer_init(void)
141{
Hartley Sweeten1587a372010-02-23 21:45:22 +0100142 u32 tmode = EP93XX_TIMER123_CONTROL_MODE |
143 EP93XX_TIMER123_CONTROL_CLKSEL;
144
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000145 /* Enable periodic HZ timer. */
Hartley Sweeten1587a372010-02-23 21:45:22 +0100146 __raw_writel(tmode, EP93XX_TIMER1_CONTROL);
147 __raw_writel(TIMER1_RELOAD, EP93XX_TIMER1_LOAD);
148 __raw_writel(tmode | EP93XX_TIMER123_CONTROL_ENABLE,
149 EP93XX_TIMER1_CONTROL);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000150
151 /* Enable lost jiffy timer. */
Hartley Sweeten1587a372010-02-23 21:45:22 +0100152 __raw_writel(EP93XX_TIMER4_VALUE_HIGH_ENABLE,
153 EP93XX_TIMER4_VALUE_HIGH);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000154
155 setup_irq(IRQ_EP93XX_TIMER1, &ep93xx_timer_irq);
156}
157
158static unsigned long ep93xx_gettimeoffset(void)
159{
160 int offset;
161
162 offset = __raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time;
163
164 /* Calculate (1000000 / 983040) * offset. */
165 return offset + (53 * offset / 3072);
166}
167
168struct sys_timer ep93xx_timer = {
169 .init = ep93xx_timer_init,
170 .offset = ep93xx_gettimeoffset,
171};
172
173
174/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000175 * EP93xx IRQ handling
176 *************************************************************************/
Hartley Sweetend056ab72010-02-23 21:41:17 +0100177extern void ep93xx_gpio_init_irq(void);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000178
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000179void __init ep93xx_init_irq(void)
180{
Hartley Sweeten53967302009-07-09 23:22:07 +0100181 vic_init(EP93XX_VIC1_BASE, 0, EP93XX_VIC1_VALID_IRQ_MASK, 0);
182 vic_init(EP93XX_VIC2_BASE, 32, EP93XX_VIC2_VALID_IRQ_MASK, 0);
Lennert Buytenhekbd20ff52006-03-20 21:02:37 +0000183
Hartley Sweetend056ab72010-02-23 21:41:17 +0100184 ep93xx_gpio_init_irq();
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000185}
186
187
188/*************************************************************************
Hartley Sweeten02239f02009-07-08 02:00:49 +0100189 * EP93xx System Controller Software Locked register handling
190 *************************************************************************/
191
192/*
193 * syscon_swlock prevents anything else from writing to the syscon
194 * block while a software locked register is being written.
195 */
196static DEFINE_SPINLOCK(syscon_swlock);
197
Ryan Mallonfbeeea52009-07-15 21:51:59 +0100198void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg)
Hartley Sweeten02239f02009-07-08 02:00:49 +0100199{
200 unsigned long flags;
201
202 spin_lock_irqsave(&syscon_swlock, flags);
203
204 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
205 __raw_writel(val, reg);
206
207 spin_unlock_irqrestore(&syscon_swlock, flags);
208}
209EXPORT_SYMBOL(ep93xx_syscon_swlocked_write);
210
211void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits)
212{
213 unsigned long flags;
214 unsigned int val;
215
216 spin_lock_irqsave(&syscon_swlock, flags);
217
218 val = __raw_readl(EP93XX_SYSCON_DEVCFG);
Hartley Sweeten02239f02009-07-08 02:00:49 +0100219 val &= ~clear_bits;
Hartley Sweetena0fb0072010-06-14 16:54:16 +0100220 val |= set_bits;
Hartley Sweeten02239f02009-07-08 02:00:49 +0100221 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
222 __raw_writel(val, EP93XX_SYSCON_DEVCFG);
223
224 spin_unlock_irqrestore(&syscon_swlock, flags);
225}
226EXPORT_SYMBOL(ep93xx_devcfg_set_clear);
227
Mika Westerberg99e6a232010-03-27 12:05:14 +0100228/**
229 * ep93xx_chip_revision() - returns the EP93xx chip revision
230 *
231 * See <mach/platform.h> for more information.
232 */
233unsigned int ep93xx_chip_revision(void)
234{
235 unsigned int v;
236
237 v = __raw_readl(EP93XX_SYSCON_SYSCFG);
238 v &= EP93XX_SYSCON_SYSCFG_REV_MASK;
239 v >>= EP93XX_SYSCON_SYSCFG_REV_SHIFT;
240 return v;
241}
Hartley Sweeten02239f02009-07-08 02:00:49 +0100242
243/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000244 * EP93xx peripheral handling
245 *************************************************************************/
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100246#define EP93XX_UART_MCR_OFFSET (0x0100)
247
248static void ep93xx_uart_set_mctrl(struct amba_device *dev,
249 void __iomem *base, unsigned int mctrl)
250{
251 unsigned int mcr;
252
253 mcr = 0;
254 if (!(mctrl & TIOCM_RTS))
255 mcr |= 2;
256 if (!(mctrl & TIOCM_DTR))
257 mcr |= 1;
258
259 __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
260}
261
262static struct amba_pl010_data ep93xx_uart_data = {
263 .set_mctrl = ep93xx_uart_set_mctrl,
264};
265
266static struct amba_device uart1_device = {
267 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800268 .init_name = "apb:uart1",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100269 .platform_data = &ep93xx_uart_data,
270 },
271 .res = {
272 .start = EP93XX_UART1_PHYS_BASE,
273 .end = EP93XX_UART1_PHYS_BASE + 0x0fff,
274 .flags = IORESOURCE_MEM,
275 },
276 .irq = { IRQ_EP93XX_UART1, NO_IRQ },
277 .periphid = 0x00041010,
278};
279
280static struct amba_device uart2_device = {
281 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800282 .init_name = "apb:uart2",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100283 .platform_data = &ep93xx_uart_data,
284 },
285 .res = {
286 .start = EP93XX_UART2_PHYS_BASE,
287 .end = EP93XX_UART2_PHYS_BASE + 0x0fff,
288 .flags = IORESOURCE_MEM,
289 },
290 .irq = { IRQ_EP93XX_UART2, NO_IRQ },
291 .periphid = 0x00041010,
292};
293
294static struct amba_device uart3_device = {
295 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800296 .init_name = "apb:uart3",
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100297 .platform_data = &ep93xx_uart_data,
298 },
299 .res = {
300 .start = EP93XX_UART3_PHYS_BASE,
301 .end = EP93XX_UART3_PHYS_BASE + 0x0fff,
302 .flags = IORESOURCE_MEM,
303 },
304 .irq = { IRQ_EP93XX_UART3, NO_IRQ },
305 .periphid = 0x00041010,
306};
307
Lennert Buytenhek41658132006-04-02 16:17:34 +0100308
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100309static struct resource ep93xx_rtc_resource[] = {
310 {
311 .start = EP93XX_RTC_PHYS_BASE,
312 .end = EP93XX_RTC_PHYS_BASE + 0x10c - 1,
313 .flags = IORESOURCE_MEM,
314 },
315};
316
Lennert Buytenhek41658132006-04-02 16:17:34 +0100317static struct platform_device ep93xx_rtc_device = {
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100318 .name = "ep93xx-rtc",
319 .id = -1,
320 .num_resources = ARRAY_SIZE(ep93xx_rtc_resource),
321 .resource = ep93xx_rtc_resource,
Lennert Buytenhek41658132006-04-02 16:17:34 +0100322};
323
324
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100325static struct resource ep93xx_ohci_resources[] = {
326 [0] = {
327 .start = EP93XX_USB_PHYS_BASE,
328 .end = EP93XX_USB_PHYS_BASE + 0x0fff,
329 .flags = IORESOURCE_MEM,
330 },
331 [1] = {
332 .start = IRQ_EP93XX_USB,
333 .end = IRQ_EP93XX_USB,
334 .flags = IORESOURCE_IRQ,
335 },
336};
337
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700338
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100339static struct platform_device ep93xx_ohci_device = {
340 .name = "ep93xx-ohci",
341 .id = -1,
342 .dev = {
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700343 .dma_mask = &ep93xx_ohci_device.dev.coherent_dma_mask,
344 .coherent_dma_mask = DMA_BIT_MASK(32),
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100345 },
346 .num_resources = ARRAY_SIZE(ep93xx_ohci_resources),
347 .resource = ep93xx_ohci_resources,
348};
349
Hartley Sweetenb370e082010-03-18 18:04:06 +0100350
351/*************************************************************************
Hartley Sweeten16bcf782010-06-10 16:19:08 +0100352 * EP93xx physmap'ed flash
353 *************************************************************************/
354static struct physmap_flash_data ep93xx_flash_data;
355
356static struct resource ep93xx_flash_resource = {
357 .flags = IORESOURCE_MEM,
358};
359
360static struct platform_device ep93xx_flash = {
361 .name = "physmap-flash",
362 .id = 0,
363 .dev = {
364 .platform_data = &ep93xx_flash_data,
365 },
366 .num_resources = 1,
367 .resource = &ep93xx_flash_resource,
368};
369
370/**
371 * ep93xx_register_flash() - Register the external flash device.
372 * @width: bank width in octets
373 * @start: resource start address
374 * @size: resource size
375 */
376void __init ep93xx_register_flash(unsigned int width,
377 resource_size_t start, resource_size_t size)
378{
379 ep93xx_flash_data.width = width;
380
381 ep93xx_flash_resource.start = start;
382 ep93xx_flash_resource.end = start + size - 1;
383
384 platform_device_register(&ep93xx_flash);
385}
386
387
388/*************************************************************************
Hartley Sweetenb370e082010-03-18 18:04:06 +0100389 * EP93xx ethernet peripheral handling
390 *************************************************************************/
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100391static struct ep93xx_eth_data ep93xx_eth_data;
392
393static struct resource ep93xx_eth_resource[] = {
394 {
395 .start = EP93XX_ETHERNET_PHYS_BASE,
396 .end = EP93XX_ETHERNET_PHYS_BASE + 0xffff,
397 .flags = IORESOURCE_MEM,
398 }, {
399 .start = IRQ_EP93XX_ETHERNET,
400 .end = IRQ_EP93XX_ETHERNET,
401 .flags = IORESOURCE_IRQ,
402 }
403};
404
Mika Westerbergfa70cf42011-06-11 08:39:54 +0000405static u64 ep93xx_eth_dma_mask = DMA_BIT_MASK(32);
406
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100407static struct platform_device ep93xx_eth_device = {
408 .name = "ep93xx-eth",
409 .id = -1,
410 .dev = {
Mika Westerbergfa70cf42011-06-11 08:39:54 +0000411 .platform_data = &ep93xx_eth_data,
412 .coherent_dma_mask = DMA_BIT_MASK(32),
413 .dma_mask = &ep93xx_eth_dma_mask,
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100414 },
415 .num_resources = ARRAY_SIZE(ep93xx_eth_resource),
416 .resource = ep93xx_eth_resource,
417};
418
Hartley Sweetenb370e082010-03-18 18:04:06 +0100419/**
420 * ep93xx_register_eth - Register the built-in ethernet platform device.
421 * @data: platform specific ethernet configuration (__initdata)
422 * @copy_addr: flag indicating that the MAC address should be copied
423 * from the IndAd registers (as programmed by the bootloader)
424 */
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100425void __init ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr)
426{
Hartley Sweeten5b1c3c82009-07-13 19:50:10 +0100427 if (copy_addr)
428 memcpy_fromio(data->dev_addr, EP93XX_ETHERNET_BASE + 0x50, 6);
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100429
430 ep93xx_eth_data = *data;
431 platform_device_register(&ep93xx_eth_device);
432}
433
Hartley Sweeten6531a992009-10-08 00:45:00 +0100434
435/*************************************************************************
436 * EP93xx i2c peripheral handling
437 *************************************************************************/
438static struct i2c_gpio_platform_data ep93xx_i2c_data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100439
440static struct platform_device ep93xx_i2c_device = {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100441 .name = "i2c-gpio",
442 .id = 0,
443 .dev = {
444 .platform_data = &ep93xx_i2c_data,
445 },
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100446};
447
Hartley Sweetenb370e082010-03-18 18:04:06 +0100448/**
449 * ep93xx_register_i2c - Register the i2c platform device.
450 * @data: platform specific i2c-gpio configuration (__initdata)
451 * @devices: platform specific i2c bus device information (__initdata)
452 * @num: the number of devices on the i2c bus
453 */
Hartley Sweeten6531a992009-10-08 00:45:00 +0100454void __init ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
455 struct i2c_board_info *devices, int num)
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100456{
Hartley Sweeten6531a992009-10-08 00:45:00 +0100457 /*
458 * Set the EEPROM interface pin drive type control.
459 * Defines the driver type for the EECLK and EEDAT pins as either
460 * open drain, which will require an external pull-up, or a normal
461 * CMOS driver.
462 */
463 if (data->sda_is_open_drain && data->sda_pin != EP93XX_GPIO_LINE_EEDAT)
Hartley Sweeten64d68822010-01-11 19:33:16 +0100464 pr_warning("sda != EEDAT, open drain has no effect\n");
Hartley Sweeten6531a992009-10-08 00:45:00 +0100465 if (data->scl_is_open_drain && data->scl_pin != EP93XX_GPIO_LINE_EECLK)
Hartley Sweeten64d68822010-01-11 19:33:16 +0100466 pr_warning("scl != EECLK, open drain has no effect\n");
Hartley Sweeten6531a992009-10-08 00:45:00 +0100467
468 __raw_writel((data->sda_is_open_drain << 1) |
469 (data->scl_is_open_drain << 0),
470 EP93XX_GPIO_EEDRIVE);
471
472 ep93xx_i2c_data = *data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100473 i2c_register_board_info(0, devices, num);
474 platform_device_register(&ep93xx_i2c_device);
475}
476
Mika Westerberg4fec9972010-05-11 15:34:54 +0100477/*************************************************************************
478 * EP93xx SPI peripheral handling
479 *************************************************************************/
480static struct ep93xx_spi_info ep93xx_spi_master_data;
481
482static struct resource ep93xx_spi_resources[] = {
483 {
484 .start = EP93XX_SPI_PHYS_BASE,
485 .end = EP93XX_SPI_PHYS_BASE + 0x18 - 1,
486 .flags = IORESOURCE_MEM,
487 },
488 {
489 .start = IRQ_EP93XX_SSP,
490 .end = IRQ_EP93XX_SSP,
491 .flags = IORESOURCE_IRQ,
492 },
493};
494
495static struct platform_device ep93xx_spi_device = {
496 .name = "ep93xx-spi",
497 .id = 0,
498 .dev = {
499 .platform_data = &ep93xx_spi_master_data,
500 },
501 .num_resources = ARRAY_SIZE(ep93xx_spi_resources),
502 .resource = ep93xx_spi_resources,
503};
504
505/**
506 * ep93xx_register_spi() - registers spi platform device
507 * @info: ep93xx board specific spi master info (__initdata)
508 * @devices: SPI devices to register (__initdata)
509 * @num: number of SPI devices to register
510 *
511 * This function registers platform device for the EP93xx SPI controller and
512 * also makes sure that SPI pins are muxed so that I2S is not using those pins.
513 */
514void __init ep93xx_register_spi(struct ep93xx_spi_info *info,
515 struct spi_board_info *devices, int num)
516{
517 /*
518 * When SPI is used, we need to make sure that I2S is muxed off from
519 * SPI pins.
520 */
521 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONSSP);
522
523 ep93xx_spi_master_data = *info;
524 spi_register_board_info(devices, num);
525 platform_device_register(&ep93xx_spi_device);
526}
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100527
528/*************************************************************************
529 * EP93xx LEDs
530 *************************************************************************/
531static struct gpio_led ep93xx_led_pins[] = {
532 {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100533 .name = "platform:grled",
534 .gpio = EP93XX_GPIO_LINE_GRLED,
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100535 }, {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100536 .name = "platform:rdled",
537 .gpio = EP93XX_GPIO_LINE_RDLED,
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100538 },
539};
540
541static struct gpio_led_platform_data ep93xx_led_data = {
542 .num_leds = ARRAY_SIZE(ep93xx_led_pins),
543 .leds = ep93xx_led_pins,
544};
545
546static struct platform_device ep93xx_leds = {
547 .name = "leds-gpio",
548 .id = -1,
549 .dev = {
550 .platform_data = &ep93xx_led_data,
551 },
552};
553
554
Hartley Sweetenef123792009-07-29 22:41:06 +0100555/*************************************************************************
556 * EP93xx pwm peripheral handling
557 *************************************************************************/
558static struct resource ep93xx_pwm0_resource[] = {
559 {
560 .start = EP93XX_PWM_PHYS_BASE,
561 .end = EP93XX_PWM_PHYS_BASE + 0x10 - 1,
562 .flags = IORESOURCE_MEM,
563 },
564};
565
566static struct platform_device ep93xx_pwm0_device = {
567 .name = "ep93xx-pwm",
568 .id = 0,
569 .num_resources = ARRAY_SIZE(ep93xx_pwm0_resource),
570 .resource = ep93xx_pwm0_resource,
571};
572
573static struct resource ep93xx_pwm1_resource[] = {
574 {
575 .start = EP93XX_PWM_PHYS_BASE + 0x20,
576 .end = EP93XX_PWM_PHYS_BASE + 0x30 - 1,
577 .flags = IORESOURCE_MEM,
578 },
579};
580
581static struct platform_device ep93xx_pwm1_device = {
582 .name = "ep93xx-pwm",
583 .id = 1,
584 .num_resources = ARRAY_SIZE(ep93xx_pwm1_resource),
585 .resource = ep93xx_pwm1_resource,
586};
587
588void __init ep93xx_register_pwm(int pwm0, int pwm1)
589{
590 if (pwm0)
591 platform_device_register(&ep93xx_pwm0_device);
592
593 /* NOTE: EP9307 does not have PWMOUT1 (pin EGPIO14) */
594 if (pwm1)
595 platform_device_register(&ep93xx_pwm1_device);
596}
597
598int ep93xx_pwm_acquire_gpio(struct platform_device *pdev)
599{
600 int err;
601
602 if (pdev->id == 0) {
603 err = 0;
604 } else if (pdev->id == 1) {
605 err = gpio_request(EP93XX_GPIO_LINE_EGPIO14,
606 dev_name(&pdev->dev));
607 if (err)
608 return err;
609 err = gpio_direction_output(EP93XX_GPIO_LINE_EGPIO14, 0);
610 if (err)
611 goto fail;
612
613 /* PWM 1 output on EGPIO[14] */
614 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_PONG);
615 } else {
616 err = -ENODEV;
617 }
618
619 return err;
620
621fail:
622 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
623 return err;
624}
625EXPORT_SYMBOL(ep93xx_pwm_acquire_gpio);
626
627void ep93xx_pwm_release_gpio(struct platform_device *pdev)
628{
629 if (pdev->id == 1) {
630 gpio_direction_input(EP93XX_GPIO_LINE_EGPIO14);
631 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
632
633 /* EGPIO[14] used for GPIO */
634 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_PONG);
635 }
636}
637EXPORT_SYMBOL(ep93xx_pwm_release_gpio);
638
639
Ryan Mallonc6012182009-09-22 16:47:09 -0700640/*************************************************************************
641 * EP93xx video peripheral handling
642 *************************************************************************/
643static struct ep93xxfb_mach_info ep93xxfb_data;
644
645static struct resource ep93xx_fb_resource[] = {
646 {
647 .start = EP93XX_RASTER_PHYS_BASE,
648 .end = EP93XX_RASTER_PHYS_BASE + 0x800 - 1,
649 .flags = IORESOURCE_MEM,
650 },
651};
652
653static struct platform_device ep93xx_fb_device = {
654 .name = "ep93xx-fb",
655 .id = -1,
656 .dev = {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100657 .platform_data = &ep93xxfb_data,
Ryan Mallonc6012182009-09-22 16:47:09 -0700658 .coherent_dma_mask = DMA_BIT_MASK(32),
659 .dma_mask = &ep93xx_fb_device.dev.coherent_dma_mask,
660 },
661 .num_resources = ARRAY_SIZE(ep93xx_fb_resource),
662 .resource = ep93xx_fb_resource,
663};
664
Hartley Sweeten6ea4b742010-06-09 21:15:12 +0100665static struct platform_device ep93xx_bl_device = {
666 .name = "ep93xx-bl",
667 .id = -1,
668};
669
Hartley Sweetenb370e082010-03-18 18:04:06 +0100670/**
671 * ep93xx_register_fb - Register the framebuffer platform device.
672 * @data: platform specific framebuffer configuration (__initdata)
673 */
Ryan Mallonc6012182009-09-22 16:47:09 -0700674void __init ep93xx_register_fb(struct ep93xxfb_mach_info *data)
675{
676 ep93xxfb_data = *data;
677 platform_device_register(&ep93xx_fb_device);
Hartley Sweeten6ea4b742010-06-09 21:15:12 +0100678 platform_device_register(&ep93xx_bl_device);
Ryan Mallonc6012182009-09-22 16:47:09 -0700679}
680
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100681
682/*************************************************************************
683 * EP93xx matrix keypad peripheral handling
684 *************************************************************************/
Hartley Sweetenb370e082010-03-18 18:04:06 +0100685static struct ep93xx_keypad_platform_data ep93xx_keypad_data;
686
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100687static struct resource ep93xx_keypad_resource[] = {
688 {
689 .start = EP93XX_KEY_MATRIX_PHYS_BASE,
690 .end = EP93XX_KEY_MATRIX_PHYS_BASE + 0x0c - 1,
691 .flags = IORESOURCE_MEM,
692 }, {
693 .start = IRQ_EP93XX_KEY,
694 .end = IRQ_EP93XX_KEY,
695 .flags = IORESOURCE_IRQ,
696 },
697};
698
699static struct platform_device ep93xx_keypad_device = {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100700 .name = "ep93xx-keypad",
701 .id = -1,
702 .dev = {
703 .platform_data = &ep93xx_keypad_data,
704 },
705 .num_resources = ARRAY_SIZE(ep93xx_keypad_resource),
706 .resource = ep93xx_keypad_resource,
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100707};
708
Hartley Sweetenb370e082010-03-18 18:04:06 +0100709/**
710 * ep93xx_register_keypad - Register the keypad platform device.
711 * @data: platform specific keypad configuration (__initdata)
712 */
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100713void __init ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data)
714{
Hartley Sweetenb370e082010-03-18 18:04:06 +0100715 ep93xx_keypad_data = *data;
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100716 platform_device_register(&ep93xx_keypad_device);
717}
718
719int ep93xx_keypad_acquire_gpio(struct platform_device *pdev)
720{
721 int err;
722 int i;
723
724 for (i = 0; i < 8; i++) {
725 err = gpio_request(EP93XX_GPIO_LINE_C(i), dev_name(&pdev->dev));
726 if (err)
727 goto fail_gpio_c;
728 err = gpio_request(EP93XX_GPIO_LINE_D(i), dev_name(&pdev->dev));
729 if (err)
730 goto fail_gpio_d;
731 }
732
733 /* Enable the keypad controller; GPIO ports C and D used for keypad */
734 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_KEYS |
735 EP93XX_SYSCON_DEVCFG_GONK);
736
737 return 0;
738
739fail_gpio_d:
740 gpio_free(EP93XX_GPIO_LINE_C(i));
741fail_gpio_c:
742 for ( ; i >= 0; --i) {
743 gpio_free(EP93XX_GPIO_LINE_C(i));
744 gpio_free(EP93XX_GPIO_LINE_D(i));
745 }
746 return err;
747}
748EXPORT_SYMBOL(ep93xx_keypad_acquire_gpio);
749
750void ep93xx_keypad_release_gpio(struct platform_device *pdev)
751{
752 int i;
753
754 for (i = 0; i < 8; i++) {
755 gpio_free(EP93XX_GPIO_LINE_C(i));
756 gpio_free(EP93XX_GPIO_LINE_D(i));
757 }
758
759 /* Disable the keypad controller; GPIO ports C and D used for GPIO */
760 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS |
761 EP93XX_SYSCON_DEVCFG_GONK);
762}
763EXPORT_SYMBOL(ep93xx_keypad_release_gpio);
764
Ryan Malloned67ea82010-06-08 22:01:10 +1200765/*************************************************************************
766 * EP93xx I2S audio peripheral handling
767 *************************************************************************/
768static struct resource ep93xx_i2s_resource[] = {
769 {
770 .start = EP93XX_I2S_PHYS_BASE,
771 .end = EP93XX_I2S_PHYS_BASE + 0x100 - 1,
772 .flags = IORESOURCE_MEM,
773 },
774};
775
776static struct platform_device ep93xx_i2s_device = {
777 .name = "ep93xx-i2s",
778 .id = -1,
779 .num_resources = ARRAY_SIZE(ep93xx_i2s_resource),
780 .resource = ep93xx_i2s_resource,
781};
782
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000783static struct platform_device ep93xx_pcm_device = {
784 .name = "ep93xx-pcm-audio",
785 .id = -1,
786};
787
Ryan Malloned67ea82010-06-08 22:01:10 +1200788void __init ep93xx_register_i2s(void)
789{
790 platform_device_register(&ep93xx_i2s_device);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000791 platform_device_register(&ep93xx_pcm_device);
Ryan Malloned67ea82010-06-08 22:01:10 +1200792}
793
794#define EP93XX_SYSCON_DEVCFG_I2S_MASK (EP93XX_SYSCON_DEVCFG_I2SONSSP | \
795 EP93XX_SYSCON_DEVCFG_I2SONAC97)
796
797#define EP93XX_I2SCLKDIV_MASK (EP93XX_SYSCON_I2SCLKDIV_ORIDE | \
798 EP93XX_SYSCON_I2SCLKDIV_SPOL)
799
800int ep93xx_i2s_acquire(unsigned i2s_pins, unsigned i2s_config)
801{
802 unsigned val;
803
804 /* Sanity check */
805 if (i2s_pins & ~EP93XX_SYSCON_DEVCFG_I2S_MASK)
806 return -EINVAL;
807 if (i2s_config & ~EP93XX_I2SCLKDIV_MASK)
808 return -EINVAL;
809
810 /* Must have only one of I2SONSSP/I2SONAC97 set */
811 if ((i2s_pins & EP93XX_SYSCON_DEVCFG_I2SONSSP) ==
812 (i2s_pins & EP93XX_SYSCON_DEVCFG_I2SONAC97))
813 return -EINVAL;
814
815 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2S_MASK);
816 ep93xx_devcfg_set_bits(i2s_pins);
817
818 /*
819 * This is potentially racy with the clock api for i2s_mclk, sclk and
820 * lrclk. Since the i2s driver is the only user of those clocks we
821 * rely on it to prevent parallel use of this function and the
822 * clock api for the i2s clocks.
823 */
824 val = __raw_readl(EP93XX_SYSCON_I2SCLKDIV);
825 val &= ~EP93XX_I2SCLKDIV_MASK;
826 val |= i2s_config;
827 ep93xx_syscon_swlocked_write(val, EP93XX_SYSCON_I2SCLKDIV);
828
829 return 0;
830}
831EXPORT_SYMBOL(ep93xx_i2s_acquire);
832
833void ep93xx_i2s_release(void)
834{
835 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2S_MASK);
836}
837EXPORT_SYMBOL(ep93xx_i2s_release);
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100838
Mika Westerberg534bc7f2010-10-14 17:49:07 +0300839/*************************************************************************
840 * EP93xx AC97 audio peripheral handling
841 *************************************************************************/
842static struct resource ep93xx_ac97_resources[] = {
843 {
844 .start = EP93XX_AAC_PHYS_BASE,
Mika Westerbergec115942011-02-05 09:52:33 +0100845 .end = EP93XX_AAC_PHYS_BASE + 0xac - 1,
Mika Westerberg534bc7f2010-10-14 17:49:07 +0300846 .flags = IORESOURCE_MEM,
847 },
848 {
849 .start = IRQ_EP93XX_AACINTR,
850 .end = IRQ_EP93XX_AACINTR,
851 .flags = IORESOURCE_IRQ,
852 },
853};
854
855static struct platform_device ep93xx_ac97_device = {
856 .name = "ep93xx-ac97",
857 .id = -1,
858 .num_resources = ARRAY_SIZE(ep93xx_ac97_resources),
859 .resource = ep93xx_ac97_resources,
860};
861
862void __init ep93xx_register_ac97(void)
863{
864 /*
865 * Make sure that the AC97 pins are not used by I2S.
866 */
867 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONAC97);
868
869 platform_device_register(&ep93xx_ac97_device);
870 platform_device_register(&ep93xx_pcm_device);
871}
872
Ryan Mallonb6850042008-04-16 02:56:35 +0100873extern void ep93xx_gpio_init(void);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100874
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000875void __init ep93xx_init_devices(void)
876{
Hartley Sweeten02239f02009-07-08 02:00:49 +0100877 /* Disallow access to MaverickCrunch initially */
878 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100879
Ryan Mallonb6850042008-04-16 02:56:35 +0100880 ep93xx_gpio_init();
881
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100882 amba_device_register(&uart1_device, &iomem_resource);
883 amba_device_register(&uart2_device, &iomem_resource);
884 amba_device_register(&uart3_device, &iomem_resource);
Lennert Buytenhek41658132006-04-02 16:17:34 +0100885
886 platform_device_register(&ep93xx_rtc_device);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100887 platform_device_register(&ep93xx_ohci_device);
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100888 platform_device_register(&ep93xx_leds);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000889}