blob: b86a0055ab969694dc931be487a33aaef4368a4c [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>
20#include <linux/sched.h>
21#include <linux/tty.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/bitops.h>
26#include <linux/time.h>
27#include <linux/timex.h>
Kevin Hilman84904d02006-09-22 00:58:57 +010028#include <linux/clocksource.h>
Kevin Hilmane32f1502007-03-08 20:23:59 +010029#include <linux/clockchips.h>
Russell Kingfced80c2008-09-06 12:10:45 +010030#include <linux/io.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040031#include <linux/export.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>
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/mach/map.h>
42#include <asm/mach/irq.h>
43#include <asm/mach/time.h>
44
Mikael Petterssonceb69a82009-09-11 00:59:07 +020045static void __init ixp4xx_clocksource_init(void);
46static void __init ixp4xx_clockevent_init(void);
Kevin Hilmane32f1502007-03-08 20:23:59 +010047static struct clock_event_device clockevent_ixp4xx;
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +010048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*************************************************************************
50 * IXP4xx chipset I/O mapping
51 *************************************************************************/
52static struct map_desc ixp4xx_io_desc[] __initdata = {
53 { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
54 .virtual = IXP4XX_PERIPHERAL_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010055 .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .length = IXP4XX_PERIPHERAL_REGION_SIZE,
57 .type = MT_DEVICE
58 }, { /* Expansion Bus Config Registers */
59 .virtual = IXP4XX_EXP_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010060 .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .length = IXP4XX_EXP_CFG_REGION_SIZE,
62 .type = MT_DEVICE
63 }, { /* PCI Registers */
64 .virtual = IXP4XX_PCI_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010065 .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 .length = IXP4XX_PCI_CFG_REGION_SIZE,
67 .type = MT_DEVICE
Deepak Saxena5932ae32005-06-24 20:54:35 +010068 },
69#ifdef CONFIG_DEBUG_LL
70 { /* Debug UART mapping */
71 .virtual = IXP4XX_DEBUG_UART_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010072 .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS),
Deepak Saxena5932ae32005-06-24 20:54:35 +010073 .length = IXP4XX_DEBUG_UART_REGION_SIZE,
74 .type = MT_DEVICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
Deepak Saxena5932ae32005-06-24 20:54:35 +010076#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
79void __init ixp4xx_map_io(void)
80{
81 iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
82}
83
84
85/*************************************************************************
86 * IXP4xx chipset IRQ handling
87 *
88 * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
89 * (be it PCI or something else) configures that GPIO line
90 * as an IRQ.
91 **************************************************************************/
Deepak Saxenabdf82b52005-08-29 22:46:30 +010092enum ixp4xx_irq_type {
93 IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
94};
95
Kevin Hilman984d1152006-11-03 01:47:20 +010096/* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */
97static unsigned long long ixp4xx_irq_edge = 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +010098
99/*
100 * IRQ -> GPIO mapping table
101 */
Lennert Buytenhek6cc1b652006-04-20 21:24:38 +0100102static signed char irq2gpio[32] = {
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100103 -1, -1, -1, -1, -1, -1, 0, 1,
104 -1, -1, -1, -1, -1, -1, -1, -1,
105 -1, -1, -1, 2, 3, 4, 5, 6,
106 7, 8, 9, 10, 11, 12, -1, -1,
107};
108
Milan Svoboda25735d12007-03-21 14:04:08 +0100109int gpio_to_irq(int gpio)
110{
111 int irq;
112
113 for (irq = 0; irq < 32; irq++) {
114 if (irq2gpio[irq] == gpio)
115 return irq;
116 }
117 return -EINVAL;
118}
119EXPORT_SYMBOL(gpio_to_irq);
120
Roel Kluinefec1942009-11-03 23:05:32 +0100121int irq_to_gpio(unsigned int irq)
Milan Svoboda25735d12007-03-21 14:04:08 +0100122{
123 int gpio = (irq < 32) ? irq2gpio[irq] : -EINVAL;
124
125 if (gpio == -1)
126 return -EINVAL;
127
128 return gpio;
129}
130EXPORT_SYMBOL(irq_to_gpio);
131
Lennert Buytenhekee040872010-11-29 10:33:49 +0100132static int ixp4xx_set_irq_type(struct irq_data *d, unsigned int type)
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100133{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100134 int line = irq2gpio[d->irq];
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100135 u32 int_style;
136 enum ixp4xx_irq_type irq_type;
137 volatile u32 *int_reg;
138
139 /*
140 * Only for GPIO IRQs
141 */
142 if (line < 0)
143 return -EINVAL;
144
Mårten Wikström06e44792006-02-22 22:27:23 +0000145 switch (type){
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100146 case IRQ_TYPE_EDGE_BOTH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100147 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
148 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000149 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100150 case IRQ_TYPE_EDGE_RISING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100151 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
152 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000153 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100154 case IRQ_TYPE_EDGE_FALLING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100155 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
156 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000157 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100158 case IRQ_TYPE_LEVEL_HIGH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100159 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
160 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000161 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100162 case IRQ_TYPE_LEVEL_LOW:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100163 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
164 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000165 break;
166 default:
David Vrabel6132f9e2005-09-26 19:52:56 +0100167 return -EINVAL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000168 }
Kevin Hilman984d1152006-11-03 01:47:20 +0100169
170 if (irq_type == IXP4XX_IRQ_EDGE)
Lennert Buytenhekee040872010-11-29 10:33:49 +0100171 ixp4xx_irq_edge |= (1 << d->irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100172 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100173 ixp4xx_irq_edge &= ~(1 << d->irq);
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100174
175 if (line >= 8) { /* pins 8-15 */
176 line -= 8;
177 int_reg = IXP4XX_GPIO_GPIT2R;
178 } else { /* pins 0-7 */
179 int_reg = IXP4XX_GPIO_GPIT1R;
180 }
181
182 /* Clear the style for the appropriate pin */
183 *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
184 (line * IXP4XX_GPIO_STYLE_SIZE));
185
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000186 *IXP4XX_GPIO_GPISR = (1 << line);
187
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100188 /* Set the new style */
189 *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
David Vrabel6132f9e2005-09-26 19:52:56 +0100190
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000191 /* Configure the line as an input */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100192 gpio_line_config(irq2gpio[d->irq], IXP4XX_GPIO_IN);
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000193
David Vrabel6132f9e2005-09-26 19:52:56 +0100194 return 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100195}
196
Lennert Buytenhekee040872010-11-29 10:33:49 +0100197static void ixp4xx_irq_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100199 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
200 *IXP4XX_ICMR2 &= ~(1 << (d->irq - 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100202 *IXP4XX_ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Lennert Buytenhekee040872010-11-29 10:33:49 +0100205static void ixp4xx_irq_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100207 int line = (d->irq < 32) ? irq2gpio[d->irq] : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (line >= 0)
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000210 *IXP4XX_GPIO_GPISR = (1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213/*
214 * Level triggered interrupts on GPIO lines can only be cleared when the
215 * interrupt condition disappears.
216 */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100217static void ixp4xx_irq_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100219 if (!(ixp4xx_irq_edge & (1 << d->irq)))
220 ixp4xx_irq_ack(d);
Kevin Hilman984d1152006-11-03 01:47:20 +0100221
Lennert Buytenhekee040872010-11-29 10:33:49 +0100222 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
223 *IXP4XX_ICMR2 |= (1 << (d->irq - 32));
Kevin Hilman984d1152006-11-03 01:47:20 +0100224 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100225 *IXP4XX_ICMR |= (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Russell King10dd5ce2006-11-23 11:41:32 +0000228static struct irq_chip ixp4xx_irq_chip = {
Kevin Hilman984d1152006-11-03 01:47:20 +0100229 .name = "IXP4xx",
Lennert Buytenhekee040872010-11-29 10:33:49 +0100230 .irq_ack = ixp4xx_irq_ack,
231 .irq_mask = ixp4xx_irq_mask,
232 .irq_unmask = ixp4xx_irq_unmask,
233 .irq_set_type = ixp4xx_set_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236void __init ixp4xx_init_irq(void)
237{
238 int i = 0;
239
240 /* Route all sources to IRQ instead of FIQ */
241 *IXP4XX_ICLR = 0x0;
242
243 /* Disable all interrupt */
244 *IXP4XX_ICMR = 0x0;
245
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100246 if (cpu_is_ixp46x() || cpu_is_ixp43x()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Route upper 32 sources to IRQ instead of FIQ */
248 *IXP4XX_ICLR2 = 0x00;
249
250 /* Disable upper 32 interrupts */
251 *IXP4XX_ICMR2 = 0x00;
252 }
253
254 /* Default to all level triggered */
Kevin Hilman984d1152006-11-03 01:47:20 +0100255 for(i = 0; i < NR_IRQS; i++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100256 irq_set_chip_and_handler(i, &ixp4xx_irq_chip,
257 handle_level_irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100258 set_irq_flags(i, IRQF_VALID);
259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262
263/*************************************************************************
264 * IXP4xx timer tick
265 * We use OS timer1 on the CPU for the timer tick and the timestamp
266 * counter as a source of real clock ticks to account for missed jiffies.
267 *************************************************************************/
268
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700269static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200271 struct clock_event_device *evt = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /* Clear Pending Interrupt by writing '1' to it */
274 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
275
Kevin Hilmane32f1502007-03-08 20:23:59 +0100276 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 return IRQ_HANDLED;
279}
280
281static struct irqaction ixp4xx_timer_irq = {
Kevin Hilmane32f1502007-03-08 20:23:59 +0100282 .name = "timer1",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700283 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Russell King09b8b5f2005-06-26 17:06:36 +0100284 .handler = ixp4xx_timer_interrupt,
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200285 .dev_id = &clockevent_ixp4xx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
Michael-Luke Jones435c5da2007-05-23 22:38:45 +0100288void __init ixp4xx_timer_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Kevin Hilmane32f1502007-03-08 20:23:59 +0100290 /* Reset/disable counter */
291 *IXP4XX_OSRT1 = 0;
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* Clear Pending Interrupt by writing '1' to it */
294 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* Reset time-stamp counter */
297 *IXP4XX_OSTS = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 /* Connect the interrupt handler and enable the interrupt */
300 setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +0100301
302 ixp4xx_clocksource_init();
Kevin Hilmane32f1502007-03-08 20:23:59 +0100303 ixp4xx_clockevent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306struct sys_timer ixp4xx_timer = {
307 .init = ixp4xx_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308};
309
Milan Svobodae520a362006-12-01 11:36:41 +0100310static struct pxa2xx_udc_mach_info ixp4xx_udc_info;
311
312void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info)
313{
314 memcpy(&ixp4xx_udc_info, info, sizeof *info);
315}
316
317static struct resource ixp4xx_udc_resources[] = {
318 [0] = {
319 .start = 0xc800b000,
320 .end = 0xc800bfff,
321 .flags = IORESOURCE_MEM,
322 },
323 [1] = {
324 .start = IRQ_IXP4XX_USB,
325 .end = IRQ_IXP4XX_USB,
326 .flags = IORESOURCE_IRQ,
327 },
328};
329
330/*
Philipp Zabel7a857622008-06-22 23:36:39 +0100331 * USB device controller. The IXP4xx uses the same controller as PXA25X,
Milan Svobodae520a362006-12-01 11:36:41 +0100332 * so we just use the same device.
333 */
334static struct platform_device ixp4xx_udc_device = {
Philipp Zabel7a857622008-06-22 23:36:39 +0100335 .name = "pxa25x-udc",
Milan Svobodae520a362006-12-01 11:36:41 +0100336 .id = -1,
337 .num_resources = 2,
338 .resource = ixp4xx_udc_resources,
339 .dev = {
340 .platform_data = &ixp4xx_udc_info,
341 },
342};
343
344static struct platform_device *ixp4xx_devices[] __initdata = {
345 &ixp4xx_udc_device,
346};
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static struct resource ixp46x_i2c_resources[] = {
349 [0] = {
350 .start = 0xc8011000,
351 .end = 0xc801101c,
352 .flags = IORESOURCE_MEM,
353 },
354 [1] = {
355 .start = IRQ_IXP4XX_I2C,
356 .end = IRQ_IXP4XX_I2C,
357 .flags = IORESOURCE_IRQ
358 }
359};
360
361/*
362 * I2C controller. The IXP46x uses the same block as the IOP3xx, so
363 * we just use the same device name.
364 */
365static struct platform_device ixp46x_i2c_controller = {
366 .name = "IOP3xx-I2C",
367 .id = 0,
368 .num_resources = 2,
369 .resource = ixp46x_i2c_resources
370};
371
372static struct platform_device *ixp46x_devices[] __initdata = {
373 &ixp46x_i2c_controller
374};
375
Deepak Saxena54e269e2006-01-05 20:59:29 +0000376unsigned long ixp4xx_exp_bus_size;
David Vrabel1e74c892006-01-18 22:46:43 +0000377EXPORT_SYMBOL(ixp4xx_exp_bus_size);
Deepak Saxena54e269e2006-01-05 20:59:29 +0000378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379void __init ixp4xx_sys_init(void)
380{
Deepak Saxena54e269e2006-01-05 20:59:29 +0000381 ixp4xx_exp_bus_size = SZ_16M;
382
Milan Svobodae520a362006-12-01 11:36:41 +0100383 platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices));
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (cpu_is_ixp46x()) {
Deepak Saxena54e269e2006-01-05 20:59:29 +0000386 int region;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 platform_add_devices(ixp46x_devices,
389 ARRAY_SIZE(ixp46x_devices));
Deepak Saxena54e269e2006-01-05 20:59:29 +0000390
391 for (region = 0; region < 7; region++) {
392 if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
393 ixp4xx_exp_bus_size = SZ_32M;
394 break;
395 }
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Deepak Saxena54e269e2006-01-05 20:59:29 +0000398
David Vrabel1e74c892006-01-18 22:46:43 +0000399 printk("IXP4xx: Using %luMiB expansion bus window size\n",
Deepak Saxena54e269e2006-01-05 20:59:29 +0000400 ixp4xx_exp_bus_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Kevin Hilmane32f1502007-03-08 20:23:59 +0100403/*
Russell King5b0d4952010-12-15 21:23:13 +0000404 * sched_clock()
405 */
406static DEFINE_CLOCK_DATA(cd);
407
408unsigned long long notrace sched_clock(void)
409{
410 u32 cyc = *IXP4XX_OSTS;
411 return cyc_to_sched_clock(&cd, cyc, (u32)~0);
412}
413
414static void notrace ixp4xx_update_sched_clock(void)
415{
416 u32 cyc = *IXP4XX_OSTS;
417 update_sched_clock(&cd, cyc, (u32)~0);
418}
419
420/*
Kevin Hilmane32f1502007-03-08 20:23:59 +0100421 * clocksource
422 */
Richard Cochran900b1702011-07-15 21:33:12 +0200423
424static cycle_t ixp4xx_clocksource_read(struct clocksource *c)
425{
426 return *IXP4XX_OSTS;
427}
428
Ben Hutchingse66a0222010-12-11 20:17:54 +0000429unsigned long ixp4xx_timer_freq = IXP4XX_TIMER_FREQ;
Krzysztof Halasa5dbc4652009-09-05 03:59:49 +0000430EXPORT_SYMBOL(ixp4xx_timer_freq);
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200431static void __init ixp4xx_clocksource_init(void)
Kevin Hilman84904d02006-09-22 00:58:57 +0100432{
Russell King5b0d4952010-12-15 21:23:13 +0000433 init_sched_clock(&cd, ixp4xx_update_sched_clock, 32, ixp4xx_timer_freq);
434
Richard Cochran900b1702011-07-15 21:33:12 +0200435 clocksource_mmio_init(NULL, "OSTS", ixp4xx_timer_freq, 200, 32,
436 ixp4xx_clocksource_read);
Kevin Hilman84904d02006-09-22 00:58:57 +0100437}
Kevin Hilmane32f1502007-03-08 20:23:59 +0100438
439/*
440 * clockevents
441 */
442static int ixp4xx_set_next_event(unsigned long evt,
443 struct clock_event_device *unused)
444{
445 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
446
447 *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts;
448
449 return 0;
450}
451
452static void ixp4xx_set_mode(enum clock_event_mode mode,
453 struct clock_event_device *evt)
454{
Kevin Hilman553876c2007-12-12 00:32:58 +0100455 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
456 unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100457
458 switch (mode) {
459 case CLOCK_EVT_MODE_PERIODIC:
460 osrt = LATCH & ~IXP4XX_OST_RELOAD_MASK;
461 opts = IXP4XX_OST_ENABLE;
462 break;
463 case CLOCK_EVT_MODE_ONESHOT:
464 /* period set by 'set next_event' */
465 osrt = 0;
466 opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT;
467 break;
468 case CLOCK_EVT_MODE_SHUTDOWN:
Kevin Hilman553876c2007-12-12 00:32:58 +0100469 opts &= ~IXP4XX_OST_ENABLE;
470 break;
471 case CLOCK_EVT_MODE_RESUME:
472 opts |= IXP4XX_OST_ENABLE;
473 break;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100474 case CLOCK_EVT_MODE_UNUSED:
475 default:
476 osrt = opts = 0;
477 break;
478 }
479
480 *IXP4XX_OSRT1 = osrt | opts;
481}
482
483static struct clock_event_device clockevent_ixp4xx = {
484 .name = "ixp4xx timer1",
485 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
486 .rating = 200,
487 .shift = 24,
488 .set_mode = ixp4xx_set_mode,
489 .set_next_event = ixp4xx_set_next_event,
490};
491
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200492static void __init ixp4xx_clockevent_init(void)
Kevin Hilmane32f1502007-03-08 20:23:59 +0100493{
Ben Hutchingse66a0222010-12-11 20:17:54 +0000494 clockevent_ixp4xx.mult = div_sc(IXP4XX_TIMER_FREQ, NSEC_PER_SEC,
Kevin Hilmane32f1502007-03-08 20:23:59 +0100495 clockevent_ixp4xx.shift);
496 clockevent_ixp4xx.max_delta_ns =
497 clockevent_delta2ns(0xfffffffe, &clockevent_ixp4xx);
498 clockevent_ixp4xx.min_delta_ns =
499 clockevent_delta2ns(0xf, &clockevent_ixp4xx);
Rusty Russell320ab2b2008-12-13 21:20:26 +1030500 clockevent_ixp4xx.cpumask = cpumask_of(0);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100501
502 clockevents_register_device(&clockevent_ixp4xx);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100503}