Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 1 | /* |
| 2 | * New-style PCI core. |
| 3 | * |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 4 | * Copyright (c) 2004 - 2009 Paul Mundt |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 5 | * Copyright (c) 2002 M. R. Brown |
| 6 | * |
| 7 | * Modelled after arch/mips/pci/pci.c: |
| 8 | * Copyright (C) 2003, 04 Ralf Baechle (ralf@linux-mips.org) |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 9 | * |
| 10 | * This file is subject to the terms and conditions of the GNU General Public |
| 11 | * License. See the file "COPYING" in the main directory of this archive |
| 12 | * for more details. |
| 13 | */ |
| 14 | #include <linux/kernel.h> |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 15 | #include <linux/mm.h> |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 16 | #include <linux/pci.h> |
| 17 | #include <linux/init.h> |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 18 | #include <linux/types.h> |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 19 | #include <linux/dma-debug.h> |
| 20 | #include <linux/io.h> |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 21 | #include <linux/mutex.h> |
Paul Mundt | 39a9086 | 2010-09-20 18:56:13 +0900 | [diff] [blame] | 22 | #include <linux/spinlock.h> |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 23 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 24 | unsigned long PCIBIOS_MIN_IO = 0x0000; |
| 25 | unsigned long PCIBIOS_MIN_MEM = 0; |
| 26 | |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 27 | /* |
| 28 | * The PCI controller list. |
| 29 | */ |
| 30 | static struct pci_channel *hose_head, **hose_tail = &hose_head; |
| 31 | |
| 32 | static int pci_initialized; |
| 33 | |
| 34 | static void __devinit pcibios_scanbus(struct pci_channel *hose) |
| 35 | { |
| 36 | static int next_busno; |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 37 | static int need_domain_info; |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 38 | struct pci_bus *bus; |
| 39 | |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 40 | bus = pci_scan_bus(next_busno, hose->pci_ops, hose); |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 41 | hose->bus = bus; |
| 42 | |
| 43 | need_domain_info = need_domain_info || hose->index; |
| 44 | hose->need_domain_info = need_domain_info; |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 45 | if (bus) { |
| 46 | next_busno = bus->subordinate + 1; |
| 47 | /* Don't allow 8-bit bus number overflow inside the hose - |
| 48 | reserve some space for bridges. */ |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 49 | if (next_busno > 224) { |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 50 | next_busno = 0; |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 51 | need_domain_info = 1; |
| 52 | } |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 53 | |
| 54 | pci_bus_size_bridges(bus); |
| 55 | pci_bus_assign_resources(bus); |
| 56 | pci_enable_bridges(bus); |
| 57 | } |
| 58 | } |
| 59 | |
Paul Mundt | 39a9086 | 2010-09-20 18:56:13 +0900 | [diff] [blame] | 60 | /* |
| 61 | * This interrupt-safe spinlock protects all accesses to PCI |
| 62 | * configuration space. |
| 63 | */ |
| 64 | DEFINE_RAW_SPINLOCK(pci_config_lock); |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 65 | static DEFINE_MUTEX(pci_scan_mutex); |
| 66 | |
Paul Mundt | bcf3935 | 2010-02-01 13:11:25 +0900 | [diff] [blame] | 67 | int __devinit register_pci_controller(struct pci_channel *hose) |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 68 | { |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 69 | int i; |
| 70 | |
| 71 | for (i = 0; i < hose->nr_resources; i++) { |
| 72 | struct resource *res = hose->resources + i; |
| 73 | |
| 74 | if (res->flags & IORESOURCE_IO) { |
| 75 | if (request_resource(&ioport_resource, res) < 0) |
| 76 | goto out; |
| 77 | } else { |
| 78 | if (request_resource(&iomem_resource, res) < 0) |
| 79 | goto out; |
| 80 | } |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 81 | } |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 82 | |
| 83 | *hose_tail = hose; |
| 84 | hose_tail = &hose->next; |
| 85 | |
| 86 | /* |
| 87 | * Do not panic here but later - this might hapen before console init. |
| 88 | */ |
| 89 | if (!hose->io_map_base) { |
| 90 | printk(KERN_WARNING |
| 91 | "registering PCI controller with io_map_base unset\n"); |
| 92 | } |
| 93 | |
| 94 | /* |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 95 | * Setup the ERR/PERR and SERR timers, if available. |
| 96 | */ |
| 97 | pcibios_enable_timers(hose); |
| 98 | |
| 99 | /* |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 100 | * Scan the bus if it is register after the PCI subsystem |
| 101 | * initialization. |
| 102 | */ |
| 103 | if (pci_initialized) { |
| 104 | mutex_lock(&pci_scan_mutex); |
| 105 | pcibios_scanbus(hose); |
| 106 | mutex_unlock(&pci_scan_mutex); |
| 107 | } |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 108 | |
Paul Mundt | bcf3935 | 2010-02-01 13:11:25 +0900 | [diff] [blame] | 109 | return 0; |
Paul Mundt | 85b59f5 | 2010-02-01 13:01:42 +0900 | [diff] [blame] | 110 | |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 111 | out: |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 112 | for (--i; i >= 0; i--) |
| 113 | release_resource(&hose->resources[i]); |
| 114 | |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 115 | printk(KERN_WARNING "Skipping PCI bus scan due to resource conflict\n"); |
Paul Mundt | bcf3935 | 2010-02-01 13:11:25 +0900 | [diff] [blame] | 116 | return -1; |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 117 | } |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 118 | |
| 119 | static int __init pcibios_init(void) |
| 120 | { |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 121 | struct pci_channel *hose; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 122 | |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 123 | /* Scan all of the recorded PCI controllers. */ |
| 124 | for (hose = hose_head; hose; hose = hose->next) |
| 125 | pcibios_scanbus(hose); |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 126 | |
| 127 | pci_fixup_irqs(pci_common_swizzle, pcibios_map_platform_irq); |
| 128 | |
| 129 | dma_debug_add_bus(&pci_bus_type); |
| 130 | |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 131 | pci_initialized = 1; |
| 132 | |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 133 | return 0; |
| 134 | } |
| 135 | subsys_initcall(pcibios_init); |
| 136 | |
| 137 | static void pcibios_fixup_device_resources(struct pci_dev *dev, |
| 138 | struct pci_bus *bus) |
| 139 | { |
| 140 | /* Update device resources. */ |
Paul Mundt | 09cfeb1 | 2009-04-20 18:42:00 +0900 | [diff] [blame] | 141 | struct pci_channel *hose = bus->sysdata; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 142 | unsigned long offset = 0; |
| 143 | int i; |
| 144 | |
| 145 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 146 | if (!dev->resource[i].start) |
| 147 | continue; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 148 | if (dev->resource[i].flags & IORESOURCE_IO) |
Paul Mundt | 09cfeb1 | 2009-04-20 18:42:00 +0900 | [diff] [blame] | 149 | offset = hose->io_offset; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 150 | else if (dev->resource[i].flags & IORESOURCE_MEM) |
Paul Mundt | 09cfeb1 | 2009-04-20 18:42:00 +0900 | [diff] [blame] | 151 | offset = hose->mem_offset; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 152 | |
| 153 | dev->resource[i].start += offset; |
| 154 | dev->resource[i].end += offset; |
| 155 | } |
| 156 | } |
| 157 | |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 158 | /* |
| 159 | * Called after each bus is probed, but before its children |
| 160 | * are examined. |
| 161 | */ |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 162 | void __devinit pcibios_fixup_bus(struct pci_bus *bus) |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 163 | { |
| 164 | struct pci_dev *dev = bus->self; |
| 165 | struct list_head *ln; |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 166 | struct pci_channel *hose = bus->sysdata; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 167 | |
| 168 | if (!dev) { |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 169 | int i; |
| 170 | |
| 171 | for (i = 0; i < hose->nr_resources; i++) |
| 172 | bus->resource[i] = hose->resources + i; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | for (ln = bus->devices.next; ln != &bus->devices; ln = ln->next) { |
| 176 | dev = pci_dev_b(ln); |
| 177 | |
| 178 | if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI) |
| 179 | pcibios_fixup_device_resources(dev, bus); |
| 180 | } |
| 181 | } |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 182 | |
| 183 | /* |
| 184 | * We need to avoid collisions with `mirrored' VGA ports |
| 185 | * and other strange ISA hardware, so we always want the |
| 186 | * addresses to be allocated in the 0x000-0x0ff region |
| 187 | * modulo 0x400. |
| 188 | */ |
Dominik Brodowski | 3b7a17f | 2010-01-01 17:40:50 +0100 | [diff] [blame] | 189 | resource_size_t pcibios_align_resource(void *data, const struct resource *res, |
Dominik Brodowski | b26b2d4 | 2010-01-01 17:40:49 +0100 | [diff] [blame] | 190 | resource_size_t size, resource_size_t align) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 191 | { |
| 192 | struct pci_dev *dev = data; |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 193 | struct pci_channel *hose = dev->sysdata; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 194 | resource_size_t start = res->start; |
| 195 | |
| 196 | if (res->flags & IORESOURCE_IO) { |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 197 | if (start < PCIBIOS_MIN_IO + hose->resources[0].start) |
| 198 | start = PCIBIOS_MIN_IO + hose->resources[0].start; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 199 | |
| 200 | /* |
| 201 | * Put everything into 0x00-0xff region modulo 0x400. |
| 202 | */ |
Paul Mundt | 8495935 | 2010-01-28 18:15:05 +0900 | [diff] [blame] | 203 | if (start & 0x300) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 204 | start = (start + 0x3ff) & ~0x3ff; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 205 | } |
| 206 | |
Dominik Brodowski | b26b2d4 | 2010-01-01 17:40:49 +0100 | [diff] [blame] | 207 | return start; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region, |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 211 | struct resource *res) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 212 | { |
| 213 | struct pci_channel *hose = dev->sysdata; |
| 214 | unsigned long offset = 0; |
| 215 | |
| 216 | if (res->flags & IORESOURCE_IO) |
| 217 | offset = hose->io_offset; |
| 218 | else if (res->flags & IORESOURCE_MEM) |
| 219 | offset = hose->mem_offset; |
| 220 | |
| 221 | region->start = res->start - offset; |
| 222 | region->end = res->end - offset; |
| 223 | } |
| 224 | |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 225 | void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res, |
| 226 | struct pci_bus_region *region) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 227 | { |
| 228 | struct pci_channel *hose = dev->sysdata; |
| 229 | unsigned long offset = 0; |
| 230 | |
| 231 | if (res->flags & IORESOURCE_IO) |
| 232 | offset = hose->io_offset; |
| 233 | else if (res->flags & IORESOURCE_MEM) |
| 234 | offset = hose->mem_offset; |
| 235 | |
| 236 | res->start = region->start + offset; |
| 237 | res->end = region->end + offset; |
| 238 | } |
| 239 | |
| 240 | int pcibios_enable_device(struct pci_dev *dev, int mask) |
| 241 | { |
Paul Mundt | c62e3fa | 2010-09-19 13:51:15 +0900 | [diff] [blame] | 242 | return pci_enable_resources(dev, mask); |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | /* |
| 246 | * If we set up a device for bus mastering, we need to check and set |
| 247 | * the latency timer as it may not be properly set. |
| 248 | */ |
| 249 | static unsigned int pcibios_max_latency = 255; |
| 250 | |
| 251 | void pcibios_set_master(struct pci_dev *dev) |
| 252 | { |
| 253 | u8 lat; |
| 254 | pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat); |
| 255 | if (lat < 16) |
| 256 | lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency; |
| 257 | else if (lat > pcibios_max_latency) |
| 258 | lat = pcibios_max_latency; |
| 259 | else |
| 260 | return; |
| 261 | printk(KERN_INFO "PCI: Setting latency timer of device %s to %d\n", |
| 262 | pci_name(dev), lat); |
| 263 | pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat); |
| 264 | } |
| 265 | |
| 266 | void __init pcibios_update_irq(struct pci_dev *dev, int irq) |
| 267 | { |
| 268 | pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq); |
| 269 | } |
| 270 | |
Paul Mundt | 61a4676 | 2010-10-14 07:37:01 +0900 | [diff] [blame] | 271 | char * __devinit __weak pcibios_setup(char *str) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 272 | { |
| 273 | return str; |
| 274 | } |
| 275 | |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 276 | static void __init |
| 277 | pcibios_bus_report_status_early(struct pci_channel *hose, |
| 278 | int top_bus, int current_bus, |
| 279 | unsigned int status_mask, int warn) |
| 280 | { |
| 281 | unsigned int pci_devfn; |
| 282 | u16 status; |
| 283 | int ret; |
| 284 | |
| 285 | for (pci_devfn = 0; pci_devfn < 0xff; pci_devfn++) { |
| 286 | if (PCI_FUNC(pci_devfn)) |
| 287 | continue; |
| 288 | ret = early_read_config_word(hose, top_bus, current_bus, |
| 289 | pci_devfn, PCI_STATUS, &status); |
| 290 | if (ret != PCIBIOS_SUCCESSFUL) |
| 291 | continue; |
| 292 | if (status == 0xffff) |
| 293 | continue; |
| 294 | |
| 295 | early_write_config_word(hose, top_bus, current_bus, |
| 296 | pci_devfn, PCI_STATUS, |
| 297 | status & status_mask); |
| 298 | if (warn) |
| 299 | printk("(%02x:%02x: %04X) ", current_bus, |
| 300 | pci_devfn, status); |
| 301 | } |
| 302 | } |
| 303 | |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 304 | /* |
| 305 | * We can't use pci_find_device() here since we are |
| 306 | * called from interrupt context. |
| 307 | */ |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 308 | static void __init_refok |
| 309 | pcibios_bus_report_status(struct pci_bus *bus, unsigned int status_mask, |
| 310 | int warn) |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 311 | { |
| 312 | struct pci_dev *dev; |
| 313 | |
| 314 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 315 | u16 status; |
| 316 | |
| 317 | /* |
| 318 | * ignore host bridge - we handle |
| 319 | * that separately |
| 320 | */ |
| 321 | if (dev->bus->number == 0 && dev->devfn == 0) |
| 322 | continue; |
| 323 | |
| 324 | pci_read_config_word(dev, PCI_STATUS, &status); |
| 325 | if (status == 0xffff) |
| 326 | continue; |
| 327 | |
| 328 | if ((status & status_mask) == 0) |
| 329 | continue; |
| 330 | |
| 331 | /* clear the status errors */ |
| 332 | pci_write_config_word(dev, PCI_STATUS, status & status_mask); |
| 333 | |
| 334 | if (warn) |
| 335 | printk("(%s: %04X) ", pci_name(dev), status); |
| 336 | } |
| 337 | |
| 338 | list_for_each_entry(dev, &bus->devices, bus_list) |
| 339 | if (dev->subordinate) |
| 340 | pcibios_bus_report_status(dev->subordinate, status_mask, warn); |
| 341 | } |
| 342 | |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 343 | void __init_refok pcibios_report_status(unsigned int status_mask, int warn) |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 344 | { |
| 345 | struct pci_channel *hose; |
| 346 | |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 347 | for (hose = hose_head; hose; hose = hose->next) { |
| 348 | if (unlikely(!hose->bus)) |
| 349 | pcibios_bus_report_status_early(hose, hose_head->index, |
| 350 | hose->index, status_mask, warn); |
| 351 | else |
| 352 | pcibios_bus_report_status(hose->bus, status_mask, warn); |
| 353 | } |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 354 | } |
| 355 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 356 | int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma, |
| 357 | enum pci_mmap_state mmap_state, int write_combine) |
| 358 | { |
| 359 | /* |
| 360 | * I/O space can be accessed via normal processor loads and stores on |
| 361 | * this platform but for now we elect not to do this and portable |
| 362 | * drivers should not do this anyway. |
| 363 | */ |
| 364 | if (mmap_state == pci_mmap_io) |
| 365 | return -EINVAL; |
| 366 | |
| 367 | /* |
| 368 | * Ignore write-combine; for now only return uncached mappings. |
| 369 | */ |
| 370 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); |
| 371 | |
| 372 | return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff, |
| 373 | vma->vm_end - vma->vm_start, |
| 374 | vma->vm_page_prot); |
| 375 | } |
| 376 | |
David McKay | 15444a8 | 2009-08-24 16:10:40 +0900 | [diff] [blame] | 377 | #ifndef CONFIG_GENERIC_IOMAP |
| 378 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 379 | static void __iomem *ioport_map_pci(struct pci_dev *dev, |
| 380 | unsigned long port, unsigned int nr) |
| 381 | { |
| 382 | struct pci_channel *chan = dev->sysdata; |
| 383 | |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 384 | if (unlikely(!chan->io_map_base)) { |
Paul Mundt | 37b7a97 | 2010-11-01 09:49:04 -0400 | [diff] [blame] | 385 | chan->io_map_base = sh_io_port_base; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 386 | |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 387 | if (pci_domains_supported) |
| 388 | panic("To avoid data corruption io_map_base MUST be " |
| 389 | "set with multiple PCI domains."); |
| 390 | } |
| 391 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 392 | return (void __iomem *)(chan->io_map_base + port); |
| 393 | } |
| 394 | |
| 395 | void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) |
| 396 | { |
| 397 | resource_size_t start = pci_resource_start(dev, bar); |
| 398 | resource_size_t len = pci_resource_len(dev, bar); |
| 399 | unsigned long flags = pci_resource_flags(dev, bar); |
| 400 | |
| 401 | if (unlikely(!len || !start)) |
| 402 | return NULL; |
| 403 | if (maxlen && len > maxlen) |
| 404 | len = maxlen; |
| 405 | |
| 406 | if (flags & IORESOURCE_IO) |
| 407 | return ioport_map_pci(dev, start, len); |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 408 | if (flags & IORESOURCE_MEM) { |
| 409 | if (flags & IORESOURCE_CACHEABLE) |
| 410 | return ioremap(start, len); |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 411 | return ioremap_nocache(start, len); |
| 412 | } |
| 413 | |
| 414 | return NULL; |
| 415 | } |
| 416 | EXPORT_SYMBOL(pci_iomap); |
| 417 | |
| 418 | void pci_iounmap(struct pci_dev *dev, void __iomem *addr) |
| 419 | { |
| 420 | iounmap(addr); |
| 421 | } |
| 422 | EXPORT_SYMBOL(pci_iounmap); |
| 423 | |
David McKay | 15444a8 | 2009-08-24 16:10:40 +0900 | [diff] [blame] | 424 | #endif /* CONFIG_GENERIC_IOMAP */ |
| 425 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 426 | #ifdef CONFIG_HOTPLUG |
| 427 | EXPORT_SYMBOL(pcibios_resource_to_bus); |
| 428 | EXPORT_SYMBOL(pcibios_bus_to_resource); |
| 429 | EXPORT_SYMBOL(PCIBIOS_MIN_IO); |
| 430 | EXPORT_SYMBOL(PCIBIOS_MIN_MEM); |
| 431 | #endif |