Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/mm.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/tty.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/serial_core.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/bitops.h> |
| 25 | #include <linux/time.h> |
| 26 | #include <linux/timex.h> |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 27 | #include <linux/clocksource.h> |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 28 | #include <linux/clockchips.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 29 | #include <linux/io.h> |
Paul Gortmaker | dc28094 | 2011-07-31 16:17:29 -0400 | [diff] [blame] | 30 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 32 | #include <mach/udc.h> |
| 33 | #include <mach/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/pgtable.h> |
| 36 | #include <asm/page.h> |
| 37 | #include <asm/irq.h> |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 38 | #include <asm/sched_clock.h> |
Olof Johansson | 86dfe44 | 2012-03-29 23:22:44 -0700 | [diff] [blame^] | 39 | #include <asm/system_misc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | #include <asm/mach/map.h> |
| 42 | #include <asm/mach/irq.h> |
| 43 | #include <asm/mach/time.h> |
| 44 | |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 45 | static void __init ixp4xx_clocksource_init(void); |
| 46 | static void __init ixp4xx_clockevent_init(void); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 47 | static struct clock_event_device clockevent_ixp4xx; |
Kevin Hilman | f9a8ca1 | 2006-12-06 00:45:07 +0100 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /************************************************************************* |
| 50 | * IXP4xx chipset I/O mapping |
| 51 | *************************************************************************/ |
| 52 | static struct map_desc ixp4xx_io_desc[] __initdata = { |
| 53 | { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */ |
| 54 | .virtual = IXP4XX_PERIPHERAL_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 55 | .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | .length = IXP4XX_PERIPHERAL_REGION_SIZE, |
| 57 | .type = MT_DEVICE |
| 58 | }, { /* Expansion Bus Config Registers */ |
| 59 | .virtual = IXP4XX_EXP_CFG_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 60 | .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | .length = IXP4XX_EXP_CFG_REGION_SIZE, |
| 62 | .type = MT_DEVICE |
| 63 | }, { /* PCI Registers */ |
| 64 | .virtual = IXP4XX_PCI_CFG_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 65 | .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | .length = IXP4XX_PCI_CFG_REGION_SIZE, |
| 67 | .type = MT_DEVICE |
Deepak Saxena | 5932ae3 | 2005-06-24 20:54:35 +0100 | [diff] [blame] | 68 | }, |
| 69 | #ifdef CONFIG_DEBUG_LL |
| 70 | { /* Debug UART mapping */ |
| 71 | .virtual = IXP4XX_DEBUG_UART_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 72 | .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS), |
Deepak Saxena | 5932ae3 | 2005-06-24 20:54:35 +0100 | [diff] [blame] | 73 | .length = IXP4XX_DEBUG_UART_REGION_SIZE, |
| 74 | .type = MT_DEVICE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
Deepak Saxena | 5932ae3 | 2005-06-24 20:54:35 +0100 | [diff] [blame] | 76 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | void __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 Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 92 | enum ixp4xx_irq_type { |
| 93 | IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE |
| 94 | }; |
| 95 | |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 96 | /* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */ |
| 97 | static unsigned long long ixp4xx_irq_edge = 0; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 98 | |
| 99 | /* |
| 100 | * IRQ -> GPIO mapping table |
| 101 | */ |
Lennert Buytenhek | 6cc1b65 | 2006-04-20 21:24:38 +0100 | [diff] [blame] | 102 | static signed char irq2gpio[32] = { |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 103 | -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 Svoboda | 25735d1 | 2007-03-21 14:04:08 +0100 | [diff] [blame] | 109 | int 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 | } |
| 119 | EXPORT_SYMBOL(gpio_to_irq); |
| 120 | |
Roel Kluin | efec194 | 2009-11-03 23:05:32 +0100 | [diff] [blame] | 121 | int irq_to_gpio(unsigned int irq) |
Milan Svoboda | 25735d1 | 2007-03-21 14:04:08 +0100 | [diff] [blame] | 122 | { |
| 123 | int gpio = (irq < 32) ? irq2gpio[irq] : -EINVAL; |
| 124 | |
| 125 | if (gpio == -1) |
| 126 | return -EINVAL; |
| 127 | |
| 128 | return gpio; |
| 129 | } |
| 130 | EXPORT_SYMBOL(irq_to_gpio); |
| 131 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 132 | static int ixp4xx_set_irq_type(struct irq_data *d, unsigned int type) |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 133 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 134 | int line = irq2gpio[d->irq]; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 135 | 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öm | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 145 | switch (type){ |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 146 | case IRQ_TYPE_EDGE_BOTH: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 147 | int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL; |
| 148 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 149 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 150 | case IRQ_TYPE_EDGE_RISING: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 151 | int_style = IXP4XX_GPIO_STYLE_RISING_EDGE; |
| 152 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 153 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 154 | case IRQ_TYPE_EDGE_FALLING: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 155 | int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE; |
| 156 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 157 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 158 | case IRQ_TYPE_LEVEL_HIGH: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 159 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH; |
| 160 | irq_type = IXP4XX_IRQ_LEVEL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 161 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 162 | case IRQ_TYPE_LEVEL_LOW: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 163 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW; |
| 164 | irq_type = IXP4XX_IRQ_LEVEL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 165 | break; |
| 166 | default: |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 167 | return -EINVAL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 168 | } |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 169 | |
| 170 | if (irq_type == IXP4XX_IRQ_EDGE) |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 171 | ixp4xx_irq_edge |= (1 << d->irq); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 172 | else |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 173 | ixp4xx_irq_edge &= ~(1 << d->irq); |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 174 | |
| 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 Saxena | f7e8bbb8 | 2006-01-04 17:17:10 +0000 | [diff] [blame] | 186 | *IXP4XX_GPIO_GPISR = (1 << line); |
| 187 | |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 188 | /* Set the new style */ |
| 189 | *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE)); |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 190 | |
Alessandro Zummo | 73deb7d | 2006-03-20 17:10:12 +0000 | [diff] [blame] | 191 | /* Configure the line as an input */ |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 192 | gpio_line_config(irq2gpio[d->irq], IXP4XX_GPIO_IN); |
Alessandro Zummo | 73deb7d | 2006-03-20 17:10:12 +0000 | [diff] [blame] | 193 | |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 194 | return 0; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 195 | } |
| 196 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 197 | static void ixp4xx_irq_mask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 199 | if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32) |
| 200 | *IXP4XX_ICMR2 &= ~(1 << (d->irq - 32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | else |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 202 | *IXP4XX_ICMR &= ~(1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 205 | static void ixp4xx_irq_ack(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 207 | int line = (d->irq < 32) ? irq2gpio[d->irq] : -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 209 | if (line >= 0) |
Deepak Saxena | f7e8bbb8 | 2006-01-04 17:17:10 +0000 | [diff] [blame] | 210 | *IXP4XX_GPIO_GPISR = (1 << line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Level triggered interrupts on GPIO lines can only be cleared when the |
| 215 | * interrupt condition disappears. |
| 216 | */ |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 217 | static void ixp4xx_irq_unmask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 219 | if (!(ixp4xx_irq_edge & (1 << d->irq))) |
| 220 | ixp4xx_irq_ack(d); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 221 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 222 | if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32) |
| 223 | *IXP4XX_ICMR2 |= (1 << (d->irq - 32)); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 224 | else |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 225 | *IXP4XX_ICMR |= (1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 228 | static struct irq_chip ixp4xx_irq_chip = { |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 229 | .name = "IXP4xx", |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 230 | .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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | }; |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | void __init ixp4xx_init_irq(void) |
| 237 | { |
| 238 | int i = 0; |
| 239 | |
Nicolas Pitre | 12d2b4e | 2011-08-03 07:25:39 -0400 | [diff] [blame] | 240 | /* |
| 241 | * ixp4xx does not implement the XScale PWRMODE register |
| 242 | * so it must not call cpu_do_idle(). |
| 243 | */ |
| 244 | disable_hlt(); |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | /* Route all sources to IRQ instead of FIQ */ |
| 247 | *IXP4XX_ICLR = 0x0; |
| 248 | |
| 249 | /* Disable all interrupt */ |
| 250 | *IXP4XX_ICMR = 0x0; |
| 251 | |
Ruslan V. Sushko | 45fba08 | 2007-04-06 15:00:31 +0100 | [diff] [blame] | 252 | if (cpu_is_ixp46x() || cpu_is_ixp43x()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | /* Route upper 32 sources to IRQ instead of FIQ */ |
| 254 | *IXP4XX_ICLR2 = 0x00; |
| 255 | |
| 256 | /* Disable upper 32 interrupts */ |
| 257 | *IXP4XX_ICMR2 = 0x00; |
| 258 | } |
| 259 | |
| 260 | /* Default to all level triggered */ |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 261 | for(i = 0; i < NR_IRQS; i++) { |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 262 | irq_set_chip_and_handler(i, &ixp4xx_irq_chip, |
| 263 | handle_level_irq); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 264 | set_irq_flags(i, IRQF_VALID); |
| 265 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | |
| 269 | /************************************************************************* |
| 270 | * IXP4xx timer tick |
| 271 | * We use OS timer1 on the CPU for the timer tick and the timestamp |
| 272 | * counter as a source of real clock ticks to account for missed jiffies. |
| 273 | *************************************************************************/ |
| 274 | |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 275 | static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 277 | struct clock_event_device *evt = dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | /* Clear Pending Interrupt by writing '1' to it */ |
| 280 | *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND; |
| 281 | |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 282 | evt->event_handler(evt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
| 284 | return IRQ_HANDLED; |
| 285 | } |
| 286 | |
| 287 | static struct irqaction ixp4xx_timer_irq = { |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 288 | .name = "timer1", |
Bernhard Walle | b30faba | 2007-05-08 00:35:39 -0700 | [diff] [blame] | 289 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
Russell King | 09b8b5f | 2005-06-26 17:06:36 +0100 | [diff] [blame] | 290 | .handler = ixp4xx_timer_interrupt, |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 291 | .dev_id = &clockevent_ixp4xx, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | }; |
| 293 | |
Michael-Luke Jones | 435c5da | 2007-05-23 22:38:45 +0100 | [diff] [blame] | 294 | void __init ixp4xx_timer_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 296 | /* Reset/disable counter */ |
| 297 | *IXP4XX_OSRT1 = 0; |
| 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | /* Clear Pending Interrupt by writing '1' to it */ |
| 300 | *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND; |
| 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | /* Reset time-stamp counter */ |
| 303 | *IXP4XX_OSTS = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
| 305 | /* Connect the interrupt handler and enable the interrupt */ |
| 306 | setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq); |
Kevin Hilman | f9a8ca1 | 2006-12-06 00:45:07 +0100 | [diff] [blame] | 307 | |
| 308 | ixp4xx_clocksource_init(); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 309 | ixp4xx_clockevent_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | struct sys_timer ixp4xx_timer = { |
| 313 | .init = ixp4xx_timer_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | }; |
| 315 | |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 316 | static struct pxa2xx_udc_mach_info ixp4xx_udc_info; |
| 317 | |
| 318 | void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info) |
| 319 | { |
| 320 | memcpy(&ixp4xx_udc_info, info, sizeof *info); |
| 321 | } |
| 322 | |
| 323 | static struct resource ixp4xx_udc_resources[] = { |
| 324 | [0] = { |
| 325 | .start = 0xc800b000, |
| 326 | .end = 0xc800bfff, |
| 327 | .flags = IORESOURCE_MEM, |
| 328 | }, |
| 329 | [1] = { |
| 330 | .start = IRQ_IXP4XX_USB, |
| 331 | .end = IRQ_IXP4XX_USB, |
| 332 | .flags = IORESOURCE_IRQ, |
| 333 | }, |
| 334 | }; |
| 335 | |
| 336 | /* |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 337 | * USB device controller. The IXP4xx uses the same controller as PXA25X, |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 338 | * so we just use the same device. |
| 339 | */ |
| 340 | static struct platform_device ixp4xx_udc_device = { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 341 | .name = "pxa25x-udc", |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 342 | .id = -1, |
| 343 | .num_resources = 2, |
| 344 | .resource = ixp4xx_udc_resources, |
| 345 | .dev = { |
| 346 | .platform_data = &ixp4xx_udc_info, |
| 347 | }, |
| 348 | }; |
| 349 | |
| 350 | static struct platform_device *ixp4xx_devices[] __initdata = { |
| 351 | &ixp4xx_udc_device, |
| 352 | }; |
| 353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | static struct resource ixp46x_i2c_resources[] = { |
| 355 | [0] = { |
| 356 | .start = 0xc8011000, |
| 357 | .end = 0xc801101c, |
| 358 | .flags = IORESOURCE_MEM, |
| 359 | }, |
| 360 | [1] = { |
| 361 | .start = IRQ_IXP4XX_I2C, |
| 362 | .end = IRQ_IXP4XX_I2C, |
| 363 | .flags = IORESOURCE_IRQ |
| 364 | } |
| 365 | }; |
| 366 | |
| 367 | /* |
| 368 | * I2C controller. The IXP46x uses the same block as the IOP3xx, so |
| 369 | * we just use the same device name. |
| 370 | */ |
| 371 | static struct platform_device ixp46x_i2c_controller = { |
| 372 | .name = "IOP3xx-I2C", |
| 373 | .id = 0, |
| 374 | .num_resources = 2, |
| 375 | .resource = ixp46x_i2c_resources |
| 376 | }; |
| 377 | |
| 378 | static struct platform_device *ixp46x_devices[] __initdata = { |
| 379 | &ixp46x_i2c_controller |
| 380 | }; |
| 381 | |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 382 | unsigned long ixp4xx_exp_bus_size; |
David Vrabel | 1e74c89 | 2006-01-18 22:46:43 +0000 | [diff] [blame] | 383 | EXPORT_SYMBOL(ixp4xx_exp_bus_size); |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | void __init ixp4xx_sys_init(void) |
| 386 | { |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 387 | ixp4xx_exp_bus_size = SZ_16M; |
| 388 | |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 389 | platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices)); |
| 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | if (cpu_is_ixp46x()) { |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 392 | int region; |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | platform_add_devices(ixp46x_devices, |
| 395 | ARRAY_SIZE(ixp46x_devices)); |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 396 | |
| 397 | for (region = 0; region < 7; region++) { |
| 398 | if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) { |
| 399 | ixp4xx_exp_bus_size = SZ_32M; |
| 400 | break; |
| 401 | } |
| 402 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 404 | |
David Vrabel | 1e74c89 | 2006-01-18 22:46:43 +0000 | [diff] [blame] | 405 | printk("IXP4xx: Using %luMiB expansion bus window size\n", |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 406 | ixp4xx_exp_bus_size >> 20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 409 | /* |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 410 | * sched_clock() |
| 411 | */ |
Marc Zyngier | 2f0778af | 2011-12-15 12:19:23 +0100 | [diff] [blame] | 412 | static u32 notrace ixp4xx_read_sched_clock(void) |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 413 | { |
Marc Zyngier | 2f0778af | 2011-12-15 12:19:23 +0100 | [diff] [blame] | 414 | return *IXP4XX_OSTS; |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | /* |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 418 | * clocksource |
| 419 | */ |
Richard Cochran | 900b170 | 2011-07-15 21:33:12 +0200 | [diff] [blame] | 420 | |
| 421 | static cycle_t ixp4xx_clocksource_read(struct clocksource *c) |
| 422 | { |
| 423 | return *IXP4XX_OSTS; |
| 424 | } |
| 425 | |
Ben Hutchings | e66a022 | 2010-12-11 20:17:54 +0000 | [diff] [blame] | 426 | unsigned long ixp4xx_timer_freq = IXP4XX_TIMER_FREQ; |
Krzysztof Halasa | 5dbc465 | 2009-09-05 03:59:49 +0000 | [diff] [blame] | 427 | EXPORT_SYMBOL(ixp4xx_timer_freq); |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 428 | static void __init ixp4xx_clocksource_init(void) |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 429 | { |
Marc Zyngier | 2f0778af | 2011-12-15 12:19:23 +0100 | [diff] [blame] | 430 | setup_sched_clock(ixp4xx_read_sched_clock, 32, ixp4xx_timer_freq); |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 431 | |
Richard Cochran | 900b170 | 2011-07-15 21:33:12 +0200 | [diff] [blame] | 432 | clocksource_mmio_init(NULL, "OSTS", ixp4xx_timer_freq, 200, 32, |
| 433 | ixp4xx_clocksource_read); |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 434 | } |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 435 | |
| 436 | /* |
| 437 | * clockevents |
| 438 | */ |
| 439 | static int ixp4xx_set_next_event(unsigned long evt, |
| 440 | struct clock_event_device *unused) |
| 441 | { |
| 442 | unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK; |
| 443 | |
| 444 | *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts; |
| 445 | |
| 446 | return 0; |
| 447 | } |
| 448 | |
| 449 | static void ixp4xx_set_mode(enum clock_event_mode mode, |
| 450 | struct clock_event_device *evt) |
| 451 | { |
Kevin Hilman | 553876c | 2007-12-12 00:32:58 +0100 | [diff] [blame] | 452 | unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK; |
| 453 | unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK; |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 454 | |
| 455 | switch (mode) { |
| 456 | case CLOCK_EVT_MODE_PERIODIC: |
| 457 | osrt = LATCH & ~IXP4XX_OST_RELOAD_MASK; |
| 458 | opts = IXP4XX_OST_ENABLE; |
| 459 | break; |
| 460 | case CLOCK_EVT_MODE_ONESHOT: |
| 461 | /* period set by 'set next_event' */ |
| 462 | osrt = 0; |
| 463 | opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT; |
| 464 | break; |
| 465 | case CLOCK_EVT_MODE_SHUTDOWN: |
Kevin Hilman | 553876c | 2007-12-12 00:32:58 +0100 | [diff] [blame] | 466 | opts &= ~IXP4XX_OST_ENABLE; |
| 467 | break; |
| 468 | case CLOCK_EVT_MODE_RESUME: |
| 469 | opts |= IXP4XX_OST_ENABLE; |
| 470 | break; |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 471 | case CLOCK_EVT_MODE_UNUSED: |
| 472 | default: |
| 473 | osrt = opts = 0; |
| 474 | break; |
| 475 | } |
| 476 | |
| 477 | *IXP4XX_OSRT1 = osrt | opts; |
| 478 | } |
| 479 | |
| 480 | static struct clock_event_device clockevent_ixp4xx = { |
| 481 | .name = "ixp4xx timer1", |
| 482 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
| 483 | .rating = 200, |
| 484 | .shift = 24, |
| 485 | .set_mode = ixp4xx_set_mode, |
| 486 | .set_next_event = ixp4xx_set_next_event, |
| 487 | }; |
| 488 | |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 489 | static void __init ixp4xx_clockevent_init(void) |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 490 | { |
Ben Hutchings | e66a022 | 2010-12-11 20:17:54 +0000 | [diff] [blame] | 491 | clockevent_ixp4xx.mult = div_sc(IXP4XX_TIMER_FREQ, NSEC_PER_SEC, |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 492 | clockevent_ixp4xx.shift); |
| 493 | clockevent_ixp4xx.max_delta_ns = |
| 494 | clockevent_delta2ns(0xfffffffe, &clockevent_ixp4xx); |
| 495 | clockevent_ixp4xx.min_delta_ns = |
| 496 | clockevent_delta2ns(0xf, &clockevent_ixp4xx); |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 497 | clockevent_ixp4xx.cpumask = cpumask_of(0); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 498 | |
| 499 | clockevents_register_device(&clockevent_ixp4xx); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 500 | } |
Russell King | d1b860f | 2011-11-05 12:10:55 +0000 | [diff] [blame] | 501 | |
| 502 | void ixp4xx_restart(char mode, const char *cmd) |
| 503 | { |
| 504 | if ( 1 && mode == 's') { |
| 505 | /* Jump into ROM at address 0 */ |
| 506 | soft_restart(0); |
| 507 | } else { |
| 508 | /* Use on-chip reset capability */ |
| 509 | |
| 510 | /* set the "key" register to enable access to |
| 511 | * "timer" and "enable" registers |
| 512 | */ |
| 513 | *IXP4XX_OSWK = IXP4XX_WDT_KEY; |
| 514 | |
| 515 | /* write 0 to the timer register for an immediate reset */ |
| 516 | *IXP4XX_OSWT = 0; |
| 517 | |
| 518 | *IXP4XX_OSWE = IXP4XX_WDT_RESET_ENABLE | IXP4XX_WDT_COUNT_ENABLE; |
| 519 | } |
| 520 | } |