blob: 3f12b885c083ac37424bdb9e44ca478f09a3c12b [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>
Paul Gortmakerdc280942011-07-31 16:17:29 -040036#include <linux/export.h>
Rob Herring9e47b8b2013-01-07 09:45:59 -060037#include <linux/irqchip/arm-vic.h>
Robin Holt7b6d8642013-07-08 16:01:40 -070038#include <linux/reboot.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000039
Russell Kinga09e64f2008-08-05 16:14:15 +010040#include <mach/hardware.h>
Arnd Bergmanna3b292452012-08-24 15:12:11 +020041#include <linux/platform_data/video-ep93xx.h>
42#include <linux/platform_data/keypad-ep93xx.h>
43#include <linux/platform_data/spi-ep93xx.h>
Linus Walleijbd5f12a2011-09-22 08:07:00 +010044#include <mach/gpio-ep93xx.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000045
46#include <asm/mach/map.h>
47#include <asm/mach/time.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000048
Ryan Mallona05baf32012-01-11 09:29:26 +110049#include "soc.h"
Lennert Buytenheke7736d42006-03-20 17:10:13 +000050
51/*************************************************************************
52 * Static I/O mappings that are needed for all EP93xx platforms
53 *************************************************************************/
54static struct map_desc ep93xx_io_desc[] __initdata = {
55 {
56 .virtual = EP93XX_AHB_VIRT_BASE,
57 .pfn = __phys_to_pfn(EP93XX_AHB_PHYS_BASE),
58 .length = EP93XX_AHB_SIZE,
59 .type = MT_DEVICE,
60 }, {
61 .virtual = EP93XX_APB_VIRT_BASE,
62 .pfn = __phys_to_pfn(EP93XX_APB_PHYS_BASE),
63 .length = EP93XX_APB_SIZE,
64 .type = MT_DEVICE,
65 },
66};
67
68void __init ep93xx_map_io(void)
69{
70 iotable_init(ep93xx_io_desc, ARRAY_SIZE(ep93xx_io_desc));
71}
72
73
74/*************************************************************************
75 * Timer handling for EP93xx
76 *************************************************************************
77 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
78 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
79 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
80 * is free-running, and can't generate interrupts.
81 *
82 * The 508 kHz timers are ideal for use for the timer interrupt, as the
83 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
84 * bit timers (timer 1) since we don't need more than 16 bits of reload
85 * value as long as HZ >= 8.
86 *
87 * The higher clock rate of timer 4 makes it a better choice than the
88 * other timers for use in gettimeoffset(), while the fact that it can't
89 * generate interrupts means we don't have to worry about not being able
90 * to use this timer for something else. We also use timer 4 for keeping
91 * track of lost jiffies.
92 */
Hartley Sweeten1587a372010-02-23 21:45:22 +010093#define EP93XX_TIMER_REG(x) (EP93XX_TIMER_BASE + (x))
94#define EP93XX_TIMER1_LOAD EP93XX_TIMER_REG(0x00)
95#define EP93XX_TIMER1_VALUE EP93XX_TIMER_REG(0x04)
96#define EP93XX_TIMER1_CONTROL EP93XX_TIMER_REG(0x08)
97#define EP93XX_TIMER123_CONTROL_ENABLE (1 << 7)
98#define EP93XX_TIMER123_CONTROL_MODE (1 << 6)
99#define EP93XX_TIMER123_CONTROL_CLKSEL (1 << 3)
100#define EP93XX_TIMER1_CLEAR EP93XX_TIMER_REG(0x0c)
101#define EP93XX_TIMER2_LOAD EP93XX_TIMER_REG(0x20)
102#define EP93XX_TIMER2_VALUE EP93XX_TIMER_REG(0x24)
103#define EP93XX_TIMER2_CONTROL EP93XX_TIMER_REG(0x28)
104#define EP93XX_TIMER2_CLEAR EP93XX_TIMER_REG(0x2c)
105#define EP93XX_TIMER4_VALUE_LOW EP93XX_TIMER_REG(0x60)
106#define EP93XX_TIMER4_VALUE_HIGH EP93XX_TIMER_REG(0x64)
107#define EP93XX_TIMER4_VALUE_HIGH_ENABLE (1 << 8)
108#define EP93XX_TIMER3_LOAD EP93XX_TIMER_REG(0x80)
109#define EP93XX_TIMER3_VALUE EP93XX_TIMER_REG(0x84)
110#define EP93XX_TIMER3_CONTROL EP93XX_TIMER_REG(0x88)
111#define EP93XX_TIMER3_CLEAR EP93XX_TIMER_REG(0x8c)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000112
Hartley Sweeten1587a372010-02-23 21:45:22 +0100113#define EP93XX_TIMER123_CLOCK 508469
114#define EP93XX_TIMER4_CLOCK 983040
115
116#define TIMER1_RELOAD ((EP93XX_TIMER123_CLOCK / HZ) - 1)
Julia Lawallaf1057a2009-08-03 11:57:20 +0100117#define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000118
Hartley Sweeten1587a372010-02-23 21:45:22 +0100119static unsigned int last_jiffy_time;
120
Hartley Sweetend5565f72009-04-14 21:38:07 +0100121static irqreturn_t ep93xx_timer_interrupt(int irq, void *dev_id)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000122{
Hartley Sweeten1587a372010-02-23 21:45:22 +0100123 /* Writing any value clears the timer interrupt */
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000124 __raw_writel(1, EP93XX_TIMER1_CLEAR);
Hartley Sweeten1587a372010-02-23 21:45:22 +0100125
126 /* Recover lost jiffies */
Lennert Buytenhekf869afa2006-06-22 10:30:53 +0100127 while ((signed long)
128 (__raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000129 >= TIMER4_TICKS_PER_JIFFY) {
130 last_jiffy_time += TIMER4_TICKS_PER_JIFFY;
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700131 timer_tick();
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000132 }
133
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000134 return IRQ_HANDLED;
135}
136
137static struct irqaction ep93xx_timer_irq = {
138 .name = "ep93xx timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700139 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000140 .handler = ep93xx_timer_interrupt,
141};
142
Stephen Warren23c197b2012-11-08 11:51:58 -0700143static u32 ep93xx_gettimeoffset(void)
144{
145 int offset;
146
147 offset = __raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time;
148
149 /*
150 * Timer 4 is based on a 983.04 kHz reference clock,
151 * so dividing by 983040 gives the fraction of a second,
152 * so dividing by 0.983040 converts to uS.
153 * Refactor the calculation to avoid overflow.
154 * Finally, multiply by 1000 to give nS.
155 */
156 return (offset + (53 * offset / 3072)) * 1000;
157}
158
Stephen Warren6bb27d72012-11-08 12:40:59 -0700159void __init ep93xx_timer_init(void)
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000160{
Hartley Sweeten1587a372010-02-23 21:45:22 +0100161 u32 tmode = EP93XX_TIMER123_CONTROL_MODE |
162 EP93XX_TIMER123_CONTROL_CLKSEL;
163
Stephen Warren23c197b2012-11-08 11:51:58 -0700164 arch_gettimeoffset = ep93xx_gettimeoffset;
165
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000166 /* Enable periodic HZ timer. */
Hartley Sweeten1587a372010-02-23 21:45:22 +0100167 __raw_writel(tmode, EP93XX_TIMER1_CONTROL);
168 __raw_writel(TIMER1_RELOAD, EP93XX_TIMER1_LOAD);
169 __raw_writel(tmode | EP93XX_TIMER123_CONTROL_ENABLE,
170 EP93XX_TIMER1_CONTROL);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000171
172 /* Enable lost jiffy timer. */
Hartley Sweeten1587a372010-02-23 21:45:22 +0100173 __raw_writel(EP93XX_TIMER4_VALUE_HIGH_ENABLE,
174 EP93XX_TIMER4_VALUE_HIGH);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000175
176 setup_irq(IRQ_EP93XX_TIMER1, &ep93xx_timer_irq);
177}
178
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000179
180/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000181 * EP93xx IRQ handling
182 *************************************************************************/
183void __init ep93xx_init_irq(void)
184{
Hartley Sweeten53967302009-07-09 23:22:07 +0100185 vic_init(EP93XX_VIC1_BASE, 0, EP93XX_VIC1_VALID_IRQ_MASK, 0);
186 vic_init(EP93XX_VIC2_BASE, 32, EP93XX_VIC2_VALID_IRQ_MASK, 0);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000187}
188
189
190/*************************************************************************
Hartley Sweeten02239f02009-07-08 02:00:49 +0100191 * EP93xx System Controller Software Locked register handling
192 *************************************************************************/
193
194/*
195 * syscon_swlock prevents anything else from writing to the syscon
196 * block while a software locked register is being written.
197 */
198static DEFINE_SPINLOCK(syscon_swlock);
199
Ryan Mallonfbeeea52009-07-15 21:51:59 +0100200void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg)
Hartley Sweeten02239f02009-07-08 02:00:49 +0100201{
202 unsigned long flags;
203
204 spin_lock_irqsave(&syscon_swlock, flags);
205
206 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
207 __raw_writel(val, reg);
208
209 spin_unlock_irqrestore(&syscon_swlock, flags);
210}
Hartley Sweeten02239f02009-07-08 02:00:49 +0100211
212void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits)
213{
214 unsigned long flags;
215 unsigned int val;
216
217 spin_lock_irqsave(&syscon_swlock, flags);
218
219 val = __raw_readl(EP93XX_SYSCON_DEVCFG);
Hartley Sweeten02239f02009-07-08 02:00:49 +0100220 val &= ~clear_bits;
Hartley Sweetena0fb0072010-06-14 16:54:16 +0100221 val |= set_bits;
Hartley Sweeten02239f02009-07-08 02:00:49 +0100222 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
223 __raw_writel(val, EP93XX_SYSCON_DEVCFG);
224
225 spin_unlock_irqrestore(&syscon_swlock, flags);
226}
Hartley Sweeten02239f02009-07-08 02:00:49 +0100227
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/*************************************************************************
H Hartley Sweeten1e4c8842011-06-08 14:35:33 -0700244 * EP93xx GPIO
245 *************************************************************************/
246static struct resource ep93xx_gpio_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700247 DEFINE_RES_MEM(EP93XX_GPIO_PHYS_BASE, 0xcc),
H Hartley Sweeten1e4c8842011-06-08 14:35:33 -0700248};
249
250static struct platform_device ep93xx_gpio_device = {
251 .name = "gpio-ep93xx",
252 .id = -1,
253 .num_resources = ARRAY_SIZE(ep93xx_gpio_resource),
254 .resource = ep93xx_gpio_resource,
255};
256
257/*************************************************************************
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000258 * EP93xx peripheral handling
259 *************************************************************************/
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100260#define EP93XX_UART_MCR_OFFSET (0x0100)
261
262static void ep93xx_uart_set_mctrl(struct amba_device *dev,
263 void __iomem *base, unsigned int mctrl)
264{
265 unsigned int mcr;
266
267 mcr = 0;
Petr Å tetiar186dcaa2011-06-17 11:10:04 +0100268 if (mctrl & TIOCM_RTS)
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100269 mcr |= 2;
Petr Å tetiar186dcaa2011-06-17 11:10:04 +0100270 if (mctrl & TIOCM_DTR)
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100271 mcr |= 1;
272
273 __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
274}
275
276static struct amba_pl010_data ep93xx_uart_data = {
277 .set_mctrl = ep93xx_uart_set_mctrl,
278};
279
Russell King0b260512011-12-18 15:16:40 +0000280static AMBA_APB_DEVICE(uart1, "apb:uart1", 0x00041010, EP93XX_UART1_PHYS_BASE,
281 { IRQ_EP93XX_UART1 }, &ep93xx_uart_data);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100282
Russell King0b260512011-12-18 15:16:40 +0000283static AMBA_APB_DEVICE(uart2, "apb:uart2", 0x00041010, EP93XX_UART2_PHYS_BASE,
Petr Å tetiarcc3874f2013-08-29 16:28:11 +0200284 { IRQ_EP93XX_UART2 }, NULL);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100285
Russell King0b260512011-12-18 15:16:40 +0000286static AMBA_APB_DEVICE(uart3, "apb:uart3", 0x00041010, EP93XX_UART3_PHYS_BASE,
287 { IRQ_EP93XX_UART3 }, &ep93xx_uart_data);
Lennert Buytenhek41658132006-04-02 16:17:34 +0100288
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100289static struct resource ep93xx_rtc_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700290 DEFINE_RES_MEM(EP93XX_RTC_PHYS_BASE, 0x10c),
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100291};
292
Lennert Buytenhek41658132006-04-02 16:17:34 +0100293static struct platform_device ep93xx_rtc_device = {
Hartley Sweeten38f7b002009-04-15 23:18:26 +0100294 .name = "ep93xx-rtc",
295 .id = -1,
296 .num_resources = ARRAY_SIZE(ep93xx_rtc_resource),
297 .resource = ep93xx_rtc_resource,
Lennert Buytenhek41658132006-04-02 16:17:34 +0100298};
299
300
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100301static struct resource ep93xx_ohci_resources[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700302 DEFINE_RES_MEM(EP93XX_USB_PHYS_BASE, 0x1000),
303 DEFINE_RES_IRQ(IRQ_EP93XX_USB),
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100304};
305
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700306
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100307static struct platform_device ep93xx_ohci_device = {
308 .name = "ep93xx-ohci",
309 .id = -1,
310 .dev = {
Matthias Kaehlcke63890a02008-10-29 14:14:52 -0700311 .dma_mask = &ep93xx_ohci_device.dev.coherent_dma_mask,
312 .coherent_dma_mask = DMA_BIT_MASK(32),
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100313 },
314 .num_resources = ARRAY_SIZE(ep93xx_ohci_resources),
315 .resource = ep93xx_ohci_resources,
316};
317
Hartley Sweetenb370e082010-03-18 18:04:06 +0100318
319/*************************************************************************
Hartley Sweeten16bcf782010-06-10 16:19:08 +0100320 * EP93xx physmap'ed flash
321 *************************************************************************/
322static struct physmap_flash_data ep93xx_flash_data;
323
324static struct resource ep93xx_flash_resource = {
325 .flags = IORESOURCE_MEM,
326};
327
328static struct platform_device ep93xx_flash = {
329 .name = "physmap-flash",
330 .id = 0,
331 .dev = {
332 .platform_data = &ep93xx_flash_data,
333 },
334 .num_resources = 1,
335 .resource = &ep93xx_flash_resource,
336};
337
338/**
339 * ep93xx_register_flash() - Register the external flash device.
340 * @width: bank width in octets
341 * @start: resource start address
342 * @size: resource size
343 */
344void __init ep93xx_register_flash(unsigned int width,
345 resource_size_t start, resource_size_t size)
346{
347 ep93xx_flash_data.width = width;
348
349 ep93xx_flash_resource.start = start;
350 ep93xx_flash_resource.end = start + size - 1;
351
352 platform_device_register(&ep93xx_flash);
353}
354
355
356/*************************************************************************
Hartley Sweetenb370e082010-03-18 18:04:06 +0100357 * EP93xx ethernet peripheral handling
358 *************************************************************************/
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100359static struct ep93xx_eth_data ep93xx_eth_data;
360
361static struct resource ep93xx_eth_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700362 DEFINE_RES_MEM(EP93XX_ETHERNET_PHYS_BASE, 0x10000),
Ryan Mallon011b2e82012-04-12 09:11:55 +1000363 DEFINE_RES_IRQ(IRQ_EP93XX_ETHERNET),
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100364};
365
Mika Westerbergfa70cf42011-06-11 08:39:54 +0000366static u64 ep93xx_eth_dma_mask = DMA_BIT_MASK(32);
367
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100368static struct platform_device ep93xx_eth_device = {
369 .name = "ep93xx-eth",
370 .id = -1,
371 .dev = {
Mika Westerbergfa70cf42011-06-11 08:39:54 +0000372 .platform_data = &ep93xx_eth_data,
373 .coherent_dma_mask = DMA_BIT_MASK(32),
374 .dma_mask = &ep93xx_eth_dma_mask,
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100375 },
376 .num_resources = ARRAY_SIZE(ep93xx_eth_resource),
377 .resource = ep93xx_eth_resource,
378};
379
Hartley Sweetenb370e082010-03-18 18:04:06 +0100380/**
381 * ep93xx_register_eth - Register the built-in ethernet platform device.
382 * @data: platform specific ethernet configuration (__initdata)
383 * @copy_addr: flag indicating that the MAC address should be copied
384 * from the IndAd registers (as programmed by the bootloader)
385 */
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100386void __init ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr)
387{
Hartley Sweeten5b1c3c82009-07-13 19:50:10 +0100388 if (copy_addr)
389 memcpy_fromio(data->dev_addr, EP93XX_ETHERNET_BASE + 0x50, 6);
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100390
391 ep93xx_eth_data = *data;
392 platform_device_register(&ep93xx_eth_device);
393}
394
Hartley Sweeten6531a992009-10-08 00:45:00 +0100395
396/*************************************************************************
397 * EP93xx i2c peripheral handling
398 *************************************************************************/
399static struct i2c_gpio_platform_data ep93xx_i2c_data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100400
401static struct platform_device ep93xx_i2c_device = {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100402 .name = "i2c-gpio",
403 .id = 0,
404 .dev = {
405 .platform_data = &ep93xx_i2c_data,
406 },
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100407};
408
Hartley Sweetenb370e082010-03-18 18:04:06 +0100409/**
410 * ep93xx_register_i2c - Register the i2c platform device.
411 * @data: platform specific i2c-gpio configuration (__initdata)
412 * @devices: platform specific i2c bus device information (__initdata)
413 * @num: the number of devices on the i2c bus
414 */
Hartley Sweeten6531a992009-10-08 00:45:00 +0100415void __init ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
416 struct i2c_board_info *devices, int num)
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100417{
Hartley Sweeten6531a992009-10-08 00:45:00 +0100418 /*
419 * Set the EEPROM interface pin drive type control.
420 * Defines the driver type for the EECLK and EEDAT pins as either
421 * open drain, which will require an external pull-up, or a normal
422 * CMOS driver.
423 */
424 if (data->sda_is_open_drain && data->sda_pin != EP93XX_GPIO_LINE_EEDAT)
Hartley Sweeten64d68822010-01-11 19:33:16 +0100425 pr_warning("sda != EEDAT, open drain has no effect\n");
Hartley Sweeten6531a992009-10-08 00:45:00 +0100426 if (data->scl_is_open_drain && data->scl_pin != EP93XX_GPIO_LINE_EECLK)
Hartley Sweeten64d68822010-01-11 19:33:16 +0100427 pr_warning("scl != EECLK, open drain has no effect\n");
Hartley Sweeten6531a992009-10-08 00:45:00 +0100428
429 __raw_writel((data->sda_is_open_drain << 1) |
430 (data->scl_is_open_drain << 0),
431 EP93XX_GPIO_EEDRIVE);
432
433 ep93xx_i2c_data = *data;
Hartley Sweetend52a26a2008-10-16 23:57:03 +0100434 i2c_register_board_info(0, devices, num);
435 platform_device_register(&ep93xx_i2c_device);
436}
437
Mika Westerberg4fec9972010-05-11 15:34:54 +0100438/*************************************************************************
439 * EP93xx SPI peripheral handling
440 *************************************************************************/
441static struct ep93xx_spi_info ep93xx_spi_master_data;
442
443static struct resource ep93xx_spi_resources[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700444 DEFINE_RES_MEM(EP93XX_SPI_PHYS_BASE, 0x18),
445 DEFINE_RES_IRQ(IRQ_EP93XX_SSP),
Mika Westerberg4fec9972010-05-11 15:34:54 +0100446};
447
Mika Westerberg626a96d2011-05-29 13:10:06 +0300448static u64 ep93xx_spi_dma_mask = DMA_BIT_MASK(32);
449
Mika Westerberg4fec9972010-05-11 15:34:54 +0100450static struct platform_device ep93xx_spi_device = {
451 .name = "ep93xx-spi",
452 .id = 0,
453 .dev = {
Mika Westerberg626a96d2011-05-29 13:10:06 +0300454 .platform_data = &ep93xx_spi_master_data,
455 .coherent_dma_mask = DMA_BIT_MASK(32),
456 .dma_mask = &ep93xx_spi_dma_mask,
Mika Westerberg4fec9972010-05-11 15:34:54 +0100457 },
458 .num_resources = ARRAY_SIZE(ep93xx_spi_resources),
459 .resource = ep93xx_spi_resources,
460};
461
462/**
463 * ep93xx_register_spi() - registers spi platform device
464 * @info: ep93xx board specific spi master info (__initdata)
465 * @devices: SPI devices to register (__initdata)
466 * @num: number of SPI devices to register
467 *
468 * This function registers platform device for the EP93xx SPI controller and
469 * also makes sure that SPI pins are muxed so that I2S is not using those pins.
470 */
471void __init ep93xx_register_spi(struct ep93xx_spi_info *info,
472 struct spi_board_info *devices, int num)
473{
474 /*
475 * When SPI is used, we need to make sure that I2S is muxed off from
476 * SPI pins.
477 */
478 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONSSP);
479
480 ep93xx_spi_master_data = *info;
481 spi_register_board_info(devices, num);
482 platform_device_register(&ep93xx_spi_device);
483}
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100484
485/*************************************************************************
486 * EP93xx LEDs
487 *************************************************************************/
H Hartley Sweetena1eacd72012-04-11 15:44:42 -0700488static const struct gpio_led ep93xx_led_pins[] __initconst = {
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100489 {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100490 .name = "platform:grled",
491 .gpio = EP93XX_GPIO_LINE_GRLED,
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100492 }, {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100493 .name = "platform:rdled",
494 .gpio = EP93XX_GPIO_LINE_RDLED,
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100495 },
496};
497
H Hartley Sweetena1eacd72012-04-11 15:44:42 -0700498static const struct gpio_led_platform_data ep93xx_led_data __initconst = {
Hartley Sweeten3aa7a9a2009-07-20 18:22:36 +0100499 .num_leds = ARRAY_SIZE(ep93xx_led_pins),
500 .leds = ep93xx_led_pins,
501};
502
Hartley Sweetenef123792009-07-29 22:41:06 +0100503/*************************************************************************
504 * EP93xx pwm peripheral handling
505 *************************************************************************/
506static struct resource ep93xx_pwm0_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700507 DEFINE_RES_MEM(EP93XX_PWM_PHYS_BASE, 0x10),
Hartley Sweetenef123792009-07-29 22:41:06 +0100508};
509
510static struct platform_device ep93xx_pwm0_device = {
511 .name = "ep93xx-pwm",
512 .id = 0,
513 .num_resources = ARRAY_SIZE(ep93xx_pwm0_resource),
514 .resource = ep93xx_pwm0_resource,
515};
516
517static struct resource ep93xx_pwm1_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700518 DEFINE_RES_MEM(EP93XX_PWM_PHYS_BASE + 0x20, 0x10),
Hartley Sweetenef123792009-07-29 22:41:06 +0100519};
520
521static struct platform_device ep93xx_pwm1_device = {
522 .name = "ep93xx-pwm",
523 .id = 1,
524 .num_resources = ARRAY_SIZE(ep93xx_pwm1_resource),
525 .resource = ep93xx_pwm1_resource,
526};
527
528void __init ep93xx_register_pwm(int pwm0, int pwm1)
529{
530 if (pwm0)
531 platform_device_register(&ep93xx_pwm0_device);
532
533 /* NOTE: EP9307 does not have PWMOUT1 (pin EGPIO14) */
534 if (pwm1)
535 platform_device_register(&ep93xx_pwm1_device);
536}
537
538int ep93xx_pwm_acquire_gpio(struct platform_device *pdev)
539{
540 int err;
541
542 if (pdev->id == 0) {
543 err = 0;
544 } else if (pdev->id == 1) {
545 err = gpio_request(EP93XX_GPIO_LINE_EGPIO14,
546 dev_name(&pdev->dev));
547 if (err)
548 return err;
549 err = gpio_direction_output(EP93XX_GPIO_LINE_EGPIO14, 0);
550 if (err)
551 goto fail;
552
553 /* PWM 1 output on EGPIO[14] */
554 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_PONG);
555 } else {
556 err = -ENODEV;
557 }
558
559 return err;
560
561fail:
562 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
563 return err;
564}
565EXPORT_SYMBOL(ep93xx_pwm_acquire_gpio);
566
567void ep93xx_pwm_release_gpio(struct platform_device *pdev)
568{
569 if (pdev->id == 1) {
570 gpio_direction_input(EP93XX_GPIO_LINE_EGPIO14);
571 gpio_free(EP93XX_GPIO_LINE_EGPIO14);
572
573 /* EGPIO[14] used for GPIO */
574 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_PONG);
575 }
576}
577EXPORT_SYMBOL(ep93xx_pwm_release_gpio);
578
579
Ryan Mallonc6012182009-09-22 16:47:09 -0700580/*************************************************************************
581 * EP93xx video peripheral handling
582 *************************************************************************/
583static struct ep93xxfb_mach_info ep93xxfb_data;
584
585static struct resource ep93xx_fb_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700586 DEFINE_RES_MEM(EP93XX_RASTER_PHYS_BASE, 0x800),
Ryan Mallonc6012182009-09-22 16:47:09 -0700587};
588
589static struct platform_device ep93xx_fb_device = {
590 .name = "ep93xx-fb",
591 .id = -1,
592 .dev = {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100593 .platform_data = &ep93xxfb_data,
Ryan Mallonc6012182009-09-22 16:47:09 -0700594 .coherent_dma_mask = DMA_BIT_MASK(32),
595 .dma_mask = &ep93xx_fb_device.dev.coherent_dma_mask,
596 },
597 .num_resources = ARRAY_SIZE(ep93xx_fb_resource),
598 .resource = ep93xx_fb_resource,
599};
600
Ryan Mallon0fd19582012-01-22 20:31:32 +1100601/* The backlight use a single register in the framebuffer's register space */
602#define EP93XX_RASTER_REG_BRIGHTNESS 0x20
603
604static struct resource ep93xx_bl_resources[] = {
605 DEFINE_RES_MEM(EP93XX_RASTER_PHYS_BASE +
606 EP93XX_RASTER_REG_BRIGHTNESS, 0x04),
607};
608
Hartley Sweeten6ea4b742010-06-09 21:15:12 +0100609static struct platform_device ep93xx_bl_device = {
610 .name = "ep93xx-bl",
611 .id = -1,
Ryan Mallon0fd19582012-01-22 20:31:32 +1100612 .num_resources = ARRAY_SIZE(ep93xx_bl_resources),
613 .resource = ep93xx_bl_resources,
Hartley Sweeten6ea4b742010-06-09 21:15:12 +0100614};
615
Hartley Sweetenb370e082010-03-18 18:04:06 +0100616/**
617 * ep93xx_register_fb - Register the framebuffer platform device.
618 * @data: platform specific framebuffer configuration (__initdata)
619 */
Ryan Mallonc6012182009-09-22 16:47:09 -0700620void __init ep93xx_register_fb(struct ep93xxfb_mach_info *data)
621{
622 ep93xxfb_data = *data;
623 platform_device_register(&ep93xx_fb_device);
Hartley Sweeten6ea4b742010-06-09 21:15:12 +0100624 platform_device_register(&ep93xx_bl_device);
Ryan Mallonc6012182009-09-22 16:47:09 -0700625}
626
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100627
628/*************************************************************************
629 * EP93xx matrix keypad peripheral handling
630 *************************************************************************/
Hartley Sweetenb370e082010-03-18 18:04:06 +0100631static struct ep93xx_keypad_platform_data ep93xx_keypad_data;
632
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100633static struct resource ep93xx_keypad_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700634 DEFINE_RES_MEM(EP93XX_KEY_MATRIX_PHYS_BASE, 0x0c),
635 DEFINE_RES_IRQ(IRQ_EP93XX_KEY),
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100636};
637
638static struct platform_device ep93xx_keypad_device = {
Hartley Sweetenb370e082010-03-18 18:04:06 +0100639 .name = "ep93xx-keypad",
640 .id = -1,
641 .dev = {
642 .platform_data = &ep93xx_keypad_data,
643 },
644 .num_resources = ARRAY_SIZE(ep93xx_keypad_resource),
645 .resource = ep93xx_keypad_resource,
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100646};
647
Hartley Sweetenb370e082010-03-18 18:04:06 +0100648/**
649 * ep93xx_register_keypad - Register the keypad platform device.
650 * @data: platform specific keypad configuration (__initdata)
651 */
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100652void __init ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data)
653{
Hartley Sweetenb370e082010-03-18 18:04:06 +0100654 ep93xx_keypad_data = *data;
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100655 platform_device_register(&ep93xx_keypad_device);
656}
657
658int ep93xx_keypad_acquire_gpio(struct platform_device *pdev)
659{
660 int err;
661 int i;
662
663 for (i = 0; i < 8; i++) {
664 err = gpio_request(EP93XX_GPIO_LINE_C(i), dev_name(&pdev->dev));
665 if (err)
666 goto fail_gpio_c;
667 err = gpio_request(EP93XX_GPIO_LINE_D(i), dev_name(&pdev->dev));
668 if (err)
669 goto fail_gpio_d;
670 }
671
672 /* Enable the keypad controller; GPIO ports C and D used for keypad */
673 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_KEYS |
674 EP93XX_SYSCON_DEVCFG_GONK);
675
676 return 0;
677
678fail_gpio_d:
679 gpio_free(EP93XX_GPIO_LINE_C(i));
680fail_gpio_c:
Rafal Prylowski5528a842012-04-05 13:44:07 +0200681 for (--i; i >= 0; --i) {
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100682 gpio_free(EP93XX_GPIO_LINE_C(i));
683 gpio_free(EP93XX_GPIO_LINE_D(i));
684 }
685 return err;
686}
687EXPORT_SYMBOL(ep93xx_keypad_acquire_gpio);
688
689void ep93xx_keypad_release_gpio(struct platform_device *pdev)
690{
691 int i;
692
693 for (i = 0; i < 8; i++) {
694 gpio_free(EP93XX_GPIO_LINE_C(i));
695 gpio_free(EP93XX_GPIO_LINE_D(i));
696 }
697
698 /* Disable the keypad controller; GPIO ports C and D used for GPIO */
699 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS |
700 EP93XX_SYSCON_DEVCFG_GONK);
701}
702EXPORT_SYMBOL(ep93xx_keypad_release_gpio);
703
Ryan Malloned67ea82010-06-08 22:01:10 +1200704/*************************************************************************
705 * EP93xx I2S audio peripheral handling
706 *************************************************************************/
707static struct resource ep93xx_i2s_resource[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700708 DEFINE_RES_MEM(EP93XX_I2S_PHYS_BASE, 0x100),
Ryan Malloned67ea82010-06-08 22:01:10 +1200709};
710
711static struct platform_device ep93xx_i2s_device = {
712 .name = "ep93xx-i2s",
713 .id = -1,
714 .num_resources = ARRAY_SIZE(ep93xx_i2s_resource),
715 .resource = ep93xx_i2s_resource,
716};
717
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000718static struct platform_device ep93xx_pcm_device = {
719 .name = "ep93xx-pcm-audio",
720 .id = -1,
721};
722
Ryan Malloned67ea82010-06-08 22:01:10 +1200723void __init ep93xx_register_i2s(void)
724{
725 platform_device_register(&ep93xx_i2s_device);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000726 platform_device_register(&ep93xx_pcm_device);
Ryan Malloned67ea82010-06-08 22:01:10 +1200727}
728
729#define EP93XX_SYSCON_DEVCFG_I2S_MASK (EP93XX_SYSCON_DEVCFG_I2SONSSP | \
730 EP93XX_SYSCON_DEVCFG_I2SONAC97)
731
732#define EP93XX_I2SCLKDIV_MASK (EP93XX_SYSCON_I2SCLKDIV_ORIDE | \
733 EP93XX_SYSCON_I2SCLKDIV_SPOL)
734
Ryan Mallonf15855b2012-01-11 11:04:42 +1100735int ep93xx_i2s_acquire(void)
Ryan Malloned67ea82010-06-08 22:01:10 +1200736{
737 unsigned val;
738
Ryan Mallonf15855b2012-01-11 11:04:42 +1100739 ep93xx_devcfg_set_clear(EP93XX_SYSCON_DEVCFG_I2SONAC97,
740 EP93XX_SYSCON_DEVCFG_I2S_MASK);
Ryan Malloned67ea82010-06-08 22:01:10 +1200741
742 /*
743 * This is potentially racy with the clock api for i2s_mclk, sclk and
744 * lrclk. Since the i2s driver is the only user of those clocks we
745 * rely on it to prevent parallel use of this function and the
746 * clock api for the i2s clocks.
747 */
748 val = __raw_readl(EP93XX_SYSCON_I2SCLKDIV);
749 val &= ~EP93XX_I2SCLKDIV_MASK;
Ryan Mallonf15855b2012-01-11 11:04:42 +1100750 val |= EP93XX_SYSCON_I2SCLKDIV_ORIDE | EP93XX_SYSCON_I2SCLKDIV_SPOL;
Ryan Malloned67ea82010-06-08 22:01:10 +1200751 ep93xx_syscon_swlocked_write(val, EP93XX_SYSCON_I2SCLKDIV);
752
753 return 0;
754}
755EXPORT_SYMBOL(ep93xx_i2s_acquire);
756
757void ep93xx_i2s_release(void)
758{
759 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2S_MASK);
760}
761EXPORT_SYMBOL(ep93xx_i2s_release);
Hartley Sweeten12f56c62009-10-28 21:04:46 +0100762
Mika Westerberg534bc7f2010-10-14 17:49:07 +0300763/*************************************************************************
764 * EP93xx AC97 audio peripheral handling
765 *************************************************************************/
766static struct resource ep93xx_ac97_resources[] = {
H Hartley Sweetenede55aa2012-03-21 11:35:49 -0700767 DEFINE_RES_MEM(EP93XX_AAC_PHYS_BASE, 0xac),
768 DEFINE_RES_IRQ(IRQ_EP93XX_AACINTR),
Mika Westerberg534bc7f2010-10-14 17:49:07 +0300769};
770
771static struct platform_device ep93xx_ac97_device = {
772 .name = "ep93xx-ac97",
773 .id = -1,
774 .num_resources = ARRAY_SIZE(ep93xx_ac97_resources),
775 .resource = ep93xx_ac97_resources,
776};
777
778void __init ep93xx_register_ac97(void)
779{
780 /*
781 * Make sure that the AC97 pins are not used by I2S.
782 */
783 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONAC97);
784
785 platform_device_register(&ep93xx_ac97_device);
786 platform_device_register(&ep93xx_pcm_device);
787}
788
H Hartley Sweeten73303d12012-01-22 20:01:16 +1100789/*************************************************************************
790 * EP93xx Watchdog
791 *************************************************************************/
792static struct resource ep93xx_wdt_resources[] = {
793 DEFINE_RES_MEM(EP93XX_WATCHDOG_PHYS_BASE, 0x08),
794};
795
796static struct platform_device ep93xx_wdt_device = {
797 .name = "ep93xx-wdt",
798 .id = -1,
799 .num_resources = ARRAY_SIZE(ep93xx_wdt_resources),
800 .resource = ep93xx_wdt_resources,
801};
802
Rafal Prylowskieb774a02012-04-12 14:14:12 +0200803/*************************************************************************
804 * EP93xx IDE
805 *************************************************************************/
806static struct resource ep93xx_ide_resources[] = {
807 DEFINE_RES_MEM(EP93XX_IDE_PHYS_BASE, 0x38),
808 DEFINE_RES_IRQ(IRQ_EP93XX_EXT3),
809};
810
811static struct platform_device ep93xx_ide_device = {
812 .name = "ep93xx-ide",
813 .id = -1,
814 .dev = {
815 .dma_mask = &ep93xx_ide_device.dev.coherent_dma_mask,
816 .coherent_dma_mask = DMA_BIT_MASK(32),
817 },
818 .num_resources = ARRAY_SIZE(ep93xx_ide_resources),
819 .resource = ep93xx_ide_resources,
820};
821
822void __init ep93xx_register_ide(void)
823{
824 platform_device_register(&ep93xx_ide_device);
825}
826
827int ep93xx_ide_acquire_gpio(struct platform_device *pdev)
828{
829 int err;
830 int i;
831
832 err = gpio_request(EP93XX_GPIO_LINE_EGPIO2, dev_name(&pdev->dev));
833 if (err)
834 return err;
835 err = gpio_request(EP93XX_GPIO_LINE_EGPIO15, dev_name(&pdev->dev));
836 if (err)
837 goto fail_egpio15;
838 for (i = 2; i < 8; i++) {
839 err = gpio_request(EP93XX_GPIO_LINE_E(i), dev_name(&pdev->dev));
840 if (err)
841 goto fail_gpio_e;
842 }
843 for (i = 4; i < 8; i++) {
844 err = gpio_request(EP93XX_GPIO_LINE_G(i), dev_name(&pdev->dev));
845 if (err)
846 goto fail_gpio_g;
847 }
848 for (i = 0; i < 8; i++) {
849 err = gpio_request(EP93XX_GPIO_LINE_H(i), dev_name(&pdev->dev));
850 if (err)
851 goto fail_gpio_h;
852 }
853
854 /* GPIO ports E[7:2], G[7:4] and H used by IDE */
855 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_EONIDE |
856 EP93XX_SYSCON_DEVCFG_GONIDE |
857 EP93XX_SYSCON_DEVCFG_HONIDE);
858 return 0;
859
860fail_gpio_h:
861 for (--i; i >= 0; --i)
862 gpio_free(EP93XX_GPIO_LINE_H(i));
863 i = 8;
864fail_gpio_g:
865 for (--i; i >= 4; --i)
866 gpio_free(EP93XX_GPIO_LINE_G(i));
867 i = 8;
868fail_gpio_e:
869 for (--i; i >= 2; --i)
870 gpio_free(EP93XX_GPIO_LINE_E(i));
871 gpio_free(EP93XX_GPIO_LINE_EGPIO15);
872fail_egpio15:
873 gpio_free(EP93XX_GPIO_LINE_EGPIO2);
874 return err;
875}
876EXPORT_SYMBOL(ep93xx_ide_acquire_gpio);
877
878void ep93xx_ide_release_gpio(struct platform_device *pdev)
879{
880 int i;
881
882 for (i = 2; i < 8; i++)
883 gpio_free(EP93XX_GPIO_LINE_E(i));
884 for (i = 4; i < 8; i++)
885 gpio_free(EP93XX_GPIO_LINE_G(i));
886 for (i = 0; i < 8; i++)
887 gpio_free(EP93XX_GPIO_LINE_H(i));
888 gpio_free(EP93XX_GPIO_LINE_EGPIO15);
889 gpio_free(EP93XX_GPIO_LINE_EGPIO2);
890
891
892 /* GPIO ports E[7:2], G[7:4] and H used by GPIO */
893 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_EONIDE |
894 EP93XX_SYSCON_DEVCFG_GONIDE |
895 EP93XX_SYSCON_DEVCFG_HONIDE);
896}
897EXPORT_SYMBOL(ep93xx_ide_release_gpio);
898
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000899void __init ep93xx_init_devices(void)
900{
Hartley Sweeten02239f02009-07-08 02:00:49 +0100901 /* Disallow access to MaverickCrunch initially */
902 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA);
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100903
Ryan Mallon08932d82012-01-11 09:58:30 +1100904 /* Default all ports to GPIO */
905 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS |
906 EP93XX_SYSCON_DEVCFG_GONK |
907 EP93XX_SYSCON_DEVCFG_EONIDE |
908 EP93XX_SYSCON_DEVCFG_GONIDE |
909 EP93XX_SYSCON_DEVCFG_HONIDE);
910
H Hartley Sweeten1e4c8842011-06-08 14:35:33 -0700911 /* Get the GPIO working early, other devices need it */
912 platform_device_register(&ep93xx_gpio_device);
Ryan Mallonb6850042008-04-16 02:56:35 +0100913
Lennert Buytenhekaee85fe2006-03-26 23:16:39 +0100914 amba_device_register(&uart1_device, &iomem_resource);
915 amba_device_register(&uart2_device, &iomem_resource);
916 amba_device_register(&uart3_device, &iomem_resource);
Lennert Buytenhek41658132006-04-02 16:17:34 +0100917
918 platform_device_register(&ep93xx_rtc_device);
Lennert Buytenhek1f64eb32006-06-24 10:33:03 +0100919 platform_device_register(&ep93xx_ohci_device);
H Hartley Sweeten73303d12012-01-22 20:01:16 +1100920 platform_device_register(&ep93xx_wdt_device);
H Hartley Sweetena1eacd72012-04-11 15:44:42 -0700921
922 gpio_led_register_device(-1, &ep93xx_led_data);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000923}
Russell King32751662011-11-05 09:54:14 +0000924
Robin Holt7b6d8642013-07-08 16:01:40 -0700925void ep93xx_restart(enum reboot_mode mode, const char *cmd)
Russell King32751662011-11-05 09:54:14 +0000926{
927 /*
928 * Set then clear the SWRST bit to initiate a software reset
929 */
930 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_SWRST);
931 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_SWRST);
932
933 while (1)
934 ;
935}
Shawn Guoc9142832012-04-26 10:05:15 +0800936
937void __init ep93xx_init_late(void)
938{
939 crunch_init();
940}