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