blob: 71728d36d501887f35fdff0ed67dd6714e2f9a3b [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>
24#include <linux/bootmem.h>
25#include <linux/interrupt.h>
26#include <linux/bitops.h>
27#include <linux/time.h>
28#include <linux/timex.h>
Kevin Hilman84904d02006-09-22 00:58:57 +010029#include <linux/clocksource.h>
Kevin Hilmane32f1502007-03-08 20:23:59 +010030#include <linux/clockchips.h>
Russell Kingfced80c2008-09-06 12:10:45 +010031#include <linux/io.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>
39
40#include <asm/mach/map.h>
41#include <asm/mach/irq.h>
42#include <asm/mach/time.h>
43
Mikael Petterssonceb69a82009-09-11 00:59:07 +020044static void __init ixp4xx_clocksource_init(void);
45static void __init ixp4xx_clockevent_init(void);
Kevin Hilmane32f1502007-03-08 20:23:59 +010046static struct clock_event_device clockevent_ixp4xx;
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +010047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*************************************************************************
49 * IXP4xx chipset I/O mapping
50 *************************************************************************/
51static struct map_desc ixp4xx_io_desc[] __initdata = {
52 { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
53 .virtual = IXP4XX_PERIPHERAL_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010054 .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .length = IXP4XX_PERIPHERAL_REGION_SIZE,
56 .type = MT_DEVICE
57 }, { /* Expansion Bus Config Registers */
58 .virtual = IXP4XX_EXP_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010059 .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .length = IXP4XX_EXP_CFG_REGION_SIZE,
61 .type = MT_DEVICE
62 }, { /* PCI Registers */
63 .virtual = IXP4XX_PCI_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010064 .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .length = IXP4XX_PCI_CFG_REGION_SIZE,
66 .type = MT_DEVICE
Deepak Saxena5932ae32005-06-24 20:54:35 +010067 },
68#ifdef CONFIG_DEBUG_LL
69 { /* Debug UART mapping */
70 .virtual = IXP4XX_DEBUG_UART_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010071 .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS),
Deepak Saxena5932ae32005-06-24 20:54:35 +010072 .length = IXP4XX_DEBUG_UART_REGION_SIZE,
73 .type = MT_DEVICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
Deepak Saxena5932ae32005-06-24 20:54:35 +010075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78void __init ixp4xx_map_io(void)
79{
80 iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
81}
82
83
84/*************************************************************************
85 * IXP4xx chipset IRQ handling
86 *
87 * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
88 * (be it PCI or something else) configures that GPIO line
89 * as an IRQ.
90 **************************************************************************/
Deepak Saxenabdf82b52005-08-29 22:46:30 +010091enum ixp4xx_irq_type {
92 IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
93};
94
Kevin Hilman984d1152006-11-03 01:47:20 +010095/* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */
96static unsigned long long ixp4xx_irq_edge = 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +010097
98/*
99 * IRQ -> GPIO mapping table
100 */
Lennert Buytenhek6cc1b652006-04-20 21:24:38 +0100101static signed char irq2gpio[32] = {
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100102 -1, -1, -1, -1, -1, -1, 0, 1,
103 -1, -1, -1, -1, -1, -1, -1, -1,
104 -1, -1, -1, 2, 3, 4, 5, 6,
105 7, 8, 9, 10, 11, 12, -1, -1,
106};
107
Milan Svoboda25735d12007-03-21 14:04:08 +0100108int gpio_to_irq(int gpio)
109{
110 int irq;
111
112 for (irq = 0; irq < 32; irq++) {
113 if (irq2gpio[irq] == gpio)
114 return irq;
115 }
116 return -EINVAL;
117}
118EXPORT_SYMBOL(gpio_to_irq);
119
Roel Kluinefec1942009-11-03 23:05:32 +0100120int irq_to_gpio(unsigned int irq)
Milan Svoboda25735d12007-03-21 14:04:08 +0100121{
122 int gpio = (irq < 32) ? irq2gpio[irq] : -EINVAL;
123
124 if (gpio == -1)
125 return -EINVAL;
126
127 return gpio;
128}
129EXPORT_SYMBOL(irq_to_gpio);
130
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100131static int ixp4xx_set_irq_type(unsigned int irq, unsigned int type)
132{
133 int line = irq2gpio[irq];
134 u32 int_style;
135 enum ixp4xx_irq_type irq_type;
136 volatile u32 *int_reg;
137
138 /*
139 * Only for GPIO IRQs
140 */
141 if (line < 0)
142 return -EINVAL;
143
Mårten Wikström06e44792006-02-22 22:27:23 +0000144 switch (type){
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100145 case IRQ_TYPE_EDGE_BOTH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100146 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
147 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000148 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100149 case IRQ_TYPE_EDGE_RISING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100150 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
151 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000152 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100153 case IRQ_TYPE_EDGE_FALLING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100154 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
155 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000156 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100157 case IRQ_TYPE_LEVEL_HIGH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100158 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
159 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000160 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100161 case IRQ_TYPE_LEVEL_LOW:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100162 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
163 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000164 break;
165 default:
David Vrabel6132f9e2005-09-26 19:52:56 +0100166 return -EINVAL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000167 }
Kevin Hilman984d1152006-11-03 01:47:20 +0100168
169 if (irq_type == IXP4XX_IRQ_EDGE)
170 ixp4xx_irq_edge |= (1 << irq);
171 else
172 ixp4xx_irq_edge &= ~(1 << irq);
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100173
174 if (line >= 8) { /* pins 8-15 */
175 line -= 8;
176 int_reg = IXP4XX_GPIO_GPIT2R;
177 } else { /* pins 0-7 */
178 int_reg = IXP4XX_GPIO_GPIT1R;
179 }
180
181 /* Clear the style for the appropriate pin */
182 *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
183 (line * IXP4XX_GPIO_STYLE_SIZE));
184
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000185 *IXP4XX_GPIO_GPISR = (1 << line);
186
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100187 /* Set the new style */
188 *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
David Vrabel6132f9e2005-09-26 19:52:56 +0100189
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000190 /* Configure the line as an input */
Tim Harvey5c9b9122007-07-14 11:15:05 +0200191 gpio_line_config(irq2gpio[irq], IXP4XX_GPIO_IN);
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000192
David Vrabel6132f9e2005-09-26 19:52:56 +0100193 return 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static void ixp4xx_irq_mask(unsigned int irq)
197{
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100198 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && irq >= 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *IXP4XX_ICMR2 &= ~(1 << (irq - 32));
200 else
201 *IXP4XX_ICMR &= ~(1 << irq);
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static void ixp4xx_irq_ack(unsigned int irq)
205{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 int line = (irq < 32) ? irq2gpio[irq] : -1;
207
208 if (line >= 0)
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000209 *IXP4XX_GPIO_GPISR = (1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212/*
213 * Level triggered interrupts on GPIO lines can only be cleared when the
214 * interrupt condition disappears.
215 */
Kevin Hilman984d1152006-11-03 01:47:20 +0100216static void ixp4xx_irq_unmask(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Kevin Hilman984d1152006-11-03 01:47:20 +0100218 if (!(ixp4xx_irq_edge & (1 << irq)))
219 ixp4xx_irq_ack(irq);
220
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100221 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && irq >= 32)
Kevin Hilman984d1152006-11-03 01:47:20 +0100222 *IXP4XX_ICMR2 |= (1 << (irq - 32));
223 else
224 *IXP4XX_ICMR |= (1 << irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Russell King10dd5ce2006-11-23 11:41:32 +0000227static struct irq_chip ixp4xx_irq_chip = {
Kevin Hilman984d1152006-11-03 01:47:20 +0100228 .name = "IXP4xx",
Russell King2be863c2005-09-06 23:13:17 +0100229 .ack = ixp4xx_irq_ack,
230 .mask = ixp4xx_irq_mask,
231 .unmask = ixp4xx_irq_unmask,
232 .set_type = ixp4xx_set_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235void __init ixp4xx_init_irq(void)
236{
237 int i = 0;
238
239 /* Route all sources to IRQ instead of FIQ */
240 *IXP4XX_ICLR = 0x0;
241
242 /* Disable all interrupt */
243 *IXP4XX_ICMR = 0x0;
244
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100245 if (cpu_is_ixp46x() || cpu_is_ixp43x()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* Route upper 32 sources to IRQ instead of FIQ */
247 *IXP4XX_ICLR2 = 0x00;
248
249 /* Disable upper 32 interrupts */
250 *IXP4XX_ICMR2 = 0x00;
251 }
252
253 /* Default to all level triggered */
Kevin Hilman984d1152006-11-03 01:47:20 +0100254 for(i = 0; i < NR_IRQS; i++) {
255 set_irq_chip(i, &ixp4xx_irq_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000256 set_irq_handler(i, handle_level_irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100257 set_irq_flags(i, IRQF_VALID);
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261
262/*************************************************************************
263 * IXP4xx timer tick
264 * We use OS timer1 on the CPU for the timer tick and the timestamp
265 * counter as a source of real clock ticks to account for missed jiffies.
266 *************************************************************************/
267
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700268static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200270 struct clock_event_device *evt = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /* Clear Pending Interrupt by writing '1' to it */
273 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
274
Kevin Hilmane32f1502007-03-08 20:23:59 +0100275 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 return IRQ_HANDLED;
278}
279
280static struct irqaction ixp4xx_timer_irq = {
Kevin Hilmane32f1502007-03-08 20:23:59 +0100281 .name = "timer1",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700282 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Russell King09b8b5f2005-06-26 17:06:36 +0100283 .handler = ixp4xx_timer_interrupt,
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200284 .dev_id = &clockevent_ixp4xx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Michael-Luke Jones435c5da2007-05-23 22:38:45 +0100287void __init ixp4xx_timer_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Kevin Hilmane32f1502007-03-08 20:23:59 +0100289 /* Reset/disable counter */
290 *IXP4XX_OSRT1 = 0;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* Clear Pending Interrupt by writing '1' to it */
293 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* Reset time-stamp counter */
296 *IXP4XX_OSTS = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* Connect the interrupt handler and enable the interrupt */
299 setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +0100300
301 ixp4xx_clocksource_init();
Kevin Hilmane32f1502007-03-08 20:23:59 +0100302 ixp4xx_clockevent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305struct sys_timer ixp4xx_timer = {
306 .init = ixp4xx_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307};
308
Milan Svobodae520a362006-12-01 11:36:41 +0100309static struct pxa2xx_udc_mach_info ixp4xx_udc_info;
310
311void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info)
312{
313 memcpy(&ixp4xx_udc_info, info, sizeof *info);
314}
315
316static struct resource ixp4xx_udc_resources[] = {
317 [0] = {
318 .start = 0xc800b000,
319 .end = 0xc800bfff,
320 .flags = IORESOURCE_MEM,
321 },
322 [1] = {
323 .start = IRQ_IXP4XX_USB,
324 .end = IRQ_IXP4XX_USB,
325 .flags = IORESOURCE_IRQ,
326 },
327};
328
329/*
Philipp Zabel7a857622008-06-22 23:36:39 +0100330 * USB device controller. The IXP4xx uses the same controller as PXA25X,
Milan Svobodae520a362006-12-01 11:36:41 +0100331 * so we just use the same device.
332 */
333static struct platform_device ixp4xx_udc_device = {
Philipp Zabel7a857622008-06-22 23:36:39 +0100334 .name = "pxa25x-udc",
Milan Svobodae520a362006-12-01 11:36:41 +0100335 .id = -1,
336 .num_resources = 2,
337 .resource = ixp4xx_udc_resources,
338 .dev = {
339 .platform_data = &ixp4xx_udc_info,
340 },
341};
342
343static struct platform_device *ixp4xx_devices[] __initdata = {
344 &ixp4xx_udc_device,
345};
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static struct resource ixp46x_i2c_resources[] = {
348 [0] = {
349 .start = 0xc8011000,
350 .end = 0xc801101c,
351 .flags = IORESOURCE_MEM,
352 },
353 [1] = {
354 .start = IRQ_IXP4XX_I2C,
355 .end = IRQ_IXP4XX_I2C,
356 .flags = IORESOURCE_IRQ
357 }
358};
359
360/*
361 * I2C controller. The IXP46x uses the same block as the IOP3xx, so
362 * we just use the same device name.
363 */
364static struct platform_device ixp46x_i2c_controller = {
365 .name = "IOP3xx-I2C",
366 .id = 0,
367 .num_resources = 2,
368 .resource = ixp46x_i2c_resources
369};
370
371static struct platform_device *ixp46x_devices[] __initdata = {
372 &ixp46x_i2c_controller
373};
374
Deepak Saxena54e269e2006-01-05 20:59:29 +0000375unsigned long ixp4xx_exp_bus_size;
David Vrabel1e74c892006-01-18 22:46:43 +0000376EXPORT_SYMBOL(ixp4xx_exp_bus_size);
Deepak Saxena54e269e2006-01-05 20:59:29 +0000377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378void __init ixp4xx_sys_init(void)
379{
Deepak Saxena54e269e2006-01-05 20:59:29 +0000380 ixp4xx_exp_bus_size = SZ_16M;
381
Milan Svobodae520a362006-12-01 11:36:41 +0100382 platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices));
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (cpu_is_ixp46x()) {
Deepak Saxena54e269e2006-01-05 20:59:29 +0000385 int region;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 platform_add_devices(ixp46x_devices,
388 ARRAY_SIZE(ixp46x_devices));
Deepak Saxena54e269e2006-01-05 20:59:29 +0000389
390 for (region = 0; region < 7; region++) {
391 if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
392 ixp4xx_exp_bus_size = SZ_32M;
393 break;
394 }
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
Deepak Saxena54e269e2006-01-05 20:59:29 +0000397
David Vrabel1e74c892006-01-18 22:46:43 +0000398 printk("IXP4xx: Using %luMiB expansion bus window size\n",
Deepak Saxena54e269e2006-01-05 20:59:29 +0000399 ixp4xx_exp_bus_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Kevin Hilmane32f1502007-03-08 20:23:59 +0100402/*
403 * clocksource
404 */
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200405static cycle_t ixp4xx_get_cycles(struct clocksource *cs)
Kevin Hilman84904d02006-09-22 00:58:57 +0100406{
407 return *IXP4XX_OSTS;
408}
409
410static struct clocksource clocksource_ixp4xx = {
411 .name = "OSTS",
412 .rating = 200,
413 .read = ixp4xx_get_cycles,
414 .mask = CLOCKSOURCE_MASK(32),
415 .shift = 20,
Thomas Gleixnerc66699a2007-02-16 01:27:37 -0800416 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Kevin Hilman84904d02006-09-22 00:58:57 +0100417};
418
419unsigned long ixp4xx_timer_freq = FREQ;
Krzysztof Halasa5dbc4652009-09-05 03:59:49 +0000420EXPORT_SYMBOL(ixp4xx_timer_freq);
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200421static void __init ixp4xx_clocksource_init(void)
Kevin Hilman84904d02006-09-22 00:58:57 +0100422{
423 clocksource_ixp4xx.mult =
424 clocksource_hz2mult(ixp4xx_timer_freq,
425 clocksource_ixp4xx.shift);
426 clocksource_register(&clocksource_ixp4xx);
Kevin Hilman84904d02006-09-22 00:58:57 +0100427}
Kevin Hilmane32f1502007-03-08 20:23:59 +0100428
429/*
Mikael Petterssone00d9d42010-01-09 13:03:59 +0100430 * sched_clock()
431 */
432unsigned long long sched_clock(void)
433{
434 cycle_t cyc = ixp4xx_get_cycles(NULL);
435 struct clocksource *cs = &clocksource_ixp4xx;
436
437 return clocksource_cyc2ns(cyc, cs->mult, cs->shift);
438}
439
440/*
Kevin Hilmane32f1502007-03-08 20:23:59 +0100441 * clockevents
442 */
443static int ixp4xx_set_next_event(unsigned long evt,
444 struct clock_event_device *unused)
445{
446 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
447
448 *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts;
449
450 return 0;
451}
452
453static void ixp4xx_set_mode(enum clock_event_mode mode,
454 struct clock_event_device *evt)
455{
Kevin Hilman553876c2007-12-12 00:32:58 +0100456 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
457 unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100458
459 switch (mode) {
460 case CLOCK_EVT_MODE_PERIODIC:
461 osrt = LATCH & ~IXP4XX_OST_RELOAD_MASK;
462 opts = IXP4XX_OST_ENABLE;
463 break;
464 case CLOCK_EVT_MODE_ONESHOT:
465 /* period set by 'set next_event' */
466 osrt = 0;
467 opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT;
468 break;
469 case CLOCK_EVT_MODE_SHUTDOWN:
Kevin Hilman553876c2007-12-12 00:32:58 +0100470 opts &= ~IXP4XX_OST_ENABLE;
471 break;
472 case CLOCK_EVT_MODE_RESUME:
473 opts |= IXP4XX_OST_ENABLE;
474 break;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100475 case CLOCK_EVT_MODE_UNUSED:
476 default:
477 osrt = opts = 0;
478 break;
479 }
480
481 *IXP4XX_OSRT1 = osrt | opts;
482}
483
484static struct clock_event_device clockevent_ixp4xx = {
485 .name = "ixp4xx timer1",
486 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
487 .rating = 200,
488 .shift = 24,
489 .set_mode = ixp4xx_set_mode,
490 .set_next_event = ixp4xx_set_next_event,
491};
492
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200493static void __init ixp4xx_clockevent_init(void)
Kevin Hilmane32f1502007-03-08 20:23:59 +0100494{
495 clockevent_ixp4xx.mult = div_sc(FREQ, NSEC_PER_SEC,
496 clockevent_ixp4xx.shift);
497 clockevent_ixp4xx.max_delta_ns =
498 clockevent_delta2ns(0xfffffffe, &clockevent_ixp4xx);
499 clockevent_ixp4xx.min_delta_ns =
500 clockevent_delta2ns(0xf, &clockevent_ixp4xx);
Rusty Russell320ab2b2008-12-13 21:20:26 +1030501 clockevent_ixp4xx.cpumask = cpumask_of(0);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100502
503 clockevents_register_device(&clockevent_ixp4xx);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100504}