pci.c 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705
  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. #include <linux/kernel.h>
  12. #include <linux/delay.h>
  13. #include <linux/init.h>
  14. #include <linux/pci.h>
  15. #include <linux/pm.h>
  16. #include <linux/module.h>
  17. #include <linux/spinlock.h>
  18. #include <linux/string.h>
  19. #include <linux/log2.h>
  20. #include <asm/dma.h> /* isa_dma_bridge_buggy */
  21. #include "pci.h"
  22. unsigned int pci_pm_d3_delay = 10;
  23. #ifdef CONFIG_PCI_DOMAINS
  24. int pci_domains_supported = 1;
  25. #endif
  26. #define DEFAULT_CARDBUS_IO_SIZE (256)
  27. #define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
  28. /* pci=cbmemsize=nnM,cbiosize=nn can override this */
  29. unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
  30. unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
  31. /**
  32. * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
  33. * @bus: pointer to PCI bus structure to search
  34. *
  35. * Given a PCI bus, returns the highest PCI bus number present in the set
  36. * including the given PCI bus and its list of child PCI buses.
  37. */
  38. unsigned char pci_bus_max_busnr(struct pci_bus* bus)
  39. {
  40. struct list_head *tmp;
  41. unsigned char max, n;
  42. max = bus->subordinate;
  43. list_for_each(tmp, &bus->children) {
  44. n = pci_bus_max_busnr(pci_bus_b(tmp));
  45. if(n > max)
  46. max = n;
  47. }
  48. return max;
  49. }
  50. EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
  51. #if 0
  52. /**
  53. * pci_max_busnr - returns maximum PCI bus number
  54. *
  55. * Returns the highest PCI bus number present in the system global list of
  56. * PCI buses.
  57. */
  58. unsigned char __devinit
  59. pci_max_busnr(void)
  60. {
  61. struct pci_bus *bus = NULL;
  62. unsigned char max, n;
  63. max = 0;
  64. while ((bus = pci_find_next_bus(bus)) != NULL) {
  65. n = pci_bus_max_busnr(bus);
  66. if(n > max)
  67. max = n;
  68. }
  69. return max;
  70. }
  71. #endif /* 0 */
  72. #define PCI_FIND_CAP_TTL 48
  73. static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
  74. u8 pos, int cap, int *ttl)
  75. {
  76. u8 id;
  77. while ((*ttl)--) {
  78. pci_bus_read_config_byte(bus, devfn, pos, &pos);
  79. if (pos < 0x40)
  80. break;
  81. pos &= ~3;
  82. pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
  83. &id);
  84. if (id == 0xff)
  85. break;
  86. if (id == cap)
  87. return pos;
  88. pos += PCI_CAP_LIST_NEXT;
  89. }
  90. return 0;
  91. }
  92. static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
  93. u8 pos, int cap)
  94. {
  95. int ttl = PCI_FIND_CAP_TTL;
  96. return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
  97. }
  98. int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
  99. {
  100. return __pci_find_next_cap(dev->bus, dev->devfn,
  101. pos + PCI_CAP_LIST_NEXT, cap);
  102. }
  103. EXPORT_SYMBOL_GPL(pci_find_next_capability);
  104. static int __pci_bus_find_cap_start(struct pci_bus *bus,
  105. unsigned int devfn, u8 hdr_type)
  106. {
  107. u16 status;
  108. pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
  109. if (!(status & PCI_STATUS_CAP_LIST))
  110. return 0;
  111. switch (hdr_type) {
  112. case PCI_HEADER_TYPE_NORMAL:
  113. case PCI_HEADER_TYPE_BRIDGE:
  114. return PCI_CAPABILITY_LIST;
  115. case PCI_HEADER_TYPE_CARDBUS:
  116. return PCI_CB_CAPABILITY_LIST;
  117. default:
  118. return 0;
  119. }
  120. return 0;
  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. int pos;
  144. pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
  145. if (pos)
  146. pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
  147. return pos;
  148. }
  149. /**
  150. * pci_bus_find_capability - query for devices' capabilities
  151. * @bus: the PCI bus to query
  152. * @devfn: PCI device to query
  153. * @cap: capability code
  154. *
  155. * Like pci_find_capability() but works for pci devices that do not have a
  156. * pci_dev structure set up yet.
  157. *
  158. * Returns the address of the requested capability structure within the
  159. * device's PCI configuration space or 0 in case the device does not
  160. * support it.
  161. */
  162. int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
  163. {
  164. int pos;
  165. u8 hdr_type;
  166. pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
  167. pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
  168. if (pos)
  169. pos = __pci_find_next_cap(bus, devfn, pos, cap);
  170. return pos;
  171. }
  172. /**
  173. * pci_find_ext_capability - Find an extended capability
  174. * @dev: PCI device to query
  175. * @cap: capability code
  176. *
  177. * Returns the address of the requested extended capability structure
  178. * within the device's PCI configuration space or 0 if the device does
  179. * not support it. Possible values for @cap:
  180. *
  181. * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
  182. * %PCI_EXT_CAP_ID_VC Virtual Channel
  183. * %PCI_EXT_CAP_ID_DSN Device Serial Number
  184. * %PCI_EXT_CAP_ID_PWR Power Budgeting
  185. */
  186. int pci_find_ext_capability(struct pci_dev *dev, int cap)
  187. {
  188. u32 header;
  189. int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
  190. int pos = 0x100;
  191. if (dev->cfg_size <= 256)
  192. return 0;
  193. if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
  194. return 0;
  195. /*
  196. * If we have no capabilities, this is indicated by cap ID,
  197. * cap version and next pointer all being 0.
  198. */
  199. if (header == 0)
  200. return 0;
  201. while (ttl-- > 0) {
  202. if (PCI_EXT_CAP_ID(header) == cap)
  203. return pos;
  204. pos = PCI_EXT_CAP_NEXT(header);
  205. if (pos < 0x100)
  206. break;
  207. if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
  208. break;
  209. }
  210. return 0;
  211. }
  212. EXPORT_SYMBOL_GPL(pci_find_ext_capability);
  213. static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
  214. {
  215. int rc, ttl = PCI_FIND_CAP_TTL;
  216. u8 cap, mask;
  217. if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
  218. mask = HT_3BIT_CAP_MASK;
  219. else
  220. mask = HT_5BIT_CAP_MASK;
  221. pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
  222. PCI_CAP_ID_HT, &ttl);
  223. while (pos) {
  224. rc = pci_read_config_byte(dev, pos + 3, &cap);
  225. if (rc != PCIBIOS_SUCCESSFUL)
  226. return 0;
  227. if ((cap & mask) == ht_cap)
  228. return pos;
  229. pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
  230. pos + PCI_CAP_LIST_NEXT,
  231. PCI_CAP_ID_HT, &ttl);
  232. }
  233. return 0;
  234. }
  235. /**
  236. * pci_find_next_ht_capability - query a device's Hypertransport capabilities
  237. * @dev: PCI device to query
  238. * @pos: Position from which to continue searching
  239. * @ht_cap: Hypertransport capability code
  240. *
  241. * To be used in conjunction with pci_find_ht_capability() to search for
  242. * all capabilities matching @ht_cap. @pos should always be a value returned
  243. * from pci_find_ht_capability().
  244. *
  245. * NB. To be 100% safe against broken PCI devices, the caller should take
  246. * steps to avoid an infinite loop.
  247. */
  248. int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
  249. {
  250. return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
  251. }
  252. EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
  253. /**
  254. * pci_find_ht_capability - query a device's Hypertransport capabilities
  255. * @dev: PCI device to query
  256. * @ht_cap: Hypertransport capability code
  257. *
  258. * Tell if a device supports a given Hypertransport capability.
  259. * Returns an address within the device's PCI configuration space
  260. * or 0 in case the device does not support the request capability.
  261. * The address points to the PCI capability, of type PCI_CAP_ID_HT,
  262. * which has a Hypertransport capability matching @ht_cap.
  263. */
  264. int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
  265. {
  266. int pos;
  267. pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
  268. if (pos)
  269. pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
  270. return pos;
  271. }
  272. EXPORT_SYMBOL_GPL(pci_find_ht_capability);
  273. void pcie_wait_pending_transaction(struct pci_dev *dev)
  274. {
  275. int pos;
  276. u16 reg16;
  277. pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
  278. if (!pos)
  279. return;
  280. while (1) {
  281. pci_read_config_word(dev, pos + PCI_EXP_DEVSTA, &reg16);
  282. if (!(reg16 & PCI_EXP_DEVSTA_TRPND))
  283. break;
  284. cpu_relax();
  285. }
  286. }
  287. EXPORT_SYMBOL_GPL(pcie_wait_pending_transaction);
  288. /**
  289. * pci_find_parent_resource - return resource region of parent bus of given region
  290. * @dev: PCI device structure contains resources to be searched
  291. * @res: child resource record for which parent is sought
  292. *
  293. * For given resource region of given device, return the resource
  294. * region of parent bus the given region is contained in or where
  295. * it should be allocated from.
  296. */
  297. struct resource *
  298. pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
  299. {
  300. const struct pci_bus *bus = dev->bus;
  301. int i;
  302. struct resource *best = NULL;
  303. for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
  304. struct resource *r = bus->resource[i];
  305. if (!r)
  306. continue;
  307. if (res->start && !(res->start >= r->start && res->end <= r->end))
  308. continue; /* Not contained */
  309. if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
  310. continue; /* Wrong type */
  311. if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
  312. return r; /* Exact match */
  313. if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
  314. best = r; /* Approximating prefetchable by non-prefetchable */
  315. }
  316. return best;
  317. }
  318. /**
  319. * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
  320. * @dev: PCI device to have its BARs restored
  321. *
  322. * Restore the BAR values for a given device, so as to make it
  323. * accessible by its driver.
  324. */
  325. static void
  326. pci_restore_bars(struct pci_dev *dev)
  327. {
  328. int i, numres;
  329. switch (dev->hdr_type) {
  330. case PCI_HEADER_TYPE_NORMAL:
  331. numres = 6;
  332. break;
  333. case PCI_HEADER_TYPE_BRIDGE:
  334. numres = 2;
  335. break;
  336. case PCI_HEADER_TYPE_CARDBUS:
  337. numres = 1;
  338. break;
  339. default:
  340. /* Should never get here, but just in case... */
  341. return;
  342. }
  343. for (i = 0; i < numres; i ++)
  344. pci_update_resource(dev, &dev->resource[i], i);
  345. }
  346. int (*platform_pci_set_power_state)(struct pci_dev *dev, pci_power_t t);
  347. /**
  348. * pci_set_power_state - Set the power state of a PCI device
  349. * @dev: PCI device to be suspended
  350. * @state: PCI power state (D0, D1, D2, D3hot, D3cold) we're entering
  351. *
  352. * Transition a device to a new power state, using the Power Management
  353. * Capabilities in the device's config space.
  354. *
  355. * RETURN VALUE:
  356. * -EINVAL if trying to enter a lower state than we're already in.
  357. * 0 if we're already in the requested state.
  358. * -EIO if device does not support PCI PM.
  359. * 0 if we can successfully change the power state.
  360. */
  361. int
  362. pci_set_power_state(struct pci_dev *dev, pci_power_t state)
  363. {
  364. int pm, need_restore = 0;
  365. u16 pmcsr, pmc;
  366. /* bound the state we're entering */
  367. if (state > PCI_D3hot)
  368. state = PCI_D3hot;
  369. /*
  370. * If the device or the parent bridge can't support PCI PM, ignore
  371. * the request if we're doing anything besides putting it into D0
  372. * (which would only happen on boot).
  373. */
  374. if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
  375. return 0;
  376. /* find PCI PM capability in list */
  377. pm = pci_find_capability(dev, PCI_CAP_ID_PM);
  378. /* abort if the device doesn't support PM capabilities */
  379. if (!pm)
  380. return -EIO;
  381. /* Validate current state:
  382. * Can enter D0 from any state, but if we can only go deeper
  383. * to sleep if we're already in a low power state
  384. */
  385. if (state != PCI_D0 && dev->current_state > state) {
  386. printk(KERN_ERR "%s(): %s: state=%d, current state=%d\n",
  387. __FUNCTION__, pci_name(dev), state, dev->current_state);
  388. return -EINVAL;
  389. } else if (dev->current_state == state)
  390. return 0; /* we're already there */
  391. pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc);
  392. if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
  393. printk(KERN_DEBUG
  394. "PCI: %s has unsupported PM cap regs version (%u)\n",
  395. pci_name(dev), pmc & PCI_PM_CAP_VER_MASK);
  396. return -EIO;
  397. }
  398. /* check if this device supports the desired state */
  399. if (state == PCI_D1 && !(pmc & PCI_PM_CAP_D1))
  400. return -EIO;
  401. else if (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2))
  402. return -EIO;
  403. pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
  404. /* If we're (effectively) in D3, force entire word to 0.
  405. * This doesn't affect PME_Status, disables PME_En, and
  406. * sets PowerState to 0.
  407. */
  408. switch (dev->current_state) {
  409. case PCI_D0:
  410. case PCI_D1:
  411. case PCI_D2:
  412. pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
  413. pmcsr |= state;
  414. break;
  415. case PCI_UNKNOWN: /* Boot-up */
  416. if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
  417. && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
  418. need_restore = 1;
  419. /* Fall-through: force to D0 */
  420. default:
  421. pmcsr = 0;
  422. break;
  423. }
  424. /* enter specified state */
  425. pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
  426. /* Mandatory power management transition delays */
  427. /* see PCI PM 1.1 5.6.1 table 18 */
  428. if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
  429. msleep(pci_pm_d3_delay);
  430. else if (state == PCI_D2 || dev->current_state == PCI_D2)
  431. udelay(200);
  432. /*
  433. * Give firmware a chance to be called, such as ACPI _PRx, _PSx
  434. * Firmware method after native method ?
  435. */
  436. if (platform_pci_set_power_state)
  437. platform_pci_set_power_state(dev, state);
  438. dev->current_state = state;
  439. /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
  440. * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
  441. * from D3hot to D0 _may_ perform an internal reset, thereby
  442. * going to "D0 Uninitialized" rather than "D0 Initialized".
  443. * For example, at least some versions of the 3c905B and the
  444. * 3c556B exhibit this behaviour.
  445. *
  446. * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
  447. * devices in a D3hot state at boot. Consequently, we need to
  448. * restore at least the BARs so that the device will be
  449. * accessible to its driver.
  450. */
  451. if (need_restore)
  452. pci_restore_bars(dev);
  453. return 0;
  454. }
  455. pci_power_t (*platform_pci_choose_state)(struct pci_dev *dev, pm_message_t state);
  456. /**
  457. * pci_choose_state - Choose the power state of a PCI device
  458. * @dev: PCI device to be suspended
  459. * @state: target sleep state for the whole system. This is the value
  460. * that is passed to suspend() function.
  461. *
  462. * Returns PCI power state suitable for given device and given system
  463. * message.
  464. */
  465. pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
  466. {
  467. pci_power_t ret;
  468. if (!pci_find_capability(dev, PCI_CAP_ID_PM))
  469. return PCI_D0;
  470. if (platform_pci_choose_state) {
  471. ret = platform_pci_choose_state(dev, state);
  472. if (ret != PCI_POWER_ERROR)
  473. return ret;
  474. }
  475. switch (state.event) {
  476. case PM_EVENT_ON:
  477. return PCI_D0;
  478. case PM_EVENT_FREEZE:
  479. case PM_EVENT_PRETHAW:
  480. /* REVISIT both freeze and pre-thaw "should" use D0 */
  481. case PM_EVENT_SUSPEND:
  482. return PCI_D3hot;
  483. default:
  484. printk("Unrecognized suspend event %d\n", state.event);
  485. BUG();
  486. }
  487. return PCI_D0;
  488. }
  489. EXPORT_SYMBOL(pci_choose_state);
  490. static int pci_save_pcie_state(struct pci_dev *dev)
  491. {
  492. int pos, i = 0;
  493. struct pci_cap_saved_state *save_state;
  494. u16 *cap;
  495. int found = 0;
  496. pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
  497. if (pos <= 0)
  498. return 0;
  499. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
  500. if (!save_state)
  501. save_state = kzalloc(sizeof(*save_state) + sizeof(u16) * 4, GFP_KERNEL);
  502. else
  503. found = 1;
  504. if (!save_state) {
  505. dev_err(&dev->dev, "Out of memory in pci_save_pcie_state\n");
  506. return -ENOMEM;
  507. }
  508. cap = (u16 *)&save_state->data[0];
  509. pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
  510. pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
  511. pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
  512. pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
  513. save_state->cap_nr = PCI_CAP_ID_EXP;
  514. if (!found)
  515. pci_add_saved_cap(dev, save_state);
  516. return 0;
  517. }
  518. static void pci_restore_pcie_state(struct pci_dev *dev)
  519. {
  520. int i = 0, pos;
  521. struct pci_cap_saved_state *save_state;
  522. u16 *cap;
  523. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
  524. pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
  525. if (!save_state || pos <= 0)
  526. return;
  527. cap = (u16 *)&save_state->data[0];
  528. pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
  529. pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
  530. pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
  531. pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
  532. }
  533. static int pci_save_pcix_state(struct pci_dev *dev)
  534. {
  535. int pos, i = 0;
  536. struct pci_cap_saved_state *save_state;
  537. u16 *cap;
  538. int found = 0;
  539. pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  540. if (pos <= 0)
  541. return 0;
  542. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
  543. if (!save_state)
  544. save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
  545. else
  546. found = 1;
  547. if (!save_state) {
  548. dev_err(&dev->dev, "Out of memory in pci_save_pcie_state\n");
  549. return -ENOMEM;
  550. }
  551. cap = (u16 *)&save_state->data[0];
  552. pci_read_config_word(dev, pos + PCI_X_CMD, &cap[i++]);
  553. save_state->cap_nr = PCI_CAP_ID_PCIX;
  554. if (!found)
  555. pci_add_saved_cap(dev, save_state);
  556. return 0;
  557. }
  558. static void pci_restore_pcix_state(struct pci_dev *dev)
  559. {
  560. int i = 0, pos;
  561. struct pci_cap_saved_state *save_state;
  562. u16 *cap;
  563. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
  564. pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  565. if (!save_state || pos <= 0)
  566. return;
  567. cap = (u16 *)&save_state->data[0];
  568. pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
  569. }
  570. /**
  571. * pci_save_state - save the PCI configuration space of a device before suspending
  572. * @dev: - PCI device that we're dealing with
  573. */
  574. int
  575. pci_save_state(struct pci_dev *dev)
  576. {
  577. int i;
  578. /* XXX: 100% dword access ok here? */
  579. for (i = 0; i < 16; i++)
  580. pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
  581. if ((i = pci_save_pcie_state(dev)) != 0)
  582. return i;
  583. if ((i = pci_save_pcix_state(dev)) != 0)
  584. return i;
  585. return 0;
  586. }
  587. /**
  588. * pci_restore_state - Restore the saved state of a PCI device
  589. * @dev: - PCI device that we're dealing with
  590. */
  591. int
  592. pci_restore_state(struct pci_dev *dev)
  593. {
  594. int i;
  595. u32 val;
  596. /* PCI Express register must be restored first */
  597. pci_restore_pcie_state(dev);
  598. /*
  599. * The Base Address register should be programmed before the command
  600. * register(s)
  601. */
  602. for (i = 15; i >= 0; i--) {
  603. pci_read_config_dword(dev, i * 4, &val);
  604. if (val != dev->saved_config_space[i]) {
  605. printk(KERN_DEBUG "PM: Writing back config space on "
  606. "device %s at offset %x (was %x, writing %x)\n",
  607. pci_name(dev), i,
  608. val, (int)dev->saved_config_space[i]);
  609. pci_write_config_dword(dev,i * 4,
  610. dev->saved_config_space[i]);
  611. }
  612. }
  613. pci_restore_pcix_state(dev);
  614. pci_restore_msi_state(dev);
  615. return 0;
  616. }
  617. static int do_pci_enable_device(struct pci_dev *dev, int bars)
  618. {
  619. int err;
  620. err = pci_set_power_state(dev, PCI_D0);
  621. if (err < 0 && err != -EIO)
  622. return err;
  623. err = pcibios_enable_device(dev, bars);
  624. if (err < 0)
  625. return err;
  626. pci_fixup_device(pci_fixup_enable, dev);
  627. return 0;
  628. }
  629. /**
  630. * pci_reenable_device - Resume abandoned device
  631. * @dev: PCI device to be resumed
  632. *
  633. * Note this function is a backend of pci_default_resume and is not supposed
  634. * to be called by normal code, write proper resume handler and use it instead.
  635. */
  636. int pci_reenable_device(struct pci_dev *dev)
  637. {
  638. if (atomic_read(&dev->enable_cnt))
  639. return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
  640. return 0;
  641. }
  642. static int __pci_enable_device_flags(struct pci_dev *dev,
  643. resource_size_t flags)
  644. {
  645. int err;
  646. int i, bars = 0;
  647. if (atomic_add_return(1, &dev->enable_cnt) > 1)
  648. return 0; /* already enabled */
  649. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
  650. if (dev->resource[i].flags & flags)
  651. bars |= (1 << i);
  652. err = do_pci_enable_device(dev, bars);
  653. if (err < 0)
  654. atomic_dec(&dev->enable_cnt);
  655. return err;
  656. }
  657. /**
  658. * pci_enable_device_io - Initialize a device for use with IO space
  659. * @dev: PCI device to be initialized
  660. *
  661. * Initialize device before it's used by a driver. Ask low-level code
  662. * to enable I/O resources. Wake up the device if it was suspended.
  663. * Beware, this function can fail.
  664. */
  665. int pci_enable_device_io(struct pci_dev *dev)
  666. {
  667. return __pci_enable_device_flags(dev, IORESOURCE_IO);
  668. }
  669. /**
  670. * pci_enable_device_mem - Initialize a device for use with Memory space
  671. * @dev: PCI device to be initialized
  672. *
  673. * Initialize device before it's used by a driver. Ask low-level code
  674. * to enable Memory resources. Wake up the device if it was suspended.
  675. * Beware, this function can fail.
  676. */
  677. int pci_enable_device_mem(struct pci_dev *dev)
  678. {
  679. return __pci_enable_device_flags(dev, IORESOURCE_MEM);
  680. }
  681. /**
  682. * pci_enable_device - Initialize device before it's used by a driver.
  683. * @dev: PCI device to be initialized
  684. *
  685. * Initialize device before it's used by a driver. Ask low-level code
  686. * to enable I/O and memory. Wake up the device if it was suspended.
  687. * Beware, this function can fail.
  688. *
  689. * Note we don't actually enable the device many times if we call
  690. * this function repeatedly (we just increment the count).
  691. */
  692. int pci_enable_device(struct pci_dev *dev)
  693. {
  694. return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
  695. }
  696. /*
  697. * Managed PCI resources. This manages device on/off, intx/msi/msix
  698. * on/off and BAR regions. pci_dev itself records msi/msix status, so
  699. * there's no need to track it separately. pci_devres is initialized
  700. * when a device is enabled using managed PCI device enable interface.
  701. */
  702. struct pci_devres {
  703. unsigned int enabled:1;
  704. unsigned int pinned:1;
  705. unsigned int orig_intx:1;
  706. unsigned int restore_intx:1;
  707. u32 region_mask;
  708. };
  709. static void pcim_release(struct device *gendev, void *res)
  710. {
  711. struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
  712. struct pci_devres *this = res;
  713. int i;
  714. if (dev->msi_enabled)
  715. pci_disable_msi(dev);
  716. if (dev->msix_enabled)
  717. pci_disable_msix(dev);
  718. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
  719. if (this->region_mask & (1 << i))
  720. pci_release_region(dev, i);
  721. if (this->restore_intx)
  722. pci_intx(dev, this->orig_intx);
  723. if (this->enabled && !this->pinned)
  724. pci_disable_device(dev);
  725. }
  726. static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
  727. {
  728. struct pci_devres *dr, *new_dr;
  729. dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
  730. if (dr)
  731. return dr;
  732. new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
  733. if (!new_dr)
  734. return NULL;
  735. return devres_get(&pdev->dev, new_dr, NULL, NULL);
  736. }
  737. static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
  738. {
  739. if (pci_is_managed(pdev))
  740. return devres_find(&pdev->dev, pcim_release, NULL, NULL);
  741. return NULL;
  742. }
  743. /**
  744. * pcim_enable_device - Managed pci_enable_device()
  745. * @pdev: PCI device to be initialized
  746. *
  747. * Managed pci_enable_device().
  748. */
  749. int pcim_enable_device(struct pci_dev *pdev)
  750. {
  751. struct pci_devres *dr;
  752. int rc;
  753. dr = get_pci_dr(pdev);
  754. if (unlikely(!dr))
  755. return -ENOMEM;
  756. WARN_ON(!!dr->enabled);
  757. rc = pci_enable_device(pdev);
  758. if (!rc) {
  759. pdev->is_managed = 1;
  760. dr->enabled = 1;
  761. }
  762. return rc;
  763. }
  764. /**
  765. * pcim_pin_device - Pin managed PCI device
  766. * @pdev: PCI device to pin
  767. *
  768. * Pin managed PCI device @pdev. Pinned device won't be disabled on
  769. * driver detach. @pdev must have been enabled with
  770. * pcim_enable_device().
  771. */
  772. void pcim_pin_device(struct pci_dev *pdev)
  773. {
  774. struct pci_devres *dr;
  775. dr = find_pci_dr(pdev);
  776. WARN_ON(!dr || !dr->enabled);
  777. if (dr)
  778. dr->pinned = 1;
  779. }
  780. /**
  781. * pcibios_disable_device - disable arch specific PCI resources for device dev
  782. * @dev: the PCI device to disable
  783. *
  784. * Disables architecture specific PCI resources for the device. This
  785. * is the default implementation. Architecture implementations can
  786. * override this.
  787. */
  788. void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
  789. /**
  790. * pci_disable_device - Disable PCI device after use
  791. * @dev: PCI device to be disabled
  792. *
  793. * Signal to the system that the PCI device is not in use by the system
  794. * anymore. This only involves disabling PCI bus-mastering, if active.
  795. *
  796. * Note we don't actually disable the device until all callers of
  797. * pci_device_enable() have called pci_device_disable().
  798. */
  799. void
  800. pci_disable_device(struct pci_dev *dev)
  801. {
  802. struct pci_devres *dr;
  803. u16 pci_command;
  804. dr = find_pci_dr(dev);
  805. if (dr)
  806. dr->enabled = 0;
  807. if (atomic_sub_return(1, &dev->enable_cnt) != 0)
  808. return;
  809. /* Wait for all transactions are finished before disabling the device */
  810. pcie_wait_pending_transaction(dev);
  811. pci_read_config_word(dev, PCI_COMMAND, &pci_command);
  812. if (pci_command & PCI_COMMAND_MASTER) {
  813. pci_command &= ~PCI_COMMAND_MASTER;
  814. pci_write_config_word(dev, PCI_COMMAND, pci_command);
  815. }
  816. dev->is_busmaster = 0;
  817. pcibios_disable_device(dev);
  818. }
  819. /**
  820. * pcibios_set_pcie_reset_state - set reset state for device dev
  821. * @dev: the PCI-E device reset
  822. * @state: Reset state to enter into
  823. *
  824. *
  825. * Sets the PCI-E reset state for the device. This is the default
  826. * implementation. Architecture implementations can override this.
  827. */
  828. int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
  829. enum pcie_reset_state state)
  830. {
  831. return -EINVAL;
  832. }
  833. /**
  834. * pci_set_pcie_reset_state - set reset state for device dev
  835. * @dev: the PCI-E device reset
  836. * @state: Reset state to enter into
  837. *
  838. *
  839. * Sets the PCI reset state for the device.
  840. */
  841. int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
  842. {
  843. return pcibios_set_pcie_reset_state(dev, state);
  844. }
  845. /**
  846. * pci_enable_wake - enable PCI device as wakeup event source
  847. * @dev: PCI device affected
  848. * @state: PCI state from which device will issue wakeup events
  849. * @enable: True to enable event generation; false to disable
  850. *
  851. * This enables the device as a wakeup event source, or disables it.
  852. * When such events involves platform-specific hooks, those hooks are
  853. * called automatically by this routine.
  854. *
  855. * Devices with legacy power management (no standard PCI PM capabilities)
  856. * always require such platform hooks. Depending on the platform, devices
  857. * supporting the standard PCI PME# signal may require such platform hooks;
  858. * they always update bits in config space to allow PME# generation.
  859. *
  860. * -EIO is returned if the device can't ever be a wakeup event source.
  861. * -EINVAL is returned if the device can't generate wakeup events from
  862. * the specified PCI state. Returns zero if the operation is successful.
  863. */
  864. int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
  865. {
  866. int pm;
  867. int status;
  868. u16 value;
  869. /* Note that drivers should verify device_may_wakeup(&dev->dev)
  870. * before calling this function. Platform code should report
  871. * errors when drivers try to enable wakeup on devices that
  872. * can't issue wakeups, or on which wakeups were disabled by
  873. * userspace updating the /sys/devices.../power/wakeup file.
  874. */
  875. status = call_platform_enable_wakeup(&dev->dev, enable);
  876. /* find PCI PM capability in list */
  877. pm = pci_find_capability(dev, PCI_CAP_ID_PM);
  878. /* If device doesn't support PM Capabilities, but caller wants to
  879. * disable wake events, it's a NOP. Otherwise fail unless the
  880. * platform hooks handled this legacy device already.
  881. */
  882. if (!pm)
  883. return enable ? status : 0;
  884. /* Check device's ability to generate PME# */
  885. pci_read_config_word(dev,pm+PCI_PM_PMC,&value);
  886. value &= PCI_PM_CAP_PME_MASK;
  887. value >>= ffs(PCI_PM_CAP_PME_MASK) - 1; /* First bit of mask */
  888. /* Check if it can generate PME# from requested state. */
  889. if (!value || !(value & (1 << state))) {
  890. /* if it can't, revert what the platform hook changed,
  891. * always reporting the base "EINVAL, can't PME#" error
  892. */
  893. if (enable)
  894. call_platform_enable_wakeup(&dev->dev, 0);
  895. return enable ? -EINVAL : 0;
  896. }
  897. pci_read_config_word(dev, pm + PCI_PM_CTRL, &value);
  898. /* Clear PME_Status by writing 1 to it and enable PME# */
  899. value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
  900. if (!enable)
  901. value &= ~PCI_PM_CTRL_PME_ENABLE;
  902. pci_write_config_word(dev, pm + PCI_PM_CTRL, value);
  903. return 0;
  904. }
  905. int
  906. pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
  907. {
  908. u8 pin;
  909. pin = dev->pin;
  910. if (!pin)
  911. return -1;
  912. pin--;
  913. while (dev->bus->self) {
  914. pin = (pin + PCI_SLOT(dev->devfn)) % 4;
  915. dev = dev->bus->self;
  916. }
  917. *bridge = dev;
  918. return pin;
  919. }
  920. /**
  921. * pci_release_region - Release a PCI bar
  922. * @pdev: PCI device whose resources were previously reserved by pci_request_region
  923. * @bar: BAR to release
  924. *
  925. * Releases the PCI I/O and memory resources previously reserved by a
  926. * successful call to pci_request_region. Call this function only
  927. * after all use of the PCI regions has ceased.
  928. */
  929. void pci_release_region(struct pci_dev *pdev, int bar)
  930. {
  931. struct pci_devres *dr;
  932. if (pci_resource_len(pdev, bar) == 0)
  933. return;
  934. if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
  935. release_region(pci_resource_start(pdev, bar),
  936. pci_resource_len(pdev, bar));
  937. else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
  938. release_mem_region(pci_resource_start(pdev, bar),
  939. pci_resource_len(pdev, bar));
  940. dr = find_pci_dr(pdev);
  941. if (dr)
  942. dr->region_mask &= ~(1 << bar);
  943. }
  944. /**
  945. * pci_request_region - Reserved PCI I/O and memory resource
  946. * @pdev: PCI device whose resources are to be reserved
  947. * @bar: BAR to be reserved
  948. * @res_name: Name to be associated with resource.
  949. *
  950. * Mark the PCI region associated with PCI device @pdev BR @bar as
  951. * being reserved by owner @res_name. Do not access any
  952. * address inside the PCI regions unless this call returns
  953. * successfully.
  954. *
  955. * Returns 0 on success, or %EBUSY on error. A warning
  956. * message is also printed on failure.
  957. */
  958. int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
  959. {
  960. struct pci_devres *dr;
  961. if (pci_resource_len(pdev, bar) == 0)
  962. return 0;
  963. if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
  964. if (!request_region(pci_resource_start(pdev, bar),
  965. pci_resource_len(pdev, bar), res_name))
  966. goto err_out;
  967. }
  968. else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
  969. if (!request_mem_region(pci_resource_start(pdev, bar),
  970. pci_resource_len(pdev, bar), res_name))
  971. goto err_out;
  972. }
  973. dr = find_pci_dr(pdev);
  974. if (dr)
  975. dr->region_mask |= 1 << bar;
  976. return 0;
  977. err_out:
  978. printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%llx@%llx "
  979. "for device %s\n",
  980. pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
  981. bar + 1, /* PCI BAR # */
  982. (unsigned long long)pci_resource_len(pdev, bar),
  983. (unsigned long long)pci_resource_start(pdev, bar),
  984. pci_name(pdev));
  985. return -EBUSY;
  986. }
  987. /**
  988. * pci_release_selected_regions - Release selected PCI I/O and memory resources
  989. * @pdev: PCI device whose resources were previously reserved
  990. * @bars: Bitmask of BARs to be released
  991. *
  992. * Release selected PCI I/O and memory resources previously reserved.
  993. * Call this function only after all use of the PCI regions has ceased.
  994. */
  995. void pci_release_selected_regions(struct pci_dev *pdev, int bars)
  996. {
  997. int i;
  998. for (i = 0; i < 6; i++)
  999. if (bars & (1 << i))
  1000. pci_release_region(pdev, i);
  1001. }
  1002. /**
  1003. * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
  1004. * @pdev: PCI device whose resources are to be reserved
  1005. * @bars: Bitmask of BARs to be requested
  1006. * @res_name: Name to be associated with resource
  1007. */
  1008. int pci_request_selected_regions(struct pci_dev *pdev, int bars,
  1009. const char *res_name)
  1010. {
  1011. int i;
  1012. for (i = 0; i < 6; i++)
  1013. if (bars & (1 << i))
  1014. if(pci_request_region(pdev, i, res_name))
  1015. goto err_out;
  1016. return 0;
  1017. err_out:
  1018. while(--i >= 0)
  1019. if (bars & (1 << i))
  1020. pci_release_region(pdev, i);
  1021. return -EBUSY;
  1022. }
  1023. /**
  1024. * pci_release_regions - Release reserved PCI I/O and memory resources
  1025. * @pdev: PCI device whose resources were previously reserved by pci_request_regions
  1026. *
  1027. * Releases all PCI I/O and memory resources previously reserved by a
  1028. * successful call to pci_request_regions. Call this function only
  1029. * after all use of the PCI regions has ceased.
  1030. */
  1031. void pci_release_regions(struct pci_dev *pdev)
  1032. {
  1033. pci_release_selected_regions(pdev, (1 << 6) - 1);
  1034. }
  1035. /**
  1036. * pci_request_regions - Reserved PCI I/O and memory resources
  1037. * @pdev: PCI device whose resources are to be reserved
  1038. * @res_name: Name to be associated with resource.
  1039. *
  1040. * Mark all PCI regions associated with PCI device @pdev as
  1041. * being reserved by owner @res_name. Do not access any
  1042. * address inside the PCI regions unless this call returns
  1043. * successfully.
  1044. *
  1045. * Returns 0 on success, or %EBUSY on error. A warning
  1046. * message is also printed on failure.
  1047. */
  1048. int pci_request_regions(struct pci_dev *pdev, const char *res_name)
  1049. {
  1050. return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
  1051. }
  1052. /**
  1053. * pci_set_master - enables bus-mastering for device dev
  1054. * @dev: the PCI device to enable
  1055. *
  1056. * Enables bus-mastering on the device and calls pcibios_set_master()
  1057. * to do the needed arch specific settings.
  1058. */
  1059. void
  1060. pci_set_master(struct pci_dev *dev)
  1061. {
  1062. u16 cmd;
  1063. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  1064. if (! (cmd & PCI_COMMAND_MASTER)) {
  1065. pr_debug("PCI: Enabling bus mastering for device %s\n", pci_name(dev));
  1066. cmd |= PCI_COMMAND_MASTER;
  1067. pci_write_config_word(dev, PCI_COMMAND, cmd);
  1068. }
  1069. dev->is_busmaster = 1;
  1070. pcibios_set_master(dev);
  1071. }
  1072. #ifdef PCI_DISABLE_MWI
  1073. int pci_set_mwi(struct pci_dev *dev)
  1074. {
  1075. return 0;
  1076. }
  1077. int pci_try_set_mwi(struct pci_dev *dev)
  1078. {
  1079. return 0;
  1080. }
  1081. void pci_clear_mwi(struct pci_dev *dev)
  1082. {
  1083. }
  1084. #else
  1085. #ifndef PCI_CACHE_LINE_BYTES
  1086. #define PCI_CACHE_LINE_BYTES L1_CACHE_BYTES
  1087. #endif
  1088. /* This can be overridden by arch code. */
  1089. /* Don't forget this is measured in 32-bit words, not bytes */
  1090. u8 pci_cache_line_size = PCI_CACHE_LINE_BYTES / 4;
  1091. /**
  1092. * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
  1093. * @dev: the PCI device for which MWI is to be enabled
  1094. *
  1095. * Helper function for pci_set_mwi.
  1096. * Originally copied from drivers/net/acenic.c.
  1097. * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
  1098. *
  1099. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  1100. */
  1101. static int
  1102. pci_set_cacheline_size(struct pci_dev *dev)
  1103. {
  1104. u8 cacheline_size;
  1105. if (!pci_cache_line_size)
  1106. return -EINVAL; /* The system doesn't support MWI. */
  1107. /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
  1108. equal to or multiple of the right value. */
  1109. pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
  1110. if (cacheline_size >= pci_cache_line_size &&
  1111. (cacheline_size % pci_cache_line_size) == 0)
  1112. return 0;
  1113. /* Write the correct value. */
  1114. pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
  1115. /* Read it back. */
  1116. pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
  1117. if (cacheline_size == pci_cache_line_size)
  1118. return 0;
  1119. printk(KERN_DEBUG "PCI: cache line size of %d is not supported "
  1120. "by device %s\n", pci_cache_line_size << 2, pci_name(dev));
  1121. return -EINVAL;
  1122. }
  1123. /**
  1124. * pci_set_mwi - enables memory-write-invalidate PCI transaction
  1125. * @dev: the PCI device for which MWI is enabled
  1126. *
  1127. * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
  1128. *
  1129. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  1130. */
  1131. int
  1132. pci_set_mwi(struct pci_dev *dev)
  1133. {
  1134. int rc;
  1135. u16 cmd;
  1136. rc = pci_set_cacheline_size(dev);
  1137. if (rc)
  1138. return rc;
  1139. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  1140. if (! (cmd & PCI_COMMAND_INVALIDATE)) {
  1141. pr_debug("PCI: Enabling Mem-Wr-Inval for device %s\n",
  1142. pci_name(dev));
  1143. cmd |= PCI_COMMAND_INVALIDATE;
  1144. pci_write_config_word(dev, PCI_COMMAND, cmd);
  1145. }
  1146. return 0;
  1147. }
  1148. /**
  1149. * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
  1150. * @dev: the PCI device for which MWI is enabled
  1151. *
  1152. * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
  1153. * Callers are not required to check the return value.
  1154. *
  1155. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  1156. */
  1157. int pci_try_set_mwi(struct pci_dev *dev)
  1158. {
  1159. int rc = pci_set_mwi(dev);
  1160. return rc;
  1161. }
  1162. /**
  1163. * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
  1164. * @dev: the PCI device to disable
  1165. *
  1166. * Disables PCI Memory-Write-Invalidate transaction on the device
  1167. */
  1168. void
  1169. pci_clear_mwi(struct pci_dev *dev)
  1170. {
  1171. u16 cmd;
  1172. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  1173. if (cmd & PCI_COMMAND_INVALIDATE) {
  1174. cmd &= ~PCI_COMMAND_INVALIDATE;
  1175. pci_write_config_word(dev, PCI_COMMAND, cmd);
  1176. }
  1177. }
  1178. #endif /* ! PCI_DISABLE_MWI */
  1179. /**
  1180. * pci_intx - enables/disables PCI INTx for device dev
  1181. * @pdev: the PCI device to operate on
  1182. * @enable: boolean: whether to enable or disable PCI INTx
  1183. *
  1184. * Enables/disables PCI INTx for device dev
  1185. */
  1186. void
  1187. pci_intx(struct pci_dev *pdev, int enable)
  1188. {
  1189. u16 pci_command, new;
  1190. pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
  1191. if (enable) {
  1192. new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
  1193. } else {
  1194. new = pci_command | PCI_COMMAND_INTX_DISABLE;
  1195. }
  1196. if (new != pci_command) {
  1197. struct pci_devres *dr;
  1198. pci_write_config_word(pdev, PCI_COMMAND, new);
  1199. dr = find_pci_dr(pdev);
  1200. if (dr && !dr->restore_intx) {
  1201. dr->restore_intx = 1;
  1202. dr->orig_intx = !enable;
  1203. }
  1204. }
  1205. }
  1206. /**
  1207. * pci_msi_off - disables any msi or msix capabilities
  1208. * @dev: the PCI device to operate on
  1209. *
  1210. * If you want to use msi see pci_enable_msi and friends.
  1211. * This is a lower level primitive that allows us to disable
  1212. * msi operation at the device level.
  1213. */
  1214. void pci_msi_off(struct pci_dev *dev)
  1215. {
  1216. int pos;
  1217. u16 control;
  1218. pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
  1219. if (pos) {
  1220. pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
  1221. control &= ~PCI_MSI_FLAGS_ENABLE;
  1222. pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
  1223. }
  1224. pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
  1225. if (pos) {
  1226. pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
  1227. control &= ~PCI_MSIX_FLAGS_ENABLE;
  1228. pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
  1229. }
  1230. }
  1231. #ifndef HAVE_ARCH_PCI_SET_DMA_MASK
  1232. /*
  1233. * These can be overridden by arch-specific implementations
  1234. */
  1235. int
  1236. pci_set_dma_mask(struct pci_dev *dev, u64 mask)
  1237. {
  1238. if (!pci_dma_supported(dev, mask))
  1239. return -EIO;
  1240. dev->dma_mask = mask;
  1241. return 0;
  1242. }
  1243. int
  1244. pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
  1245. {
  1246. if (!pci_dma_supported(dev, mask))
  1247. return -EIO;
  1248. dev->dev.coherent_dma_mask = mask;
  1249. return 0;
  1250. }
  1251. #endif
  1252. /**
  1253. * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
  1254. * @dev: PCI device to query
  1255. *
  1256. * Returns mmrbc: maximum designed memory read count in bytes
  1257. * or appropriate error value.
  1258. */
  1259. int pcix_get_max_mmrbc(struct pci_dev *dev)
  1260. {
  1261. int err, cap;
  1262. u32 stat;
  1263. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  1264. if (!cap)
  1265. return -EINVAL;
  1266. err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
  1267. if (err)
  1268. return -EINVAL;
  1269. return (stat & PCI_X_STATUS_MAX_READ) >> 12;
  1270. }
  1271. EXPORT_SYMBOL(pcix_get_max_mmrbc);
  1272. /**
  1273. * pcix_get_mmrbc - get PCI-X maximum memory read byte count
  1274. * @dev: PCI device to query
  1275. *
  1276. * Returns mmrbc: maximum memory read count in bytes
  1277. * or appropriate error value.
  1278. */
  1279. int pcix_get_mmrbc(struct pci_dev *dev)
  1280. {
  1281. int ret, cap;
  1282. u32 cmd;
  1283. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  1284. if (!cap)
  1285. return -EINVAL;
  1286. ret = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
  1287. if (!ret)
  1288. ret = 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
  1289. return ret;
  1290. }
  1291. EXPORT_SYMBOL(pcix_get_mmrbc);
  1292. /**
  1293. * pcix_set_mmrbc - set PCI-X maximum memory read byte count
  1294. * @dev: PCI device to query
  1295. * @mmrbc: maximum memory read count in bytes
  1296. * valid values are 512, 1024, 2048, 4096
  1297. *
  1298. * If possible sets maximum memory read byte count, some bridges have erratas
  1299. * that prevent this.
  1300. */
  1301. int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
  1302. {
  1303. int cap, err = -EINVAL;
  1304. u32 stat, cmd, v, o;
  1305. if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
  1306. goto out;
  1307. v = ffs(mmrbc) - 10;
  1308. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  1309. if (!cap)
  1310. goto out;
  1311. err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
  1312. if (err)
  1313. goto out;
  1314. if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
  1315. return -E2BIG;
  1316. err = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
  1317. if (err)
  1318. goto out;
  1319. o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
  1320. if (o != v) {
  1321. if (v > o && dev->bus &&
  1322. (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
  1323. return -EIO;
  1324. cmd &= ~PCI_X_CMD_MAX_READ;
  1325. cmd |= v << 2;
  1326. err = pci_write_config_dword(dev, cap + PCI_X_CMD, cmd);
  1327. }
  1328. out:
  1329. return err;
  1330. }
  1331. EXPORT_SYMBOL(pcix_set_mmrbc);
  1332. /**
  1333. * pcie_get_readrq - get PCI Express read request size
  1334. * @dev: PCI device to query
  1335. *
  1336. * Returns maximum memory read request in bytes
  1337. * or appropriate error value.
  1338. */
  1339. int pcie_get_readrq(struct pci_dev *dev)
  1340. {
  1341. int ret, cap;
  1342. u16 ctl;
  1343. cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
  1344. if (!cap)
  1345. return -EINVAL;
  1346. ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
  1347. if (!ret)
  1348. ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
  1349. return ret;
  1350. }
  1351. EXPORT_SYMBOL(pcie_get_readrq);
  1352. /**
  1353. * pcie_set_readrq - set PCI Express maximum memory read request
  1354. * @dev: PCI device to query
  1355. * @rq: maximum memory read count in bytes
  1356. * valid values are 128, 256, 512, 1024, 2048, 4096
  1357. *
  1358. * If possible sets maximum read byte count
  1359. */
  1360. int pcie_set_readrq(struct pci_dev *dev, int rq)
  1361. {
  1362. int cap, err = -EINVAL;
  1363. u16 ctl, v;
  1364. if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
  1365. goto out;
  1366. v = (ffs(rq) - 8) << 12;
  1367. cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
  1368. if (!cap)
  1369. goto out;
  1370. err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
  1371. if (err)
  1372. goto out;
  1373. if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
  1374. ctl &= ~PCI_EXP_DEVCTL_READRQ;
  1375. ctl |= v;
  1376. err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
  1377. }
  1378. out:
  1379. return err;
  1380. }
  1381. EXPORT_SYMBOL(pcie_set_readrq);
  1382. /**
  1383. * pci_select_bars - Make BAR mask from the type of resource
  1384. * @dev: the PCI device for which BAR mask is made
  1385. * @flags: resource type mask to be selected
  1386. *
  1387. * This helper routine makes bar mask from the type of resource.
  1388. */
  1389. int pci_select_bars(struct pci_dev *dev, unsigned long flags)
  1390. {
  1391. int i, bars = 0;
  1392. for (i = 0; i < PCI_NUM_RESOURCES; i++)
  1393. if (pci_resource_flags(dev, i) & flags)
  1394. bars |= (1 << i);
  1395. return bars;
  1396. }
  1397. static void __devinit pci_no_domains(void)
  1398. {
  1399. #ifdef CONFIG_PCI_DOMAINS
  1400. pci_domains_supported = 0;
  1401. #endif
  1402. }
  1403. static int __devinit pci_init(void)
  1404. {
  1405. struct pci_dev *dev = NULL;
  1406. while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
  1407. pci_fixup_device(pci_fixup_final, dev);
  1408. }
  1409. return 0;
  1410. }
  1411. static int __devinit pci_setup(char *str)
  1412. {
  1413. while (str) {
  1414. char *k = strchr(str, ',');
  1415. if (k)
  1416. *k++ = 0;
  1417. if (*str && (str = pcibios_setup(str)) && *str) {
  1418. if (!strcmp(str, "nomsi")) {
  1419. pci_no_msi();
  1420. } else if (!strcmp(str, "noaer")) {
  1421. pci_no_aer();
  1422. } else if (!strcmp(str, "nodomains")) {
  1423. pci_no_domains();
  1424. } else if (!strncmp(str, "cbiosize=", 9)) {
  1425. pci_cardbus_io_size = memparse(str + 9, &str);
  1426. } else if (!strncmp(str, "cbmemsize=", 10)) {
  1427. pci_cardbus_mem_size = memparse(str + 10, &str);
  1428. } else {
  1429. printk(KERN_ERR "PCI: Unknown option `%s'\n",
  1430. str);
  1431. }
  1432. }
  1433. str = k;
  1434. }
  1435. return 0;
  1436. }
  1437. early_param("pci", pci_setup);
  1438. device_initcall(pci_init);
  1439. EXPORT_SYMBOL(pci_reenable_device);
  1440. EXPORT_SYMBOL(pci_enable_device_io);
  1441. EXPORT_SYMBOL(pci_enable_device_mem);
  1442. EXPORT_SYMBOL(pci_enable_device);
  1443. EXPORT_SYMBOL(pcim_enable_device);
  1444. EXPORT_SYMBOL(pcim_pin_device);
  1445. EXPORT_SYMBOL(pci_disable_device);
  1446. EXPORT_SYMBOL(pci_find_capability);
  1447. EXPORT_SYMBOL(pci_bus_find_capability);
  1448. EXPORT_SYMBOL(pci_release_regions);
  1449. EXPORT_SYMBOL(pci_request_regions);
  1450. EXPORT_SYMBOL(pci_release_region);
  1451. EXPORT_SYMBOL(pci_request_region);
  1452. EXPORT_SYMBOL(pci_release_selected_regions);
  1453. EXPORT_SYMBOL(pci_request_selected_regions);
  1454. EXPORT_SYMBOL(pci_set_master);
  1455. EXPORT_SYMBOL(pci_set_mwi);
  1456. EXPORT_SYMBOL(pci_try_set_mwi);
  1457. EXPORT_SYMBOL(pci_clear_mwi);
  1458. EXPORT_SYMBOL_GPL(pci_intx);
  1459. EXPORT_SYMBOL(pci_set_dma_mask);
  1460. EXPORT_SYMBOL(pci_set_consistent_dma_mask);
  1461. EXPORT_SYMBOL(pci_assign_resource);
  1462. EXPORT_SYMBOL(pci_find_parent_resource);
  1463. EXPORT_SYMBOL(pci_select_bars);
  1464. EXPORT_SYMBOL(pci_set_power_state);
  1465. EXPORT_SYMBOL(pci_save_state);
  1466. EXPORT_SYMBOL(pci_restore_state);
  1467. EXPORT_SYMBOL(pci_enable_wake);
  1468. EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);