blob: acc0584377fc9e767712565f9c417ec090f06d37 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-ixp4xx/common.c
3 *
4 * Generic code shared across all IXP4XX platforms
5 *
6 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
7 *
8 * Copyright 2002 (c) Intel Corporation
9 * Copyright 2003-2004 (c) MontaVista, Software, Inc.
10 *
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/mm.h>
18#include <linux/init.h>
19#include <linux/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/tty.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010021#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/interrupt.h>
24#include <linux/bitops.h>
25#include <linux/time.h>
26#include <linux/timex.h>
Kevin Hilman84904d02006-09-22 00:58:57 +010027#include <linux/clocksource.h>
Kevin Hilmane32f1502007-03-08 20:23:59 +010028#include <linux/clockchips.h>
Russell Kingfced80c2008-09-06 12:10:45 +010029#include <linux/io.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040030#include <linux/export.h>
Richard Cochran9dde0ae2012-05-23 18:19:51 +020031#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/udc.h>
34#include <mach/hardware.h>
Rob Herringf4495882012-03-06 15:01:53 -060035#include <mach/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/pgtable.h>
38#include <asm/page.h>
39#include <asm/irq.h>
Russell King5b0d4952010-12-15 21:23:13 +000040#include <asm/sched_clock.h>
Olof Johansson86dfe442012-03-29 23:22:44 -070041#include <asm/system_misc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/mach/map.h>
44#include <asm/mach/irq.h>
45#include <asm/mach/time.h>
46
Mikael Petterssonceb69a82009-09-11 00:59:07 +020047static void __init ixp4xx_clocksource_init(void);
48static void __init ixp4xx_clockevent_init(void);
Kevin Hilmane32f1502007-03-08 20:23:59 +010049static struct clock_event_device clockevent_ixp4xx;
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +010050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*************************************************************************
52 * IXP4xx chipset I/O mapping
53 *************************************************************************/
54static struct map_desc ixp4xx_io_desc[] __initdata = {
55 { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
Arnd Bergmann13ec32f2012-09-14 20:19:40 +000056 .virtual = (unsigned long)IXP4XX_PERIPHERAL_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010057 .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 .length = IXP4XX_PERIPHERAL_REGION_SIZE,
59 .type = MT_DEVICE
60 }, { /* Expansion Bus Config Registers */
Arnd Bergmann13ec32f2012-09-14 20:19:40 +000061 .virtual = (unsigned long)IXP4XX_EXP_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010062 .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .length = IXP4XX_EXP_CFG_REGION_SIZE,
64 .type = MT_DEVICE
65 }, { /* PCI Registers */
Arnd Bergmann13ec32f2012-09-14 20:19:40 +000066 .virtual = (unsigned long)IXP4XX_PCI_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010067 .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 .length = IXP4XX_PCI_CFG_REGION_SIZE,
69 .type = MT_DEVICE
Krzysztof HaƂasaf0cdb152010-03-26 16:38:52 +010070 }, { /* Queue Manager */
71 .virtual = (unsigned long)IXP4XX_QMGR_BASE_VIRT,
72 .pfn = __phys_to_pfn(IXP4XX_QMGR_BASE_PHYS),
73 .length = IXP4XX_QMGR_REGION_SIZE,
74 .type = MT_DEVICE
Deepak Saxena5932ae32005-06-24 20:54:35 +010075 },
76#ifdef CONFIG_DEBUG_LL
77 { /* Debug UART mapping */
Arnd Bergmann13ec32f2012-09-14 20:19:40 +000078 .virtual = (unsigned long)IXP4XX_DEBUG_UART_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010079 .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS),
Deepak Saxena5932ae32005-06-24 20:54:35 +010080 .length = IXP4XX_DEBUG_UART_REGION_SIZE,
81 .type = MT_DEVICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
Deepak Saxena5932ae32005-06-24 20:54:35 +010083#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
86void __init ixp4xx_map_io(void)
87{
88 iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
89}
90
91
92/*************************************************************************
93 * IXP4xx chipset IRQ handling
94 *
95 * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
96 * (be it PCI or something else) configures that GPIO line
97 * as an IRQ.
98 **************************************************************************/
Deepak Saxenabdf82b52005-08-29 22:46:30 +010099enum ixp4xx_irq_type {
100 IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
101};
102
Kevin Hilman984d1152006-11-03 01:47:20 +0100103/* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */
104static unsigned long long ixp4xx_irq_edge = 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100105
106/*
107 * IRQ -> GPIO mapping table
108 */
Lennert Buytenhek6cc1b652006-04-20 21:24:38 +0100109static signed char irq2gpio[32] = {
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100110 -1, -1, -1, -1, -1, -1, 0, 1,
111 -1, -1, -1, -1, -1, -1, -1, -1,
112 -1, -1, -1, 2, 3, 4, 5, 6,
113 7, 8, 9, 10, 11, 12, -1, -1,
114};
115
Richard Cochran9dde0ae2012-05-23 18:19:51 +0200116static int ixp4xx_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
Milan Svoboda25735d12007-03-21 14:04:08 +0100117{
118 int irq;
119
120 for (irq = 0; irq < 32; irq++) {
121 if (irq2gpio[irq] == gpio)
122 return irq;
123 }
124 return -EINVAL;
125}
Milan Svoboda25735d12007-03-21 14:04:08 +0100126
Roel Kluinefec1942009-11-03 23:05:32 +0100127int irq_to_gpio(unsigned int irq)
Milan Svoboda25735d12007-03-21 14:04:08 +0100128{
129 int gpio = (irq < 32) ? irq2gpio[irq] : -EINVAL;
130
131 if (gpio == -1)
132 return -EINVAL;
133
134 return gpio;
135}
136EXPORT_SYMBOL(irq_to_gpio);
137
Lennert Buytenhekee040872010-11-29 10:33:49 +0100138static int ixp4xx_set_irq_type(struct irq_data *d, unsigned int type)
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100139{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100140 int line = irq2gpio[d->irq];
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100141 u32 int_style;
142 enum ixp4xx_irq_type irq_type;
143 volatile u32 *int_reg;
144
145 /*
146 * Only for GPIO IRQs
147 */
148 if (line < 0)
149 return -EINVAL;
150
MÄrten Wikström06e44792006-02-22 22:27:23 +0000151 switch (type){
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100152 case IRQ_TYPE_EDGE_BOTH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100153 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
154 irq_type = IXP4XX_IRQ_EDGE;
MÄrten Wikström06e44792006-02-22 22:27:23 +0000155 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100156 case IRQ_TYPE_EDGE_RISING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100157 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
158 irq_type = IXP4XX_IRQ_EDGE;
MÄrten Wikström06e44792006-02-22 22:27:23 +0000159 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100160 case IRQ_TYPE_EDGE_FALLING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100161 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
162 irq_type = IXP4XX_IRQ_EDGE;
MÄrten Wikström06e44792006-02-22 22:27:23 +0000163 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100164 case IRQ_TYPE_LEVEL_HIGH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100165 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
166 irq_type = IXP4XX_IRQ_LEVEL;
MÄrten Wikström06e44792006-02-22 22:27:23 +0000167 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100168 case IRQ_TYPE_LEVEL_LOW:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100169 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
170 irq_type = IXP4XX_IRQ_LEVEL;
MÄrten Wikström06e44792006-02-22 22:27:23 +0000171 break;
172 default:
David Vrabel6132f9e2005-09-26 19:52:56 +0100173 return -EINVAL;
MÄrten Wikström06e44792006-02-22 22:27:23 +0000174 }
Kevin Hilman984d1152006-11-03 01:47:20 +0100175
176 if (irq_type == IXP4XX_IRQ_EDGE)
Lennert Buytenhekee040872010-11-29 10:33:49 +0100177 ixp4xx_irq_edge |= (1 << d->irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100178 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100179 ixp4xx_irq_edge &= ~(1 << d->irq);
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100180
181 if (line >= 8) { /* pins 8-15 */
182 line -= 8;
183 int_reg = IXP4XX_GPIO_GPIT2R;
184 } else { /* pins 0-7 */
185 int_reg = IXP4XX_GPIO_GPIT1R;
186 }
187
188 /* Clear the style for the appropriate pin */
189 *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
190 (line * IXP4XX_GPIO_STYLE_SIZE));
191
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000192 *IXP4XX_GPIO_GPISR = (1 << line);
193
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100194 /* Set the new style */
195 *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
David Vrabel6132f9e2005-09-26 19:52:56 +0100196
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000197 /* Configure the line as an input */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100198 gpio_line_config(irq2gpio[d->irq], IXP4XX_GPIO_IN);
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000199
David Vrabel6132f9e2005-09-26 19:52:56 +0100200 return 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100201}
202
Lennert Buytenhekee040872010-11-29 10:33:49 +0100203static void ixp4xx_irq_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100205 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
206 *IXP4XX_ICMR2 &= ~(1 << (d->irq - 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100208 *IXP4XX_ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Lennert Buytenhekee040872010-11-29 10:33:49 +0100211static void ixp4xx_irq_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100213 int line = (d->irq < 32) ? irq2gpio[d->irq] : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (line >= 0)
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000216 *IXP4XX_GPIO_GPISR = (1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219/*
220 * Level triggered interrupts on GPIO lines can only be cleared when the
221 * interrupt condition disappears.
222 */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100223static void ixp4xx_irq_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100225 if (!(ixp4xx_irq_edge & (1 << d->irq)))
226 ixp4xx_irq_ack(d);
Kevin Hilman984d1152006-11-03 01:47:20 +0100227
Lennert Buytenhekee040872010-11-29 10:33:49 +0100228 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
229 *IXP4XX_ICMR2 |= (1 << (d->irq - 32));
Kevin Hilman984d1152006-11-03 01:47:20 +0100230 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100231 *IXP4XX_ICMR |= (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Russell King10dd5ce2006-11-23 11:41:32 +0000234static struct irq_chip ixp4xx_irq_chip = {
Kevin Hilman984d1152006-11-03 01:47:20 +0100235 .name = "IXP4xx",
Lennert Buytenhekee040872010-11-29 10:33:49 +0100236 .irq_ack = ixp4xx_irq_ack,
237 .irq_mask = ixp4xx_irq_mask,
238 .irq_unmask = ixp4xx_irq_unmask,
239 .irq_set_type = ixp4xx_set_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242void __init ixp4xx_init_irq(void)
243{
244 int i = 0;
245
Nicolas Pitre12d2b4e2011-08-03 07:25:39 -0400246 /*
247 * ixp4xx does not implement the XScale PWRMODE register
248 * so it must not call cpu_do_idle().
249 */
250 disable_hlt();
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* Route all sources to IRQ instead of FIQ */
253 *IXP4XX_ICLR = 0x0;
254
255 /* Disable all interrupt */
256 *IXP4XX_ICMR = 0x0;
257
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100258 if (cpu_is_ixp46x() || cpu_is_ixp43x()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* Route upper 32 sources to IRQ instead of FIQ */
260 *IXP4XX_ICLR2 = 0x00;
261
262 /* Disable upper 32 interrupts */
263 *IXP4XX_ICMR2 = 0x00;
264 }
265
266 /* Default to all level triggered */
Kevin Hilman984d1152006-11-03 01:47:20 +0100267 for(i = 0; i < NR_IRQS; i++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100268 irq_set_chip_and_handler(i, &ixp4xx_irq_chip,
269 handle_level_irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100270 set_irq_flags(i, IRQF_VALID);
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274
275/*************************************************************************
276 * IXP4xx timer tick
277 * We use OS timer1 on the CPU for the timer tick and the timestamp
278 * counter as a source of real clock ticks to account for missed jiffies.
279 *************************************************************************/
280
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700281static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200283 struct clock_event_device *evt = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* Clear Pending Interrupt by writing '1' to it */
286 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
287
Kevin Hilmane32f1502007-03-08 20:23:59 +0100288 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 return IRQ_HANDLED;
291}
292
293static struct irqaction ixp4xx_timer_irq = {
Kevin Hilmane32f1502007-03-08 20:23:59 +0100294 .name = "timer1",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700295 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Russell King09b8b5f2005-06-26 17:06:36 +0100296 .handler = ixp4xx_timer_interrupt,
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200297 .dev_id = &clockevent_ixp4xx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298};
299
Michael-Luke Jones435c5da2007-05-23 22:38:45 +0100300void __init ixp4xx_timer_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Kevin Hilmane32f1502007-03-08 20:23:59 +0100302 /* Reset/disable counter */
303 *IXP4XX_OSRT1 = 0;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* Clear Pending Interrupt by writing '1' to it */
306 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* Reset time-stamp counter */
309 *IXP4XX_OSTS = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* Connect the interrupt handler and enable the interrupt */
312 setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +0100313
314 ixp4xx_clocksource_init();
Kevin Hilmane32f1502007-03-08 20:23:59 +0100315 ixp4xx_clockevent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318struct sys_timer ixp4xx_timer = {
319 .init = ixp4xx_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Milan Svobodae520a362006-12-01 11:36:41 +0100322static struct pxa2xx_udc_mach_info ixp4xx_udc_info;
323
324void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info)
325{
326 memcpy(&ixp4xx_udc_info, info, sizeof *info);
327}
328
329static struct resource ixp4xx_udc_resources[] = {
330 [0] = {
331 .start = 0xc800b000,
332 .end = 0xc800bfff,
333 .flags = IORESOURCE_MEM,
334 },
335 [1] = {
336 .start = IRQ_IXP4XX_USB,
337 .end = IRQ_IXP4XX_USB,
338 .flags = IORESOURCE_IRQ,
339 },
340};
341
342/*
Philipp Zabel7a857622008-06-22 23:36:39 +0100343 * USB device controller. The IXP4xx uses the same controller as PXA25X,
Milan Svobodae520a362006-12-01 11:36:41 +0100344 * so we just use the same device.
345 */
346static struct platform_device ixp4xx_udc_device = {
Philipp Zabel7a857622008-06-22 23:36:39 +0100347 .name = "pxa25x-udc",
Milan Svobodae520a362006-12-01 11:36:41 +0100348 .id = -1,
349 .num_resources = 2,
350 .resource = ixp4xx_udc_resources,
351 .dev = {
352 .platform_data = &ixp4xx_udc_info,
353 },
354};
355
356static struct platform_device *ixp4xx_devices[] __initdata = {
357 &ixp4xx_udc_device,
358};
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360static struct resource ixp46x_i2c_resources[] = {
361 [0] = {
362 .start = 0xc8011000,
363 .end = 0xc801101c,
364 .flags = IORESOURCE_MEM,
365 },
366 [1] = {
367 .start = IRQ_IXP4XX_I2C,
368 .end = IRQ_IXP4XX_I2C,
369 .flags = IORESOURCE_IRQ
370 }
371};
372
373/*
374 * I2C controller. The IXP46x uses the same block as the IOP3xx, so
375 * we just use the same device name.
376 */
377static struct platform_device ixp46x_i2c_controller = {
378 .name = "IOP3xx-I2C",
379 .id = 0,
380 .num_resources = 2,
381 .resource = ixp46x_i2c_resources
382};
383
384static struct platform_device *ixp46x_devices[] __initdata = {
385 &ixp46x_i2c_controller
386};
387
Deepak Saxena54e269e2006-01-05 20:59:29 +0000388unsigned long ixp4xx_exp_bus_size;
David Vrabel1e74c892006-01-18 22:46:43 +0000389EXPORT_SYMBOL(ixp4xx_exp_bus_size);
Deepak Saxena54e269e2006-01-05 20:59:29 +0000390
Richard Cochran9dde0ae2012-05-23 18:19:51 +0200391static int ixp4xx_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
392{
393 gpio_line_config(gpio, IXP4XX_GPIO_IN);
394
395 return 0;
396}
397
398static int ixp4xx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio,
399 int level)
400{
401 gpio_line_set(gpio, level);
402 gpio_line_config(gpio, IXP4XX_GPIO_OUT);
403
404 return 0;
405}
406
407static int ixp4xx_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
408{
409 int value;
410
411 gpio_line_get(gpio, &value);
412
413 return value;
414}
415
416static void ixp4xx_gpio_set_value(struct gpio_chip *chip, unsigned gpio,
417 int value)
418{
419 gpio_line_set(gpio, value);
420}
421
422static struct gpio_chip ixp4xx_gpio_chip = {
423 .label = "IXP4XX_GPIO_CHIP",
424 .direction_input = ixp4xx_gpio_direction_input,
425 .direction_output = ixp4xx_gpio_direction_output,
426 .get = ixp4xx_gpio_get_value,
427 .set = ixp4xx_gpio_set_value,
428 .to_irq = ixp4xx_gpio_to_irq,
429 .base = 0,
430 .ngpio = 16,
431};
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433void __init ixp4xx_sys_init(void)
434{
Deepak Saxena54e269e2006-01-05 20:59:29 +0000435 ixp4xx_exp_bus_size = SZ_16M;
436
Milan Svobodae520a362006-12-01 11:36:41 +0100437 platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices));
438
Richard Cochran9dde0ae2012-05-23 18:19:51 +0200439 gpiochip_add(&ixp4xx_gpio_chip);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (cpu_is_ixp46x()) {
Deepak Saxena54e269e2006-01-05 20:59:29 +0000442 int region;
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 platform_add_devices(ixp46x_devices,
445 ARRAY_SIZE(ixp46x_devices));
Deepak Saxena54e269e2006-01-05 20:59:29 +0000446
447 for (region = 0; region < 7; region++) {
448 if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
449 ixp4xx_exp_bus_size = SZ_32M;
450 break;
451 }
452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Deepak Saxena54e269e2006-01-05 20:59:29 +0000454
David Vrabel1e74c892006-01-18 22:46:43 +0000455 printk("IXP4xx: Using %luMiB expansion bus window size\n",
Deepak Saxena54e269e2006-01-05 20:59:29 +0000456 ixp4xx_exp_bus_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Kevin Hilmane32f1502007-03-08 20:23:59 +0100459/*
Russell King5b0d4952010-12-15 21:23:13 +0000460 * sched_clock()
461 */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100462static u32 notrace ixp4xx_read_sched_clock(void)
Russell King5b0d4952010-12-15 21:23:13 +0000463{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100464 return *IXP4XX_OSTS;
Russell King5b0d4952010-12-15 21:23:13 +0000465}
466
467/*
Kevin Hilmane32f1502007-03-08 20:23:59 +0100468 * clocksource
469 */
Richard Cochran900b1702011-07-15 21:33:12 +0200470
471static cycle_t ixp4xx_clocksource_read(struct clocksource *c)
472{
473 return *IXP4XX_OSTS;
474}
475
Ben Hutchingse66a0222010-12-11 20:17:54 +0000476unsigned long ixp4xx_timer_freq = IXP4XX_TIMER_FREQ;
Krzysztof Halasa5dbc4652009-09-05 03:59:49 +0000477EXPORT_SYMBOL(ixp4xx_timer_freq);
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200478static void __init ixp4xx_clocksource_init(void)
Kevin Hilman84904d02006-09-22 00:58:57 +0100479{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100480 setup_sched_clock(ixp4xx_read_sched_clock, 32, ixp4xx_timer_freq);
Russell King5b0d4952010-12-15 21:23:13 +0000481
Richard Cochran900b1702011-07-15 21:33:12 +0200482 clocksource_mmio_init(NULL, "OSTS", ixp4xx_timer_freq, 200, 32,
483 ixp4xx_clocksource_read);
Kevin Hilman84904d02006-09-22 00:58:57 +0100484}
Kevin Hilmane32f1502007-03-08 20:23:59 +0100485
486/*
487 * clockevents
488 */
489static int ixp4xx_set_next_event(unsigned long evt,
490 struct clock_event_device *unused)
491{
492 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
493
494 *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts;
495
496 return 0;
497}
498
499static void ixp4xx_set_mode(enum clock_event_mode mode,
500 struct clock_event_device *evt)
501{
Kevin Hilman553876c2007-12-12 00:32:58 +0100502 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
503 unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100504
505 switch (mode) {
506 case CLOCK_EVT_MODE_PERIODIC:
507 osrt = LATCH & ~IXP4XX_OST_RELOAD_MASK;
508 opts = IXP4XX_OST_ENABLE;
509 break;
510 case CLOCK_EVT_MODE_ONESHOT:
511 /* period set by 'set next_event' */
512 osrt = 0;
513 opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT;
514 break;
515 case CLOCK_EVT_MODE_SHUTDOWN:
Kevin Hilman553876c2007-12-12 00:32:58 +0100516 opts &= ~IXP4XX_OST_ENABLE;
517 break;
518 case CLOCK_EVT_MODE_RESUME:
519 opts |= IXP4XX_OST_ENABLE;
520 break;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100521 case CLOCK_EVT_MODE_UNUSED:
522 default:
523 osrt = opts = 0;
524 break;
525 }
526
527 *IXP4XX_OSRT1 = osrt | opts;
528}
529
530static struct clock_event_device clockevent_ixp4xx = {
531 .name = "ixp4xx timer1",
532 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
533 .rating = 200,
534 .shift = 24,
535 .set_mode = ixp4xx_set_mode,
536 .set_next_event = ixp4xx_set_next_event,
537};
538
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200539static void __init ixp4xx_clockevent_init(void)
Kevin Hilmane32f1502007-03-08 20:23:59 +0100540{
Ben Hutchingse66a0222010-12-11 20:17:54 +0000541 clockevent_ixp4xx.mult = div_sc(IXP4XX_TIMER_FREQ, NSEC_PER_SEC,
Kevin Hilmane32f1502007-03-08 20:23:59 +0100542 clockevent_ixp4xx.shift);
543 clockevent_ixp4xx.max_delta_ns =
544 clockevent_delta2ns(0xfffffffe, &clockevent_ixp4xx);
545 clockevent_ixp4xx.min_delta_ns =
546 clockevent_delta2ns(0xf, &clockevent_ixp4xx);
Rusty Russell320ab2b2008-12-13 21:20:26 +1030547 clockevent_ixp4xx.cpumask = cpumask_of(0);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100548
549 clockevents_register_device(&clockevent_ixp4xx);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100550}
Russell Kingd1b860f2011-11-05 12:10:55 +0000551
552void ixp4xx_restart(char mode, const char *cmd)
553{
554 if ( 1 && mode == 's') {
555 /* Jump into ROM at address 0 */
556 soft_restart(0);
557 } else {
558 /* Use on-chip reset capability */
559
560 /* set the "key" register to enable access to
561 * "timer" and "enable" registers
562 */
563 *IXP4XX_OSWK = IXP4XX_WDT_KEY;
564
565 /* write 0 to the timer register for an immediate reset */
566 *IXP4XX_OSWT = 0;
567
568 *IXP4XX_OSWE = IXP4XX_WDT_RESET_ENABLE | IXP4XX_WDT_COUNT_ENABLE;
569 }
570}
Rob Herringf4495882012-03-06 15:01:53 -0600571
572#ifdef CONFIG_IXP4XX_INDIRECT_PCI
573/*
574 * In the case of using indirect PCI, we simply return the actual PCI
575 * address and our read/write implementation use that to drive the
576 * access registers. If something outside of PCI is ioremap'd, we
577 * fallback to the default.
578 */
579
580static void __iomem *ixp4xx_ioremap_caller(unsigned long addr, size_t size,
581 unsigned int mtype, void *caller)
582{
583 if (!is_pci_memory(addr))
584 return __arm_ioremap_caller(addr, size, mtype, caller);
585
586 return (void __iomem *)addr;
587}
588
589static void ixp4xx_iounmap(void __iomem *addr)
590{
591 if (!is_pci_memory((__force u32)addr))
592 __iounmap(addr);
593}
594
595void __init ixp4xx_init_early(void)
596{
597 arch_ioremap_caller = ixp4xx_ioremap_caller;
598 arch_iounmap = ixp4xx_iounmap;
599}
600#else
601void __init ixp4xx_init_early(void) {}
602#endif