Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 1 | /* |
| 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 Riedel | 3c9a071 | 2007-11-26 18:49:08 +0100 | [diff] [blame] | 6 | * Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org> |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 7 | * |
| 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 Sweeten | 64d6882 | 2010-01-11 19:33:16 +0100 | [diff] [blame] | 17 | #define pr_fmt(fmt) "ep93xx " KBUILD_MODNAME ": " fmt |
| 18 | |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 19 | #include <linux/kernel.h> |
| 20 | #include <linux/init.h> |
Hartley Sweeten | 583ddaf | 2009-07-06 17:39:50 +0100 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 22 | #include <linux/interrupt.h> |
Matthias Kaehlcke | 63890a0 | 2008-10-29 14:14:52 -0700 | [diff] [blame] | 23 | #include <linux/dma-mapping.h> |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 24 | #include <linux/timex.h> |
Hartley Sweeten | 6bd4b38 | 2010-02-18 18:16:11 +0100 | [diff] [blame] | 25 | #include <linux/irq.h> |
Hartley Sweeten | 583ddaf | 2009-07-06 17:39:50 +0100 | [diff] [blame] | 26 | #include <linux/io.h> |
| 27 | #include <linux/gpio.h> |
Hartley Sweeten | 3aa7a9a | 2009-07-20 18:22:36 +0100 | [diff] [blame] | 28 | #include <linux/leds.h> |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 29 | #include <linux/termios.h> |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 30 | #include <linux/amba/bus.h> |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 31 | #include <linux/amba/serial.h> |
Hartley Sweeten | 16bcf78 | 2010-06-10 16:19:08 +0100 | [diff] [blame] | 32 | #include <linux/mtd/physmap.h> |
Hartley Sweeten | d52a26a | 2008-10-16 23:57:03 +0100 | [diff] [blame] | 33 | #include <linux/i2c.h> |
| 34 | #include <linux/i2c-gpio.h> |
Mika Westerberg | 4fec997 | 2010-05-11 15:34:54 +0100 | [diff] [blame] | 35 | #include <linux/spi/spi.h> |
Paul Gortmaker | dc28094 | 2011-07-31 16:17:29 -0400 | [diff] [blame] | 36 | #include <linux/export.h> |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 37 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 38 | #include <mach/hardware.h> |
Ryan Mallon | c601218 | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 39 | #include <mach/fb.h> |
Hartley Sweeten | 12f56c6 | 2009-10-28 21:04:46 +0100 | [diff] [blame] | 40 | #include <mach/ep93xx_keypad.h> |
Mika Westerberg | 4fec997 | 2010-05-11 15:34:54 +0100 | [diff] [blame] | 41 | #include <mach/ep93xx_spi.h> |
Linus Walleij | bd5f12a | 2011-09-22 08:07:00 +0100 | [diff] [blame] | 42 | #include <mach/gpio-ep93xx.h> |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 43 | |
| 44 | #include <asm/mach/map.h> |
| 45 | #include <asm/mach/time.h> |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 46 | |
| 47 | #include <asm/hardware/vic.h> |
| 48 | |
Ryan Mallon | a05baf3 | 2012-01-11 09:29:26 +1100 | [diff] [blame^] | 49 | #include "soc.h" |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 50 | |
| 51 | /************************************************************************* |
| 52 | * Static I/O mappings that are needed for all EP93xx platforms |
| 53 | *************************************************************************/ |
| 54 | static 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 | |
| 68 | void __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 Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 93 | #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 Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 112 | |
Hartley Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 113 | #define EP93XX_TIMER123_CLOCK 508469 |
| 114 | #define EP93XX_TIMER4_CLOCK 983040 |
| 115 | |
| 116 | #define TIMER1_RELOAD ((EP93XX_TIMER123_CLOCK / HZ) - 1) |
Julia Lawall | af1057a | 2009-08-03 11:57:20 +0100 | [diff] [blame] | 117 | #define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ) |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 118 | |
Hartley Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 119 | static unsigned int last_jiffy_time; |
| 120 | |
Hartley Sweeten | d5565f7 | 2009-04-14 21:38:07 +0100 | [diff] [blame] | 121 | static irqreturn_t ep93xx_timer_interrupt(int irq, void *dev_id) |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 122 | { |
Hartley Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 123 | /* Writing any value clears the timer interrupt */ |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 124 | __raw_writel(1, EP93XX_TIMER1_CLEAR); |
Hartley Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 125 | |
| 126 | /* Recover lost jiffies */ |
Lennert Buytenhek | f869afa | 2006-06-22 10:30:53 +0100 | [diff] [blame] | 127 | while ((signed long) |
| 128 | (__raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time) |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 129 | >= TIMER4_TICKS_PER_JIFFY) { |
| 130 | last_jiffy_time += TIMER4_TICKS_PER_JIFFY; |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 131 | timer_tick(); |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 134 | return IRQ_HANDLED; |
| 135 | } |
| 136 | |
| 137 | static struct irqaction ep93xx_timer_irq = { |
| 138 | .name = "ep93xx timer", |
Bernhard Walle | b30faba | 2007-05-08 00:35:39 -0700 | [diff] [blame] | 139 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 140 | .handler = ep93xx_timer_interrupt, |
| 141 | }; |
| 142 | |
| 143 | static void __init ep93xx_timer_init(void) |
| 144 | { |
Hartley Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 145 | u32 tmode = EP93XX_TIMER123_CONTROL_MODE | |
| 146 | EP93XX_TIMER123_CONTROL_CLKSEL; |
| 147 | |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 148 | /* Enable periodic HZ timer. */ |
Hartley Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 149 | __raw_writel(tmode, EP93XX_TIMER1_CONTROL); |
| 150 | __raw_writel(TIMER1_RELOAD, EP93XX_TIMER1_LOAD); |
| 151 | __raw_writel(tmode | EP93XX_TIMER123_CONTROL_ENABLE, |
| 152 | EP93XX_TIMER1_CONTROL); |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 153 | |
| 154 | /* Enable lost jiffy timer. */ |
Hartley Sweeten | 1587a37 | 2010-02-23 21:45:22 +0100 | [diff] [blame] | 155 | __raw_writel(EP93XX_TIMER4_VALUE_HIGH_ENABLE, |
| 156 | EP93XX_TIMER4_VALUE_HIGH); |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 157 | |
| 158 | setup_irq(IRQ_EP93XX_TIMER1, &ep93xx_timer_irq); |
| 159 | } |
| 160 | |
| 161 | static unsigned long ep93xx_gettimeoffset(void) |
| 162 | { |
| 163 | int offset; |
| 164 | |
| 165 | offset = __raw_readl(EP93XX_TIMER4_VALUE_LOW) - last_jiffy_time; |
| 166 | |
| 167 | /* Calculate (1000000 / 983040) * offset. */ |
| 168 | return offset + (53 * offset / 3072); |
| 169 | } |
| 170 | |
| 171 | struct sys_timer ep93xx_timer = { |
| 172 | .init = ep93xx_timer_init, |
| 173 | .offset = ep93xx_gettimeoffset, |
| 174 | }; |
| 175 | |
| 176 | |
| 177 | /************************************************************************* |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 178 | * EP93xx IRQ handling |
| 179 | *************************************************************************/ |
| 180 | void __init ep93xx_init_irq(void) |
| 181 | { |
Hartley Sweeten | 5396730 | 2009-07-09 23:22:07 +0100 | [diff] [blame] | 182 | vic_init(EP93XX_VIC1_BASE, 0, EP93XX_VIC1_VALID_IRQ_MASK, 0); |
| 183 | vic_init(EP93XX_VIC2_BASE, 32, EP93XX_VIC2_VALID_IRQ_MASK, 0); |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | |
| 187 | /************************************************************************* |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 188 | * EP93xx System Controller Software Locked register handling |
| 189 | *************************************************************************/ |
| 190 | |
| 191 | /* |
| 192 | * syscon_swlock prevents anything else from writing to the syscon |
| 193 | * block while a software locked register is being written. |
| 194 | */ |
| 195 | static DEFINE_SPINLOCK(syscon_swlock); |
| 196 | |
Ryan Mallon | fbeeea5 | 2009-07-15 21:51:59 +0100 | [diff] [blame] | 197 | void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg) |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 198 | { |
| 199 | unsigned long flags; |
| 200 | |
| 201 | spin_lock_irqsave(&syscon_swlock, flags); |
| 202 | |
| 203 | __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK); |
| 204 | __raw_writel(val, reg); |
| 205 | |
| 206 | spin_unlock_irqrestore(&syscon_swlock, flags); |
| 207 | } |
| 208 | EXPORT_SYMBOL(ep93xx_syscon_swlocked_write); |
| 209 | |
| 210 | void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits) |
| 211 | { |
| 212 | unsigned long flags; |
| 213 | unsigned int val; |
| 214 | |
| 215 | spin_lock_irqsave(&syscon_swlock, flags); |
| 216 | |
| 217 | val = __raw_readl(EP93XX_SYSCON_DEVCFG); |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 218 | val &= ~clear_bits; |
Hartley Sweeten | a0fb007 | 2010-06-14 16:54:16 +0100 | [diff] [blame] | 219 | val |= set_bits; |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 220 | __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK); |
| 221 | __raw_writel(val, EP93XX_SYSCON_DEVCFG); |
| 222 | |
| 223 | spin_unlock_irqrestore(&syscon_swlock, flags); |
| 224 | } |
| 225 | EXPORT_SYMBOL(ep93xx_devcfg_set_clear); |
| 226 | |
Mika Westerberg | 99e6a23 | 2010-03-27 12:05:14 +0100 | [diff] [blame] | 227 | /** |
| 228 | * ep93xx_chip_revision() - returns the EP93xx chip revision |
| 229 | * |
| 230 | * See <mach/platform.h> for more information. |
| 231 | */ |
| 232 | unsigned int ep93xx_chip_revision(void) |
| 233 | { |
| 234 | unsigned int v; |
| 235 | |
| 236 | v = __raw_readl(EP93XX_SYSCON_SYSCFG); |
| 237 | v &= EP93XX_SYSCON_SYSCFG_REV_MASK; |
| 238 | v >>= EP93XX_SYSCON_SYSCFG_REV_SHIFT; |
| 239 | return v; |
| 240 | } |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 241 | |
| 242 | /************************************************************************* |
H Hartley Sweeten | 1e4c884 | 2011-06-08 14:35:33 -0700 | [diff] [blame] | 243 | * EP93xx GPIO |
| 244 | *************************************************************************/ |
| 245 | static struct resource ep93xx_gpio_resource[] = { |
| 246 | { |
| 247 | .start = EP93XX_GPIO_PHYS_BASE, |
| 248 | .end = EP93XX_GPIO_PHYS_BASE + 0xcc - 1, |
| 249 | .flags = IORESOURCE_MEM, |
| 250 | }, |
| 251 | }; |
| 252 | |
| 253 | static struct platform_device ep93xx_gpio_device = { |
| 254 | .name = "gpio-ep93xx", |
| 255 | .id = -1, |
| 256 | .num_resources = ARRAY_SIZE(ep93xx_gpio_resource), |
| 257 | .resource = ep93xx_gpio_resource, |
| 258 | }; |
| 259 | |
| 260 | /************************************************************************* |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 261 | * EP93xx peripheral handling |
| 262 | *************************************************************************/ |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 263 | #define EP93XX_UART_MCR_OFFSET (0x0100) |
| 264 | |
| 265 | static void ep93xx_uart_set_mctrl(struct amba_device *dev, |
| 266 | void __iomem *base, unsigned int mctrl) |
| 267 | { |
| 268 | unsigned int mcr; |
| 269 | |
| 270 | mcr = 0; |
Petr Å tetiar | 186dcaa | 2011-06-17 11:10:04 +0100 | [diff] [blame] | 271 | if (mctrl & TIOCM_RTS) |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 272 | mcr |= 2; |
Petr Å tetiar | 186dcaa | 2011-06-17 11:10:04 +0100 | [diff] [blame] | 273 | if (mctrl & TIOCM_DTR) |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 274 | mcr |= 1; |
| 275 | |
| 276 | __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET); |
| 277 | } |
| 278 | |
| 279 | static struct amba_pl010_data ep93xx_uart_data = { |
| 280 | .set_mctrl = ep93xx_uart_set_mctrl, |
| 281 | }; |
| 282 | |
| 283 | static struct amba_device uart1_device = { |
| 284 | .dev = { |
Kay Sievers | 1d559e2 | 2009-01-06 10:44:43 -0800 | [diff] [blame] | 285 | .init_name = "apb:uart1", |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 286 | .platform_data = &ep93xx_uart_data, |
| 287 | }, |
| 288 | .res = { |
| 289 | .start = EP93XX_UART1_PHYS_BASE, |
| 290 | .end = EP93XX_UART1_PHYS_BASE + 0x0fff, |
| 291 | .flags = IORESOURCE_MEM, |
| 292 | }, |
| 293 | .irq = { IRQ_EP93XX_UART1, NO_IRQ }, |
| 294 | .periphid = 0x00041010, |
| 295 | }; |
| 296 | |
| 297 | static struct amba_device uart2_device = { |
| 298 | .dev = { |
Kay Sievers | 1d559e2 | 2009-01-06 10:44:43 -0800 | [diff] [blame] | 299 | .init_name = "apb:uart2", |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 300 | .platform_data = &ep93xx_uart_data, |
| 301 | }, |
| 302 | .res = { |
| 303 | .start = EP93XX_UART2_PHYS_BASE, |
| 304 | .end = EP93XX_UART2_PHYS_BASE + 0x0fff, |
| 305 | .flags = IORESOURCE_MEM, |
| 306 | }, |
| 307 | .irq = { IRQ_EP93XX_UART2, NO_IRQ }, |
| 308 | .periphid = 0x00041010, |
| 309 | }; |
| 310 | |
| 311 | static struct amba_device uart3_device = { |
| 312 | .dev = { |
Kay Sievers | 1d559e2 | 2009-01-06 10:44:43 -0800 | [diff] [blame] | 313 | .init_name = "apb:uart3", |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 314 | .platform_data = &ep93xx_uart_data, |
| 315 | }, |
| 316 | .res = { |
| 317 | .start = EP93XX_UART3_PHYS_BASE, |
| 318 | .end = EP93XX_UART3_PHYS_BASE + 0x0fff, |
| 319 | .flags = IORESOURCE_MEM, |
| 320 | }, |
| 321 | .irq = { IRQ_EP93XX_UART3, NO_IRQ }, |
| 322 | .periphid = 0x00041010, |
| 323 | }; |
| 324 | |
Lennert Buytenhek | 4165813 | 2006-04-02 16:17:34 +0100 | [diff] [blame] | 325 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 326 | static struct resource ep93xx_rtc_resource[] = { |
| 327 | { |
| 328 | .start = EP93XX_RTC_PHYS_BASE, |
| 329 | .end = EP93XX_RTC_PHYS_BASE + 0x10c - 1, |
| 330 | .flags = IORESOURCE_MEM, |
| 331 | }, |
| 332 | }; |
| 333 | |
Lennert Buytenhek | 4165813 | 2006-04-02 16:17:34 +0100 | [diff] [blame] | 334 | static struct platform_device ep93xx_rtc_device = { |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 335 | .name = "ep93xx-rtc", |
| 336 | .id = -1, |
| 337 | .num_resources = ARRAY_SIZE(ep93xx_rtc_resource), |
| 338 | .resource = ep93xx_rtc_resource, |
Lennert Buytenhek | 4165813 | 2006-04-02 16:17:34 +0100 | [diff] [blame] | 339 | }; |
| 340 | |
| 341 | |
Lennert Buytenhek | 1f64eb3 | 2006-06-24 10:33:03 +0100 | [diff] [blame] | 342 | static struct resource ep93xx_ohci_resources[] = { |
| 343 | [0] = { |
| 344 | .start = EP93XX_USB_PHYS_BASE, |
| 345 | .end = EP93XX_USB_PHYS_BASE + 0x0fff, |
| 346 | .flags = IORESOURCE_MEM, |
| 347 | }, |
| 348 | [1] = { |
| 349 | .start = IRQ_EP93XX_USB, |
| 350 | .end = IRQ_EP93XX_USB, |
| 351 | .flags = IORESOURCE_IRQ, |
| 352 | }, |
| 353 | }; |
| 354 | |
Matthias Kaehlcke | 63890a0 | 2008-10-29 14:14:52 -0700 | [diff] [blame] | 355 | |
Lennert Buytenhek | 1f64eb3 | 2006-06-24 10:33:03 +0100 | [diff] [blame] | 356 | static struct platform_device ep93xx_ohci_device = { |
| 357 | .name = "ep93xx-ohci", |
| 358 | .id = -1, |
| 359 | .dev = { |
Matthias Kaehlcke | 63890a0 | 2008-10-29 14:14:52 -0700 | [diff] [blame] | 360 | .dma_mask = &ep93xx_ohci_device.dev.coherent_dma_mask, |
| 361 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Lennert Buytenhek | 1f64eb3 | 2006-06-24 10:33:03 +0100 | [diff] [blame] | 362 | }, |
| 363 | .num_resources = ARRAY_SIZE(ep93xx_ohci_resources), |
| 364 | .resource = ep93xx_ohci_resources, |
| 365 | }; |
| 366 | |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 367 | |
| 368 | /************************************************************************* |
Hartley Sweeten | 16bcf78 | 2010-06-10 16:19:08 +0100 | [diff] [blame] | 369 | * EP93xx physmap'ed flash |
| 370 | *************************************************************************/ |
| 371 | static struct physmap_flash_data ep93xx_flash_data; |
| 372 | |
| 373 | static struct resource ep93xx_flash_resource = { |
| 374 | .flags = IORESOURCE_MEM, |
| 375 | }; |
| 376 | |
| 377 | static struct platform_device ep93xx_flash = { |
| 378 | .name = "physmap-flash", |
| 379 | .id = 0, |
| 380 | .dev = { |
| 381 | .platform_data = &ep93xx_flash_data, |
| 382 | }, |
| 383 | .num_resources = 1, |
| 384 | .resource = &ep93xx_flash_resource, |
| 385 | }; |
| 386 | |
| 387 | /** |
| 388 | * ep93xx_register_flash() - Register the external flash device. |
| 389 | * @width: bank width in octets |
| 390 | * @start: resource start address |
| 391 | * @size: resource size |
| 392 | */ |
| 393 | void __init ep93xx_register_flash(unsigned int width, |
| 394 | resource_size_t start, resource_size_t size) |
| 395 | { |
| 396 | ep93xx_flash_data.width = width; |
| 397 | |
| 398 | ep93xx_flash_resource.start = start; |
| 399 | ep93xx_flash_resource.end = start + size - 1; |
| 400 | |
| 401 | platform_device_register(&ep93xx_flash); |
| 402 | } |
| 403 | |
| 404 | |
| 405 | /************************************************************************* |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 406 | * EP93xx ethernet peripheral handling |
| 407 | *************************************************************************/ |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 408 | static struct ep93xx_eth_data ep93xx_eth_data; |
| 409 | |
| 410 | static struct resource ep93xx_eth_resource[] = { |
| 411 | { |
| 412 | .start = EP93XX_ETHERNET_PHYS_BASE, |
| 413 | .end = EP93XX_ETHERNET_PHYS_BASE + 0xffff, |
| 414 | .flags = IORESOURCE_MEM, |
| 415 | }, { |
| 416 | .start = IRQ_EP93XX_ETHERNET, |
| 417 | .end = IRQ_EP93XX_ETHERNET, |
| 418 | .flags = IORESOURCE_IRQ, |
| 419 | } |
| 420 | }; |
| 421 | |
Mika Westerberg | fa70cf4 | 2011-06-11 08:39:54 +0000 | [diff] [blame] | 422 | static u64 ep93xx_eth_dma_mask = DMA_BIT_MASK(32); |
| 423 | |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 424 | static struct platform_device ep93xx_eth_device = { |
| 425 | .name = "ep93xx-eth", |
| 426 | .id = -1, |
| 427 | .dev = { |
Mika Westerberg | fa70cf4 | 2011-06-11 08:39:54 +0000 | [diff] [blame] | 428 | .platform_data = &ep93xx_eth_data, |
| 429 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 430 | .dma_mask = &ep93xx_eth_dma_mask, |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 431 | }, |
| 432 | .num_resources = ARRAY_SIZE(ep93xx_eth_resource), |
| 433 | .resource = ep93xx_eth_resource, |
| 434 | }; |
| 435 | |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 436 | /** |
| 437 | * ep93xx_register_eth - Register the built-in ethernet platform device. |
| 438 | * @data: platform specific ethernet configuration (__initdata) |
| 439 | * @copy_addr: flag indicating that the MAC address should be copied |
| 440 | * from the IndAd registers (as programmed by the bootloader) |
| 441 | */ |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 442 | void __init ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr) |
| 443 | { |
Hartley Sweeten | 5b1c3c8 | 2009-07-13 19:50:10 +0100 | [diff] [blame] | 444 | if (copy_addr) |
| 445 | memcpy_fromio(data->dev_addr, EP93XX_ETHERNET_BASE + 0x50, 6); |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 446 | |
| 447 | ep93xx_eth_data = *data; |
| 448 | platform_device_register(&ep93xx_eth_device); |
| 449 | } |
| 450 | |
Hartley Sweeten | 6531a99 | 2009-10-08 00:45:00 +0100 | [diff] [blame] | 451 | |
| 452 | /************************************************************************* |
| 453 | * EP93xx i2c peripheral handling |
| 454 | *************************************************************************/ |
| 455 | static struct i2c_gpio_platform_data ep93xx_i2c_data; |
Hartley Sweeten | d52a26a | 2008-10-16 23:57:03 +0100 | [diff] [blame] | 456 | |
| 457 | static struct platform_device ep93xx_i2c_device = { |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 458 | .name = "i2c-gpio", |
| 459 | .id = 0, |
| 460 | .dev = { |
| 461 | .platform_data = &ep93xx_i2c_data, |
| 462 | }, |
Hartley Sweeten | d52a26a | 2008-10-16 23:57:03 +0100 | [diff] [blame] | 463 | }; |
| 464 | |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 465 | /** |
| 466 | * ep93xx_register_i2c - Register the i2c platform device. |
| 467 | * @data: platform specific i2c-gpio configuration (__initdata) |
| 468 | * @devices: platform specific i2c bus device information (__initdata) |
| 469 | * @num: the number of devices on the i2c bus |
| 470 | */ |
Hartley Sweeten | 6531a99 | 2009-10-08 00:45:00 +0100 | [diff] [blame] | 471 | void __init ep93xx_register_i2c(struct i2c_gpio_platform_data *data, |
| 472 | struct i2c_board_info *devices, int num) |
Hartley Sweeten | d52a26a | 2008-10-16 23:57:03 +0100 | [diff] [blame] | 473 | { |
Hartley Sweeten | 6531a99 | 2009-10-08 00:45:00 +0100 | [diff] [blame] | 474 | /* |
| 475 | * Set the EEPROM interface pin drive type control. |
| 476 | * Defines the driver type for the EECLK and EEDAT pins as either |
| 477 | * open drain, which will require an external pull-up, or a normal |
| 478 | * CMOS driver. |
| 479 | */ |
| 480 | if (data->sda_is_open_drain && data->sda_pin != EP93XX_GPIO_LINE_EEDAT) |
Hartley Sweeten | 64d6882 | 2010-01-11 19:33:16 +0100 | [diff] [blame] | 481 | pr_warning("sda != EEDAT, open drain has no effect\n"); |
Hartley Sweeten | 6531a99 | 2009-10-08 00:45:00 +0100 | [diff] [blame] | 482 | if (data->scl_is_open_drain && data->scl_pin != EP93XX_GPIO_LINE_EECLK) |
Hartley Sweeten | 64d6882 | 2010-01-11 19:33:16 +0100 | [diff] [blame] | 483 | pr_warning("scl != EECLK, open drain has no effect\n"); |
Hartley Sweeten | 6531a99 | 2009-10-08 00:45:00 +0100 | [diff] [blame] | 484 | |
| 485 | __raw_writel((data->sda_is_open_drain << 1) | |
| 486 | (data->scl_is_open_drain << 0), |
| 487 | EP93XX_GPIO_EEDRIVE); |
| 488 | |
| 489 | ep93xx_i2c_data = *data; |
Hartley Sweeten | d52a26a | 2008-10-16 23:57:03 +0100 | [diff] [blame] | 490 | i2c_register_board_info(0, devices, num); |
| 491 | platform_device_register(&ep93xx_i2c_device); |
| 492 | } |
| 493 | |
Mika Westerberg | 4fec997 | 2010-05-11 15:34:54 +0100 | [diff] [blame] | 494 | /************************************************************************* |
| 495 | * EP93xx SPI peripheral handling |
| 496 | *************************************************************************/ |
| 497 | static struct ep93xx_spi_info ep93xx_spi_master_data; |
| 498 | |
| 499 | static struct resource ep93xx_spi_resources[] = { |
| 500 | { |
| 501 | .start = EP93XX_SPI_PHYS_BASE, |
| 502 | .end = EP93XX_SPI_PHYS_BASE + 0x18 - 1, |
| 503 | .flags = IORESOURCE_MEM, |
| 504 | }, |
| 505 | { |
| 506 | .start = IRQ_EP93XX_SSP, |
| 507 | .end = IRQ_EP93XX_SSP, |
| 508 | .flags = IORESOURCE_IRQ, |
| 509 | }, |
| 510 | }; |
| 511 | |
Mika Westerberg | 626a96d | 2011-05-29 13:10:06 +0300 | [diff] [blame] | 512 | static u64 ep93xx_spi_dma_mask = DMA_BIT_MASK(32); |
| 513 | |
Mika Westerberg | 4fec997 | 2010-05-11 15:34:54 +0100 | [diff] [blame] | 514 | static struct platform_device ep93xx_spi_device = { |
| 515 | .name = "ep93xx-spi", |
| 516 | .id = 0, |
| 517 | .dev = { |
Mika Westerberg | 626a96d | 2011-05-29 13:10:06 +0300 | [diff] [blame] | 518 | .platform_data = &ep93xx_spi_master_data, |
| 519 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 520 | .dma_mask = &ep93xx_spi_dma_mask, |
Mika Westerberg | 4fec997 | 2010-05-11 15:34:54 +0100 | [diff] [blame] | 521 | }, |
| 522 | .num_resources = ARRAY_SIZE(ep93xx_spi_resources), |
| 523 | .resource = ep93xx_spi_resources, |
| 524 | }; |
| 525 | |
| 526 | /** |
| 527 | * ep93xx_register_spi() - registers spi platform device |
| 528 | * @info: ep93xx board specific spi master info (__initdata) |
| 529 | * @devices: SPI devices to register (__initdata) |
| 530 | * @num: number of SPI devices to register |
| 531 | * |
| 532 | * This function registers platform device for the EP93xx SPI controller and |
| 533 | * also makes sure that SPI pins are muxed so that I2S is not using those pins. |
| 534 | */ |
| 535 | void __init ep93xx_register_spi(struct ep93xx_spi_info *info, |
| 536 | struct spi_board_info *devices, int num) |
| 537 | { |
| 538 | /* |
| 539 | * When SPI is used, we need to make sure that I2S is muxed off from |
| 540 | * SPI pins. |
| 541 | */ |
| 542 | ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONSSP); |
| 543 | |
| 544 | ep93xx_spi_master_data = *info; |
| 545 | spi_register_board_info(devices, num); |
| 546 | platform_device_register(&ep93xx_spi_device); |
| 547 | } |
Hartley Sweeten | 3aa7a9a | 2009-07-20 18:22:36 +0100 | [diff] [blame] | 548 | |
| 549 | /************************************************************************* |
| 550 | * EP93xx LEDs |
| 551 | *************************************************************************/ |
| 552 | static struct gpio_led ep93xx_led_pins[] = { |
| 553 | { |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 554 | .name = "platform:grled", |
| 555 | .gpio = EP93XX_GPIO_LINE_GRLED, |
Hartley Sweeten | 3aa7a9a | 2009-07-20 18:22:36 +0100 | [diff] [blame] | 556 | }, { |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 557 | .name = "platform:rdled", |
| 558 | .gpio = EP93XX_GPIO_LINE_RDLED, |
Hartley Sweeten | 3aa7a9a | 2009-07-20 18:22:36 +0100 | [diff] [blame] | 559 | }, |
| 560 | }; |
| 561 | |
| 562 | static struct gpio_led_platform_data ep93xx_led_data = { |
| 563 | .num_leds = ARRAY_SIZE(ep93xx_led_pins), |
| 564 | .leds = ep93xx_led_pins, |
| 565 | }; |
| 566 | |
| 567 | static struct platform_device ep93xx_leds = { |
| 568 | .name = "leds-gpio", |
| 569 | .id = -1, |
| 570 | .dev = { |
| 571 | .platform_data = &ep93xx_led_data, |
| 572 | }, |
| 573 | }; |
| 574 | |
| 575 | |
Hartley Sweeten | ef12379 | 2009-07-29 22:41:06 +0100 | [diff] [blame] | 576 | /************************************************************************* |
| 577 | * EP93xx pwm peripheral handling |
| 578 | *************************************************************************/ |
| 579 | static struct resource ep93xx_pwm0_resource[] = { |
| 580 | { |
| 581 | .start = EP93XX_PWM_PHYS_BASE, |
| 582 | .end = EP93XX_PWM_PHYS_BASE + 0x10 - 1, |
| 583 | .flags = IORESOURCE_MEM, |
| 584 | }, |
| 585 | }; |
| 586 | |
| 587 | static struct platform_device ep93xx_pwm0_device = { |
| 588 | .name = "ep93xx-pwm", |
| 589 | .id = 0, |
| 590 | .num_resources = ARRAY_SIZE(ep93xx_pwm0_resource), |
| 591 | .resource = ep93xx_pwm0_resource, |
| 592 | }; |
| 593 | |
| 594 | static struct resource ep93xx_pwm1_resource[] = { |
| 595 | { |
| 596 | .start = EP93XX_PWM_PHYS_BASE + 0x20, |
| 597 | .end = EP93XX_PWM_PHYS_BASE + 0x30 - 1, |
| 598 | .flags = IORESOURCE_MEM, |
| 599 | }, |
| 600 | }; |
| 601 | |
| 602 | static struct platform_device ep93xx_pwm1_device = { |
| 603 | .name = "ep93xx-pwm", |
| 604 | .id = 1, |
| 605 | .num_resources = ARRAY_SIZE(ep93xx_pwm1_resource), |
| 606 | .resource = ep93xx_pwm1_resource, |
| 607 | }; |
| 608 | |
| 609 | void __init ep93xx_register_pwm(int pwm0, int pwm1) |
| 610 | { |
| 611 | if (pwm0) |
| 612 | platform_device_register(&ep93xx_pwm0_device); |
| 613 | |
| 614 | /* NOTE: EP9307 does not have PWMOUT1 (pin EGPIO14) */ |
| 615 | if (pwm1) |
| 616 | platform_device_register(&ep93xx_pwm1_device); |
| 617 | } |
| 618 | |
| 619 | int ep93xx_pwm_acquire_gpio(struct platform_device *pdev) |
| 620 | { |
| 621 | int err; |
| 622 | |
| 623 | if (pdev->id == 0) { |
| 624 | err = 0; |
| 625 | } else if (pdev->id == 1) { |
| 626 | err = gpio_request(EP93XX_GPIO_LINE_EGPIO14, |
| 627 | dev_name(&pdev->dev)); |
| 628 | if (err) |
| 629 | return err; |
| 630 | err = gpio_direction_output(EP93XX_GPIO_LINE_EGPIO14, 0); |
| 631 | if (err) |
| 632 | goto fail; |
| 633 | |
| 634 | /* PWM 1 output on EGPIO[14] */ |
| 635 | ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_PONG); |
| 636 | } else { |
| 637 | err = -ENODEV; |
| 638 | } |
| 639 | |
| 640 | return err; |
| 641 | |
| 642 | fail: |
| 643 | gpio_free(EP93XX_GPIO_LINE_EGPIO14); |
| 644 | return err; |
| 645 | } |
| 646 | EXPORT_SYMBOL(ep93xx_pwm_acquire_gpio); |
| 647 | |
| 648 | void ep93xx_pwm_release_gpio(struct platform_device *pdev) |
| 649 | { |
| 650 | if (pdev->id == 1) { |
| 651 | gpio_direction_input(EP93XX_GPIO_LINE_EGPIO14); |
| 652 | gpio_free(EP93XX_GPIO_LINE_EGPIO14); |
| 653 | |
| 654 | /* EGPIO[14] used for GPIO */ |
| 655 | ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_PONG); |
| 656 | } |
| 657 | } |
| 658 | EXPORT_SYMBOL(ep93xx_pwm_release_gpio); |
| 659 | |
| 660 | |
Ryan Mallon | c601218 | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 661 | /************************************************************************* |
| 662 | * EP93xx video peripheral handling |
| 663 | *************************************************************************/ |
| 664 | static struct ep93xxfb_mach_info ep93xxfb_data; |
| 665 | |
| 666 | static struct resource ep93xx_fb_resource[] = { |
| 667 | { |
| 668 | .start = EP93XX_RASTER_PHYS_BASE, |
| 669 | .end = EP93XX_RASTER_PHYS_BASE + 0x800 - 1, |
| 670 | .flags = IORESOURCE_MEM, |
| 671 | }, |
| 672 | }; |
| 673 | |
| 674 | static struct platform_device ep93xx_fb_device = { |
| 675 | .name = "ep93xx-fb", |
| 676 | .id = -1, |
| 677 | .dev = { |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 678 | .platform_data = &ep93xxfb_data, |
Ryan Mallon | c601218 | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 679 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 680 | .dma_mask = &ep93xx_fb_device.dev.coherent_dma_mask, |
| 681 | }, |
| 682 | .num_resources = ARRAY_SIZE(ep93xx_fb_resource), |
| 683 | .resource = ep93xx_fb_resource, |
| 684 | }; |
| 685 | |
Ryan Mallon | 0fd1958 | 2012-01-22 20:31:32 +1100 | [diff] [blame] | 686 | /* The backlight use a single register in the framebuffer's register space */ |
| 687 | #define EP93XX_RASTER_REG_BRIGHTNESS 0x20 |
| 688 | |
| 689 | static struct resource ep93xx_bl_resources[] = { |
| 690 | DEFINE_RES_MEM(EP93XX_RASTER_PHYS_BASE + |
| 691 | EP93XX_RASTER_REG_BRIGHTNESS, 0x04), |
| 692 | }; |
| 693 | |
Hartley Sweeten | 6ea4b74 | 2010-06-09 21:15:12 +0100 | [diff] [blame] | 694 | static struct platform_device ep93xx_bl_device = { |
| 695 | .name = "ep93xx-bl", |
| 696 | .id = -1, |
Ryan Mallon | 0fd1958 | 2012-01-22 20:31:32 +1100 | [diff] [blame] | 697 | .num_resources = ARRAY_SIZE(ep93xx_bl_resources), |
| 698 | .resource = ep93xx_bl_resources, |
Hartley Sweeten | 6ea4b74 | 2010-06-09 21:15:12 +0100 | [diff] [blame] | 699 | }; |
| 700 | |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 701 | /** |
| 702 | * ep93xx_register_fb - Register the framebuffer platform device. |
| 703 | * @data: platform specific framebuffer configuration (__initdata) |
| 704 | */ |
Ryan Mallon | c601218 | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 705 | void __init ep93xx_register_fb(struct ep93xxfb_mach_info *data) |
| 706 | { |
| 707 | ep93xxfb_data = *data; |
| 708 | platform_device_register(&ep93xx_fb_device); |
Hartley Sweeten | 6ea4b74 | 2010-06-09 21:15:12 +0100 | [diff] [blame] | 709 | platform_device_register(&ep93xx_bl_device); |
Ryan Mallon | c601218 | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 710 | } |
| 711 | |
Hartley Sweeten | 12f56c6 | 2009-10-28 21:04:46 +0100 | [diff] [blame] | 712 | |
| 713 | /************************************************************************* |
| 714 | * EP93xx matrix keypad peripheral handling |
| 715 | *************************************************************************/ |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 716 | static struct ep93xx_keypad_platform_data ep93xx_keypad_data; |
| 717 | |
Hartley Sweeten | 12f56c6 | 2009-10-28 21:04:46 +0100 | [diff] [blame] | 718 | static struct resource ep93xx_keypad_resource[] = { |
| 719 | { |
| 720 | .start = EP93XX_KEY_MATRIX_PHYS_BASE, |
| 721 | .end = EP93XX_KEY_MATRIX_PHYS_BASE + 0x0c - 1, |
| 722 | .flags = IORESOURCE_MEM, |
| 723 | }, { |
| 724 | .start = IRQ_EP93XX_KEY, |
| 725 | .end = IRQ_EP93XX_KEY, |
| 726 | .flags = IORESOURCE_IRQ, |
| 727 | }, |
| 728 | }; |
| 729 | |
| 730 | static struct platform_device ep93xx_keypad_device = { |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 731 | .name = "ep93xx-keypad", |
| 732 | .id = -1, |
| 733 | .dev = { |
| 734 | .platform_data = &ep93xx_keypad_data, |
| 735 | }, |
| 736 | .num_resources = ARRAY_SIZE(ep93xx_keypad_resource), |
| 737 | .resource = ep93xx_keypad_resource, |
Hartley Sweeten | 12f56c6 | 2009-10-28 21:04:46 +0100 | [diff] [blame] | 738 | }; |
| 739 | |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 740 | /** |
| 741 | * ep93xx_register_keypad - Register the keypad platform device. |
| 742 | * @data: platform specific keypad configuration (__initdata) |
| 743 | */ |
Hartley Sweeten | 12f56c6 | 2009-10-28 21:04:46 +0100 | [diff] [blame] | 744 | void __init ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data) |
| 745 | { |
Hartley Sweeten | b370e08 | 2010-03-18 18:04:06 +0100 | [diff] [blame] | 746 | ep93xx_keypad_data = *data; |
Hartley Sweeten | 12f56c6 | 2009-10-28 21:04:46 +0100 | [diff] [blame] | 747 | platform_device_register(&ep93xx_keypad_device); |
| 748 | } |
| 749 | |
| 750 | int ep93xx_keypad_acquire_gpio(struct platform_device *pdev) |
| 751 | { |
| 752 | int err; |
| 753 | int i; |
| 754 | |
| 755 | for (i = 0; i < 8; i++) { |
| 756 | err = gpio_request(EP93XX_GPIO_LINE_C(i), dev_name(&pdev->dev)); |
| 757 | if (err) |
| 758 | goto fail_gpio_c; |
| 759 | err = gpio_request(EP93XX_GPIO_LINE_D(i), dev_name(&pdev->dev)); |
| 760 | if (err) |
| 761 | goto fail_gpio_d; |
| 762 | } |
| 763 | |
| 764 | /* Enable the keypad controller; GPIO ports C and D used for keypad */ |
| 765 | ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_KEYS | |
| 766 | EP93XX_SYSCON_DEVCFG_GONK); |
| 767 | |
| 768 | return 0; |
| 769 | |
| 770 | fail_gpio_d: |
| 771 | gpio_free(EP93XX_GPIO_LINE_C(i)); |
| 772 | fail_gpio_c: |
| 773 | for ( ; i >= 0; --i) { |
| 774 | gpio_free(EP93XX_GPIO_LINE_C(i)); |
| 775 | gpio_free(EP93XX_GPIO_LINE_D(i)); |
| 776 | } |
| 777 | return err; |
| 778 | } |
| 779 | EXPORT_SYMBOL(ep93xx_keypad_acquire_gpio); |
| 780 | |
| 781 | void ep93xx_keypad_release_gpio(struct platform_device *pdev) |
| 782 | { |
| 783 | int i; |
| 784 | |
| 785 | for (i = 0; i < 8; i++) { |
| 786 | gpio_free(EP93XX_GPIO_LINE_C(i)); |
| 787 | gpio_free(EP93XX_GPIO_LINE_D(i)); |
| 788 | } |
| 789 | |
| 790 | /* Disable the keypad controller; GPIO ports C and D used for GPIO */ |
| 791 | ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS | |
| 792 | EP93XX_SYSCON_DEVCFG_GONK); |
| 793 | } |
| 794 | EXPORT_SYMBOL(ep93xx_keypad_release_gpio); |
| 795 | |
Ryan Mallon | ed67ea8 | 2010-06-08 22:01:10 +1200 | [diff] [blame] | 796 | /************************************************************************* |
| 797 | * EP93xx I2S audio peripheral handling |
| 798 | *************************************************************************/ |
| 799 | static struct resource ep93xx_i2s_resource[] = { |
| 800 | { |
| 801 | .start = EP93XX_I2S_PHYS_BASE, |
| 802 | .end = EP93XX_I2S_PHYS_BASE + 0x100 - 1, |
| 803 | .flags = IORESOURCE_MEM, |
| 804 | }, |
| 805 | }; |
| 806 | |
| 807 | static struct platform_device ep93xx_i2s_device = { |
| 808 | .name = "ep93xx-i2s", |
| 809 | .id = -1, |
| 810 | .num_resources = ARRAY_SIZE(ep93xx_i2s_resource), |
| 811 | .resource = ep93xx_i2s_resource, |
| 812 | }; |
| 813 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 814 | static struct platform_device ep93xx_pcm_device = { |
| 815 | .name = "ep93xx-pcm-audio", |
| 816 | .id = -1, |
| 817 | }; |
| 818 | |
Ryan Mallon | ed67ea8 | 2010-06-08 22:01:10 +1200 | [diff] [blame] | 819 | void __init ep93xx_register_i2s(void) |
| 820 | { |
| 821 | platform_device_register(&ep93xx_i2s_device); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 822 | platform_device_register(&ep93xx_pcm_device); |
Ryan Mallon | ed67ea8 | 2010-06-08 22:01:10 +1200 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | #define EP93XX_SYSCON_DEVCFG_I2S_MASK (EP93XX_SYSCON_DEVCFG_I2SONSSP | \ |
| 826 | EP93XX_SYSCON_DEVCFG_I2SONAC97) |
| 827 | |
| 828 | #define EP93XX_I2SCLKDIV_MASK (EP93XX_SYSCON_I2SCLKDIV_ORIDE | \ |
| 829 | EP93XX_SYSCON_I2SCLKDIV_SPOL) |
| 830 | |
Ryan Mallon | f15855b | 2012-01-11 11:04:42 +1100 | [diff] [blame] | 831 | int ep93xx_i2s_acquire(void) |
Ryan Mallon | ed67ea8 | 2010-06-08 22:01:10 +1200 | [diff] [blame] | 832 | { |
| 833 | unsigned val; |
| 834 | |
Ryan Mallon | f15855b | 2012-01-11 11:04:42 +1100 | [diff] [blame] | 835 | ep93xx_devcfg_set_clear(EP93XX_SYSCON_DEVCFG_I2SONAC97, |
| 836 | EP93XX_SYSCON_DEVCFG_I2S_MASK); |
Ryan Mallon | ed67ea8 | 2010-06-08 22:01:10 +1200 | [diff] [blame] | 837 | |
| 838 | /* |
| 839 | * This is potentially racy with the clock api for i2s_mclk, sclk and |
| 840 | * lrclk. Since the i2s driver is the only user of those clocks we |
| 841 | * rely on it to prevent parallel use of this function and the |
| 842 | * clock api for the i2s clocks. |
| 843 | */ |
| 844 | val = __raw_readl(EP93XX_SYSCON_I2SCLKDIV); |
| 845 | val &= ~EP93XX_I2SCLKDIV_MASK; |
Ryan Mallon | f15855b | 2012-01-11 11:04:42 +1100 | [diff] [blame] | 846 | val |= EP93XX_SYSCON_I2SCLKDIV_ORIDE | EP93XX_SYSCON_I2SCLKDIV_SPOL; |
Ryan Mallon | ed67ea8 | 2010-06-08 22:01:10 +1200 | [diff] [blame] | 847 | ep93xx_syscon_swlocked_write(val, EP93XX_SYSCON_I2SCLKDIV); |
| 848 | |
| 849 | return 0; |
| 850 | } |
| 851 | EXPORT_SYMBOL(ep93xx_i2s_acquire); |
| 852 | |
| 853 | void ep93xx_i2s_release(void) |
| 854 | { |
| 855 | ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2S_MASK); |
| 856 | } |
| 857 | EXPORT_SYMBOL(ep93xx_i2s_release); |
Hartley Sweeten | 12f56c6 | 2009-10-28 21:04:46 +0100 | [diff] [blame] | 858 | |
Mika Westerberg | 534bc7f | 2010-10-14 17:49:07 +0300 | [diff] [blame] | 859 | /************************************************************************* |
| 860 | * EP93xx AC97 audio peripheral handling |
| 861 | *************************************************************************/ |
| 862 | static struct resource ep93xx_ac97_resources[] = { |
| 863 | { |
| 864 | .start = EP93XX_AAC_PHYS_BASE, |
Mika Westerberg | ec11594 | 2011-02-05 09:52:33 +0100 | [diff] [blame] | 865 | .end = EP93XX_AAC_PHYS_BASE + 0xac - 1, |
Mika Westerberg | 534bc7f | 2010-10-14 17:49:07 +0300 | [diff] [blame] | 866 | .flags = IORESOURCE_MEM, |
| 867 | }, |
| 868 | { |
| 869 | .start = IRQ_EP93XX_AACINTR, |
| 870 | .end = IRQ_EP93XX_AACINTR, |
| 871 | .flags = IORESOURCE_IRQ, |
| 872 | }, |
| 873 | }; |
| 874 | |
| 875 | static struct platform_device ep93xx_ac97_device = { |
| 876 | .name = "ep93xx-ac97", |
| 877 | .id = -1, |
| 878 | .num_resources = ARRAY_SIZE(ep93xx_ac97_resources), |
| 879 | .resource = ep93xx_ac97_resources, |
| 880 | }; |
| 881 | |
| 882 | void __init ep93xx_register_ac97(void) |
| 883 | { |
| 884 | /* |
| 885 | * Make sure that the AC97 pins are not used by I2S. |
| 886 | */ |
| 887 | ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONAC97); |
| 888 | |
| 889 | platform_device_register(&ep93xx_ac97_device); |
| 890 | platform_device_register(&ep93xx_pcm_device); |
| 891 | } |
| 892 | |
H Hartley Sweeten | 73303d1 | 2012-01-22 20:01:16 +1100 | [diff] [blame] | 893 | /************************************************************************* |
| 894 | * EP93xx Watchdog |
| 895 | *************************************************************************/ |
| 896 | static struct resource ep93xx_wdt_resources[] = { |
| 897 | DEFINE_RES_MEM(EP93XX_WATCHDOG_PHYS_BASE, 0x08), |
| 898 | }; |
| 899 | |
| 900 | static struct platform_device ep93xx_wdt_device = { |
| 901 | .name = "ep93xx-wdt", |
| 902 | .id = -1, |
| 903 | .num_resources = ARRAY_SIZE(ep93xx_wdt_resources), |
| 904 | .resource = ep93xx_wdt_resources, |
| 905 | }; |
| 906 | |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 907 | void __init ep93xx_init_devices(void) |
| 908 | { |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 909 | /* Disallow access to MaverickCrunch initially */ |
| 910 | ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA); |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 911 | |
H Hartley Sweeten | 1e4c884 | 2011-06-08 14:35:33 -0700 | [diff] [blame] | 912 | /* Get the GPIO working early, other devices need it */ |
| 913 | platform_device_register(&ep93xx_gpio_device); |
Ryan Mallon | b685004 | 2008-04-16 02:56:35 +0100 | [diff] [blame] | 914 | |
Lennert Buytenhek | aee85fe | 2006-03-26 23:16:39 +0100 | [diff] [blame] | 915 | amba_device_register(&uart1_device, &iomem_resource); |
| 916 | amba_device_register(&uart2_device, &iomem_resource); |
| 917 | amba_device_register(&uart3_device, &iomem_resource); |
Lennert Buytenhek | 4165813 | 2006-04-02 16:17:34 +0100 | [diff] [blame] | 918 | |
| 919 | platform_device_register(&ep93xx_rtc_device); |
Lennert Buytenhek | 1f64eb3 | 2006-06-24 10:33:03 +0100 | [diff] [blame] | 920 | platform_device_register(&ep93xx_ohci_device); |
Hartley Sweeten | 3aa7a9a | 2009-07-20 18:22:36 +0100 | [diff] [blame] | 921 | platform_device_register(&ep93xx_leds); |
H Hartley Sweeten | 73303d1 | 2012-01-22 20:01:16 +1100 | [diff] [blame] | 922 | platform_device_register(&ep93xx_wdt_device); |
Lennert Buytenhek | e7736d4 | 2006-03-20 17:10:13 +0000 | [diff] [blame] | 923 | } |
Russell King | 3275166 | 2011-11-05 09:54:14 +0000 | [diff] [blame] | 924 | |
| 925 | void ep93xx_restart(char mode, const char *cmd) |
| 926 | { |
| 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 | } |