Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 1 | /* |
Gabor Juhos | e9b62e8 | 2012-03-14 10:36:14 +0100 | [diff] [blame] | 2 | * Atheros AR724X PCI host controller driver |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com> |
Gabor Juhos | e9b62e8 | 2012-03-14 10:36:14 +0100 | [diff] [blame] | 5 | * Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org> |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License version 2 as published |
| 9 | * by the Free Software Foundation. |
| 10 | */ |
| 11 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 12 | #include <linux/spinlock.h> |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 13 | #include <linux/irq.h> |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 14 | #include <linux/pci.h> |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/platform_device.h> |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 17 | #include <asm/mach-ath79/ath79.h> |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 18 | #include <asm/mach-ath79/ar71xx_regs.h> |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 19 | |
Gabor Juhos | a1dca31 | 2012-08-23 15:35:26 +0200 | [diff] [blame] | 20 | #define AR724X_PCI_REG_RESET 0x18 |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 21 | #define AR724X_PCI_REG_INT_STATUS 0x4c |
| 22 | #define AR724X_PCI_REG_INT_MASK 0x50 |
| 23 | |
Gabor Juhos | a1dca31 | 2012-08-23 15:35:26 +0200 | [diff] [blame] | 24 | #define AR724X_PCI_RESET_LINK_UP BIT(0) |
| 25 | |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 26 | #define AR724X_PCI_INT_DEV0 BIT(14) |
| 27 | |
| 28 | #define AR724X_PCI_IRQ_COUNT 1 |
| 29 | |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 30 | #define AR7240_BAR0_WAR_VALUE 0xffff |
| 31 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 32 | struct ar724x_pci_controller { |
| 33 | void __iomem *devcfg_base; |
| 34 | void __iomem *ctrl_base; |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 35 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 36 | int irq; |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 37 | int irq_base; |
Gabor Juhos | a1dca31 | 2012-08-23 15:35:26 +0200 | [diff] [blame] | 38 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 39 | bool link_up; |
| 40 | bool bar0_is_cached; |
| 41 | u32 bar0_value; |
| 42 | |
| 43 | spinlock_t lock; |
| 44 | |
| 45 | struct pci_controller pci_controller; |
Gabor Juhos | 34b134a | 2013-02-03 09:59:45 +0000 | [diff] [blame] | 46 | struct resource io_res; |
| 47 | struct resource mem_res; |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | static inline bool ar724x_pci_check_link(struct ar724x_pci_controller *apc) |
Gabor Juhos | a1dca31 | 2012-08-23 15:35:26 +0200 | [diff] [blame] | 51 | { |
| 52 | u32 reset; |
| 53 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 54 | reset = __raw_readl(apc->ctrl_base + AR724X_PCI_REG_RESET); |
Gabor Juhos | a1dca31 | 2012-08-23 15:35:26 +0200 | [diff] [blame] | 55 | return reset & AR724X_PCI_RESET_LINK_UP; |
| 56 | } |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 57 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 58 | static inline struct ar724x_pci_controller * |
| 59 | pci_bus_to_ar724x_controller(struct pci_bus *bus) |
| 60 | { |
| 61 | struct pci_controller *hose; |
| 62 | |
| 63 | hose = (struct pci_controller *) bus->sysdata; |
| 64 | return container_of(hose, struct ar724x_pci_controller, pci_controller); |
| 65 | } |
| 66 | |
Gabor Juhos | d624bd3 | 2012-03-14 10:29:26 +0100 | [diff] [blame] | 67 | static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where, |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 68 | int size, uint32_t *value) |
| 69 | { |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 70 | struct ar724x_pci_controller *apc; |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 71 | unsigned long flags; |
Gabor Juhos | c198441 | 2012-03-14 10:29:27 +0100 | [diff] [blame] | 72 | void __iomem *base; |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 73 | u32 data; |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 74 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 75 | apc = pci_bus_to_ar724x_controller(bus); |
| 76 | if (!apc->link_up) |
Gabor Juhos | a1dca31 | 2012-08-23 15:35:26 +0200 | [diff] [blame] | 77 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 78 | |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 79 | if (devfn) |
| 80 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 81 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 82 | base = apc->devcfg_base; |
Gabor Juhos | c198441 | 2012-03-14 10:29:27 +0100 | [diff] [blame] | 83 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 84 | spin_lock_irqsave(&apc->lock, flags); |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 85 | data = __raw_readl(base + (where & ~3)); |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 86 | |
| 87 | switch (size) { |
| 88 | case 1: |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 89 | if (where & 1) |
| 90 | data >>= 8; |
| 91 | if (where & 2) |
| 92 | data >>= 16; |
| 93 | data &= 0xff; |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 94 | break; |
| 95 | case 2: |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 96 | if (where & 2) |
| 97 | data >>= 16; |
| 98 | data &= 0xffff; |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 99 | break; |
| 100 | case 4: |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 101 | break; |
| 102 | default: |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 103 | spin_unlock_irqrestore(&apc->lock, flags); |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 104 | |
| 105 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 106 | } |
| 107 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 108 | spin_unlock_irqrestore(&apc->lock, flags); |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 109 | |
| 110 | if (where == PCI_BASE_ADDRESS_0 && size == 4 && |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 111 | apc->bar0_is_cached) { |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 112 | /* use the cached value */ |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 113 | *value = apc->bar0_value; |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 114 | } else { |
| 115 | *value = data; |
| 116 | } |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 117 | |
| 118 | return PCIBIOS_SUCCESSFUL; |
| 119 | } |
| 120 | |
Gabor Juhos | d624bd3 | 2012-03-14 10:29:26 +0100 | [diff] [blame] | 121 | static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where, |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 122 | int size, uint32_t value) |
| 123 | { |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 124 | struct ar724x_pci_controller *apc; |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 125 | unsigned long flags; |
Gabor Juhos | c198441 | 2012-03-14 10:29:27 +0100 | [diff] [blame] | 126 | void __iomem *base; |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 127 | u32 data; |
| 128 | int s; |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 129 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 130 | apc = pci_bus_to_ar724x_controller(bus); |
| 131 | if (!apc->link_up) |
Gabor Juhos | a1dca31 | 2012-08-23 15:35:26 +0200 | [diff] [blame] | 132 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 133 | |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 134 | if (devfn) |
| 135 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 136 | |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 137 | if (soc_is_ar7240() && where == PCI_BASE_ADDRESS_0 && size == 4) { |
| 138 | if (value != 0xffffffff) { |
| 139 | /* |
| 140 | * WAR for a hw issue. If the BAR0 register of the |
| 141 | * device is set to the proper base address, the |
| 142 | * memory space of the device is not accessible. |
| 143 | * |
| 144 | * Cache the intended value so it can be read back, |
| 145 | * and write a SoC specific constant value to the |
| 146 | * BAR0 register in order to make the device memory |
| 147 | * accessible. |
| 148 | */ |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 149 | apc->bar0_is_cached = true; |
| 150 | apc->bar0_value = value; |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 151 | |
| 152 | value = AR7240_BAR0_WAR_VALUE; |
| 153 | } else { |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 154 | apc->bar0_is_cached = false; |
Gabor Juhos | 6015a85 | 2012-03-14 10:36:05 +0100 | [diff] [blame] | 155 | } |
| 156 | } |
| 157 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 158 | base = apc->devcfg_base; |
Gabor Juhos | c198441 | 2012-03-14 10:29:27 +0100 | [diff] [blame] | 159 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 160 | spin_lock_irqsave(&apc->lock, flags); |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 161 | data = __raw_readl(base + (where & ~3)); |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 162 | |
| 163 | switch (size) { |
| 164 | case 1: |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 165 | s = ((where & 3) * 8); |
| 166 | data &= ~(0xff << s); |
| 167 | data |= ((value & 0xff) << s); |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 168 | break; |
| 169 | case 2: |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 170 | s = ((where & 2) * 8); |
| 171 | data &= ~(0xffff << s); |
| 172 | data |= ((value & 0xffff) << s); |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 173 | break; |
| 174 | case 4: |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 175 | data = value; |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 176 | break; |
| 177 | default: |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 178 | spin_unlock_irqrestore(&apc->lock, flags); |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 179 | |
| 180 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 181 | } |
| 182 | |
Gabor Juhos | 64adb6b | 2012-03-14 10:36:04 +0100 | [diff] [blame] | 183 | __raw_writel(data, base + (where & ~3)); |
| 184 | /* flush write */ |
| 185 | __raw_readl(base + (where & ~3)); |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 186 | spin_unlock_irqrestore(&apc->lock, flags); |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 187 | |
| 188 | return PCIBIOS_SUCCESSFUL; |
| 189 | } |
| 190 | |
Gabor Juhos | d624bd3 | 2012-03-14 10:29:26 +0100 | [diff] [blame] | 191 | static struct pci_ops ar724x_pci_ops = { |
| 192 | .read = ar724x_pci_read, |
| 193 | .write = ar724x_pci_write, |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 194 | }; |
| 195 | |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 196 | static void ar724x_pci_irq_handler(unsigned int irq, struct irq_desc *desc) |
Rene Bolldorf | 4ff40d5 | 2011-11-17 14:25:09 +0000 | [diff] [blame] | 197 | { |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 198 | struct ar724x_pci_controller *apc; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 199 | void __iomem *base; |
| 200 | u32 pending; |
| 201 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 202 | apc = irq_get_handler_data(irq); |
| 203 | base = apc->ctrl_base; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 204 | |
| 205 | pending = __raw_readl(base + AR724X_PCI_REG_INT_STATUS) & |
| 206 | __raw_readl(base + AR724X_PCI_REG_INT_MASK); |
| 207 | |
| 208 | if (pending & AR724X_PCI_INT_DEV0) |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 209 | generic_handle_irq(apc->irq_base + 0); |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 210 | |
| 211 | else |
| 212 | spurious_interrupt(); |
| 213 | } |
| 214 | |
| 215 | static void ar724x_pci_irq_unmask(struct irq_data *d) |
| 216 | { |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 217 | struct ar724x_pci_controller *apc; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 218 | void __iomem *base; |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 219 | int offset; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 220 | u32 t; |
| 221 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 222 | apc = irq_data_get_irq_chip_data(d); |
| 223 | base = apc->ctrl_base; |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 224 | offset = apc->irq_base - d->irq; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 225 | |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 226 | switch (offset) { |
| 227 | case 0: |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 228 | t = __raw_readl(base + AR724X_PCI_REG_INT_MASK); |
| 229 | __raw_writel(t | AR724X_PCI_INT_DEV0, |
| 230 | base + AR724X_PCI_REG_INT_MASK); |
| 231 | /* flush write */ |
| 232 | __raw_readl(base + AR724X_PCI_REG_INT_MASK); |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | static void ar724x_pci_irq_mask(struct irq_data *d) |
| 237 | { |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 238 | struct ar724x_pci_controller *apc; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 239 | void __iomem *base; |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 240 | int offset; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 241 | u32 t; |
| 242 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 243 | apc = irq_data_get_irq_chip_data(d); |
| 244 | base = apc->ctrl_base; |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 245 | offset = apc->irq_base - d->irq; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 246 | |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 247 | switch (offset) { |
| 248 | case 0: |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 249 | t = __raw_readl(base + AR724X_PCI_REG_INT_MASK); |
| 250 | __raw_writel(t & ~AR724X_PCI_INT_DEV0, |
| 251 | base + AR724X_PCI_REG_INT_MASK); |
| 252 | |
| 253 | /* flush write */ |
| 254 | __raw_readl(base + AR724X_PCI_REG_INT_MASK); |
| 255 | |
| 256 | t = __raw_readl(base + AR724X_PCI_REG_INT_STATUS); |
| 257 | __raw_writel(t | AR724X_PCI_INT_DEV0, |
| 258 | base + AR724X_PCI_REG_INT_STATUS); |
| 259 | |
| 260 | /* flush write */ |
| 261 | __raw_readl(base + AR724X_PCI_REG_INT_STATUS); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | static struct irq_chip ar724x_pci_irq_chip = { |
| 266 | .name = "AR724X PCI ", |
| 267 | .irq_mask = ar724x_pci_irq_mask, |
| 268 | .irq_unmask = ar724x_pci_irq_unmask, |
| 269 | .irq_mask_ack = ar724x_pci_irq_mask, |
| 270 | }; |
| 271 | |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 272 | static void ar724x_pci_irq_init(struct ar724x_pci_controller *apc, |
| 273 | int id) |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 274 | { |
| 275 | void __iomem *base; |
| 276 | int i; |
| 277 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 278 | base = apc->ctrl_base; |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 279 | |
| 280 | __raw_writel(0, base + AR724X_PCI_REG_INT_MASK); |
| 281 | __raw_writel(0, base + AR724X_PCI_REG_INT_STATUS); |
| 282 | |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 283 | apc->irq_base = ATH79_PCI_IRQ_BASE + (id * AR724X_PCI_IRQ_COUNT); |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 284 | |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 285 | for (i = apc->irq_base; |
| 286 | i < apc->irq_base + AR724X_PCI_IRQ_COUNT; i++) { |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 287 | irq_set_chip_and_handler(i, &ar724x_pci_irq_chip, |
| 288 | handle_level_irq); |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 289 | irq_set_chip_data(i, apc); |
| 290 | } |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 291 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 292 | irq_set_handler_data(apc->irq, apc); |
| 293 | irq_set_chained_handler(apc->irq, ar724x_pci_irq_handler); |
Gabor Juhos | 4c07c7d | 2012-03-14 10:36:07 +0100 | [diff] [blame] | 294 | } |
| 295 | |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 296 | static int ar724x_pci_probe(struct platform_device *pdev) |
| 297 | { |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 298 | struct ar724x_pci_controller *apc; |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 299 | struct resource *res; |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 300 | int id; |
| 301 | |
| 302 | id = pdev->id; |
| 303 | if (id == -1) |
| 304 | id = 0; |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 305 | |
| 306 | apc = devm_kzalloc(&pdev->dev, sizeof(struct ar724x_pci_controller), |
| 307 | GFP_KERNEL); |
| 308 | if (!apc) |
| 309 | return -ENOMEM; |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 310 | |
| 311 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ctrl_base"); |
| 312 | if (!res) |
| 313 | return -EINVAL; |
| 314 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 315 | apc->ctrl_base = devm_request_and_ioremap(&pdev->dev, res); |
| 316 | if (apc->ctrl_base == NULL) |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 317 | return -EBUSY; |
| 318 | |
| 319 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cfg_base"); |
| 320 | if (!res) |
| 321 | return -EINVAL; |
| 322 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 323 | apc->devcfg_base = devm_request_and_ioremap(&pdev->dev, res); |
| 324 | if (!apc->devcfg_base) |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 325 | return -EBUSY; |
| 326 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 327 | apc->irq = platform_get_irq(pdev, 0); |
| 328 | if (apc->irq < 0) |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 329 | return -EINVAL; |
| 330 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 331 | spin_lock_init(&apc->lock); |
| 332 | |
Gabor Juhos | 34b134a | 2013-02-03 09:59:45 +0000 | [diff] [blame] | 333 | res = platform_get_resource_byname(pdev, IORESOURCE_IO, "io_base"); |
| 334 | if (!res) |
| 335 | return -EINVAL; |
| 336 | |
| 337 | apc->io_res.parent = res; |
| 338 | apc->io_res.name = "PCI IO space"; |
| 339 | apc->io_res.start = res->start; |
| 340 | apc->io_res.end = res->end; |
| 341 | apc->io_res.flags = IORESOURCE_IO; |
| 342 | |
| 343 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mem_base"); |
| 344 | if (!res) |
| 345 | return -EINVAL; |
| 346 | |
| 347 | apc->mem_res.parent = res; |
| 348 | apc->mem_res.name = "PCI memory space"; |
| 349 | apc->mem_res.start = res->start; |
| 350 | apc->mem_res.end = res->end; |
| 351 | apc->mem_res.flags = IORESOURCE_MEM; |
| 352 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 353 | apc->pci_controller.pci_ops = &ar724x_pci_ops; |
Gabor Juhos | 34b134a | 2013-02-03 09:59:45 +0000 | [diff] [blame] | 354 | apc->pci_controller.io_resource = &apc->io_res; |
| 355 | apc->pci_controller.mem_resource = &apc->mem_res; |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 356 | |
| 357 | apc->link_up = ar724x_pci_check_link(apc); |
| 358 | if (!apc->link_up) |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 359 | dev_warn(&pdev->dev, "PCIe link is down\n"); |
| 360 | |
Gabor Juhos | 8b66d46 | 2013-02-03 10:00:16 +0000 | [diff] [blame^] | 361 | ar724x_pci_irq_init(apc, id); |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 362 | |
Gabor Juhos | 908339e | 2013-02-03 09:58:38 +0000 | [diff] [blame] | 363 | register_pci_controller(&apc->pci_controller); |
Gabor Juhos | 58d2e9b | 2013-02-02 11:40:42 +0000 | [diff] [blame] | 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
| 368 | static struct platform_driver ar724x_pci_driver = { |
| 369 | .probe = ar724x_pci_probe, |
| 370 | .driver = { |
| 371 | .name = "ar724x-pci", |
| 372 | .owner = THIS_MODULE, |
| 373 | }, |
| 374 | }; |
| 375 | |
| 376 | static int __init ar724x_pci_init(void) |
| 377 | { |
| 378 | return platform_driver_register(&ar724x_pci_driver); |
| 379 | } |
| 380 | |
| 381 | postcore_initcall(ar724x_pci_init); |