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