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