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> |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 26 | #include <linux/clocksource.h> |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 27 | #include <linux/clockchips.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 28 | #include <linux/io.h> |
Paul Gortmaker | dc28094 | 2011-07-31 16:17:29 -0400 | [diff] [blame] | 29 | #include <linux/export.h> |
Richard Cochran | 9dde0ae | 2012-05-23 18:19:51 +0200 | [diff] [blame] | 30 | #include <linux/gpio.h> |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 31 | #include <linux/cpu.h> |
Stephen Boyd | 38ff87f | 2013-06-01 23:39:40 -0700 | [diff] [blame] | 32 | #include <linux/sched_clock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 34 | #include <mach/udc.h> |
| 35 | #include <mach/hardware.h> |
Rob Herring | f449588 | 2012-03-06 15:01:53 -0600 | [diff] [blame] | 36 | #include <mach/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/pgtable.h> |
| 39 | #include <asm/page.h> |
| 40 | #include <asm/irq.h> |
Olof Johansson | 86dfe44 | 2012-03-29 23:22:44 -0700 | [diff] [blame] | 41 | #include <asm/system_misc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #include <asm/mach/map.h> |
| 44 | #include <asm/mach/irq.h> |
| 45 | #include <asm/mach/time.h> |
| 46 | |
Uwe Kleine-König | f0402f9 | 2013-11-26 19:25:59 +0100 | [diff] [blame^] | 47 | #define IXP4XX_TIMER_FREQ 66666000 |
| 48 | #define IXP4XX_LATCH DIV_ROUND_CLOSEST(IXP4XX_TIMER_FREQ, HZ) |
| 49 | |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 50 | static void __init ixp4xx_clocksource_init(void); |
| 51 | static void __init ixp4xx_clockevent_init(void); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 52 | static struct clock_event_device clockevent_ixp4xx; |
Kevin Hilman | f9a8ca1 | 2006-12-06 00:45:07 +0100 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /************************************************************************* |
| 55 | * IXP4xx chipset I/O mapping |
| 56 | *************************************************************************/ |
| 57 | static struct map_desc ixp4xx_io_desc[] __initdata = { |
| 58 | { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */ |
Arnd Bergmann | 13ec32f | 2012-09-14 20:19:40 +0000 | [diff] [blame] | 59 | .virtual = (unsigned long)IXP4XX_PERIPHERAL_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 60 | .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | .length = IXP4XX_PERIPHERAL_REGION_SIZE, |
| 62 | .type = MT_DEVICE |
| 63 | }, { /* Expansion Bus Config Registers */ |
Arnd Bergmann | 13ec32f | 2012-09-14 20:19:40 +0000 | [diff] [blame] | 64 | .virtual = (unsigned long)IXP4XX_EXP_CFG_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 65 | .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | .length = IXP4XX_EXP_CFG_REGION_SIZE, |
| 67 | .type = MT_DEVICE |
| 68 | }, { /* PCI Registers */ |
Arnd Bergmann | 13ec32f | 2012-09-14 20:19:40 +0000 | [diff] [blame] | 69 | .virtual = (unsigned long)IXP4XX_PCI_CFG_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 70 | .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | .length = IXP4XX_PCI_CFG_REGION_SIZE, |
| 72 | .type = MT_DEVICE |
Krzysztof Hałasa | f0cdb15 | 2010-03-26 16:38:52 +0100 | [diff] [blame] | 73 | }, { /* Queue Manager */ |
| 74 | .virtual = (unsigned long)IXP4XX_QMGR_BASE_VIRT, |
| 75 | .pfn = __phys_to_pfn(IXP4XX_QMGR_BASE_PHYS), |
| 76 | .length = IXP4XX_QMGR_REGION_SIZE, |
| 77 | .type = MT_DEVICE |
Deepak Saxena | 5932ae3 | 2005-06-24 20:54:35 +0100 | [diff] [blame] | 78 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | void __init ixp4xx_map_io(void) |
| 82 | { |
| 83 | iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc)); |
| 84 | } |
| 85 | |
Linus Walleij | 098e30f | 2013-09-10 14:10:13 +0200 | [diff] [blame] | 86 | /* |
| 87 | * GPIO-functions |
| 88 | */ |
| 89 | /* |
| 90 | * The following converted to the real HW bits the gpio_line_config |
| 91 | */ |
| 92 | /* GPIO pin types */ |
| 93 | #define IXP4XX_GPIO_OUT 0x1 |
| 94 | #define IXP4XX_GPIO_IN 0x2 |
| 95 | |
| 96 | /* GPIO signal types */ |
| 97 | #define IXP4XX_GPIO_LOW 0 |
| 98 | #define IXP4XX_GPIO_HIGH 1 |
| 99 | |
| 100 | /* GPIO Clocks */ |
| 101 | #define IXP4XX_GPIO_CLK_0 14 |
| 102 | #define IXP4XX_GPIO_CLK_1 15 |
| 103 | |
| 104 | static void gpio_line_config(u8 line, u32 direction) |
| 105 | { |
| 106 | if (direction == IXP4XX_GPIO_IN) |
| 107 | *IXP4XX_GPIO_GPOER |= (1 << line); |
| 108 | else |
| 109 | *IXP4XX_GPIO_GPOER &= ~(1 << line); |
| 110 | } |
| 111 | |
| 112 | static void gpio_line_get(u8 line, int *value) |
| 113 | { |
| 114 | *value = (*IXP4XX_GPIO_GPINR >> line) & 0x1; |
| 115 | } |
| 116 | |
| 117 | static void gpio_line_set(u8 line, int value) |
| 118 | { |
| 119 | if (value == IXP4XX_GPIO_HIGH) |
| 120 | *IXP4XX_GPIO_GPOUTR |= (1 << line); |
| 121 | else if (value == IXP4XX_GPIO_LOW) |
| 122 | *IXP4XX_GPIO_GPOUTR &= ~(1 << line); |
| 123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 125 | /************************************************************************* |
| 126 | * IXP4xx chipset IRQ handling |
| 127 | * |
| 128 | * TODO: GPIO IRQs should be marked invalid until the user of the IRQ |
| 129 | * (be it PCI or something else) configures that GPIO line |
| 130 | * as an IRQ. |
| 131 | **************************************************************************/ |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 132 | enum ixp4xx_irq_type { |
| 133 | IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE |
| 134 | }; |
| 135 | |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 136 | /* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */ |
| 137 | static unsigned long long ixp4xx_irq_edge = 0; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 138 | |
| 139 | /* |
| 140 | * IRQ -> GPIO mapping table |
| 141 | */ |
Lennert Buytenhek | 6cc1b65 | 2006-04-20 21:24:38 +0100 | [diff] [blame] | 142 | static signed char irq2gpio[32] = { |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 143 | -1, -1, -1, -1, -1, -1, 0, 1, |
| 144 | -1, -1, -1, -1, -1, -1, -1, -1, |
| 145 | -1, -1, -1, 2, 3, 4, 5, 6, |
| 146 | 7, 8, 9, 10, 11, 12, -1, -1, |
| 147 | }; |
| 148 | |
Richard Cochran | 9dde0ae | 2012-05-23 18:19:51 +0200 | [diff] [blame] | 149 | static int ixp4xx_gpio_to_irq(struct gpio_chip *chip, unsigned gpio) |
Milan Svoboda | 25735d1 | 2007-03-21 14:04:08 +0100 | [diff] [blame] | 150 | { |
| 151 | int irq; |
| 152 | |
| 153 | for (irq = 0; irq < 32; irq++) { |
| 154 | if (irq2gpio[irq] == gpio) |
| 155 | return irq; |
| 156 | } |
| 157 | return -EINVAL; |
| 158 | } |
Milan Svoboda | 25735d1 | 2007-03-21 14:04:08 +0100 | [diff] [blame] | 159 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 160 | 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] | 161 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 162 | int line = irq2gpio[d->irq]; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 163 | u32 int_style; |
| 164 | enum ixp4xx_irq_type irq_type; |
| 165 | volatile u32 *int_reg; |
| 166 | |
| 167 | /* |
| 168 | * Only for GPIO IRQs |
| 169 | */ |
| 170 | if (line < 0) |
| 171 | return -EINVAL; |
| 172 | |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 173 | switch (type){ |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 174 | case IRQ_TYPE_EDGE_BOTH: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 175 | int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL; |
| 176 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 177 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 178 | case IRQ_TYPE_EDGE_RISING: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 179 | int_style = IXP4XX_GPIO_STYLE_RISING_EDGE; |
| 180 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 181 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 182 | case IRQ_TYPE_EDGE_FALLING: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 183 | int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE; |
| 184 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 185 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 186 | case IRQ_TYPE_LEVEL_HIGH: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 187 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH; |
| 188 | irq_type = IXP4XX_IRQ_LEVEL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 189 | break; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 190 | case IRQ_TYPE_LEVEL_LOW: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 191 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW; |
| 192 | irq_type = IXP4XX_IRQ_LEVEL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 193 | break; |
| 194 | default: |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 195 | return -EINVAL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 196 | } |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 197 | |
| 198 | if (irq_type == IXP4XX_IRQ_EDGE) |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 199 | ixp4xx_irq_edge |= (1 << d->irq); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 200 | else |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 201 | ixp4xx_irq_edge &= ~(1 << d->irq); |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 202 | |
| 203 | if (line >= 8) { /* pins 8-15 */ |
| 204 | line -= 8; |
| 205 | int_reg = IXP4XX_GPIO_GPIT2R; |
| 206 | } else { /* pins 0-7 */ |
| 207 | int_reg = IXP4XX_GPIO_GPIT1R; |
| 208 | } |
| 209 | |
| 210 | /* Clear the style for the appropriate pin */ |
| 211 | *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR << |
| 212 | (line * IXP4XX_GPIO_STYLE_SIZE)); |
| 213 | |
Deepak Saxena | f7e8bbb8 | 2006-01-04 17:17:10 +0000 | [diff] [blame] | 214 | *IXP4XX_GPIO_GPISR = (1 << line); |
| 215 | |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 216 | /* Set the new style */ |
| 217 | *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE)); |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 218 | |
Alessandro Zummo | 73deb7d | 2006-03-20 17:10:12 +0000 | [diff] [blame] | 219 | /* Configure the line as an input */ |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 220 | gpio_line_config(irq2gpio[d->irq], IXP4XX_GPIO_IN); |
Alessandro Zummo | 73deb7d | 2006-03-20 17:10:12 +0000 | [diff] [blame] | 221 | |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 222 | return 0; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 223 | } |
| 224 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 225 | static void ixp4xx_irq_mask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 227 | if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32) |
| 228 | *IXP4XX_ICMR2 &= ~(1 << (d->irq - 32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | else |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 230 | *IXP4XX_ICMR &= ~(1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 233 | static void ixp4xx_irq_ack(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 235 | int line = (d->irq < 32) ? irq2gpio[d->irq] : -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
| 237 | if (line >= 0) |
Deepak Saxena | f7e8bbb8 | 2006-01-04 17:17:10 +0000 | [diff] [blame] | 238 | *IXP4XX_GPIO_GPISR = (1 << line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /* |
| 242 | * Level triggered interrupts on GPIO lines can only be cleared when the |
| 243 | * interrupt condition disappears. |
| 244 | */ |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 245 | static void ixp4xx_irq_unmask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 247 | if (!(ixp4xx_irq_edge & (1 << d->irq))) |
| 248 | ixp4xx_irq_ack(d); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 249 | |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 250 | if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32) |
| 251 | *IXP4XX_ICMR2 |= (1 << (d->irq - 32)); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 252 | else |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 253 | *IXP4XX_ICMR |= (1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
| 255 | |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 256 | static struct irq_chip ixp4xx_irq_chip = { |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 257 | .name = "IXP4xx", |
Lennert Buytenhek | ee04087 | 2010-11-29 10:33:49 +0100 | [diff] [blame] | 258 | .irq_ack = ixp4xx_irq_ack, |
| 259 | .irq_mask = ixp4xx_irq_mask, |
| 260 | .irq_unmask = ixp4xx_irq_unmask, |
| 261 | .irq_set_type = ixp4xx_set_irq_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | }; |
| 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | void __init ixp4xx_init_irq(void) |
| 265 | { |
| 266 | int i = 0; |
| 267 | |
Nicolas Pitre | 12d2b4e | 2011-08-03 07:25:39 -0400 | [diff] [blame] | 268 | /* |
| 269 | * ixp4xx does not implement the XScale PWRMODE register |
| 270 | * so it must not call cpu_do_idle(). |
| 271 | */ |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 272 | cpu_idle_poll_ctrl(true); |
Nicolas Pitre | 12d2b4e | 2011-08-03 07:25:39 -0400 | [diff] [blame] | 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* Route all sources to IRQ instead of FIQ */ |
| 275 | *IXP4XX_ICLR = 0x0; |
| 276 | |
| 277 | /* Disable all interrupt */ |
| 278 | *IXP4XX_ICMR = 0x0; |
| 279 | |
Ruslan V. Sushko | 45fba08 | 2007-04-06 15:00:31 +0100 | [diff] [blame] | 280 | if (cpu_is_ixp46x() || cpu_is_ixp43x()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | /* Route upper 32 sources to IRQ instead of FIQ */ |
| 282 | *IXP4XX_ICLR2 = 0x00; |
| 283 | |
| 284 | /* Disable upper 32 interrupts */ |
| 285 | *IXP4XX_ICMR2 = 0x00; |
| 286 | } |
| 287 | |
| 288 | /* Default to all level triggered */ |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 289 | for(i = 0; i < NR_IRQS; i++) { |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 290 | irq_set_chip_and_handler(i, &ixp4xx_irq_chip, |
| 291 | handle_level_irq); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 292 | set_irq_flags(i, IRQF_VALID); |
| 293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | |
| 297 | /************************************************************************* |
| 298 | * IXP4xx timer tick |
| 299 | * We use OS timer1 on the CPU for the timer tick and the timestamp |
| 300 | * counter as a source of real clock ticks to account for missed jiffies. |
| 301 | *************************************************************************/ |
| 302 | |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 303 | static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 305 | struct clock_event_device *evt = dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
| 307 | /* Clear Pending Interrupt by writing '1' to it */ |
| 308 | *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND; |
| 309 | |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 310 | evt->event_handler(evt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
| 312 | return IRQ_HANDLED; |
| 313 | } |
| 314 | |
| 315 | static struct irqaction ixp4xx_timer_irq = { |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 316 | .name = "timer1", |
Bernhard Walle | b30faba | 2007-05-08 00:35:39 -0700 | [diff] [blame] | 317 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
Russell King | 09b8b5f | 2005-06-26 17:06:36 +0100 | [diff] [blame] | 318 | .handler = ixp4xx_timer_interrupt, |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 319 | .dev_id = &clockevent_ixp4xx, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | }; |
| 321 | |
Michael-Luke Jones | 435c5da | 2007-05-23 22:38:45 +0100 | [diff] [blame] | 322 | void __init ixp4xx_timer_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | { |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 324 | /* Reset/disable counter */ |
| 325 | *IXP4XX_OSRT1 = 0; |
| 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | /* Clear Pending Interrupt by writing '1' to it */ |
| 328 | *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND; |
| 329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | /* Reset time-stamp counter */ |
| 331 | *IXP4XX_OSTS = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | /* Connect the interrupt handler and enable the interrupt */ |
| 334 | setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq); |
Kevin Hilman | f9a8ca1 | 2006-12-06 00:45:07 +0100 | [diff] [blame] | 335 | |
| 336 | ixp4xx_clocksource_init(); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 337 | ixp4xx_clockevent_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 340 | static struct pxa2xx_udc_mach_info ixp4xx_udc_info; |
| 341 | |
| 342 | void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info) |
| 343 | { |
| 344 | memcpy(&ixp4xx_udc_info, info, sizeof *info); |
| 345 | } |
| 346 | |
| 347 | static struct resource ixp4xx_udc_resources[] = { |
| 348 | [0] = { |
| 349 | .start = 0xc800b000, |
| 350 | .end = 0xc800bfff, |
| 351 | .flags = IORESOURCE_MEM, |
| 352 | }, |
| 353 | [1] = { |
| 354 | .start = IRQ_IXP4XX_USB, |
| 355 | .end = IRQ_IXP4XX_USB, |
| 356 | .flags = IORESOURCE_IRQ, |
| 357 | }, |
| 358 | }; |
| 359 | |
| 360 | /* |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 361 | * USB device controller. The IXP4xx uses the same controller as PXA25X, |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 362 | * so we just use the same device. |
| 363 | */ |
| 364 | static struct platform_device ixp4xx_udc_device = { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 365 | .name = "pxa25x-udc", |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 366 | .id = -1, |
| 367 | .num_resources = 2, |
| 368 | .resource = ixp4xx_udc_resources, |
| 369 | .dev = { |
| 370 | .platform_data = &ixp4xx_udc_info, |
| 371 | }, |
| 372 | }; |
| 373 | |
| 374 | static struct platform_device *ixp4xx_devices[] __initdata = { |
| 375 | &ixp4xx_udc_device, |
| 376 | }; |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | static struct resource ixp46x_i2c_resources[] = { |
| 379 | [0] = { |
| 380 | .start = 0xc8011000, |
| 381 | .end = 0xc801101c, |
| 382 | .flags = IORESOURCE_MEM, |
| 383 | }, |
| 384 | [1] = { |
| 385 | .start = IRQ_IXP4XX_I2C, |
| 386 | .end = IRQ_IXP4XX_I2C, |
| 387 | .flags = IORESOURCE_IRQ |
| 388 | } |
| 389 | }; |
| 390 | |
| 391 | /* |
| 392 | * I2C controller. The IXP46x uses the same block as the IOP3xx, so |
| 393 | * we just use the same device name. |
| 394 | */ |
| 395 | static struct platform_device ixp46x_i2c_controller = { |
| 396 | .name = "IOP3xx-I2C", |
| 397 | .id = 0, |
| 398 | .num_resources = 2, |
| 399 | .resource = ixp46x_i2c_resources |
| 400 | }; |
| 401 | |
| 402 | static struct platform_device *ixp46x_devices[] __initdata = { |
| 403 | &ixp46x_i2c_controller |
| 404 | }; |
| 405 | |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 406 | unsigned long ixp4xx_exp_bus_size; |
David Vrabel | 1e74c89 | 2006-01-18 22:46:43 +0000 | [diff] [blame] | 407 | EXPORT_SYMBOL(ixp4xx_exp_bus_size); |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 408 | |
Richard Cochran | 9dde0ae | 2012-05-23 18:19:51 +0200 | [diff] [blame] | 409 | static int ixp4xx_gpio_direction_input(struct gpio_chip *chip, unsigned gpio) |
| 410 | { |
| 411 | gpio_line_config(gpio, IXP4XX_GPIO_IN); |
| 412 | |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | static int ixp4xx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, |
| 417 | int level) |
| 418 | { |
| 419 | gpio_line_set(gpio, level); |
| 420 | gpio_line_config(gpio, IXP4XX_GPIO_OUT); |
| 421 | |
| 422 | return 0; |
| 423 | } |
| 424 | |
| 425 | static int ixp4xx_gpio_get_value(struct gpio_chip *chip, unsigned gpio) |
| 426 | { |
| 427 | int value; |
| 428 | |
| 429 | gpio_line_get(gpio, &value); |
| 430 | |
| 431 | return value; |
| 432 | } |
| 433 | |
| 434 | static void ixp4xx_gpio_set_value(struct gpio_chip *chip, unsigned gpio, |
| 435 | int value) |
| 436 | { |
| 437 | gpio_line_set(gpio, value); |
| 438 | } |
| 439 | |
| 440 | static struct gpio_chip ixp4xx_gpio_chip = { |
| 441 | .label = "IXP4XX_GPIO_CHIP", |
| 442 | .direction_input = ixp4xx_gpio_direction_input, |
| 443 | .direction_output = ixp4xx_gpio_direction_output, |
| 444 | .get = ixp4xx_gpio_get_value, |
| 445 | .set = ixp4xx_gpio_set_value, |
| 446 | .to_irq = ixp4xx_gpio_to_irq, |
| 447 | .base = 0, |
| 448 | .ngpio = 16, |
| 449 | }; |
| 450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | void __init ixp4xx_sys_init(void) |
| 452 | { |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 453 | ixp4xx_exp_bus_size = SZ_16M; |
| 454 | |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 455 | platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices)); |
| 456 | |
Richard Cochran | 9dde0ae | 2012-05-23 18:19:51 +0200 | [diff] [blame] | 457 | gpiochip_add(&ixp4xx_gpio_chip); |
| 458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | if (cpu_is_ixp46x()) { |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 460 | int region; |
| 461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | platform_add_devices(ixp46x_devices, |
| 463 | ARRAY_SIZE(ixp46x_devices)); |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 464 | |
| 465 | for (region = 0; region < 7; region++) { |
| 466 | if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) { |
| 467 | ixp4xx_exp_bus_size = SZ_32M; |
| 468 | break; |
| 469 | } |
| 470 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 472 | |
David Vrabel | 1e74c89 | 2006-01-18 22:46:43 +0000 | [diff] [blame] | 473 | printk("IXP4xx: Using %luMiB expansion bus window size\n", |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 474 | ixp4xx_exp_bus_size >> 20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 477 | /* |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 478 | * sched_clock() |
| 479 | */ |
Marc Zyngier | 2f0778af | 2011-12-15 12:19:23 +0100 | [diff] [blame] | 480 | static u32 notrace ixp4xx_read_sched_clock(void) |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 481 | { |
Marc Zyngier | 2f0778af | 2011-12-15 12:19:23 +0100 | [diff] [blame] | 482 | return *IXP4XX_OSTS; |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | /* |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 486 | * clocksource |
| 487 | */ |
Richard Cochran | 900b170 | 2011-07-15 21:33:12 +0200 | [diff] [blame] | 488 | |
| 489 | static cycle_t ixp4xx_clocksource_read(struct clocksource *c) |
| 490 | { |
| 491 | return *IXP4XX_OSTS; |
| 492 | } |
| 493 | |
Ben Hutchings | e66a022 | 2010-12-11 20:17:54 +0000 | [diff] [blame] | 494 | unsigned long ixp4xx_timer_freq = IXP4XX_TIMER_FREQ; |
Krzysztof Halasa | 5dbc465 | 2009-09-05 03:59:49 +0000 | [diff] [blame] | 495 | EXPORT_SYMBOL(ixp4xx_timer_freq); |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 496 | static void __init ixp4xx_clocksource_init(void) |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 497 | { |
Marc Zyngier | 2f0778af | 2011-12-15 12:19:23 +0100 | [diff] [blame] | 498 | setup_sched_clock(ixp4xx_read_sched_clock, 32, ixp4xx_timer_freq); |
Russell King | 5b0d495 | 2010-12-15 21:23:13 +0000 | [diff] [blame] | 499 | |
Richard Cochran | 900b170 | 2011-07-15 21:33:12 +0200 | [diff] [blame] | 500 | clocksource_mmio_init(NULL, "OSTS", ixp4xx_timer_freq, 200, 32, |
| 501 | ixp4xx_clocksource_read); |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 502 | } |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 503 | |
| 504 | /* |
| 505 | * clockevents |
| 506 | */ |
| 507 | static int ixp4xx_set_next_event(unsigned long evt, |
| 508 | struct clock_event_device *unused) |
| 509 | { |
| 510 | unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK; |
| 511 | |
| 512 | *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts; |
| 513 | |
| 514 | return 0; |
| 515 | } |
| 516 | |
| 517 | static void ixp4xx_set_mode(enum clock_event_mode mode, |
| 518 | struct clock_event_device *evt) |
| 519 | { |
Kevin Hilman | 553876c | 2007-12-12 00:32:58 +0100 | [diff] [blame] | 520 | unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK; |
| 521 | unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK; |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 522 | |
| 523 | switch (mode) { |
| 524 | case CLOCK_EVT_MODE_PERIODIC: |
Uwe Kleine-König | f0402f9 | 2013-11-26 19:25:59 +0100 | [diff] [blame^] | 525 | osrt = IXP4XX_LATCH & ~IXP4XX_OST_RELOAD_MASK; |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 526 | opts = IXP4XX_OST_ENABLE; |
| 527 | break; |
| 528 | case CLOCK_EVT_MODE_ONESHOT: |
| 529 | /* period set by 'set next_event' */ |
| 530 | osrt = 0; |
| 531 | opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT; |
| 532 | break; |
| 533 | case CLOCK_EVT_MODE_SHUTDOWN: |
Kevin Hilman | 553876c | 2007-12-12 00:32:58 +0100 | [diff] [blame] | 534 | opts &= ~IXP4XX_OST_ENABLE; |
| 535 | break; |
| 536 | case CLOCK_EVT_MODE_RESUME: |
| 537 | opts |= IXP4XX_OST_ENABLE; |
| 538 | break; |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 539 | case CLOCK_EVT_MODE_UNUSED: |
| 540 | default: |
| 541 | osrt = opts = 0; |
| 542 | break; |
| 543 | } |
| 544 | |
| 545 | *IXP4XX_OSRT1 = osrt | opts; |
| 546 | } |
| 547 | |
| 548 | static struct clock_event_device clockevent_ixp4xx = { |
| 549 | .name = "ixp4xx timer1", |
| 550 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
| 551 | .rating = 200, |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 552 | .set_mode = ixp4xx_set_mode, |
| 553 | .set_next_event = ixp4xx_set_next_event, |
| 554 | }; |
| 555 | |
Mikael Pettersson | ceb69a8 | 2009-09-11 00:59:07 +0200 | [diff] [blame] | 556 | static void __init ixp4xx_clockevent_init(void) |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 557 | { |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 558 | clockevent_ixp4xx.cpumask = cpumask_of(0); |
Shawn Guo | 838a2ae | 2013-01-12 11:50:05 +0000 | [diff] [blame] | 559 | clockevents_config_and_register(&clockevent_ixp4xx, IXP4XX_TIMER_FREQ, |
| 560 | 0xf, 0xfffffffe); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame] | 561 | } |
Russell King | d1b860f | 2011-11-05 12:10:55 +0000 | [diff] [blame] | 562 | |
Robin Holt | 7b6d864 | 2013-07-08 16:01:40 -0700 | [diff] [blame] | 563 | void ixp4xx_restart(enum reboot_mode mode, const char *cmd) |
Russell King | d1b860f | 2011-11-05 12:10:55 +0000 | [diff] [blame] | 564 | { |
Robin Holt | 7b6d864 | 2013-07-08 16:01:40 -0700 | [diff] [blame] | 565 | if ( 1 && mode == REBOOT_SOFT) { |
Russell King | d1b860f | 2011-11-05 12:10:55 +0000 | [diff] [blame] | 566 | /* Jump into ROM at address 0 */ |
| 567 | soft_restart(0); |
| 568 | } else { |
| 569 | /* Use on-chip reset capability */ |
| 570 | |
| 571 | /* set the "key" register to enable access to |
| 572 | * "timer" and "enable" registers |
| 573 | */ |
| 574 | *IXP4XX_OSWK = IXP4XX_WDT_KEY; |
| 575 | |
| 576 | /* write 0 to the timer register for an immediate reset */ |
| 577 | *IXP4XX_OSWT = 0; |
| 578 | |
| 579 | *IXP4XX_OSWE = IXP4XX_WDT_RESET_ENABLE | IXP4XX_WDT_COUNT_ENABLE; |
| 580 | } |
| 581 | } |
Rob Herring | f449588 | 2012-03-06 15:01:53 -0600 | [diff] [blame] | 582 | |
| 583 | #ifdef CONFIG_IXP4XX_INDIRECT_PCI |
| 584 | /* |
| 585 | * In the case of using indirect PCI, we simply return the actual PCI |
| 586 | * address and our read/write implementation use that to drive the |
| 587 | * access registers. If something outside of PCI is ioremap'd, we |
| 588 | * fallback to the default. |
| 589 | */ |
| 590 | |
Laura Abbott | 9b97173 | 2013-05-16 19:40:22 +0100 | [diff] [blame] | 591 | static void __iomem *ixp4xx_ioremap_caller(phys_addr_t addr, size_t size, |
Rob Herring | f449588 | 2012-03-06 15:01:53 -0600 | [diff] [blame] | 592 | unsigned int mtype, void *caller) |
| 593 | { |
| 594 | if (!is_pci_memory(addr)) |
| 595 | return __arm_ioremap_caller(addr, size, mtype, caller); |
| 596 | |
| 597 | return (void __iomem *)addr; |
| 598 | } |
| 599 | |
| 600 | static void ixp4xx_iounmap(void __iomem *addr) |
| 601 | { |
| 602 | if (!is_pci_memory((__force u32)addr)) |
| 603 | __iounmap(addr); |
| 604 | } |
| 605 | |
| 606 | void __init ixp4xx_init_early(void) |
| 607 | { |
| 608 | arch_ioremap_caller = ixp4xx_ioremap_caller; |
| 609 | arch_iounmap = ixp4xx_iounmap; |
| 610 | } |
| 611 | #else |
| 612 | void __init ixp4xx_init_early(void) {} |
| 613 | #endif |