Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * $Id: pci.c,v 1.91 1999/01/21 13:34:01 davem Exp $ |
| 3 | * |
| 4 | * PCI Bus Services, see include/linux/pci.h for further explanation. |
| 5 | * |
| 6 | * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter, |
| 7 | * David Mosberger-Tang |
| 8 | * |
| 9 | * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz> |
| 10 | */ |
| 11 | |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/delay.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/pci.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/spinlock.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 18 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/dma.h> /* isa_dma_bridge_buggy */ |
Greg KH | bc56b9e | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 20 | #include "pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Kristen Carlson Accardi | ffadcc2 | 2006-07-12 08:59:00 -0700 | [diff] [blame] | 22 | unsigned int pci_pm_d3_delay = 10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | /** |
| 25 | * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children |
| 26 | * @bus: pointer to PCI bus structure to search |
| 27 | * |
| 28 | * Given a PCI bus, returns the highest PCI bus number present in the set |
| 29 | * including the given PCI bus and its list of child PCI buses. |
| 30 | */ |
| 31 | unsigned char __devinit |
| 32 | pci_bus_max_busnr(struct pci_bus* bus) |
| 33 | { |
| 34 | struct list_head *tmp; |
| 35 | unsigned char max, n; |
| 36 | |
Kristen Accardi | b82db5c | 2006-01-17 16:56:56 -0800 | [diff] [blame] | 37 | max = bus->subordinate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | list_for_each(tmp, &bus->children) { |
| 39 | n = pci_bus_max_busnr(pci_bus_b(tmp)); |
| 40 | if(n > max) |
| 41 | max = n; |
| 42 | } |
| 43 | return max; |
| 44 | } |
Kristen Accardi | b82db5c | 2006-01-17 16:56:56 -0800 | [diff] [blame] | 45 | EXPORT_SYMBOL_GPL(pci_bus_max_busnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Kristen Accardi | b82db5c | 2006-01-17 16:56:56 -0800 | [diff] [blame] | 47 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /** |
| 49 | * pci_max_busnr - returns maximum PCI bus number |
| 50 | * |
| 51 | * Returns the highest PCI bus number present in the system global list of |
| 52 | * PCI buses. |
| 53 | */ |
| 54 | unsigned char __devinit |
| 55 | pci_max_busnr(void) |
| 56 | { |
| 57 | struct pci_bus *bus = NULL; |
| 58 | unsigned char max, n; |
| 59 | |
| 60 | max = 0; |
| 61 | while ((bus = pci_find_next_bus(bus)) != NULL) { |
| 62 | n = pci_bus_max_busnr(bus); |
| 63 | if(n > max) |
| 64 | max = n; |
| 65 | } |
| 66 | return max; |
| 67 | } |
| 68 | |
Adrian Bunk | 54c762f | 2005-12-22 01:08:52 +0100 | [diff] [blame] | 69 | #endif /* 0 */ |
| 70 | |
Roland Dreier | 24a4e37 | 2005-10-28 17:35:34 -0700 | [diff] [blame] | 71 | static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn, u8 pos, int cap) |
| 72 | { |
| 73 | u8 id; |
| 74 | int ttl = 48; |
| 75 | |
| 76 | while (ttl--) { |
| 77 | pci_bus_read_config_byte(bus, devfn, pos, &pos); |
| 78 | if (pos < 0x40) |
| 79 | break; |
| 80 | pos &= ~3; |
| 81 | pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID, |
| 82 | &id); |
| 83 | if (id == 0xff) |
| 84 | break; |
| 85 | if (id == cap) |
| 86 | return pos; |
| 87 | pos += PCI_CAP_LIST_NEXT; |
| 88 | } |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap) |
| 93 | { |
| 94 | return __pci_find_next_cap(dev->bus, dev->devfn, |
| 95 | pos + PCI_CAP_LIST_NEXT, cap); |
| 96 | } |
| 97 | EXPORT_SYMBOL_GPL(pci_find_next_capability); |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | static int __pci_bus_find_cap(struct pci_bus *bus, unsigned int devfn, u8 hdr_type, int cap) |
| 100 | { |
| 101 | u16 status; |
Roland Dreier | 24a4e37 | 2005-10-28 17:35:34 -0700 | [diff] [blame] | 102 | u8 pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status); |
| 105 | if (!(status & PCI_STATUS_CAP_LIST)) |
| 106 | return 0; |
| 107 | |
| 108 | switch (hdr_type) { |
| 109 | case PCI_HEADER_TYPE_NORMAL: |
| 110 | case PCI_HEADER_TYPE_BRIDGE: |
Roland Dreier | 24a4e37 | 2005-10-28 17:35:34 -0700 | [diff] [blame] | 111 | pos = PCI_CAPABILITY_LIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | break; |
| 113 | case PCI_HEADER_TYPE_CARDBUS: |
Roland Dreier | 24a4e37 | 2005-10-28 17:35:34 -0700 | [diff] [blame] | 114 | pos = PCI_CB_CAPABILITY_LIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | break; |
| 116 | default: |
| 117 | return 0; |
| 118 | } |
Roland Dreier | 24a4e37 | 2005-10-28 17:35:34 -0700 | [diff] [blame] | 119 | return __pci_find_next_cap(bus, devfn, pos, cap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | /** |
| 123 | * pci_find_capability - query for devices' capabilities |
| 124 | * @dev: PCI device to query |
| 125 | * @cap: capability code |
| 126 | * |
| 127 | * Tell if a device supports a given PCI capability. |
| 128 | * Returns the address of the requested capability structure within the |
| 129 | * device's PCI configuration space or 0 in case the device does not |
| 130 | * support it. Possible values for @cap: |
| 131 | * |
| 132 | * %PCI_CAP_ID_PM Power Management |
| 133 | * %PCI_CAP_ID_AGP Accelerated Graphics Port |
| 134 | * %PCI_CAP_ID_VPD Vital Product Data |
| 135 | * %PCI_CAP_ID_SLOTID Slot Identification |
| 136 | * %PCI_CAP_ID_MSI Message Signalled Interrupts |
| 137 | * %PCI_CAP_ID_CHSWP CompactPCI HotSwap |
| 138 | * %PCI_CAP_ID_PCIX PCI-X |
| 139 | * %PCI_CAP_ID_EXP PCI Express |
| 140 | */ |
| 141 | int pci_find_capability(struct pci_dev *dev, int cap) |
| 142 | { |
| 143 | return __pci_bus_find_cap(dev->bus, dev->devfn, dev->hdr_type, cap); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * pci_bus_find_capability - query for devices' capabilities |
| 148 | * @bus: the PCI bus to query |
| 149 | * @devfn: PCI device to query |
| 150 | * @cap: capability code |
| 151 | * |
| 152 | * Like pci_find_capability() but works for pci devices that do not have a |
| 153 | * pci_dev structure set up yet. |
| 154 | * |
| 155 | * Returns the address of the requested capability structure within the |
| 156 | * device's PCI configuration space or 0 in case the device does not |
| 157 | * support it. |
| 158 | */ |
| 159 | int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap) |
| 160 | { |
| 161 | u8 hdr_type; |
| 162 | |
| 163 | pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type); |
| 164 | |
| 165 | return __pci_bus_find_cap(bus, devfn, hdr_type & 0x7f, cap); |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * pci_find_ext_capability - Find an extended capability |
| 170 | * @dev: PCI device to query |
| 171 | * @cap: capability code |
| 172 | * |
| 173 | * Returns the address of the requested extended capability structure |
| 174 | * within the device's PCI configuration space or 0 if the device does |
| 175 | * not support it. Possible values for @cap: |
| 176 | * |
| 177 | * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting |
| 178 | * %PCI_EXT_CAP_ID_VC Virtual Channel |
| 179 | * %PCI_EXT_CAP_ID_DSN Device Serial Number |
| 180 | * %PCI_EXT_CAP_ID_PWR Power Budgeting |
| 181 | */ |
| 182 | int pci_find_ext_capability(struct pci_dev *dev, int cap) |
| 183 | { |
| 184 | u32 header; |
| 185 | int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */ |
| 186 | int pos = 0x100; |
| 187 | |
| 188 | if (dev->cfg_size <= 256) |
| 189 | return 0; |
| 190 | |
| 191 | if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL) |
| 192 | return 0; |
| 193 | |
| 194 | /* |
| 195 | * If we have no capabilities, this is indicated by cap ID, |
| 196 | * cap version and next pointer all being 0. |
| 197 | */ |
| 198 | if (header == 0) |
| 199 | return 0; |
| 200 | |
| 201 | while (ttl-- > 0) { |
| 202 | if (PCI_EXT_CAP_ID(header) == cap) |
| 203 | return pos; |
| 204 | |
| 205 | pos = PCI_EXT_CAP_NEXT(header); |
| 206 | if (pos < 0x100) |
| 207 | break; |
| 208 | |
| 209 | if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL) |
| 210 | break; |
| 211 | } |
| 212 | |
| 213 | return 0; |
| 214 | } |
Brice Goglin | 3a720d7 | 2006-05-23 06:10:01 -0400 | [diff] [blame] | 215 | EXPORT_SYMBOL_GPL(pci_find_ext_capability); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | /** |
| 218 | * pci_find_parent_resource - return resource region of parent bus of given region |
| 219 | * @dev: PCI device structure contains resources to be searched |
| 220 | * @res: child resource record for which parent is sought |
| 221 | * |
| 222 | * For given resource region of given device, return the resource |
| 223 | * region of parent bus the given region is contained in or where |
| 224 | * it should be allocated from. |
| 225 | */ |
| 226 | struct resource * |
| 227 | pci_find_parent_resource(const struct pci_dev *dev, struct resource *res) |
| 228 | { |
| 229 | const struct pci_bus *bus = dev->bus; |
| 230 | int i; |
| 231 | struct resource *best = NULL; |
| 232 | |
| 233 | for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) { |
| 234 | struct resource *r = bus->resource[i]; |
| 235 | if (!r) |
| 236 | continue; |
| 237 | if (res->start && !(res->start >= r->start && res->end <= r->end)) |
| 238 | continue; /* Not contained */ |
| 239 | if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM)) |
| 240 | continue; /* Wrong type */ |
| 241 | if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH)) |
| 242 | return r; /* Exact match */ |
| 243 | if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH)) |
| 244 | best = r; /* Approximating prefetchable by non-prefetchable */ |
| 245 | } |
| 246 | return best; |
| 247 | } |
| 248 | |
| 249 | /** |
John W. Linville | 064b53db | 2005-07-27 10:19:44 -0400 | [diff] [blame] | 250 | * pci_restore_bars - restore a devices BAR values (e.g. after wake-up) |
| 251 | * @dev: PCI device to have its BARs restored |
| 252 | * |
| 253 | * Restore the BAR values for a given device, so as to make it |
| 254 | * accessible by its driver. |
| 255 | */ |
| 256 | void |
| 257 | pci_restore_bars(struct pci_dev *dev) |
| 258 | { |
| 259 | int i, numres; |
| 260 | |
| 261 | switch (dev->hdr_type) { |
| 262 | case PCI_HEADER_TYPE_NORMAL: |
| 263 | numres = 6; |
| 264 | break; |
| 265 | case PCI_HEADER_TYPE_BRIDGE: |
| 266 | numres = 2; |
| 267 | break; |
| 268 | case PCI_HEADER_TYPE_CARDBUS: |
| 269 | numres = 1; |
| 270 | break; |
| 271 | default: |
| 272 | /* Should never get here, but just in case... */ |
| 273 | return; |
| 274 | } |
| 275 | |
| 276 | for (i = 0; i < numres; i ++) |
| 277 | pci_update_resource(dev, &dev->resource[i], i); |
| 278 | } |
| 279 | |
Randy Dunlap | 8f7020d | 2005-10-23 11:57:38 -0700 | [diff] [blame] | 280 | int (*platform_pci_set_power_state)(struct pci_dev *dev, pci_power_t t); |
| 281 | |
John W. Linville | 064b53db | 2005-07-27 10:19:44 -0400 | [diff] [blame] | 282 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | * pci_set_power_state - Set the power state of a PCI device |
| 284 | * @dev: PCI device to be suspended |
| 285 | * @state: PCI power state (D0, D1, D2, D3hot, D3cold) we're entering |
| 286 | * |
| 287 | * Transition a device to a new power state, using the Power Management |
| 288 | * Capabilities in the device's config space. |
| 289 | * |
| 290 | * RETURN VALUE: |
| 291 | * -EINVAL if trying to enter a lower state than we're already in. |
| 292 | * 0 if we're already in the requested state. |
| 293 | * -EIO if device does not support PCI PM. |
| 294 | * 0 if we can successfully change the power state. |
| 295 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | int |
| 297 | pci_set_power_state(struct pci_dev *dev, pci_power_t state) |
| 298 | { |
John W. Linville | 064b53db | 2005-07-27 10:19:44 -0400 | [diff] [blame] | 299 | int pm, need_restore = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | u16 pmcsr, pmc; |
| 301 | |
| 302 | /* bound the state we're entering */ |
| 303 | if (state > PCI_D3hot) |
| 304 | state = PCI_D3hot; |
| 305 | |
| 306 | /* Validate current state: |
| 307 | * Can enter D0 from any state, but if we can only go deeper |
| 308 | * to sleep if we're already in a low power state |
| 309 | */ |
Andrew Morton | 0266949 | 2006-03-23 01:38:34 -0800 | [diff] [blame] | 310 | if (state != PCI_D0 && dev->current_state > state) { |
| 311 | printk(KERN_ERR "%s(): %s: state=%d, current state=%d\n", |
| 312 | __FUNCTION__, pci_name(dev), state, dev->current_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | return -EINVAL; |
Andrew Morton | 0266949 | 2006-03-23 01:38:34 -0800 | [diff] [blame] | 314 | } else if (dev->current_state == state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | return 0; /* we're already there */ |
| 316 | |
Kristen Carlson Accardi | ffadcc2 | 2006-07-12 08:59:00 -0700 | [diff] [blame] | 317 | /* |
| 318 | * If the device or the parent bridge can't support PCI PM, ignore |
| 319 | * the request if we're doing anything besides putting it into D0 |
| 320 | * (which would only happen on boot). |
| 321 | */ |
| 322 | if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev)) |
| 323 | return 0; |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | /* find PCI PM capability in list */ |
| 326 | pm = pci_find_capability(dev, PCI_CAP_ID_PM); |
| 327 | |
| 328 | /* abort if the device doesn't support PM capabilities */ |
| 329 | if (!pm) |
| 330 | return -EIO; |
| 331 | |
| 332 | pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc); |
Daniel Ritz | 3fe9d19 | 2005-08-17 15:32:19 -0700 | [diff] [blame] | 333 | if ((pmc & PCI_PM_CAP_VER_MASK) > 3) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | printk(KERN_DEBUG |
| 335 | "PCI: %s has unsupported PM cap regs version (%u)\n", |
| 336 | pci_name(dev), pmc & PCI_PM_CAP_VER_MASK); |
| 337 | return -EIO; |
| 338 | } |
| 339 | |
| 340 | /* check if this device supports the desired state */ |
Daniel Ritz | 3fe9d19 | 2005-08-17 15:32:19 -0700 | [diff] [blame] | 341 | if (state == PCI_D1 && !(pmc & PCI_PM_CAP_D1)) |
| 342 | return -EIO; |
| 343 | else if (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2)) |
| 344 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
John W. Linville | 064b53db | 2005-07-27 10:19:44 -0400 | [diff] [blame] | 346 | pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr); |
| 347 | |
John W. Linville | 32a3658 | 2005-09-14 09:52:42 -0400 | [diff] [blame] | 348 | /* If we're (effectively) in D3, force entire word to 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | * This doesn't affect PME_Status, disables PME_En, and |
| 350 | * sets PowerState to 0. |
| 351 | */ |
John W. Linville | 32a3658 | 2005-09-14 09:52:42 -0400 | [diff] [blame] | 352 | switch (dev->current_state) { |
John W. Linville | d3535fb | 2005-09-28 17:50:51 -0400 | [diff] [blame] | 353 | case PCI_D0: |
| 354 | case PCI_D1: |
| 355 | case PCI_D2: |
| 356 | pmcsr &= ~PCI_PM_CTRL_STATE_MASK; |
| 357 | pmcsr |= state; |
| 358 | break; |
John W. Linville | 32a3658 | 2005-09-14 09:52:42 -0400 | [diff] [blame] | 359 | case PCI_UNKNOWN: /* Boot-up */ |
| 360 | if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot |
| 361 | && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET)) |
John W. Linville | 064b53db | 2005-07-27 10:19:44 -0400 | [diff] [blame] | 362 | need_restore = 1; |
John W. Linville | 32a3658 | 2005-09-14 09:52:42 -0400 | [diff] [blame] | 363 | /* Fall-through: force to D0 */ |
John W. Linville | 32a3658 | 2005-09-14 09:52:42 -0400 | [diff] [blame] | 364 | default: |
John W. Linville | d3535fb | 2005-09-28 17:50:51 -0400 | [diff] [blame] | 365 | pmcsr = 0; |
John W. Linville | 32a3658 | 2005-09-14 09:52:42 -0400 | [diff] [blame] | 366 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | /* enter specified state */ |
| 370 | pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr); |
| 371 | |
| 372 | /* Mandatory power management transition delays */ |
| 373 | /* see PCI PM 1.1 5.6.1 table 18 */ |
| 374 | if (state == PCI_D3hot || dev->current_state == PCI_D3hot) |
Kristen Carlson Accardi | ffadcc2 | 2006-07-12 08:59:00 -0700 | [diff] [blame] | 375 | msleep(pci_pm_d3_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | else if (state == PCI_D2 || dev->current_state == PCI_D2) |
| 377 | udelay(200); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 379 | /* |
| 380 | * Give firmware a chance to be called, such as ACPI _PRx, _PSx |
Andreas Mohr | d6e05ed | 2006-06-26 18:35:02 +0200 | [diff] [blame] | 381 | * Firmware method after native method ? |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 382 | */ |
| 383 | if (platform_pci_set_power_state) |
| 384 | platform_pci_set_power_state(dev, state); |
| 385 | |
| 386 | dev->current_state = state; |
John W. Linville | 064b53db | 2005-07-27 10:19:44 -0400 | [diff] [blame] | 387 | |
| 388 | /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT |
| 389 | * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning |
| 390 | * from D3hot to D0 _may_ perform an internal reset, thereby |
| 391 | * going to "D0 Uninitialized" rather than "D0 Initialized". |
| 392 | * For example, at least some versions of the 3c905B and the |
| 393 | * 3c556B exhibit this behaviour. |
| 394 | * |
| 395 | * At least some laptop BIOSen (e.g. the Thinkpad T21) leave |
| 396 | * devices in a D3hot state at boot. Consequently, we need to |
| 397 | * restore at least the BARs so that the device will be |
| 398 | * accessible to its driver. |
| 399 | */ |
| 400 | if (need_restore) |
| 401 | pci_restore_bars(dev); |
| 402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | return 0; |
| 404 | } |
| 405 | |
Greg Kroah-Hartman | f165b10 | 2005-03-30 21:23:19 -0500 | [diff] [blame] | 406 | int (*platform_pci_choose_state)(struct pci_dev *dev, pm_message_t state); |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | /** |
| 409 | * pci_choose_state - Choose the power state of a PCI device |
| 410 | * @dev: PCI device to be suspended |
| 411 | * @state: target sleep state for the whole system. This is the value |
| 412 | * that is passed to suspend() function. |
| 413 | * |
| 414 | * Returns PCI power state suitable for given device and given system |
| 415 | * message. |
| 416 | */ |
| 417 | |
| 418 | pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state) |
| 419 | { |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 420 | int ret; |
| 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | if (!pci_find_capability(dev, PCI_CAP_ID_PM)) |
| 423 | return PCI_D0; |
| 424 | |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 425 | if (platform_pci_choose_state) { |
| 426 | ret = platform_pci_choose_state(dev, state); |
| 427 | if (ret >= 0) |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 428 | state.event = ret; |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 429 | } |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 430 | |
| 431 | switch (state.event) { |
| 432 | case PM_EVENT_ON: |
| 433 | return PCI_D0; |
| 434 | case PM_EVENT_FREEZE: |
David Brownell | b887d2e | 2006-08-14 23:11:05 -0700 | [diff] [blame^] | 435 | case PM_EVENT_PRETHAW: |
| 436 | /* REVISIT both freeze and pre-thaw "should" use D0 */ |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 437 | case PM_EVENT_SUSPEND: |
| 438 | return PCI_D3hot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | default: |
David Brownell | b887d2e | 2006-08-14 23:11:05 -0700 | [diff] [blame^] | 440 | printk("Unrecognized suspend event %d\n", state.event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | BUG(); |
| 442 | } |
| 443 | return PCI_D0; |
| 444 | } |
| 445 | |
| 446 | EXPORT_SYMBOL(pci_choose_state); |
| 447 | |
| 448 | /** |
| 449 | * pci_save_state - save the PCI configuration space of a device before suspending |
| 450 | * @dev: - PCI device that we're dealing with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | */ |
| 452 | int |
| 453 | pci_save_state(struct pci_dev *dev) |
| 454 | { |
| 455 | int i; |
| 456 | /* XXX: 100% dword access ok here? */ |
| 457 | for (i = 0; i < 16; i++) |
| 458 | pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]); |
Shaohua Li | 41017f0 | 2006-02-08 17:11:38 +0800 | [diff] [blame] | 459 | if ((i = pci_save_msi_state(dev)) != 0) |
| 460 | return i; |
| 461 | if ((i = pci_save_msix_state(dev)) != 0) |
| 462 | return i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | return 0; |
| 464 | } |
| 465 | |
| 466 | /** |
| 467 | * pci_restore_state - Restore the saved state of a PCI device |
| 468 | * @dev: - PCI device that we're dealing with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | */ |
| 470 | int |
| 471 | pci_restore_state(struct pci_dev *dev) |
| 472 | { |
| 473 | int i; |
Dave Jones | 04d9c1a | 2006-04-18 21:06:51 -0700 | [diff] [blame] | 474 | int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
Yu, Luming | 8b8c8d2 | 2006-04-25 00:00:34 -0700 | [diff] [blame] | 476 | /* |
| 477 | * The Base Address register should be programmed before the command |
| 478 | * register(s) |
| 479 | */ |
| 480 | for (i = 15; i >= 0; i--) { |
Dave Jones | 04d9c1a | 2006-04-18 21:06:51 -0700 | [diff] [blame] | 481 | pci_read_config_dword(dev, i * 4, &val); |
| 482 | if (val != dev->saved_config_space[i]) { |
| 483 | printk(KERN_DEBUG "PM: Writing back config space on " |
| 484 | "device %s at offset %x (was %x, writing %x)\n", |
| 485 | pci_name(dev), i, |
| 486 | val, (int)dev->saved_config_space[i]); |
| 487 | pci_write_config_dword(dev,i * 4, |
| 488 | dev->saved_config_space[i]); |
| 489 | } |
| 490 | } |
Shaohua Li | 41017f0 | 2006-02-08 17:11:38 +0800 | [diff] [blame] | 491 | pci_restore_msi_state(dev); |
| 492 | pci_restore_msix_state(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | return 0; |
| 494 | } |
| 495 | |
| 496 | /** |
| 497 | * pci_enable_device_bars - Initialize some of a device for use |
| 498 | * @dev: PCI device to be initialized |
| 499 | * @bars: bitmask of BAR's that must be configured |
| 500 | * |
| 501 | * Initialize device before it's used by a driver. Ask low-level code |
| 502 | * to enable selected I/O and memory resources. Wake up the device if it |
| 503 | * was suspended. Beware, this function can fail. |
| 504 | */ |
| 505 | |
| 506 | int |
| 507 | pci_enable_device_bars(struct pci_dev *dev, int bars) |
| 508 | { |
| 509 | int err; |
| 510 | |
Greg Kroah-Hartman | 95a6296 | 2005-07-28 11:37:33 -0700 | [diff] [blame] | 511 | err = pci_set_power_state(dev, PCI_D0); |
Alan Stern | 11f3859 | 2005-08-10 15:18:44 -0400 | [diff] [blame] | 512 | if (err < 0 && err != -EIO) |
Greg Kroah-Hartman | 95a6296 | 2005-07-28 11:37:33 -0700 | [diff] [blame] | 513 | return err; |
| 514 | err = pcibios_enable_device(dev, bars); |
| 515 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | return err; |
| 517 | return 0; |
| 518 | } |
| 519 | |
| 520 | /** |
| 521 | * pci_enable_device - Initialize device before it's used by a driver. |
| 522 | * @dev: PCI device to be initialized |
| 523 | * |
| 524 | * Initialize device before it's used by a driver. Ask low-level code |
| 525 | * to enable I/O and memory. Wake up the device if it was suspended. |
| 526 | * Beware, this function can fail. |
| 527 | */ |
| 528 | int |
| 529 | pci_enable_device(struct pci_dev *dev) |
| 530 | { |
Kristen Accardi | a1e022b | 2006-04-28 11:37:38 -0700 | [diff] [blame] | 531 | int err; |
| 532 | |
| 533 | if (dev->is_enabled) |
| 534 | return 0; |
| 535 | |
| 536 | err = pci_enable_device_bars(dev, (1 << PCI_NUM_RESOURCES) - 1); |
Grant Grundler | b64c05e | 2006-01-14 00:34:53 -0700 | [diff] [blame] | 537 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | return err; |
| 539 | pci_fixup_device(pci_fixup_enable, dev); |
Kenji Kaneshige | ceb4374 | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 540 | dev->is_enabled = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | return 0; |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * pcibios_disable_device - disable arch specific PCI resources for device dev |
| 546 | * @dev: the PCI device to disable |
| 547 | * |
| 548 | * Disables architecture specific PCI resources for the device. This |
| 549 | * is the default implementation. Architecture implementations can |
| 550 | * override this. |
| 551 | */ |
| 552 | void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {} |
| 553 | |
| 554 | /** |
| 555 | * pci_disable_device - Disable PCI device after use |
| 556 | * @dev: PCI device to be disabled |
| 557 | * |
| 558 | * Signal to the system that the PCI device is not in use by the system |
| 559 | * anymore. This only involves disabling PCI bus-mastering, if active. |
| 560 | */ |
| 561 | void |
| 562 | pci_disable_device(struct pci_dev *dev) |
| 563 | { |
| 564 | u16 pci_command; |
Shaohua Li | 99dc804 | 2006-05-26 10:58:27 +0800 | [diff] [blame] | 565 | |
| 566 | if (dev->msi_enabled) |
| 567 | disable_msi_mode(dev, pci_find_capability(dev, PCI_CAP_ID_MSI), |
| 568 | PCI_CAP_ID_MSI); |
| 569 | if (dev->msix_enabled) |
| 570 | disable_msi_mode(dev, pci_find_capability(dev, PCI_CAP_ID_MSI), |
| 571 | PCI_CAP_ID_MSIX); |
| 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | pci_read_config_word(dev, PCI_COMMAND, &pci_command); |
| 574 | if (pci_command & PCI_COMMAND_MASTER) { |
| 575 | pci_command &= ~PCI_COMMAND_MASTER; |
| 576 | pci_write_config_word(dev, PCI_COMMAND, pci_command); |
| 577 | } |
Kenji Kaneshige | ceb4374 | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 578 | dev->is_busmaster = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | |
| 580 | pcibios_disable_device(dev); |
Kenji Kaneshige | ceb4374 | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 581 | dev->is_enabled = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | /** |
| 585 | * pci_enable_wake - enable device to generate PME# when suspended |
| 586 | * @dev: - PCI device to operate on |
| 587 | * @state: - Current state of device. |
| 588 | * @enable: - Flag to enable or disable generation |
| 589 | * |
| 590 | * Set the bits in the device's PM Capabilities to generate PME# when |
| 591 | * the system is suspended. |
| 592 | * |
| 593 | * -EIO is returned if device doesn't have PM Capabilities. |
| 594 | * -EINVAL is returned if device supports it, but can't generate wake events. |
| 595 | * 0 if operation is successful. |
| 596 | * |
| 597 | */ |
| 598 | int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable) |
| 599 | { |
| 600 | int pm; |
| 601 | u16 value; |
| 602 | |
| 603 | /* find PCI PM capability in list */ |
| 604 | pm = pci_find_capability(dev, PCI_CAP_ID_PM); |
| 605 | |
| 606 | /* If device doesn't support PM Capabilities, but request is to disable |
| 607 | * wake events, it's a nop; otherwise fail */ |
| 608 | if (!pm) |
| 609 | return enable ? -EIO : 0; |
| 610 | |
| 611 | /* Check device's ability to generate PME# */ |
| 612 | pci_read_config_word(dev,pm+PCI_PM_PMC,&value); |
| 613 | |
| 614 | value &= PCI_PM_CAP_PME_MASK; |
| 615 | value >>= ffs(PCI_PM_CAP_PME_MASK) - 1; /* First bit of mask */ |
| 616 | |
| 617 | /* Check if it can generate PME# from requested state. */ |
| 618 | if (!value || !(value & (1 << state))) |
| 619 | return enable ? -EINVAL : 0; |
| 620 | |
| 621 | pci_read_config_word(dev, pm + PCI_PM_CTRL, &value); |
| 622 | |
| 623 | /* Clear PME_Status by writing 1 to it and enable PME# */ |
| 624 | value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE; |
| 625 | |
| 626 | if (!enable) |
| 627 | value &= ~PCI_PM_CTRL_PME_ENABLE; |
| 628 | |
| 629 | pci_write_config_word(dev, pm + PCI_PM_CTRL, value); |
| 630 | |
| 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | int |
| 635 | pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge) |
| 636 | { |
| 637 | u8 pin; |
| 638 | |
Kristen Accardi | 514d207 | 2005-11-02 16:24:39 -0800 | [diff] [blame] | 639 | pin = dev->pin; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | if (!pin) |
| 641 | return -1; |
| 642 | pin--; |
| 643 | while (dev->bus->self) { |
| 644 | pin = (pin + PCI_SLOT(dev->devfn)) % 4; |
| 645 | dev = dev->bus->self; |
| 646 | } |
| 647 | *bridge = dev; |
| 648 | return pin; |
| 649 | } |
| 650 | |
| 651 | /** |
| 652 | * pci_release_region - Release a PCI bar |
| 653 | * @pdev: PCI device whose resources were previously reserved by pci_request_region |
| 654 | * @bar: BAR to release |
| 655 | * |
| 656 | * Releases the PCI I/O and memory resources previously reserved by a |
| 657 | * successful call to pci_request_region. Call this function only |
| 658 | * after all use of the PCI regions has ceased. |
| 659 | */ |
| 660 | void pci_release_region(struct pci_dev *pdev, int bar) |
| 661 | { |
| 662 | if (pci_resource_len(pdev, bar) == 0) |
| 663 | return; |
| 664 | if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) |
| 665 | release_region(pci_resource_start(pdev, bar), |
| 666 | pci_resource_len(pdev, bar)); |
| 667 | else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) |
| 668 | release_mem_region(pci_resource_start(pdev, bar), |
| 669 | pci_resource_len(pdev, bar)); |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * pci_request_region - Reserved PCI I/O and memory resource |
| 674 | * @pdev: PCI device whose resources are to be reserved |
| 675 | * @bar: BAR to be reserved |
| 676 | * @res_name: Name to be associated with resource. |
| 677 | * |
| 678 | * Mark the PCI region associated with PCI device @pdev BR @bar as |
| 679 | * being reserved by owner @res_name. Do not access any |
| 680 | * address inside the PCI regions unless this call returns |
| 681 | * successfully. |
| 682 | * |
| 683 | * Returns 0 on success, or %EBUSY on error. A warning |
| 684 | * message is also printed on failure. |
| 685 | */ |
Jeff Garzik | 3c990e9 | 2006-03-04 21:52:42 -0500 | [diff] [blame] | 686 | int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | { |
| 688 | if (pci_resource_len(pdev, bar) == 0) |
| 689 | return 0; |
| 690 | |
| 691 | if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) { |
| 692 | if (!request_region(pci_resource_start(pdev, bar), |
| 693 | pci_resource_len(pdev, bar), res_name)) |
| 694 | goto err_out; |
| 695 | } |
| 696 | else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) { |
| 697 | if (!request_mem_region(pci_resource_start(pdev, bar), |
| 698 | pci_resource_len(pdev, bar), res_name)) |
| 699 | goto err_out; |
| 700 | } |
| 701 | |
| 702 | return 0; |
| 703 | |
| 704 | err_out: |
Greg Kroah-Hartman | 1396a8c | 2006-06-12 15:14:29 -0700 | [diff] [blame] | 705 | printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%llx@%llx " |
| 706 | "for device %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem", |
| 708 | bar + 1, /* PCI BAR # */ |
Greg Kroah-Hartman | 1396a8c | 2006-06-12 15:14:29 -0700 | [diff] [blame] | 709 | (unsigned long long)pci_resource_len(pdev, bar), |
| 710 | (unsigned long long)pci_resource_start(pdev, bar), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | pci_name(pdev)); |
| 712 | return -EBUSY; |
| 713 | } |
| 714 | |
| 715 | |
| 716 | /** |
| 717 | * pci_release_regions - Release reserved PCI I/O and memory resources |
| 718 | * @pdev: PCI device whose resources were previously reserved by pci_request_regions |
| 719 | * |
| 720 | * Releases all PCI I/O and memory resources previously reserved by a |
| 721 | * successful call to pci_request_regions. Call this function only |
| 722 | * after all use of the PCI regions has ceased. |
| 723 | */ |
| 724 | |
| 725 | void pci_release_regions(struct pci_dev *pdev) |
| 726 | { |
| 727 | int i; |
| 728 | |
| 729 | for (i = 0; i < 6; i++) |
| 730 | pci_release_region(pdev, i); |
| 731 | } |
| 732 | |
| 733 | /** |
| 734 | * pci_request_regions - Reserved PCI I/O and memory resources |
| 735 | * @pdev: PCI device whose resources are to be reserved |
| 736 | * @res_name: Name to be associated with resource. |
| 737 | * |
| 738 | * Mark all PCI regions associated with PCI device @pdev as |
| 739 | * being reserved by owner @res_name. Do not access any |
| 740 | * address inside the PCI regions unless this call returns |
| 741 | * successfully. |
| 742 | * |
| 743 | * Returns 0 on success, or %EBUSY on error. A warning |
| 744 | * message is also printed on failure. |
| 745 | */ |
Jeff Garzik | 3c990e9 | 2006-03-04 21:52:42 -0500 | [diff] [blame] | 746 | int pci_request_regions(struct pci_dev *pdev, const char *res_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
| 748 | int i; |
| 749 | |
| 750 | for (i = 0; i < 6; i++) |
| 751 | if(pci_request_region(pdev, i, res_name)) |
| 752 | goto err_out; |
| 753 | return 0; |
| 754 | |
| 755 | err_out: |
| 756 | while(--i >= 0) |
| 757 | pci_release_region(pdev, i); |
| 758 | |
| 759 | return -EBUSY; |
| 760 | } |
| 761 | |
| 762 | /** |
| 763 | * pci_set_master - enables bus-mastering for device dev |
| 764 | * @dev: the PCI device to enable |
| 765 | * |
| 766 | * Enables bus-mastering on the device and calls pcibios_set_master() |
| 767 | * to do the needed arch specific settings. |
| 768 | */ |
| 769 | void |
| 770 | pci_set_master(struct pci_dev *dev) |
| 771 | { |
| 772 | u16 cmd; |
| 773 | |
| 774 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 775 | if (! (cmd & PCI_COMMAND_MASTER)) { |
| 776 | pr_debug("PCI: Enabling bus mastering for device %s\n", pci_name(dev)); |
| 777 | cmd |= PCI_COMMAND_MASTER; |
| 778 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 779 | } |
| 780 | dev->is_busmaster = 1; |
| 781 | pcibios_set_master(dev); |
| 782 | } |
| 783 | |
| 784 | #ifndef HAVE_ARCH_PCI_MWI |
| 785 | /* This can be overridden by arch code. */ |
| 786 | u8 pci_cache_line_size = L1_CACHE_BYTES >> 2; |
| 787 | |
| 788 | /** |
| 789 | * pci_generic_prep_mwi - helper function for pci_set_mwi |
| 790 | * @dev: the PCI device for which MWI is enabled |
| 791 | * |
| 792 | * Helper function for generic implementation of pcibios_prep_mwi |
| 793 | * function. Originally copied from drivers/net/acenic.c. |
| 794 | * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>. |
| 795 | * |
| 796 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. |
| 797 | */ |
| 798 | static int |
| 799 | pci_generic_prep_mwi(struct pci_dev *dev) |
| 800 | { |
| 801 | u8 cacheline_size; |
| 802 | |
| 803 | if (!pci_cache_line_size) |
| 804 | return -EINVAL; /* The system doesn't support MWI. */ |
| 805 | |
| 806 | /* Validate current setting: the PCI_CACHE_LINE_SIZE must be |
| 807 | equal to or multiple of the right value. */ |
| 808 | pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size); |
| 809 | if (cacheline_size >= pci_cache_line_size && |
| 810 | (cacheline_size % pci_cache_line_size) == 0) |
| 811 | return 0; |
| 812 | |
| 813 | /* Write the correct value. */ |
| 814 | pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size); |
| 815 | /* Read it back. */ |
| 816 | pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size); |
| 817 | if (cacheline_size == pci_cache_line_size) |
| 818 | return 0; |
| 819 | |
| 820 | printk(KERN_DEBUG "PCI: cache line size of %d is not supported " |
| 821 | "by device %s\n", pci_cache_line_size << 2, pci_name(dev)); |
| 822 | |
| 823 | return -EINVAL; |
| 824 | } |
| 825 | #endif /* !HAVE_ARCH_PCI_MWI */ |
| 826 | |
| 827 | /** |
| 828 | * pci_set_mwi - enables memory-write-invalidate PCI transaction |
| 829 | * @dev: the PCI device for which MWI is enabled |
| 830 | * |
| 831 | * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND, |
| 832 | * and then calls @pcibios_set_mwi to do the needed arch specific |
| 833 | * operations or a generic mwi-prep function. |
| 834 | * |
| 835 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. |
| 836 | */ |
| 837 | int |
| 838 | pci_set_mwi(struct pci_dev *dev) |
| 839 | { |
| 840 | int rc; |
| 841 | u16 cmd; |
| 842 | |
| 843 | #ifdef HAVE_ARCH_PCI_MWI |
| 844 | rc = pcibios_prep_mwi(dev); |
| 845 | #else |
| 846 | rc = pci_generic_prep_mwi(dev); |
| 847 | #endif |
| 848 | |
| 849 | if (rc) |
| 850 | return rc; |
| 851 | |
| 852 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 853 | if (! (cmd & PCI_COMMAND_INVALIDATE)) { |
| 854 | pr_debug("PCI: Enabling Mem-Wr-Inval for device %s\n", pci_name(dev)); |
| 855 | cmd |= PCI_COMMAND_INVALIDATE; |
| 856 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 857 | } |
| 858 | |
| 859 | return 0; |
| 860 | } |
| 861 | |
| 862 | /** |
| 863 | * pci_clear_mwi - disables Memory-Write-Invalidate for device dev |
| 864 | * @dev: the PCI device to disable |
| 865 | * |
| 866 | * Disables PCI Memory-Write-Invalidate transaction on the device |
| 867 | */ |
| 868 | void |
| 869 | pci_clear_mwi(struct pci_dev *dev) |
| 870 | { |
| 871 | u16 cmd; |
| 872 | |
| 873 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 874 | if (cmd & PCI_COMMAND_INVALIDATE) { |
| 875 | cmd &= ~PCI_COMMAND_INVALIDATE; |
| 876 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 877 | } |
| 878 | } |
| 879 | |
Brett M Russ | a04ce0f | 2005-08-15 15:23:41 -0400 | [diff] [blame] | 880 | /** |
| 881 | * pci_intx - enables/disables PCI INTx for device dev |
Randy Dunlap | 8f7020d | 2005-10-23 11:57:38 -0700 | [diff] [blame] | 882 | * @pdev: the PCI device to operate on |
| 883 | * @enable: boolean: whether to enable or disable PCI INTx |
Brett M Russ | a04ce0f | 2005-08-15 15:23:41 -0400 | [diff] [blame] | 884 | * |
| 885 | * Enables/disables PCI INTx for device dev |
| 886 | */ |
| 887 | void |
| 888 | pci_intx(struct pci_dev *pdev, int enable) |
| 889 | { |
| 890 | u16 pci_command, new; |
| 891 | |
| 892 | pci_read_config_word(pdev, PCI_COMMAND, &pci_command); |
| 893 | |
| 894 | if (enable) { |
| 895 | new = pci_command & ~PCI_COMMAND_INTX_DISABLE; |
| 896 | } else { |
| 897 | new = pci_command | PCI_COMMAND_INTX_DISABLE; |
| 898 | } |
| 899 | |
| 900 | if (new != pci_command) { |
Brett M Russ | 2fd9d74 | 2005-09-09 10:02:22 -0700 | [diff] [blame] | 901 | pci_write_config_word(pdev, PCI_COMMAND, new); |
Brett M Russ | a04ce0f | 2005-08-15 15:23:41 -0400 | [diff] [blame] | 902 | } |
| 903 | } |
| 904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | #ifndef HAVE_ARCH_PCI_SET_DMA_MASK |
| 906 | /* |
| 907 | * These can be overridden by arch-specific implementations |
| 908 | */ |
| 909 | int |
| 910 | pci_set_dma_mask(struct pci_dev *dev, u64 mask) |
| 911 | { |
| 912 | if (!pci_dma_supported(dev, mask)) |
| 913 | return -EIO; |
| 914 | |
| 915 | dev->dma_mask = mask; |
| 916 | |
| 917 | return 0; |
| 918 | } |
| 919 | |
| 920 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask) |
| 922 | { |
| 923 | if (!pci_dma_supported(dev, mask)) |
| 924 | return -EIO; |
| 925 | |
| 926 | dev->dev.coherent_dma_mask = mask; |
| 927 | |
| 928 | return 0; |
| 929 | } |
| 930 | #endif |
| 931 | |
| 932 | static int __devinit pci_init(void) |
| 933 | { |
| 934 | struct pci_dev *dev = NULL; |
| 935 | |
| 936 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { |
| 937 | pci_fixup_device(pci_fixup_final, dev); |
| 938 | } |
| 939 | return 0; |
| 940 | } |
| 941 | |
| 942 | static int __devinit pci_setup(char *str) |
| 943 | { |
| 944 | while (str) { |
| 945 | char *k = strchr(str, ','); |
| 946 | if (k) |
| 947 | *k++ = 0; |
| 948 | if (*str && (str = pcibios_setup(str)) && *str) { |
Matthew Wilcox | 309e57d | 2006-03-05 22:33:34 -0700 | [diff] [blame] | 949 | if (!strcmp(str, "nomsi")) { |
| 950 | pci_no_msi(); |
| 951 | } else { |
| 952 | printk(KERN_ERR "PCI: Unknown option `%s'\n", |
| 953 | str); |
| 954 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | } |
| 956 | str = k; |
| 957 | } |
| 958 | return 1; |
| 959 | } |
| 960 | |
| 961 | device_initcall(pci_init); |
| 962 | |
| 963 | __setup("pci=", pci_setup); |
| 964 | |
| 965 | #if defined(CONFIG_ISA) || defined(CONFIG_EISA) |
| 966 | /* FIXME: Some boxes have multiple ISA bridges! */ |
| 967 | struct pci_dev *isa_bridge; |
| 968 | EXPORT_SYMBOL(isa_bridge); |
| 969 | #endif |
| 970 | |
John W. Linville | 064b53db | 2005-07-27 10:19:44 -0400 | [diff] [blame] | 971 | EXPORT_SYMBOL_GPL(pci_restore_bars); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | EXPORT_SYMBOL(pci_enable_device_bars); |
| 973 | EXPORT_SYMBOL(pci_enable_device); |
| 974 | EXPORT_SYMBOL(pci_disable_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | EXPORT_SYMBOL(pci_find_capability); |
| 976 | EXPORT_SYMBOL(pci_bus_find_capability); |
| 977 | EXPORT_SYMBOL(pci_release_regions); |
| 978 | EXPORT_SYMBOL(pci_request_regions); |
| 979 | EXPORT_SYMBOL(pci_release_region); |
| 980 | EXPORT_SYMBOL(pci_request_region); |
| 981 | EXPORT_SYMBOL(pci_set_master); |
| 982 | EXPORT_SYMBOL(pci_set_mwi); |
| 983 | EXPORT_SYMBOL(pci_clear_mwi); |
Brett M Russ | a04ce0f | 2005-08-15 15:23:41 -0400 | [diff] [blame] | 984 | EXPORT_SYMBOL_GPL(pci_intx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | EXPORT_SYMBOL(pci_set_dma_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | EXPORT_SYMBOL(pci_set_consistent_dma_mask); |
| 987 | EXPORT_SYMBOL(pci_assign_resource); |
| 988 | EXPORT_SYMBOL(pci_find_parent_resource); |
| 989 | |
| 990 | EXPORT_SYMBOL(pci_set_power_state); |
| 991 | EXPORT_SYMBOL(pci_save_state); |
| 992 | EXPORT_SYMBOL(pci_restore_state); |
| 993 | EXPORT_SYMBOL(pci_enable_wake); |
| 994 | |
| 995 | /* Quirk info */ |
| 996 | |
| 997 | EXPORT_SYMBOL(isa_dma_bridge_buggy); |
| 998 | EXPORT_SYMBOL(pci_pci_problems); |