blob: ebbd7fc90eb47488b320de65feee82ce578ff288 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/udc.h>
33#include <mach/hardware.h>
Rob Herringf4495882012-03-06 15:01:53 -060034#include <mach/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/pgtable.h>
37#include <asm/page.h>
38#include <asm/irq.h>
Russell King5b0d4952010-12-15 21:23:13 +000039#include <asm/sched_clock.h>
Olof Johansson86dfe442012-03-29 23:22:44 -070040#include <asm/system_misc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/mach/map.h>
43#include <asm/mach/irq.h>
44#include <asm/mach/time.h>
45
Mikael Petterssonceb69a82009-09-11 00:59:07 +020046static void __init ixp4xx_clocksource_init(void);
47static void __init ixp4xx_clockevent_init(void);
Kevin Hilmane32f1502007-03-08 20:23:59 +010048static struct clock_event_device clockevent_ixp4xx;
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +010049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*************************************************************************
51 * IXP4xx chipset I/O mapping
52 *************************************************************************/
53static struct map_desc ixp4xx_io_desc[] __initdata = {
54 { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
55 .virtual = IXP4XX_PERIPHERAL_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010056 .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .length = IXP4XX_PERIPHERAL_REGION_SIZE,
58 .type = MT_DEVICE
59 }, { /* Expansion Bus Config Registers */
60 .virtual = IXP4XX_EXP_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010061 .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .length = IXP4XX_EXP_CFG_REGION_SIZE,
63 .type = MT_DEVICE
64 }, { /* PCI Registers */
65 .virtual = IXP4XX_PCI_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010066 .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .length = IXP4XX_PCI_CFG_REGION_SIZE,
68 .type = MT_DEVICE
Deepak Saxena5932ae32005-06-24 20:54:35 +010069 },
70#ifdef CONFIG_DEBUG_LL
71 { /* Debug UART mapping */
72 .virtual = IXP4XX_DEBUG_UART_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010073 .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS),
Deepak Saxena5932ae32005-06-24 20:54:35 +010074 .length = IXP4XX_DEBUG_UART_REGION_SIZE,
75 .type = MT_DEVICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
Deepak Saxena5932ae32005-06-24 20:54:35 +010077#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
80void __init ixp4xx_map_io(void)
81{
82 iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
83}
84
85
86/*************************************************************************
87 * IXP4xx chipset IRQ handling
88 *
89 * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
90 * (be it PCI or something else) configures that GPIO line
91 * as an IRQ.
92 **************************************************************************/
Deepak Saxenabdf82b52005-08-29 22:46:30 +010093enum ixp4xx_irq_type {
94 IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
95};
96
Kevin Hilman984d1152006-11-03 01:47:20 +010097/* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */
98static unsigned long long ixp4xx_irq_edge = 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +010099
100/*
101 * IRQ -> GPIO mapping table
102 */
Lennert Buytenhek6cc1b652006-04-20 21:24:38 +0100103static signed char irq2gpio[32] = {
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100104 -1, -1, -1, -1, -1, -1, 0, 1,
105 -1, -1, -1, -1, -1, -1, -1, -1,
106 -1, -1, -1, 2, 3, 4, 5, 6,
107 7, 8, 9, 10, 11, 12, -1, -1,
108};
109
Milan Svoboda25735d12007-03-21 14:04:08 +0100110int gpio_to_irq(int gpio)
111{
112 int irq;
113
114 for (irq = 0; irq < 32; irq++) {
115 if (irq2gpio[irq] == gpio)
116 return irq;
117 }
118 return -EINVAL;
119}
120EXPORT_SYMBOL(gpio_to_irq);
121
Roel Kluinefec1942009-11-03 23:05:32 +0100122int irq_to_gpio(unsigned int irq)
Milan Svoboda25735d12007-03-21 14:04:08 +0100123{
124 int gpio = (irq < 32) ? irq2gpio[irq] : -EINVAL;
125
126 if (gpio == -1)
127 return -EINVAL;
128
129 return gpio;
130}
131EXPORT_SYMBOL(irq_to_gpio);
132
Lennert Buytenhekee040872010-11-29 10:33:49 +0100133static int ixp4xx_set_irq_type(struct irq_data *d, unsigned int type)
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100134{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100135 int line = irq2gpio[d->irq];
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100136 u32 int_style;
137 enum ixp4xx_irq_type irq_type;
138 volatile u32 *int_reg;
139
140 /*
141 * Only for GPIO IRQs
142 */
143 if (line < 0)
144 return -EINVAL;
145
Mårten Wikström06e44792006-02-22 22:27:23 +0000146 switch (type){
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100147 case IRQ_TYPE_EDGE_BOTH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100148 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
149 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000150 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100151 case IRQ_TYPE_EDGE_RISING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100152 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
153 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000154 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100155 case IRQ_TYPE_EDGE_FALLING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100156 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
157 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000158 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100159 case IRQ_TYPE_LEVEL_HIGH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100160 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
161 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000162 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100163 case IRQ_TYPE_LEVEL_LOW:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100164 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
165 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000166 break;
167 default:
David Vrabel6132f9e2005-09-26 19:52:56 +0100168 return -EINVAL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000169 }
Kevin Hilman984d1152006-11-03 01:47:20 +0100170
171 if (irq_type == IXP4XX_IRQ_EDGE)
Lennert Buytenhekee040872010-11-29 10:33:49 +0100172 ixp4xx_irq_edge |= (1 << d->irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100173 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100174 ixp4xx_irq_edge &= ~(1 << d->irq);
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100175
176 if (line >= 8) { /* pins 8-15 */
177 line -= 8;
178 int_reg = IXP4XX_GPIO_GPIT2R;
179 } else { /* pins 0-7 */
180 int_reg = IXP4XX_GPIO_GPIT1R;
181 }
182
183 /* Clear the style for the appropriate pin */
184 *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
185 (line * IXP4XX_GPIO_STYLE_SIZE));
186
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000187 *IXP4XX_GPIO_GPISR = (1 << line);
188
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100189 /* Set the new style */
190 *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
David Vrabel6132f9e2005-09-26 19:52:56 +0100191
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000192 /* Configure the line as an input */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100193 gpio_line_config(irq2gpio[d->irq], IXP4XX_GPIO_IN);
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000194
David Vrabel6132f9e2005-09-26 19:52:56 +0100195 return 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100196}
197
Lennert Buytenhekee040872010-11-29 10:33:49 +0100198static void ixp4xx_irq_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100200 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
201 *IXP4XX_ICMR2 &= ~(1 << (d->irq - 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100203 *IXP4XX_ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Lennert Buytenhekee040872010-11-29 10:33:49 +0100206static void ixp4xx_irq_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100208 int line = (d->irq < 32) ? irq2gpio[d->irq] : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 if (line >= 0)
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000211 *IXP4XX_GPIO_GPISR = (1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214/*
215 * Level triggered interrupts on GPIO lines can only be cleared when the
216 * interrupt condition disappears.
217 */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100218static void ixp4xx_irq_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100220 if (!(ixp4xx_irq_edge & (1 << d->irq)))
221 ixp4xx_irq_ack(d);
Kevin Hilman984d1152006-11-03 01:47:20 +0100222
Lennert Buytenhekee040872010-11-29 10:33:49 +0100223 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
224 *IXP4XX_ICMR2 |= (1 << (d->irq - 32));
Kevin Hilman984d1152006-11-03 01:47:20 +0100225 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100226 *IXP4XX_ICMR |= (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Russell King10dd5ce2006-11-23 11:41:32 +0000229static struct irq_chip ixp4xx_irq_chip = {
Kevin Hilman984d1152006-11-03 01:47:20 +0100230 .name = "IXP4xx",
Lennert Buytenhekee040872010-11-29 10:33:49 +0100231 .irq_ack = ixp4xx_irq_ack,
232 .irq_mask = ixp4xx_irq_mask,
233 .irq_unmask = ixp4xx_irq_unmask,
234 .irq_set_type = ixp4xx_set_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237void __init ixp4xx_init_irq(void)
238{
239 int i = 0;
240
Nicolas Pitre12d2b4e2011-08-03 07:25:39 -0400241 /*
242 * ixp4xx does not implement the XScale PWRMODE register
243 * so it must not call cpu_do_idle().
244 */
245 disable_hlt();
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Route all sources to IRQ instead of FIQ */
248 *IXP4XX_ICLR = 0x0;
249
250 /* Disable all interrupt */
251 *IXP4XX_ICMR = 0x0;
252
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100253 if (cpu_is_ixp46x() || cpu_is_ixp43x()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* Route upper 32 sources to IRQ instead of FIQ */
255 *IXP4XX_ICLR2 = 0x00;
256
257 /* Disable upper 32 interrupts */
258 *IXP4XX_ICMR2 = 0x00;
259 }
260
261 /* Default to all level triggered */
Kevin Hilman984d1152006-11-03 01:47:20 +0100262 for(i = 0; i < NR_IRQS; i++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100263 irq_set_chip_and_handler(i, &ixp4xx_irq_chip,
264 handle_level_irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100265 set_irq_flags(i, IRQF_VALID);
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269
270/*************************************************************************
271 * IXP4xx timer tick
272 * We use OS timer1 on the CPU for the timer tick and the timestamp
273 * counter as a source of real clock ticks to account for missed jiffies.
274 *************************************************************************/
275
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700276static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200278 struct clock_event_device *evt = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* Clear Pending Interrupt by writing '1' to it */
281 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
282
Kevin Hilmane32f1502007-03-08 20:23:59 +0100283 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 return IRQ_HANDLED;
286}
287
288static struct irqaction ixp4xx_timer_irq = {
Kevin Hilmane32f1502007-03-08 20:23:59 +0100289 .name = "timer1",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700290 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Russell King09b8b5f2005-06-26 17:06:36 +0100291 .handler = ixp4xx_timer_interrupt,
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200292 .dev_id = &clockevent_ixp4xx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293};
294
Michael-Luke Jones435c5da2007-05-23 22:38:45 +0100295void __init ixp4xx_timer_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Kevin Hilmane32f1502007-03-08 20:23:59 +0100297 /* Reset/disable counter */
298 *IXP4XX_OSRT1 = 0;
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /* Clear Pending Interrupt by writing '1' to it */
301 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 /* Reset time-stamp counter */
304 *IXP4XX_OSTS = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* Connect the interrupt handler and enable the interrupt */
307 setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +0100308
309 ixp4xx_clocksource_init();
Kevin Hilmane32f1502007-03-08 20:23:59 +0100310 ixp4xx_clockevent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313struct sys_timer ixp4xx_timer = {
314 .init = ixp4xx_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Milan Svobodae520a362006-12-01 11:36:41 +0100317static struct pxa2xx_udc_mach_info ixp4xx_udc_info;
318
319void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info)
320{
321 memcpy(&ixp4xx_udc_info, info, sizeof *info);
322}
323
324static struct resource ixp4xx_udc_resources[] = {
325 [0] = {
326 .start = 0xc800b000,
327 .end = 0xc800bfff,
328 .flags = IORESOURCE_MEM,
329 },
330 [1] = {
331 .start = IRQ_IXP4XX_USB,
332 .end = IRQ_IXP4XX_USB,
333 .flags = IORESOURCE_IRQ,
334 },
335};
336
337/*
Philipp Zabel7a857622008-06-22 23:36:39 +0100338 * USB device controller. The IXP4xx uses the same controller as PXA25X,
Milan Svobodae520a362006-12-01 11:36:41 +0100339 * so we just use the same device.
340 */
341static struct platform_device ixp4xx_udc_device = {
Philipp Zabel7a857622008-06-22 23:36:39 +0100342 .name = "pxa25x-udc",
Milan Svobodae520a362006-12-01 11:36:41 +0100343 .id = -1,
344 .num_resources = 2,
345 .resource = ixp4xx_udc_resources,
346 .dev = {
347 .platform_data = &ixp4xx_udc_info,
348 },
349};
350
351static struct platform_device *ixp4xx_devices[] __initdata = {
352 &ixp4xx_udc_device,
353};
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355static struct resource ixp46x_i2c_resources[] = {
356 [0] = {
357 .start = 0xc8011000,
358 .end = 0xc801101c,
359 .flags = IORESOURCE_MEM,
360 },
361 [1] = {
362 .start = IRQ_IXP4XX_I2C,
363 .end = IRQ_IXP4XX_I2C,
364 .flags = IORESOURCE_IRQ
365 }
366};
367
368/*
369 * I2C controller. The IXP46x uses the same block as the IOP3xx, so
370 * we just use the same device name.
371 */
372static struct platform_device ixp46x_i2c_controller = {
373 .name = "IOP3xx-I2C",
374 .id = 0,
375 .num_resources = 2,
376 .resource = ixp46x_i2c_resources
377};
378
379static struct platform_device *ixp46x_devices[] __initdata = {
380 &ixp46x_i2c_controller
381};
382
Deepak Saxena54e269e2006-01-05 20:59:29 +0000383unsigned long ixp4xx_exp_bus_size;
David Vrabel1e74c892006-01-18 22:46:43 +0000384EXPORT_SYMBOL(ixp4xx_exp_bus_size);
Deepak Saxena54e269e2006-01-05 20:59:29 +0000385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386void __init ixp4xx_sys_init(void)
387{
Deepak Saxena54e269e2006-01-05 20:59:29 +0000388 ixp4xx_exp_bus_size = SZ_16M;
389
Milan Svobodae520a362006-12-01 11:36:41 +0100390 platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices));
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (cpu_is_ixp46x()) {
Deepak Saxena54e269e2006-01-05 20:59:29 +0000393 int region;
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 platform_add_devices(ixp46x_devices,
396 ARRAY_SIZE(ixp46x_devices));
Deepak Saxena54e269e2006-01-05 20:59:29 +0000397
398 for (region = 0; region < 7; region++) {
399 if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
400 ixp4xx_exp_bus_size = SZ_32M;
401 break;
402 }
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
Deepak Saxena54e269e2006-01-05 20:59:29 +0000405
David Vrabel1e74c892006-01-18 22:46:43 +0000406 printk("IXP4xx: Using %luMiB expansion bus window size\n",
Deepak Saxena54e269e2006-01-05 20:59:29 +0000407 ixp4xx_exp_bus_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Kevin Hilmane32f1502007-03-08 20:23:59 +0100410/*
Russell King5b0d4952010-12-15 21:23:13 +0000411 * sched_clock()
412 */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100413static u32 notrace ixp4xx_read_sched_clock(void)
Russell King5b0d4952010-12-15 21:23:13 +0000414{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100415 return *IXP4XX_OSTS;
Russell King5b0d4952010-12-15 21:23:13 +0000416}
417
418/*
Kevin Hilmane32f1502007-03-08 20:23:59 +0100419 * clocksource
420 */
Richard Cochran900b1702011-07-15 21:33:12 +0200421
422static cycle_t ixp4xx_clocksource_read(struct clocksource *c)
423{
424 return *IXP4XX_OSTS;
425}
426
Ben Hutchingse66a0222010-12-11 20:17:54 +0000427unsigned long ixp4xx_timer_freq = IXP4XX_TIMER_FREQ;
Krzysztof Halasa5dbc4652009-09-05 03:59:49 +0000428EXPORT_SYMBOL(ixp4xx_timer_freq);
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200429static void __init ixp4xx_clocksource_init(void)
Kevin Hilman84904d02006-09-22 00:58:57 +0100430{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100431 setup_sched_clock(ixp4xx_read_sched_clock, 32, ixp4xx_timer_freq);
Russell King5b0d4952010-12-15 21:23:13 +0000432
Richard Cochran900b1702011-07-15 21:33:12 +0200433 clocksource_mmio_init(NULL, "OSTS", ixp4xx_timer_freq, 200, 32,
434 ixp4xx_clocksource_read);
Kevin Hilman84904d02006-09-22 00:58:57 +0100435}
Kevin Hilmane32f1502007-03-08 20:23:59 +0100436
437/*
438 * clockevents
439 */
440static int ixp4xx_set_next_event(unsigned long evt,
441 struct clock_event_device *unused)
442{
443 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
444
445 *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts;
446
447 return 0;
448}
449
450static void ixp4xx_set_mode(enum clock_event_mode mode,
451 struct clock_event_device *evt)
452{
Kevin Hilman553876c2007-12-12 00:32:58 +0100453 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
454 unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100455
456 switch (mode) {
457 case CLOCK_EVT_MODE_PERIODIC:
458 osrt = LATCH & ~IXP4XX_OST_RELOAD_MASK;
459 opts = IXP4XX_OST_ENABLE;
460 break;
461 case CLOCK_EVT_MODE_ONESHOT:
462 /* period set by 'set next_event' */
463 osrt = 0;
464 opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT;
465 break;
466 case CLOCK_EVT_MODE_SHUTDOWN:
Kevin Hilman553876c2007-12-12 00:32:58 +0100467 opts &= ~IXP4XX_OST_ENABLE;
468 break;
469 case CLOCK_EVT_MODE_RESUME:
470 opts |= IXP4XX_OST_ENABLE;
471 break;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100472 case CLOCK_EVT_MODE_UNUSED:
473 default:
474 osrt = opts = 0;
475 break;
476 }
477
478 *IXP4XX_OSRT1 = osrt | opts;
479}
480
481static struct clock_event_device clockevent_ixp4xx = {
482 .name = "ixp4xx timer1",
483 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
484 .rating = 200,
485 .shift = 24,
486 .set_mode = ixp4xx_set_mode,
487 .set_next_event = ixp4xx_set_next_event,
488};
489
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200490static void __init ixp4xx_clockevent_init(void)
Kevin Hilmane32f1502007-03-08 20:23:59 +0100491{
Ben Hutchingse66a0222010-12-11 20:17:54 +0000492 clockevent_ixp4xx.mult = div_sc(IXP4XX_TIMER_FREQ, NSEC_PER_SEC,
Kevin Hilmane32f1502007-03-08 20:23:59 +0100493 clockevent_ixp4xx.shift);
494 clockevent_ixp4xx.max_delta_ns =
495 clockevent_delta2ns(0xfffffffe, &clockevent_ixp4xx);
496 clockevent_ixp4xx.min_delta_ns =
497 clockevent_delta2ns(0xf, &clockevent_ixp4xx);
Rusty Russell320ab2b2008-12-13 21:20:26 +1030498 clockevent_ixp4xx.cpumask = cpumask_of(0);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100499
500 clockevents_register_device(&clockevent_ixp4xx);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100501}
Russell Kingd1b860f2011-11-05 12:10:55 +0000502
503void ixp4xx_restart(char mode, const char *cmd)
504{
505 if ( 1 && mode == 's') {
506 /* Jump into ROM at address 0 */
507 soft_restart(0);
508 } else {
509 /* Use on-chip reset capability */
510
511 /* set the "key" register to enable access to
512 * "timer" and "enable" registers
513 */
514 *IXP4XX_OSWK = IXP4XX_WDT_KEY;
515
516 /* write 0 to the timer register for an immediate reset */
517 *IXP4XX_OSWT = 0;
518
519 *IXP4XX_OSWE = IXP4XX_WDT_RESET_ENABLE | IXP4XX_WDT_COUNT_ENABLE;
520 }
521}
Rob Herringf4495882012-03-06 15:01:53 -0600522
523#ifdef CONFIG_IXP4XX_INDIRECT_PCI
524/*
525 * In the case of using indirect PCI, we simply return the actual PCI
526 * address and our read/write implementation use that to drive the
527 * access registers. If something outside of PCI is ioremap'd, we
528 * fallback to the default.
529 */
530
531static void __iomem *ixp4xx_ioremap_caller(unsigned long addr, size_t size,
532 unsigned int mtype, void *caller)
533{
534 if (!is_pci_memory(addr))
535 return __arm_ioremap_caller(addr, size, mtype, caller);
536
537 return (void __iomem *)addr;
538}
539
540static void ixp4xx_iounmap(void __iomem *addr)
541{
542 if (!is_pci_memory((__force u32)addr))
543 __iounmap(addr);
544}
545
546void __init ixp4xx_init_early(void)
547{
548 arch_ioremap_caller = ixp4xx_ioremap_caller;
549 arch_iounmap = ixp4xx_iounmap;
550}
551#else
552void __init ixp4xx_init_early(void) {}
553#endif