pci.c 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048
  1. /*
  2. * PCI Bus Services, see include/linux/pci.h for further explanation.
  3. *
  4. * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
  5. * David Mosberger-Tang
  6. *
  7. * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
  8. */
  9. #include <linux/kernel.h>
  10. #include <linux/delay.h>
  11. #include <linux/init.h>
  12. #include <linux/pci.h>
  13. #include <linux/pm.h>
  14. #include <linux/slab.h>
  15. #include <linux/module.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/string.h>
  18. #include <linux/log2.h>
  19. #include <linux/pci-aspm.h>
  20. #include <linux/pm_wakeup.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/device.h>
  23. #include <linux/pm_runtime.h>
  24. #include <asm/setup.h>
  25. #include "pci.h"
  26. const char *pci_power_names[] = {
  27. "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
  28. };
  29. EXPORT_SYMBOL_GPL(pci_power_names);
  30. int isa_dma_bridge_buggy;
  31. EXPORT_SYMBOL(isa_dma_bridge_buggy);
  32. int pci_pci_problems;
  33. EXPORT_SYMBOL(pci_pci_problems);
  34. unsigned int pci_pm_d3_delay;
  35. static void pci_dev_d3_sleep(struct pci_dev *dev)
  36. {
  37. unsigned int delay = dev->d3_delay;
  38. if (delay < pci_pm_d3_delay)
  39. delay = pci_pm_d3_delay;
  40. msleep(delay);
  41. }
  42. #ifdef CONFIG_PCI_DOMAINS
  43. int pci_domains_supported = 1;
  44. #endif
  45. #define DEFAULT_CARDBUS_IO_SIZE (256)
  46. #define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
  47. /* pci=cbmemsize=nnM,cbiosize=nn can override this */
  48. unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
  49. unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
  50. #define DEFAULT_HOTPLUG_IO_SIZE (256)
  51. #define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
  52. /* pci=hpmemsize=nnM,hpiosize=nn can override this */
  53. unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
  54. unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
  55. /*
  56. * The default CLS is used if arch didn't set CLS explicitly and not
  57. * all pci devices agree on the same value. Arch can override either
  58. * the dfl or actual value as it sees fit. Don't forget this is
  59. * measured in 32-bit words, not bytes.
  60. */
  61. u8 pci_dfl_cache_line_size __devinitdata = L1_CACHE_BYTES >> 2;
  62. u8 pci_cache_line_size;
  63. /**
  64. * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
  65. * @bus: pointer to PCI bus structure to search
  66. *
  67. * Given a PCI bus, returns the highest PCI bus number present in the set
  68. * including the given PCI bus and its list of child PCI buses.
  69. */
  70. unsigned char pci_bus_max_busnr(struct pci_bus* bus)
  71. {
  72. struct list_head *tmp;
  73. unsigned char max, n;
  74. max = bus->subordinate;
  75. list_for_each(tmp, &bus->children) {
  76. n = pci_bus_max_busnr(pci_bus_b(tmp));
  77. if(n > max)
  78. max = n;
  79. }
  80. return max;
  81. }
  82. EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
  83. #ifdef CONFIG_HAS_IOMEM
  84. void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
  85. {
  86. /*
  87. * Make sure the BAR is actually a memory resource, not an IO resource
  88. */
  89. if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
  90. WARN_ON(1);
  91. return NULL;
  92. }
  93. return ioremap_nocache(pci_resource_start(pdev, bar),
  94. pci_resource_len(pdev, bar));
  95. }
  96. EXPORT_SYMBOL_GPL(pci_ioremap_bar);
  97. #endif
  98. #if 0
  99. /**
  100. * pci_max_busnr - returns maximum PCI bus number
  101. *
  102. * Returns the highest PCI bus number present in the system global list of
  103. * PCI buses.
  104. */
  105. unsigned char __devinit
  106. pci_max_busnr(void)
  107. {
  108. struct pci_bus *bus = NULL;
  109. unsigned char max, n;
  110. max = 0;
  111. while ((bus = pci_find_next_bus(bus)) != NULL) {
  112. n = pci_bus_max_busnr(bus);
  113. if(n > max)
  114. max = n;
  115. }
  116. return max;
  117. }
  118. #endif /* 0 */
  119. #define PCI_FIND_CAP_TTL 48
  120. static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
  121. u8 pos, int cap, int *ttl)
  122. {
  123. u8 id;
  124. while ((*ttl)--) {
  125. pci_bus_read_config_byte(bus, devfn, pos, &pos);
  126. if (pos < 0x40)
  127. break;
  128. pos &= ~3;
  129. pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
  130. &id);
  131. if (id == 0xff)
  132. break;
  133. if (id == cap)
  134. return pos;
  135. pos += PCI_CAP_LIST_NEXT;
  136. }
  137. return 0;
  138. }
  139. static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
  140. u8 pos, int cap)
  141. {
  142. int ttl = PCI_FIND_CAP_TTL;
  143. return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
  144. }
  145. int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
  146. {
  147. return __pci_find_next_cap(dev->bus, dev->devfn,
  148. pos + PCI_CAP_LIST_NEXT, cap);
  149. }
  150. EXPORT_SYMBOL_GPL(pci_find_next_capability);
  151. static int __pci_bus_find_cap_start(struct pci_bus *bus,
  152. unsigned int devfn, u8 hdr_type)
  153. {
  154. u16 status;
  155. pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
  156. if (!(status & PCI_STATUS_CAP_LIST))
  157. return 0;
  158. switch (hdr_type) {
  159. case PCI_HEADER_TYPE_NORMAL:
  160. case PCI_HEADER_TYPE_BRIDGE:
  161. return PCI_CAPABILITY_LIST;
  162. case PCI_HEADER_TYPE_CARDBUS:
  163. return PCI_CB_CAPABILITY_LIST;
  164. default:
  165. return 0;
  166. }
  167. return 0;
  168. }
  169. /**
  170. * pci_find_capability - query for devices' capabilities
  171. * @dev: PCI device to query
  172. * @cap: capability code
  173. *
  174. * Tell if a device supports a given PCI capability.
  175. * Returns the address of the requested capability structure within the
  176. * device's PCI configuration space or 0 in case the device does not
  177. * support it. Possible values for @cap:
  178. *
  179. * %PCI_CAP_ID_PM Power Management
  180. * %PCI_CAP_ID_AGP Accelerated Graphics Port
  181. * %PCI_CAP_ID_VPD Vital Product Data
  182. * %PCI_CAP_ID_SLOTID Slot Identification
  183. * %PCI_CAP_ID_MSI Message Signalled Interrupts
  184. * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
  185. * %PCI_CAP_ID_PCIX PCI-X
  186. * %PCI_CAP_ID_EXP PCI Express
  187. */
  188. int pci_find_capability(struct pci_dev *dev, int cap)
  189. {
  190. int pos;
  191. pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
  192. if (pos)
  193. pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
  194. return pos;
  195. }
  196. /**
  197. * pci_bus_find_capability - query for devices' capabilities
  198. * @bus: the PCI bus to query
  199. * @devfn: PCI device to query
  200. * @cap: capability code
  201. *
  202. * Like pci_find_capability() but works for pci devices that do not have a
  203. * pci_dev structure set up yet.
  204. *
  205. * Returns the address of the requested capability structure within the
  206. * device's PCI configuration space or 0 in case the device does not
  207. * support it.
  208. */
  209. int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
  210. {
  211. int pos;
  212. u8 hdr_type;
  213. pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
  214. pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
  215. if (pos)
  216. pos = __pci_find_next_cap(bus, devfn, pos, cap);
  217. return pos;
  218. }
  219. /**
  220. * pci_find_ext_capability - Find an extended capability
  221. * @dev: PCI device to query
  222. * @cap: capability code
  223. *
  224. * Returns the address of the requested extended capability structure
  225. * within the device's PCI configuration space or 0 if the device does
  226. * not support it. Possible values for @cap:
  227. *
  228. * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
  229. * %PCI_EXT_CAP_ID_VC Virtual Channel
  230. * %PCI_EXT_CAP_ID_DSN Device Serial Number
  231. * %PCI_EXT_CAP_ID_PWR Power Budgeting
  232. */
  233. int pci_find_ext_capability(struct pci_dev *dev, int cap)
  234. {
  235. u32 header;
  236. int ttl;
  237. int pos = PCI_CFG_SPACE_SIZE;
  238. /* minimum 8 bytes per capability */
  239. ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
  240. if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
  241. return 0;
  242. if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
  243. return 0;
  244. /*
  245. * If we have no capabilities, this is indicated by cap ID,
  246. * cap version and next pointer all being 0.
  247. */
  248. if (header == 0)
  249. return 0;
  250. while (ttl-- > 0) {
  251. if (PCI_EXT_CAP_ID(header) == cap)
  252. return pos;
  253. pos = PCI_EXT_CAP_NEXT(header);
  254. if (pos < PCI_CFG_SPACE_SIZE)
  255. break;
  256. if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
  257. break;
  258. }
  259. return 0;
  260. }
  261. EXPORT_SYMBOL_GPL(pci_find_ext_capability);
  262. /**
  263. * pci_bus_find_ext_capability - find an extended capability
  264. * @bus: the PCI bus to query
  265. * @devfn: PCI device to query
  266. * @cap: capability code
  267. *
  268. * Like pci_find_ext_capability() but works for pci devices that do not have a
  269. * pci_dev structure set up yet.
  270. *
  271. * Returns the address of the requested capability structure within the
  272. * device's PCI configuration space or 0 in case the device does not
  273. * support it.
  274. */
  275. int pci_bus_find_ext_capability(struct pci_bus *bus, unsigned int devfn,
  276. int cap)
  277. {
  278. u32 header;
  279. int ttl;
  280. int pos = PCI_CFG_SPACE_SIZE;
  281. /* minimum 8 bytes per capability */
  282. ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
  283. if (!pci_bus_read_config_dword(bus, devfn, pos, &header))
  284. return 0;
  285. if (header == 0xffffffff || header == 0)
  286. return 0;
  287. while (ttl-- > 0) {
  288. if (PCI_EXT_CAP_ID(header) == cap)
  289. return pos;
  290. pos = PCI_EXT_CAP_NEXT(header);
  291. if (pos < PCI_CFG_SPACE_SIZE)
  292. break;
  293. if (!pci_bus_read_config_dword(bus, devfn, pos, &header))
  294. break;
  295. }
  296. return 0;
  297. }
  298. static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
  299. {
  300. int rc, ttl = PCI_FIND_CAP_TTL;
  301. u8 cap, mask;
  302. if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
  303. mask = HT_3BIT_CAP_MASK;
  304. else
  305. mask = HT_5BIT_CAP_MASK;
  306. pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
  307. PCI_CAP_ID_HT, &ttl);
  308. while (pos) {
  309. rc = pci_read_config_byte(dev, pos + 3, &cap);
  310. if (rc != PCIBIOS_SUCCESSFUL)
  311. return 0;
  312. if ((cap & mask) == ht_cap)
  313. return pos;
  314. pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
  315. pos + PCI_CAP_LIST_NEXT,
  316. PCI_CAP_ID_HT, &ttl);
  317. }
  318. return 0;
  319. }
  320. /**
  321. * pci_find_next_ht_capability - query a device's Hypertransport capabilities
  322. * @dev: PCI device to query
  323. * @pos: Position from which to continue searching
  324. * @ht_cap: Hypertransport capability code
  325. *
  326. * To be used in conjunction with pci_find_ht_capability() to search for
  327. * all capabilities matching @ht_cap. @pos should always be a value returned
  328. * from pci_find_ht_capability().
  329. *
  330. * NB. To be 100% safe against broken PCI devices, the caller should take
  331. * steps to avoid an infinite loop.
  332. */
  333. int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
  334. {
  335. return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
  336. }
  337. EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
  338. /**
  339. * pci_find_ht_capability - query a device's Hypertransport capabilities
  340. * @dev: PCI device to query
  341. * @ht_cap: Hypertransport capability code
  342. *
  343. * Tell if a device supports a given Hypertransport capability.
  344. * Returns an address within the device's PCI configuration space
  345. * or 0 in case the device does not support the request capability.
  346. * The address points to the PCI capability, of type PCI_CAP_ID_HT,
  347. * which has a Hypertransport capability matching @ht_cap.
  348. */
  349. int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
  350. {
  351. int pos;
  352. pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
  353. if (pos)
  354. pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
  355. return pos;
  356. }
  357. EXPORT_SYMBOL_GPL(pci_find_ht_capability);
  358. /**
  359. * pci_find_parent_resource - return resource region of parent bus of given region
  360. * @dev: PCI device structure contains resources to be searched
  361. * @res: child resource record for which parent is sought
  362. *
  363. * For given resource region of given device, return the resource
  364. * region of parent bus the given region is contained in or where
  365. * it should be allocated from.
  366. */
  367. struct resource *
  368. pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
  369. {
  370. const struct pci_bus *bus = dev->bus;
  371. int i;
  372. struct resource *best = NULL, *r;
  373. pci_bus_for_each_resource(bus, r, i) {
  374. if (!r)
  375. continue;
  376. if (res->start && !(res->start >= r->start && res->end <= r->end))
  377. continue; /* Not contained */
  378. if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
  379. continue; /* Wrong type */
  380. if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
  381. return r; /* Exact match */
  382. /* We can't insert a non-prefetch resource inside a prefetchable parent .. */
  383. if (r->flags & IORESOURCE_PREFETCH)
  384. continue;
  385. /* .. but we can put a prefetchable resource inside a non-prefetchable one */
  386. if (!best)
  387. best = r;
  388. }
  389. return best;
  390. }
  391. /**
  392. * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
  393. * @dev: PCI device to have its BARs restored
  394. *
  395. * Restore the BAR values for a given device, so as to make it
  396. * accessible by its driver.
  397. */
  398. static void
  399. pci_restore_bars(struct pci_dev *dev)
  400. {
  401. int i;
  402. for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
  403. pci_update_resource(dev, i);
  404. }
  405. static struct pci_platform_pm_ops *pci_platform_pm;
  406. int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
  407. {
  408. if (!ops->is_manageable || !ops->set_state || !ops->choose_state
  409. || !ops->sleep_wake || !ops->can_wakeup)
  410. return -EINVAL;
  411. pci_platform_pm = ops;
  412. return 0;
  413. }
  414. static inline bool platform_pci_power_manageable(struct pci_dev *dev)
  415. {
  416. return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
  417. }
  418. static inline int platform_pci_set_power_state(struct pci_dev *dev,
  419. pci_power_t t)
  420. {
  421. return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
  422. }
  423. static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
  424. {
  425. return pci_platform_pm ?
  426. pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
  427. }
  428. static inline bool platform_pci_can_wakeup(struct pci_dev *dev)
  429. {
  430. return pci_platform_pm ? pci_platform_pm->can_wakeup(dev) : false;
  431. }
  432. static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
  433. {
  434. return pci_platform_pm ?
  435. pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
  436. }
  437. static inline int platform_pci_run_wake(struct pci_dev *dev, bool enable)
  438. {
  439. return pci_platform_pm ?
  440. pci_platform_pm->run_wake(dev, enable) : -ENODEV;
  441. }
  442. /**
  443. * pci_raw_set_power_state - Use PCI PM registers to set the power state of
  444. * given PCI device
  445. * @dev: PCI device to handle.
  446. * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
  447. *
  448. * RETURN VALUE:
  449. * -EINVAL if the requested state is invalid.
  450. * -EIO if device does not support PCI PM or its PM capabilities register has a
  451. * wrong version, or device doesn't support the requested state.
  452. * 0 if device already is in the requested state.
  453. * 0 if device's power state has been successfully changed.
  454. */
  455. static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
  456. {
  457. u16 pmcsr;
  458. bool need_restore = false;
  459. /* Check if we're already there */
  460. if (dev->current_state == state)
  461. return 0;
  462. if (!dev->pm_cap)
  463. return -EIO;
  464. if (state < PCI_D0 || state > PCI_D3hot)
  465. return -EINVAL;
  466. /* Validate current state:
  467. * Can enter D0 from any state, but if we can only go deeper
  468. * to sleep if we're already in a low power state
  469. */
  470. if (state != PCI_D0 && dev->current_state <= PCI_D3cold
  471. && dev->current_state > state) {
  472. dev_err(&dev->dev, "invalid power transition "
  473. "(from state %d to %d)\n", dev->current_state, state);
  474. return -EINVAL;
  475. }
  476. /* check if this device supports the desired state */
  477. if ((state == PCI_D1 && !dev->d1_support)
  478. || (state == PCI_D2 && !dev->d2_support))
  479. return -EIO;
  480. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  481. /* If we're (effectively) in D3, force entire word to 0.
  482. * This doesn't affect PME_Status, disables PME_En, and
  483. * sets PowerState to 0.
  484. */
  485. switch (dev->current_state) {
  486. case PCI_D0:
  487. case PCI_D1:
  488. case PCI_D2:
  489. pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
  490. pmcsr |= state;
  491. break;
  492. case PCI_D3hot:
  493. case PCI_D3cold:
  494. case PCI_UNKNOWN: /* Boot-up */
  495. if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
  496. && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
  497. need_restore = true;
  498. /* Fall-through: force to D0 */
  499. default:
  500. pmcsr = 0;
  501. break;
  502. }
  503. /* enter specified state */
  504. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
  505. /* Mandatory power management transition delays */
  506. /* see PCI PM 1.1 5.6.1 table 18 */
  507. if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
  508. pci_dev_d3_sleep(dev);
  509. else if (state == PCI_D2 || dev->current_state == PCI_D2)
  510. udelay(PCI_PM_D2_DELAY);
  511. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  512. dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
  513. if (dev->current_state != state && printk_ratelimit())
  514. dev_info(&dev->dev, "Refused to change power state, "
  515. "currently in D%d\n", dev->current_state);
  516. /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
  517. * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
  518. * from D3hot to D0 _may_ perform an internal reset, thereby
  519. * going to "D0 Uninitialized" rather than "D0 Initialized".
  520. * For example, at least some versions of the 3c905B and the
  521. * 3c556B exhibit this behaviour.
  522. *
  523. * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
  524. * devices in a D3hot state at boot. Consequently, we need to
  525. * restore at least the BARs so that the device will be
  526. * accessible to its driver.
  527. */
  528. if (need_restore)
  529. pci_restore_bars(dev);
  530. if (dev->bus->self)
  531. pcie_aspm_pm_state_change(dev->bus->self);
  532. return 0;
  533. }
  534. /**
  535. * pci_update_current_state - Read PCI power state of given device from its
  536. * PCI PM registers and cache it
  537. * @dev: PCI device to handle.
  538. * @state: State to cache in case the device doesn't have the PM capability
  539. */
  540. void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
  541. {
  542. if (dev->pm_cap) {
  543. u16 pmcsr;
  544. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  545. dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
  546. } else {
  547. dev->current_state = state;
  548. }
  549. }
  550. /**
  551. * pci_platform_power_transition - Use platform to change device power state
  552. * @dev: PCI device to handle.
  553. * @state: State to put the device into.
  554. */
  555. static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
  556. {
  557. int error;
  558. if (platform_pci_power_manageable(dev)) {
  559. error = platform_pci_set_power_state(dev, state);
  560. if (!error)
  561. pci_update_current_state(dev, state);
  562. } else {
  563. error = -ENODEV;
  564. /* Fall back to PCI_D0 if native PM is not supported */
  565. if (!dev->pm_cap)
  566. dev->current_state = PCI_D0;
  567. }
  568. return error;
  569. }
  570. /**
  571. * __pci_start_power_transition - Start power transition of a PCI device
  572. * @dev: PCI device to handle.
  573. * @state: State to put the device into.
  574. */
  575. static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
  576. {
  577. if (state == PCI_D0)
  578. pci_platform_power_transition(dev, PCI_D0);
  579. }
  580. /**
  581. * __pci_complete_power_transition - Complete power transition of a PCI device
  582. * @dev: PCI device to handle.
  583. * @state: State to put the device into.
  584. *
  585. * This function should not be called directly by device drivers.
  586. */
  587. int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
  588. {
  589. return state >= PCI_D0 ?
  590. pci_platform_power_transition(dev, state) : -EINVAL;
  591. }
  592. EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
  593. /**
  594. * pci_set_power_state - Set the power state of a PCI device
  595. * @dev: PCI device to handle.
  596. * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
  597. *
  598. * Transition a device to a new power state, using the platform firmware and/or
  599. * the device's PCI PM registers.
  600. *
  601. * RETURN VALUE:
  602. * -EINVAL if the requested state is invalid.
  603. * -EIO if device does not support PCI PM or its PM capabilities register has a
  604. * wrong version, or device doesn't support the requested state.
  605. * 0 if device already is in the requested state.
  606. * 0 if device's power state has been successfully changed.
  607. */
  608. int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
  609. {
  610. int error;
  611. /* bound the state we're entering */
  612. if (state > PCI_D3hot)
  613. state = PCI_D3hot;
  614. else if (state < PCI_D0)
  615. state = PCI_D0;
  616. else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
  617. /*
  618. * If the device or the parent bridge do not support PCI PM,
  619. * ignore the request if we're doing anything other than putting
  620. * it into D0 (which would only happen on boot).
  621. */
  622. return 0;
  623. __pci_start_power_transition(dev, state);
  624. /* This device is quirked not to be put into D3, so
  625. don't put it in D3 */
  626. if (state == PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
  627. return 0;
  628. error = pci_raw_set_power_state(dev, state);
  629. if (!__pci_complete_power_transition(dev, state))
  630. error = 0;
  631. return error;
  632. }
  633. /**
  634. * pci_choose_state - Choose the power state of a PCI device
  635. * @dev: PCI device to be suspended
  636. * @state: target sleep state for the whole system. This is the value
  637. * that is passed to suspend() function.
  638. *
  639. * Returns PCI power state suitable for given device and given system
  640. * message.
  641. */
  642. pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
  643. {
  644. pci_power_t ret;
  645. if (!pci_find_capability(dev, PCI_CAP_ID_PM))
  646. return PCI_D0;
  647. ret = platform_pci_choose_state(dev);
  648. if (ret != PCI_POWER_ERROR)
  649. return ret;
  650. switch (state.event) {
  651. case PM_EVENT_ON:
  652. return PCI_D0;
  653. case PM_EVENT_FREEZE:
  654. case PM_EVENT_PRETHAW:
  655. /* REVISIT both freeze and pre-thaw "should" use D0 */
  656. case PM_EVENT_SUSPEND:
  657. case PM_EVENT_HIBERNATE:
  658. return PCI_D3hot;
  659. default:
  660. dev_info(&dev->dev, "unrecognized suspend event %d\n",
  661. state.event);
  662. BUG();
  663. }
  664. return PCI_D0;
  665. }
  666. EXPORT_SYMBOL(pci_choose_state);
  667. #define PCI_EXP_SAVE_REGS 7
  668. #define pcie_cap_has_devctl(type, flags) 1
  669. #define pcie_cap_has_lnkctl(type, flags) \
  670. ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
  671. (type == PCI_EXP_TYPE_ROOT_PORT || \
  672. type == PCI_EXP_TYPE_ENDPOINT || \
  673. type == PCI_EXP_TYPE_LEG_END))
  674. #define pcie_cap_has_sltctl(type, flags) \
  675. ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
  676. ((type == PCI_EXP_TYPE_ROOT_PORT) || \
  677. (type == PCI_EXP_TYPE_DOWNSTREAM && \
  678. (flags & PCI_EXP_FLAGS_SLOT))))
  679. #define pcie_cap_has_rtctl(type, flags) \
  680. ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
  681. (type == PCI_EXP_TYPE_ROOT_PORT || \
  682. type == PCI_EXP_TYPE_RC_EC))
  683. #define pcie_cap_has_devctl2(type, flags) \
  684. ((flags & PCI_EXP_FLAGS_VERS) > 1)
  685. #define pcie_cap_has_lnkctl2(type, flags) \
  686. ((flags & PCI_EXP_FLAGS_VERS) > 1)
  687. #define pcie_cap_has_sltctl2(type, flags) \
  688. ((flags & PCI_EXP_FLAGS_VERS) > 1)
  689. static int pci_save_pcie_state(struct pci_dev *dev)
  690. {
  691. int pos, i = 0;
  692. struct pci_cap_saved_state *save_state;
  693. u16 *cap;
  694. u16 flags;
  695. pos = pci_pcie_cap(dev);
  696. if (!pos)
  697. return 0;
  698. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
  699. if (!save_state) {
  700. dev_err(&dev->dev, "buffer not found in %s\n", __func__);
  701. return -ENOMEM;
  702. }
  703. cap = (u16 *)&save_state->data[0];
  704. pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
  705. if (pcie_cap_has_devctl(dev->pcie_type, flags))
  706. pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
  707. if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
  708. pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
  709. if (pcie_cap_has_sltctl(dev->pcie_type, flags))
  710. pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
  711. if (pcie_cap_has_rtctl(dev->pcie_type, flags))
  712. pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
  713. if (pcie_cap_has_devctl2(dev->pcie_type, flags))
  714. pci_read_config_word(dev, pos + PCI_EXP_DEVCTL2, &cap[i++]);
  715. if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
  716. pci_read_config_word(dev, pos + PCI_EXP_LNKCTL2, &cap[i++]);
  717. if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
  718. pci_read_config_word(dev, pos + PCI_EXP_SLTCTL2, &cap[i++]);
  719. return 0;
  720. }
  721. static void pci_restore_pcie_state(struct pci_dev *dev)
  722. {
  723. int i = 0, pos;
  724. struct pci_cap_saved_state *save_state;
  725. u16 *cap;
  726. u16 flags;
  727. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
  728. pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
  729. if (!save_state || pos <= 0)
  730. return;
  731. cap = (u16 *)&save_state->data[0];
  732. pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
  733. if (pcie_cap_has_devctl(dev->pcie_type, flags))
  734. pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
  735. if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
  736. pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
  737. if (pcie_cap_has_sltctl(dev->pcie_type, flags))
  738. pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
  739. if (pcie_cap_has_rtctl(dev->pcie_type, flags))
  740. pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
  741. if (pcie_cap_has_devctl2(dev->pcie_type, flags))
  742. pci_write_config_word(dev, pos + PCI_EXP_DEVCTL2, cap[i++]);
  743. if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
  744. pci_write_config_word(dev, pos + PCI_EXP_LNKCTL2, cap[i++]);
  745. if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
  746. pci_write_config_word(dev, pos + PCI_EXP_SLTCTL2, cap[i++]);
  747. }
  748. static int pci_save_pcix_state(struct pci_dev *dev)
  749. {
  750. int pos;
  751. struct pci_cap_saved_state *save_state;
  752. pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  753. if (pos <= 0)
  754. return 0;
  755. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
  756. if (!save_state) {
  757. dev_err(&dev->dev, "buffer not found in %s\n", __func__);
  758. return -ENOMEM;
  759. }
  760. pci_read_config_word(dev, pos + PCI_X_CMD, (u16 *)save_state->data);
  761. return 0;
  762. }
  763. static void pci_restore_pcix_state(struct pci_dev *dev)
  764. {
  765. int i = 0, pos;
  766. struct pci_cap_saved_state *save_state;
  767. u16 *cap;
  768. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
  769. pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  770. if (!save_state || pos <= 0)
  771. return;
  772. cap = (u16 *)&save_state->data[0];
  773. pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
  774. }
  775. /**
  776. * pci_save_state - save the PCI configuration space of a device before suspending
  777. * @dev: - PCI device that we're dealing with
  778. */
  779. int
  780. pci_save_state(struct pci_dev *dev)
  781. {
  782. int i;
  783. /* XXX: 100% dword access ok here? */
  784. for (i = 0; i < 16; i++)
  785. pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
  786. dev->state_saved = true;
  787. if ((i = pci_save_pcie_state(dev)) != 0)
  788. return i;
  789. if ((i = pci_save_pcix_state(dev)) != 0)
  790. return i;
  791. return 0;
  792. }
  793. /**
  794. * pci_restore_state - Restore the saved state of a PCI device
  795. * @dev: - PCI device that we're dealing with
  796. */
  797. int
  798. pci_restore_state(struct pci_dev *dev)
  799. {
  800. int i;
  801. u32 val;
  802. if (!dev->state_saved)
  803. return 0;
  804. /* PCI Express register must be restored first */
  805. pci_restore_pcie_state(dev);
  806. /*
  807. * The Base Address register should be programmed before the command
  808. * register(s)
  809. */
  810. for (i = 15; i >= 0; i--) {
  811. pci_read_config_dword(dev, i * 4, &val);
  812. if (val != dev->saved_config_space[i]) {
  813. dev_printk(KERN_DEBUG, &dev->dev, "restoring config "
  814. "space at offset %#x (was %#x, writing %#x)\n",
  815. i, val, (int)dev->saved_config_space[i]);
  816. pci_write_config_dword(dev,i * 4,
  817. dev->saved_config_space[i]);
  818. }
  819. }
  820. pci_restore_pcix_state(dev);
  821. pci_restore_msi_state(dev);
  822. pci_restore_iov_state(dev);
  823. dev->state_saved = false;
  824. return 0;
  825. }
  826. static int do_pci_enable_device(struct pci_dev *dev, int bars)
  827. {
  828. int err;
  829. err = pci_set_power_state(dev, PCI_D0);
  830. if (err < 0 && err != -EIO)
  831. return err;
  832. err = pcibios_enable_device(dev, bars);
  833. if (err < 0)
  834. return err;
  835. pci_fixup_device(pci_fixup_enable, dev);
  836. return 0;
  837. }
  838. /**
  839. * pci_reenable_device - Resume abandoned device
  840. * @dev: PCI device to be resumed
  841. *
  842. * Note this function is a backend of pci_default_resume and is not supposed
  843. * to be called by normal code, write proper resume handler and use it instead.
  844. */
  845. int pci_reenable_device(struct pci_dev *dev)
  846. {
  847. if (pci_is_enabled(dev))
  848. return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
  849. return 0;
  850. }
  851. static int __pci_enable_device_flags(struct pci_dev *dev,
  852. resource_size_t flags)
  853. {
  854. int err;
  855. int i, bars = 0;
  856. if (atomic_add_return(1, &dev->enable_cnt) > 1)
  857. return 0; /* already enabled */
  858. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
  859. if (dev->resource[i].flags & flags)
  860. bars |= (1 << i);
  861. err = do_pci_enable_device(dev, bars);
  862. if (err < 0)
  863. atomic_dec(&dev->enable_cnt);
  864. return err;
  865. }
  866. /**
  867. * pci_enable_device_io - Initialize a device for use with IO space
  868. * @dev: PCI device to be initialized
  869. *
  870. * Initialize device before it's used by a driver. Ask low-level code
  871. * to enable I/O resources. Wake up the device if it was suspended.
  872. * Beware, this function can fail.
  873. */
  874. int pci_enable_device_io(struct pci_dev *dev)
  875. {
  876. return __pci_enable_device_flags(dev, IORESOURCE_IO);
  877. }
  878. /**
  879. * pci_enable_device_mem - Initialize a device for use with Memory space
  880. * @dev: PCI device to be initialized
  881. *
  882. * Initialize device before it's used by a driver. Ask low-level code
  883. * to enable Memory resources. Wake up the device if it was suspended.
  884. * Beware, this function can fail.
  885. */
  886. int pci_enable_device_mem(struct pci_dev *dev)
  887. {
  888. return __pci_enable_device_flags(dev, IORESOURCE_MEM);
  889. }
  890. /**
  891. * pci_enable_device - Initialize device before it's used by a driver.
  892. * @dev: PCI device to be initialized
  893. *
  894. * Initialize device before it's used by a driver. Ask low-level code
  895. * to enable I/O and memory. Wake up the device if it was suspended.
  896. * Beware, this function can fail.
  897. *
  898. * Note we don't actually enable the device many times if we call
  899. * this function repeatedly (we just increment the count).
  900. */
  901. int pci_enable_device(struct pci_dev *dev)
  902. {
  903. return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
  904. }
  905. /*
  906. * Managed PCI resources. This manages device on/off, intx/msi/msix
  907. * on/off and BAR regions. pci_dev itself records msi/msix status, so
  908. * there's no need to track it separately. pci_devres is initialized
  909. * when a device is enabled using managed PCI device enable interface.
  910. */
  911. struct pci_devres {
  912. unsigned int enabled:1;
  913. unsigned int pinned:1;
  914. unsigned int orig_intx:1;
  915. unsigned int restore_intx:1;
  916. u32 region_mask;
  917. };
  918. static void pcim_release(struct device *gendev, void *res)
  919. {
  920. struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
  921. struct pci_devres *this = res;
  922. int i;
  923. if (dev->msi_enabled)
  924. pci_disable_msi(dev);
  925. if (dev->msix_enabled)
  926. pci_disable_msix(dev);
  927. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
  928. if (this->region_mask & (1 << i))
  929. pci_release_region(dev, i);
  930. if (this->restore_intx)
  931. pci_intx(dev, this->orig_intx);
  932. if (this->enabled && !this->pinned)
  933. pci_disable_device(dev);
  934. }
  935. static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
  936. {
  937. struct pci_devres *dr, *new_dr;
  938. dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
  939. if (dr)
  940. return dr;
  941. new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
  942. if (!new_dr)
  943. return NULL;
  944. return devres_get(&pdev->dev, new_dr, NULL, NULL);
  945. }
  946. static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
  947. {
  948. if (pci_is_managed(pdev))
  949. return devres_find(&pdev->dev, pcim_release, NULL, NULL);
  950. return NULL;
  951. }
  952. /**
  953. * pcim_enable_device - Managed pci_enable_device()
  954. * @pdev: PCI device to be initialized
  955. *
  956. * Managed pci_enable_device().
  957. */
  958. int pcim_enable_device(struct pci_dev *pdev)
  959. {
  960. struct pci_devres *dr;
  961. int rc;
  962. dr = get_pci_dr(pdev);
  963. if (unlikely(!dr))
  964. return -ENOMEM;
  965. if (dr->enabled)
  966. return 0;
  967. rc = pci_enable_device(pdev);
  968. if (!rc) {
  969. pdev->is_managed = 1;
  970. dr->enabled = 1;
  971. }
  972. return rc;
  973. }
  974. /**
  975. * pcim_pin_device - Pin managed PCI device
  976. * @pdev: PCI device to pin
  977. *
  978. * Pin managed PCI device @pdev. Pinned device won't be disabled on
  979. * driver detach. @pdev must have been enabled with
  980. * pcim_enable_device().
  981. */
  982. void pcim_pin_device(struct pci_dev *pdev)
  983. {
  984. struct pci_devres *dr;
  985. dr = find_pci_dr(pdev);
  986. WARN_ON(!dr || !dr->enabled);
  987. if (dr)
  988. dr->pinned = 1;
  989. }
  990. /**
  991. * pcibios_disable_device - disable arch specific PCI resources for device dev
  992. * @dev: the PCI device to disable
  993. *
  994. * Disables architecture specific PCI resources for the device. This
  995. * is the default implementation. Architecture implementations can
  996. * override this.
  997. */
  998. void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
  999. static void do_pci_disable_device(struct pci_dev *dev)
  1000. {
  1001. u16 pci_command;
  1002. pci_read_config_word(dev, PCI_COMMAND, &pci_command);
  1003. if (pci_command & PCI_COMMAND_MASTER) {
  1004. pci_command &= ~PCI_COMMAND_MASTER;
  1005. pci_write_config_word(dev, PCI_COMMAND, pci_command);
  1006. }
  1007. pcibios_disable_device(dev);
  1008. }
  1009. /**
  1010. * pci_disable_enabled_device - Disable device without updating enable_cnt
  1011. * @dev: PCI device to disable
  1012. *
  1013. * NOTE: This function is a backend of PCI power management routines and is
  1014. * not supposed to be called drivers.
  1015. */
  1016. void pci_disable_enabled_device(struct pci_dev *dev)
  1017. {
  1018. if (pci_is_enabled(dev))
  1019. do_pci_disable_device(dev);
  1020. }
  1021. /**
  1022. * pci_disable_device - Disable PCI device after use
  1023. * @dev: PCI device to be disabled
  1024. *
  1025. * Signal to the system that the PCI device is not in use by the system
  1026. * anymore. This only involves disabling PCI bus-mastering, if active.
  1027. *
  1028. * Note we don't actually disable the device until all callers of
  1029. * pci_device_enable() have called pci_device_disable().
  1030. */
  1031. void
  1032. pci_disable_device(struct pci_dev *dev)
  1033. {
  1034. struct pci_devres *dr;
  1035. dr = find_pci_dr(dev);
  1036. if (dr)
  1037. dr->enabled = 0;
  1038. if (atomic_sub_return(1, &dev->enable_cnt) != 0)
  1039. return;
  1040. do_pci_disable_device(dev);
  1041. dev->is_busmaster = 0;
  1042. }
  1043. /**
  1044. * pcibios_set_pcie_reset_state - set reset state for device dev
  1045. * @dev: the PCIe device reset
  1046. * @state: Reset state to enter into
  1047. *
  1048. *
  1049. * Sets the PCIe reset state for the device. This is the default
  1050. * implementation. Architecture implementations can override this.
  1051. */
  1052. int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
  1053. enum pcie_reset_state state)
  1054. {
  1055. return -EINVAL;
  1056. }
  1057. /**
  1058. * pci_set_pcie_reset_state - set reset state for device dev
  1059. * @dev: the PCIe device reset
  1060. * @state: Reset state to enter into
  1061. *
  1062. *
  1063. * Sets the PCI reset state for the device.
  1064. */
  1065. int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
  1066. {
  1067. return pcibios_set_pcie_reset_state(dev, state);
  1068. }
  1069. /**
  1070. * pci_check_pme_status - Check if given device has generated PME.
  1071. * @dev: Device to check.
  1072. *
  1073. * Check the PME status of the device and if set, clear it and clear PME enable
  1074. * (if set). Return 'true' if PME status and PME enable were both set or
  1075. * 'false' otherwise.
  1076. */
  1077. bool pci_check_pme_status(struct pci_dev *dev)
  1078. {
  1079. int pmcsr_pos;
  1080. u16 pmcsr;
  1081. bool ret = false;
  1082. if (!dev->pm_cap)
  1083. return false;
  1084. pmcsr_pos = dev->pm_cap + PCI_PM_CTRL;
  1085. pci_read_config_word(dev, pmcsr_pos, &pmcsr);
  1086. if (!(pmcsr & PCI_PM_CTRL_PME_STATUS))
  1087. return false;
  1088. /* Clear PME status. */
  1089. pmcsr |= PCI_PM_CTRL_PME_STATUS;
  1090. if (pmcsr & PCI_PM_CTRL_PME_ENABLE) {
  1091. /* Disable PME to avoid interrupt flood. */
  1092. pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
  1093. ret = true;
  1094. }
  1095. pci_write_config_word(dev, pmcsr_pos, pmcsr);
  1096. return ret;
  1097. }
  1098. /**
  1099. * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
  1100. * @dev: Device to handle.
  1101. * @ign: Ignored.
  1102. *
  1103. * Check if @dev has generated PME and queue a resume request for it in that
  1104. * case.
  1105. */
  1106. static int pci_pme_wakeup(struct pci_dev *dev, void *ign)
  1107. {
  1108. if (pci_check_pme_status(dev))
  1109. pm_request_resume(&dev->dev);
  1110. return 0;
  1111. }
  1112. /**
  1113. * pci_pme_wakeup_bus - Walk given bus and wake up devices on it, if necessary.
  1114. * @bus: Top bus of the subtree to walk.
  1115. */
  1116. void pci_pme_wakeup_bus(struct pci_bus *bus)
  1117. {
  1118. if (bus)
  1119. pci_walk_bus(bus, pci_pme_wakeup, NULL);
  1120. }
  1121. /**
  1122. * pci_pme_capable - check the capability of PCI device to generate PME#
  1123. * @dev: PCI device to handle.
  1124. * @state: PCI state from which device will issue PME#.
  1125. */
  1126. bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
  1127. {
  1128. if (!dev->pm_cap)
  1129. return false;
  1130. return !!(dev->pme_support & (1 << state));
  1131. }
  1132. /**
  1133. * pci_pme_active - enable or disable PCI device's PME# function
  1134. * @dev: PCI device to handle.
  1135. * @enable: 'true' to enable PME# generation; 'false' to disable it.
  1136. *
  1137. * The caller must verify that the device is capable of generating PME# before
  1138. * calling this function with @enable equal to 'true'.
  1139. */
  1140. void pci_pme_active(struct pci_dev *dev, bool enable)
  1141. {
  1142. u16 pmcsr;
  1143. if (!dev->pm_cap)
  1144. return;
  1145. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  1146. /* Clear PME_Status by writing 1 to it and enable PME# */
  1147. pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
  1148. if (!enable)
  1149. pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
  1150. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
  1151. dev_printk(KERN_DEBUG, &dev->dev, "PME# %s\n",
  1152. enable ? "enabled" : "disabled");
  1153. }
  1154. /**
  1155. * __pci_enable_wake - enable PCI device as wakeup event source
  1156. * @dev: PCI device affected
  1157. * @state: PCI state from which device will issue wakeup events
  1158. * @runtime: True if the events are to be generated at run time
  1159. * @enable: True to enable event generation; false to disable
  1160. *
  1161. * This enables the device as a wakeup event source, or disables it.
  1162. * When such events involves platform-specific hooks, those hooks are
  1163. * called automatically by this routine.
  1164. *
  1165. * Devices with legacy power management (no standard PCI PM capabilities)
  1166. * always require such platform hooks.
  1167. *
  1168. * RETURN VALUE:
  1169. * 0 is returned on success
  1170. * -EINVAL is returned if device is not supposed to wake up the system
  1171. * Error code depending on the platform is returned if both the platform and
  1172. * the native mechanism fail to enable the generation of wake-up events
  1173. */
  1174. int __pci_enable_wake(struct pci_dev *dev, pci_power_t state,
  1175. bool runtime, bool enable)
  1176. {
  1177. int ret = 0;
  1178. if (enable && !runtime && !device_may_wakeup(&dev->dev))
  1179. return -EINVAL;
  1180. /* Don't do the same thing twice in a row for one device. */
  1181. if (!!enable == !!dev->wakeup_prepared)
  1182. return 0;
  1183. /*
  1184. * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
  1185. * Anderson we should be doing PME# wake enable followed by ACPI wake
  1186. * enable. To disable wake-up we call the platform first, for symmetry.
  1187. */
  1188. if (enable) {
  1189. int error;
  1190. if (pci_pme_capable(dev, state))
  1191. pci_pme_active(dev, true);
  1192. else
  1193. ret = 1;
  1194. error = runtime ? platform_pci_run_wake(dev, true) :
  1195. platform_pci_sleep_wake(dev, true);
  1196. if (ret)
  1197. ret = error;
  1198. if (!ret)
  1199. dev->wakeup_prepared = true;
  1200. } else {
  1201. if (runtime)
  1202. platform_pci_run_wake(dev, false);
  1203. else
  1204. platform_pci_sleep_wake(dev, false);
  1205. pci_pme_active(dev, false);
  1206. dev->wakeup_prepared = false;
  1207. }
  1208. return ret;
  1209. }
  1210. EXPORT_SYMBOL(__pci_enable_wake);
  1211. /**
  1212. * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
  1213. * @dev: PCI device to prepare
  1214. * @enable: True to enable wake-up event generation; false to disable
  1215. *
  1216. * Many drivers want the device to wake up the system from D3_hot or D3_cold
  1217. * and this function allows them to set that up cleanly - pci_enable_wake()
  1218. * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
  1219. * ordering constraints.
  1220. *
  1221. * This function only returns error code if the device is not capable of
  1222. * generating PME# from both D3_hot and D3_cold, and the platform is unable to
  1223. * enable wake-up power for it.
  1224. */
  1225. int pci_wake_from_d3(struct pci_dev *dev, bool enable)
  1226. {
  1227. return pci_pme_capable(dev, PCI_D3cold) ?
  1228. pci_enable_wake(dev, PCI_D3cold, enable) :
  1229. pci_enable_wake(dev, PCI_D3hot, enable);
  1230. }
  1231. /**
  1232. * pci_target_state - find an appropriate low power state for a given PCI dev
  1233. * @dev: PCI device
  1234. *
  1235. * Use underlying platform code to find a supported low power state for @dev.
  1236. * If the platform can't manage @dev, return the deepest state from which it
  1237. * can generate wake events, based on any available PME info.
  1238. */
  1239. pci_power_t pci_target_state(struct pci_dev *dev)
  1240. {
  1241. pci_power_t target_state = PCI_D3hot;
  1242. if (platform_pci_power_manageable(dev)) {
  1243. /*
  1244. * Call the platform to choose the target state of the device
  1245. * and enable wake-up from this state if supported.
  1246. */
  1247. pci_power_t state = platform_pci_choose_state(dev);
  1248. switch (state) {
  1249. case PCI_POWER_ERROR:
  1250. case PCI_UNKNOWN:
  1251. break;
  1252. case PCI_D1:
  1253. case PCI_D2:
  1254. if (pci_no_d1d2(dev))
  1255. break;
  1256. default:
  1257. target_state = state;
  1258. }
  1259. } else if (!dev->pm_cap) {
  1260. target_state = PCI_D0;
  1261. } else if (device_may_wakeup(&dev->dev)) {
  1262. /*
  1263. * Find the deepest state from which the device can generate
  1264. * wake-up events, make it the target state and enable device
  1265. * to generate PME#.
  1266. */
  1267. if (dev->pme_support) {
  1268. while (target_state
  1269. && !(dev->pme_support & (1 << target_state)))
  1270. target_state--;
  1271. }
  1272. }
  1273. return target_state;
  1274. }
  1275. /**
  1276. * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
  1277. * @dev: Device to handle.
  1278. *
  1279. * Choose the power state appropriate for the device depending on whether
  1280. * it can wake up the system and/or is power manageable by the platform
  1281. * (PCI_D3hot is the default) and put the device into that state.
  1282. */
  1283. int pci_prepare_to_sleep(struct pci_dev *dev)
  1284. {
  1285. pci_power_t target_state = pci_target_state(dev);
  1286. int error;
  1287. if (target_state == PCI_POWER_ERROR)
  1288. return -EIO;
  1289. pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
  1290. error = pci_set_power_state(dev, target_state);
  1291. if (error)
  1292. pci_enable_wake(dev, target_state, false);
  1293. return error;
  1294. }
  1295. /**
  1296. * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
  1297. * @dev: Device to handle.
  1298. *
  1299. * Disable device's sytem wake-up capability and put it into D0.
  1300. */
  1301. int pci_back_from_sleep(struct pci_dev *dev)
  1302. {
  1303. pci_enable_wake(dev, PCI_D0, false);
  1304. return pci_set_power_state(dev, PCI_D0);
  1305. }
  1306. /**
  1307. * pci_finish_runtime_suspend - Carry out PCI-specific part of runtime suspend.
  1308. * @dev: PCI device being suspended.
  1309. *
  1310. * Prepare @dev to generate wake-up events at run time and put it into a low
  1311. * power state.
  1312. */
  1313. int pci_finish_runtime_suspend(struct pci_dev *dev)
  1314. {
  1315. pci_power_t target_state = pci_target_state(dev);
  1316. int error;
  1317. if (target_state == PCI_POWER_ERROR)
  1318. return -EIO;
  1319. __pci_enable_wake(dev, target_state, true, pci_dev_run_wake(dev));
  1320. error = pci_set_power_state(dev, target_state);
  1321. if (error)
  1322. __pci_enable_wake(dev, target_state, true, false);
  1323. return error;
  1324. }
  1325. /**
  1326. * pci_dev_run_wake - Check if device can generate run-time wake-up events.
  1327. * @dev: Device to check.
  1328. *
  1329. * Return true if the device itself is cabable of generating wake-up events
  1330. * (through the platform or using the native PCIe PME) or if the device supports
  1331. * PME and one of its upstream bridges can generate wake-up events.
  1332. */
  1333. bool pci_dev_run_wake(struct pci_dev *dev)
  1334. {
  1335. struct pci_bus *bus = dev->bus;
  1336. if (device_run_wake(&dev->dev))
  1337. return true;
  1338. if (!dev->pme_support)
  1339. return false;
  1340. while (bus->parent) {
  1341. struct pci_dev *bridge = bus->self;
  1342. if (device_run_wake(&bridge->dev))
  1343. return true;
  1344. bus = bus->parent;
  1345. }
  1346. /* We have reached the root bus. */
  1347. if (bus->bridge)
  1348. return device_run_wake(bus->bridge);
  1349. return false;
  1350. }
  1351. EXPORT_SYMBOL_GPL(pci_dev_run_wake);
  1352. /**
  1353. * pci_pm_init - Initialize PM functions of given PCI device
  1354. * @dev: PCI device to handle.
  1355. */
  1356. void pci_pm_init(struct pci_dev *dev)
  1357. {
  1358. int pm;
  1359. u16 pmc;
  1360. pm_runtime_forbid(&dev->dev);
  1361. device_enable_async_suspend(&dev->dev);
  1362. dev->wakeup_prepared = false;
  1363. dev->pm_cap = 0;
  1364. /* find PCI PM capability in list */
  1365. pm = pci_find_capability(dev, PCI_CAP_ID_PM);
  1366. if (!pm)
  1367. return;
  1368. /* Check device's ability to generate PME# */
  1369. pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
  1370. if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
  1371. dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
  1372. pmc & PCI_PM_CAP_VER_MASK);
  1373. return;
  1374. }
  1375. dev->pm_cap = pm;
  1376. dev->d3_delay = PCI_PM_D3_WAIT;
  1377. dev->d1_support = false;
  1378. dev->d2_support = false;
  1379. if (!pci_no_d1d2(dev)) {
  1380. if (pmc & PCI_PM_CAP_D1)
  1381. dev->d1_support = true;
  1382. if (pmc & PCI_PM_CAP_D2)
  1383. dev->d2_support = true;
  1384. if (dev->d1_support || dev->d2_support)
  1385. dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
  1386. dev->d1_support ? " D1" : "",
  1387. dev->d2_support ? " D2" : "");
  1388. }
  1389. pmc &= PCI_PM_CAP_PME_MASK;
  1390. if (pmc) {
  1391. dev_printk(KERN_DEBUG, &dev->dev,
  1392. "PME# supported from%s%s%s%s%s\n",
  1393. (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
  1394. (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
  1395. (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
  1396. (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
  1397. (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
  1398. dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
  1399. /*
  1400. * Make device's PM flags reflect the wake-up capability, but
  1401. * let the user space enable it to wake up the system as needed.
  1402. */
  1403. device_set_wakeup_capable(&dev->dev, true);
  1404. device_set_wakeup_enable(&dev->dev, false);
  1405. /* Disable the PME# generation functionality */
  1406. pci_pme_active(dev, false);
  1407. } else {
  1408. dev->pme_support = 0;
  1409. }
  1410. }
  1411. /**
  1412. * platform_pci_wakeup_init - init platform wakeup if present
  1413. * @dev: PCI device
  1414. *
  1415. * Some devices don't have PCI PM caps but can still generate wakeup
  1416. * events through platform methods (like ACPI events). If @dev supports
  1417. * platform wakeup events, set the device flag to indicate as much. This
  1418. * may be redundant if the device also supports PCI PM caps, but double
  1419. * initialization should be safe in that case.
  1420. */
  1421. void platform_pci_wakeup_init(struct pci_dev *dev)
  1422. {
  1423. if (!platform_pci_can_wakeup(dev))
  1424. return;
  1425. device_set_wakeup_capable(&dev->dev, true);
  1426. device_set_wakeup_enable(&dev->dev, false);
  1427. platform_pci_sleep_wake(dev, false);
  1428. }
  1429. /**
  1430. * pci_add_save_buffer - allocate buffer for saving given capability registers
  1431. * @dev: the PCI device
  1432. * @cap: the capability to allocate the buffer for
  1433. * @size: requested size of the buffer
  1434. */
  1435. static int pci_add_cap_save_buffer(
  1436. struct pci_dev *dev, char cap, unsigned int size)
  1437. {
  1438. int pos;
  1439. struct pci_cap_saved_state *save_state;
  1440. pos = pci_find_capability(dev, cap);
  1441. if (pos <= 0)
  1442. return 0;
  1443. save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
  1444. if (!save_state)
  1445. return -ENOMEM;
  1446. save_state->cap_nr = cap;
  1447. pci_add_saved_cap(dev, save_state);
  1448. return 0;
  1449. }
  1450. /**
  1451. * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
  1452. * @dev: the PCI device
  1453. */
  1454. void pci_allocate_cap_save_buffers(struct pci_dev *dev)
  1455. {
  1456. int error;
  1457. error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
  1458. PCI_EXP_SAVE_REGS * sizeof(u16));
  1459. if (error)
  1460. dev_err(&dev->dev,
  1461. "unable to preallocate PCI Express save buffer\n");
  1462. error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
  1463. if (error)
  1464. dev_err(&dev->dev,
  1465. "unable to preallocate PCI-X save buffer\n");
  1466. }
  1467. /**
  1468. * pci_enable_ari - enable ARI forwarding if hardware support it
  1469. * @dev: the PCI device
  1470. */
  1471. void pci_enable_ari(struct pci_dev *dev)
  1472. {
  1473. int pos;
  1474. u32 cap;
  1475. u16 ctrl;
  1476. struct pci_dev *bridge;
  1477. if (!pci_is_pcie(dev) || dev->devfn)
  1478. return;
  1479. pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI);
  1480. if (!pos)
  1481. return;
  1482. bridge = dev->bus->self;
  1483. if (!bridge || !pci_is_pcie(bridge))
  1484. return;
  1485. pos = pci_pcie_cap(bridge);
  1486. if (!pos)
  1487. return;
  1488. pci_read_config_dword(bridge, pos + PCI_EXP_DEVCAP2, &cap);
  1489. if (!(cap & PCI_EXP_DEVCAP2_ARI))
  1490. return;
  1491. pci_read_config_word(bridge, pos + PCI_EXP_DEVCTL2, &ctrl);
  1492. ctrl |= PCI_EXP_DEVCTL2_ARI;
  1493. pci_write_config_word(bridge, pos + PCI_EXP_DEVCTL2, ctrl);
  1494. bridge->ari_enabled = 1;
  1495. }
  1496. static int pci_acs_enable;
  1497. /**
  1498. * pci_request_acs - ask for ACS to be enabled if supported
  1499. */
  1500. void pci_request_acs(void)
  1501. {
  1502. pci_acs_enable = 1;
  1503. }
  1504. /**
  1505. * pci_enable_acs - enable ACS if hardware support it
  1506. * @dev: the PCI device
  1507. */
  1508. void pci_enable_acs(struct pci_dev *dev)
  1509. {
  1510. int pos;
  1511. u16 cap;
  1512. u16 ctrl;
  1513. if (!pci_acs_enable)
  1514. return;
  1515. if (!pci_is_pcie(dev))
  1516. return;
  1517. pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
  1518. if (!pos)
  1519. return;
  1520. pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
  1521. pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
  1522. /* Source Validation */
  1523. ctrl |= (cap & PCI_ACS_SV);
  1524. /* P2P Request Redirect */
  1525. ctrl |= (cap & PCI_ACS_RR);
  1526. /* P2P Completion Redirect */
  1527. ctrl |= (cap & PCI_ACS_CR);
  1528. /* Upstream Forwarding */
  1529. ctrl |= (cap & PCI_ACS_UF);
  1530. pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
  1531. }
  1532. /**
  1533. * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
  1534. * @dev: the PCI device
  1535. * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTD, 4=INTD)
  1536. *
  1537. * Perform INTx swizzling for a device behind one level of bridge. This is
  1538. * required by section 9.1 of the PCI-to-PCI bridge specification for devices
  1539. * behind bridges on add-in cards. For devices with ARI enabled, the slot
  1540. * number is always 0 (see the Implementation Note in section 2.2.8.1 of
  1541. * the PCI Express Base Specification, Revision 2.1)
  1542. */
  1543. u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin)
  1544. {
  1545. int slot;
  1546. if (pci_ari_enabled(dev->bus))
  1547. slot = 0;
  1548. else
  1549. slot = PCI_SLOT(dev->devfn);
  1550. return (((pin - 1) + slot) % 4) + 1;
  1551. }
  1552. int
  1553. pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
  1554. {
  1555. u8 pin;
  1556. pin = dev->pin;
  1557. if (!pin)
  1558. return -1;
  1559. while (!pci_is_root_bus(dev->bus)) {
  1560. pin = pci_swizzle_interrupt_pin(dev, pin);
  1561. dev = dev->bus->self;
  1562. }
  1563. *bridge = dev;
  1564. return pin;
  1565. }
  1566. /**
  1567. * pci_common_swizzle - swizzle INTx all the way to root bridge
  1568. * @dev: the PCI device
  1569. * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
  1570. *
  1571. * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
  1572. * bridges all the way up to a PCI root bus.
  1573. */
  1574. u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
  1575. {
  1576. u8 pin = *pinp;
  1577. while (!pci_is_root_bus(dev->bus)) {
  1578. pin = pci_swizzle_interrupt_pin(dev, pin);
  1579. dev = dev->bus->self;
  1580. }
  1581. *pinp = pin;
  1582. return PCI_SLOT(dev->devfn);
  1583. }
  1584. /**
  1585. * pci_release_region - Release a PCI bar
  1586. * @pdev: PCI device whose resources were previously reserved by pci_request_region
  1587. * @bar: BAR to release
  1588. *
  1589. * Releases the PCI I/O and memory resources previously reserved by a
  1590. * successful call to pci_request_region. Call this function only
  1591. * after all use of the PCI regions has ceased.
  1592. */
  1593. void pci_release_region(struct pci_dev *pdev, int bar)
  1594. {
  1595. struct pci_devres *dr;
  1596. if (pci_resource_len(pdev, bar) == 0)
  1597. return;
  1598. if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
  1599. release_region(pci_resource_start(pdev, bar),
  1600. pci_resource_len(pdev, bar));
  1601. else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
  1602. release_mem_region(pci_resource_start(pdev, bar),
  1603. pci_resource_len(pdev, bar));
  1604. dr = find_pci_dr(pdev);
  1605. if (dr)
  1606. dr->region_mask &= ~(1 << bar);
  1607. }
  1608. /**
  1609. * __pci_request_region - Reserved PCI I/O and memory resource
  1610. * @pdev: PCI device whose resources are to be reserved
  1611. * @bar: BAR to be reserved
  1612. * @res_name: Name to be associated with resource.
  1613. * @exclusive: whether the region access is exclusive or not
  1614. *
  1615. * Mark the PCI region associated with PCI device @pdev BR @bar as
  1616. * being reserved by owner @res_name. Do not access any
  1617. * address inside the PCI regions unless this call returns
  1618. * successfully.
  1619. *
  1620. * If @exclusive is set, then the region is marked so that userspace
  1621. * is explicitly not allowed to map the resource via /dev/mem or
  1622. * sysfs MMIO access.
  1623. *
  1624. * Returns 0 on success, or %EBUSY on error. A warning
  1625. * message is also printed on failure.
  1626. */
  1627. static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
  1628. int exclusive)
  1629. {
  1630. struct pci_devres *dr;
  1631. if (pci_resource_len(pdev, bar) == 0)
  1632. return 0;
  1633. if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
  1634. if (!request_region(pci_resource_start(pdev, bar),
  1635. pci_resource_len(pdev, bar), res_name))
  1636. goto err_out;
  1637. }
  1638. else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
  1639. if (!__request_mem_region(pci_resource_start(pdev, bar),
  1640. pci_resource_len(pdev, bar), res_name,
  1641. exclusive))
  1642. goto err_out;
  1643. }
  1644. dr = find_pci_dr(pdev);
  1645. if (dr)
  1646. dr->region_mask |= 1 << bar;
  1647. return 0;
  1648. err_out:
  1649. dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
  1650. &pdev->resource[bar]);
  1651. return -EBUSY;
  1652. }
  1653. /**
  1654. * pci_request_region - Reserve PCI I/O and memory resource
  1655. * @pdev: PCI device whose resources are to be reserved
  1656. * @bar: BAR to be reserved
  1657. * @res_name: Name to be associated with resource
  1658. *
  1659. * Mark the PCI region associated with PCI device @pdev BAR @bar as
  1660. * being reserved by owner @res_name. Do not access any
  1661. * address inside the PCI regions unless this call returns
  1662. * successfully.
  1663. *
  1664. * Returns 0 on success, or %EBUSY on error. A warning
  1665. * message is also printed on failure.
  1666. */
  1667. int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
  1668. {
  1669. return __pci_request_region(pdev, bar, res_name, 0);
  1670. }
  1671. /**
  1672. * pci_request_region_exclusive - Reserved PCI I/O and memory resource
  1673. * @pdev: PCI device whose resources are to be reserved
  1674. * @bar: BAR to be reserved
  1675. * @res_name: Name to be associated with resource.
  1676. *
  1677. * Mark the PCI region associated with PCI device @pdev BR @bar as
  1678. * being reserved by owner @res_name. Do not access any
  1679. * address inside the PCI regions unless this call returns
  1680. * successfully.
  1681. *
  1682. * Returns 0 on success, or %EBUSY on error. A warning
  1683. * message is also printed on failure.
  1684. *
  1685. * The key difference that _exclusive makes it that userspace is
  1686. * explicitly not allowed to map the resource via /dev/mem or
  1687. * sysfs.
  1688. */
  1689. int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
  1690. {
  1691. return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
  1692. }
  1693. /**
  1694. * pci_release_selected_regions - Release selected PCI I/O and memory resources
  1695. * @pdev: PCI device whose resources were previously reserved
  1696. * @bars: Bitmask of BARs to be released
  1697. *
  1698. * Release selected PCI I/O and memory resources previously reserved.
  1699. * Call this function only after all use of the PCI regions has ceased.
  1700. */
  1701. void pci_release_selected_regions(struct pci_dev *pdev, int bars)
  1702. {
  1703. int i;
  1704. for (i = 0; i < 6; i++)
  1705. if (bars & (1 << i))
  1706. pci_release_region(pdev, i);
  1707. }
  1708. int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
  1709. const char *res_name, int excl)
  1710. {
  1711. int i;
  1712. for (i = 0; i < 6; i++)
  1713. if (bars & (1 << i))
  1714. if (__pci_request_region(pdev, i, res_name, excl))
  1715. goto err_out;
  1716. return 0;
  1717. err_out:
  1718. while(--i >= 0)
  1719. if (bars & (1 << i))
  1720. pci_release_region(pdev, i);
  1721. return -EBUSY;
  1722. }
  1723. /**
  1724. * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
  1725. * @pdev: PCI device whose resources are to be reserved
  1726. * @bars: Bitmask of BARs to be requested
  1727. * @res_name: Name to be associated with resource
  1728. */
  1729. int pci_request_selected_regions(struct pci_dev *pdev, int bars,
  1730. const char *res_name)
  1731. {
  1732. return __pci_request_selected_regions(pdev, bars, res_name, 0);
  1733. }
  1734. int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
  1735. int bars, const char *res_name)
  1736. {
  1737. return __pci_request_selected_regions(pdev, bars, res_name,
  1738. IORESOURCE_EXCLUSIVE);
  1739. }
  1740. /**
  1741. * pci_release_regions - Release reserved PCI I/O and memory resources
  1742. * @pdev: PCI device whose resources were previously reserved by pci_request_regions
  1743. *
  1744. * Releases all PCI I/O and memory resources previously reserved by a
  1745. * successful call to pci_request_regions. Call this function only
  1746. * after all use of the PCI regions has ceased.
  1747. */
  1748. void pci_release_regions(struct pci_dev *pdev)
  1749. {
  1750. pci_release_selected_regions(pdev, (1 << 6) - 1);
  1751. }
  1752. /**
  1753. * pci_request_regions - Reserved PCI I/O and memory resources
  1754. * @pdev: PCI device whose resources are to be reserved
  1755. * @res_name: Name to be associated with resource.
  1756. *
  1757. * Mark all PCI regions associated with PCI device @pdev as
  1758. * being reserved by owner @res_name. Do not access any
  1759. * address inside the PCI regions unless this call returns
  1760. * successfully.
  1761. *
  1762. * Returns 0 on success, or %EBUSY on error. A warning
  1763. * message is also printed on failure.
  1764. */
  1765. int pci_request_regions(struct pci_dev *pdev, const char *res_name)
  1766. {
  1767. return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
  1768. }
  1769. /**
  1770. * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
  1771. * @pdev: PCI device whose resources are to be reserved
  1772. * @res_name: Name to be associated with resource.
  1773. *
  1774. * Mark all PCI regions associated with PCI device @pdev as
  1775. * being reserved by owner @res_name. Do not access any
  1776. * address inside the PCI regions unless this call returns
  1777. * successfully.
  1778. *
  1779. * pci_request_regions_exclusive() will mark the region so that
  1780. * /dev/mem and the sysfs MMIO access will not be allowed.
  1781. *
  1782. * Returns 0 on success, or %EBUSY on error. A warning
  1783. * message is also printed on failure.
  1784. */
  1785. int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
  1786. {
  1787. return pci_request_selected_regions_exclusive(pdev,
  1788. ((1 << 6) - 1), res_name);
  1789. }
  1790. static void __pci_set_master(struct pci_dev *dev, bool enable)
  1791. {
  1792. u16 old_cmd, cmd;
  1793. pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
  1794. if (enable)
  1795. cmd = old_cmd | PCI_COMMAND_MASTER;
  1796. else
  1797. cmd = old_cmd & ~PCI_COMMAND_MASTER;
  1798. if (cmd != old_cmd) {
  1799. dev_dbg(&dev->dev, "%s bus mastering\n",
  1800. enable ? "enabling" : "disabling");
  1801. pci_write_config_word(dev, PCI_COMMAND, cmd);
  1802. }
  1803. dev->is_busmaster = enable;
  1804. }
  1805. /**
  1806. * pci_set_master - enables bus-mastering for device dev
  1807. * @dev: the PCI device to enable
  1808. *
  1809. * Enables bus-mastering on the device and calls pcibios_set_master()
  1810. * to do the needed arch specific settings.
  1811. */
  1812. void pci_set_master(struct pci_dev *dev)
  1813. {
  1814. __pci_set_master(dev, true);
  1815. pcibios_set_master(dev);
  1816. }
  1817. /**
  1818. * pci_clear_master - disables bus-mastering for device dev
  1819. * @dev: the PCI device to disable
  1820. */
  1821. void pci_clear_master(struct pci_dev *dev)
  1822. {
  1823. __pci_set_master(dev, false);
  1824. }
  1825. /**
  1826. * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
  1827. * @dev: the PCI device for which MWI is to be enabled
  1828. *
  1829. * Helper function for pci_set_mwi.
  1830. * Originally copied from drivers/net/acenic.c.
  1831. * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
  1832. *
  1833. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  1834. */
  1835. int pci_set_cacheline_size(struct pci_dev *dev)
  1836. {
  1837. u8 cacheline_size;
  1838. if (!pci_cache_line_size)
  1839. return -EINVAL;
  1840. /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
  1841. equal to or multiple of the right value. */
  1842. pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
  1843. if (cacheline_size >= pci_cache_line_size &&
  1844. (cacheline_size % pci_cache_line_size) == 0)
  1845. return 0;
  1846. /* Write the correct value. */
  1847. pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
  1848. /* Read it back. */
  1849. pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
  1850. if (cacheline_size == pci_cache_line_size)
  1851. return 0;
  1852. dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
  1853. "supported\n", pci_cache_line_size << 2);
  1854. return -EINVAL;
  1855. }
  1856. EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
  1857. #ifdef PCI_DISABLE_MWI
  1858. int pci_set_mwi(struct pci_dev *dev)
  1859. {
  1860. return 0;
  1861. }
  1862. int pci_try_set_mwi(struct pci_dev *dev)
  1863. {
  1864. return 0;
  1865. }
  1866. void pci_clear_mwi(struct pci_dev *dev)
  1867. {
  1868. }
  1869. #else
  1870. /**
  1871. * pci_set_mwi - enables memory-write-invalidate PCI transaction
  1872. * @dev: the PCI device for which MWI is enabled
  1873. *
  1874. * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
  1875. *
  1876. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  1877. */
  1878. int
  1879. pci_set_mwi(struct pci_dev *dev)
  1880. {
  1881. int rc;
  1882. u16 cmd;
  1883. rc = pci_set_cacheline_size(dev);
  1884. if (rc)
  1885. return rc;
  1886. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  1887. if (! (cmd & PCI_COMMAND_INVALIDATE)) {
  1888. dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
  1889. cmd |= PCI_COMMAND_INVALIDATE;
  1890. pci_write_config_word(dev, PCI_COMMAND, cmd);
  1891. }
  1892. return 0;
  1893. }
  1894. /**
  1895. * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
  1896. * @dev: the PCI device for which MWI is enabled
  1897. *
  1898. * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
  1899. * Callers are not required to check the return value.
  1900. *
  1901. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  1902. */
  1903. int pci_try_set_mwi(struct pci_dev *dev)
  1904. {
  1905. int rc = pci_set_mwi(dev);
  1906. return rc;
  1907. }
  1908. /**
  1909. * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
  1910. * @dev: the PCI device to disable
  1911. *
  1912. * Disables PCI Memory-Write-Invalidate transaction on the device
  1913. */
  1914. void
  1915. pci_clear_mwi(struct pci_dev *dev)
  1916. {
  1917. u16 cmd;
  1918. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  1919. if (cmd & PCI_COMMAND_INVALIDATE) {
  1920. cmd &= ~PCI_COMMAND_INVALIDATE;
  1921. pci_write_config_word(dev, PCI_COMMAND, cmd);
  1922. }
  1923. }
  1924. #endif /* ! PCI_DISABLE_MWI */
  1925. /**
  1926. * pci_intx - enables/disables PCI INTx for device dev
  1927. * @pdev: the PCI device to operate on
  1928. * @enable: boolean: whether to enable or disable PCI INTx
  1929. *
  1930. * Enables/disables PCI INTx for device dev
  1931. */
  1932. void
  1933. pci_intx(struct pci_dev *pdev, int enable)
  1934. {
  1935. u16 pci_command, new;
  1936. pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
  1937. if (enable) {
  1938. new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
  1939. } else {
  1940. new = pci_command | PCI_COMMAND_INTX_DISABLE;
  1941. }
  1942. if (new != pci_command) {
  1943. struct pci_devres *dr;
  1944. pci_write_config_word(pdev, PCI_COMMAND, new);
  1945. dr = find_pci_dr(pdev);
  1946. if (dr && !dr->restore_intx) {
  1947. dr->restore_intx = 1;
  1948. dr->orig_intx = !enable;
  1949. }
  1950. }
  1951. }
  1952. /**
  1953. * pci_msi_off - disables any msi or msix capabilities
  1954. * @dev: the PCI device to operate on
  1955. *
  1956. * If you want to use msi see pci_enable_msi and friends.
  1957. * This is a lower level primitive that allows us to disable
  1958. * msi operation at the device level.
  1959. */
  1960. void pci_msi_off(struct pci_dev *dev)
  1961. {
  1962. int pos;
  1963. u16 control;
  1964. pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
  1965. if (pos) {
  1966. pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
  1967. control &= ~PCI_MSI_FLAGS_ENABLE;
  1968. pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
  1969. }
  1970. pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
  1971. if (pos) {
  1972. pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
  1973. control &= ~PCI_MSIX_FLAGS_ENABLE;
  1974. pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
  1975. }
  1976. }
  1977. #ifndef HAVE_ARCH_PCI_SET_DMA_MAX_SEGMENT_SIZE
  1978. int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
  1979. {
  1980. return dma_set_max_seg_size(&dev->dev, size);
  1981. }
  1982. EXPORT_SYMBOL(pci_set_dma_max_seg_size);
  1983. #endif
  1984. #ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY
  1985. int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
  1986. {
  1987. return dma_set_seg_boundary(&dev->dev, mask);
  1988. }
  1989. EXPORT_SYMBOL(pci_set_dma_seg_boundary);
  1990. #endif
  1991. static int pcie_flr(struct pci_dev *dev, int probe)
  1992. {
  1993. int i;
  1994. int pos;
  1995. u32 cap;
  1996. u16 status, control;
  1997. pos = pci_pcie_cap(dev);
  1998. if (!pos)
  1999. return -ENOTTY;
  2000. pci_read_config_dword(dev, pos + PCI_EXP_DEVCAP, &cap);
  2001. if (!(cap & PCI_EXP_DEVCAP_FLR))
  2002. return -ENOTTY;
  2003. if (probe)
  2004. return 0;
  2005. /* Wait for Transaction Pending bit clean */
  2006. for (i = 0; i < 4; i++) {
  2007. if (i)
  2008. msleep((1 << (i - 1)) * 100);
  2009. pci_read_config_word(dev, pos + PCI_EXP_DEVSTA, &status);
  2010. if (!(status & PCI_EXP_DEVSTA_TRPND))
  2011. goto clear;
  2012. }
  2013. dev_err(&dev->dev, "transaction is not cleared; "
  2014. "proceeding with reset anyway\n");
  2015. clear:
  2016. pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &control);
  2017. control |= PCI_EXP_DEVCTL_BCR_FLR;
  2018. pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, control);
  2019. msleep(100);
  2020. return 0;
  2021. }
  2022. static int pci_af_flr(struct pci_dev *dev, int probe)
  2023. {
  2024. int i;
  2025. int pos;
  2026. u8 cap;
  2027. u8 status;
  2028. pos = pci_find_capability(dev, PCI_CAP_ID_AF);
  2029. if (!pos)
  2030. return -ENOTTY;
  2031. pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
  2032. if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
  2033. return -ENOTTY;
  2034. if (probe)
  2035. return 0;
  2036. /* Wait for Transaction Pending bit clean */
  2037. for (i = 0; i < 4; i++) {
  2038. if (i)
  2039. msleep((1 << (i - 1)) * 100);
  2040. pci_read_config_byte(dev, pos + PCI_AF_STATUS, &status);
  2041. if (!(status & PCI_AF_STATUS_TP))
  2042. goto clear;
  2043. }
  2044. dev_err(&dev->dev, "transaction is not cleared; "
  2045. "proceeding with reset anyway\n");
  2046. clear:
  2047. pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
  2048. msleep(100);
  2049. return 0;
  2050. }
  2051. static int pci_pm_reset(struct pci_dev *dev, int probe)
  2052. {
  2053. u16 csr;
  2054. if (!dev->pm_cap)
  2055. return -ENOTTY;
  2056. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
  2057. if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
  2058. return -ENOTTY;
  2059. if (probe)
  2060. return 0;
  2061. if (dev->current_state != PCI_D0)
  2062. return -EINVAL;
  2063. csr &= ~PCI_PM_CTRL_STATE_MASK;
  2064. csr |= PCI_D3hot;
  2065. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
  2066. pci_dev_d3_sleep(dev);
  2067. csr &= ~PCI_PM_CTRL_STATE_MASK;
  2068. csr |= PCI_D0;
  2069. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
  2070. pci_dev_d3_sleep(dev);
  2071. return 0;
  2072. }
  2073. static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
  2074. {
  2075. u16 ctrl;
  2076. struct pci_dev *pdev;
  2077. if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
  2078. return -ENOTTY;
  2079. list_for_each_entry(pdev, &dev->bus->devices, bus_list)
  2080. if (pdev != dev)
  2081. return -ENOTTY;
  2082. if (probe)
  2083. return 0;
  2084. pci_read_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, &ctrl);
  2085. ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
  2086. pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
  2087. msleep(100);
  2088. ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
  2089. pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
  2090. msleep(100);
  2091. return 0;
  2092. }
  2093. static int pci_dev_reset(struct pci_dev *dev, int probe)
  2094. {
  2095. int rc;
  2096. might_sleep();
  2097. if (!probe) {
  2098. pci_block_user_cfg_access(dev);
  2099. /* block PM suspend, driver probe, etc. */
  2100. device_lock(&dev->dev);
  2101. }
  2102. rc = pci_dev_specific_reset(dev, probe);
  2103. if (rc != -ENOTTY)
  2104. goto done;
  2105. rc = pcie_flr(dev, probe);
  2106. if (rc != -ENOTTY)
  2107. goto done;
  2108. rc = pci_af_flr(dev, probe);
  2109. if (rc != -ENOTTY)
  2110. goto done;
  2111. rc = pci_pm_reset(dev, probe);
  2112. if (rc != -ENOTTY)
  2113. goto done;
  2114. rc = pci_parent_bus_reset(dev, probe);
  2115. done:
  2116. if (!probe) {
  2117. device_unlock(&dev->dev);
  2118. pci_unblock_user_cfg_access(dev);
  2119. }
  2120. return rc;
  2121. }
  2122. /**
  2123. * __pci_reset_function - reset a PCI device function
  2124. * @dev: PCI device to reset
  2125. *
  2126. * Some devices allow an individual function to be reset without affecting
  2127. * other functions in the same device. The PCI device must be responsive
  2128. * to PCI config space in order to use this function.
  2129. *
  2130. * The device function is presumed to be unused when this function is called.
  2131. * Resetting the device will make the contents of PCI configuration space
  2132. * random, so any caller of this must be prepared to reinitialise the
  2133. * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
  2134. * etc.
  2135. *
  2136. * Returns 0 if the device function was successfully reset or negative if the
  2137. * device doesn't support resetting a single function.
  2138. */
  2139. int __pci_reset_function(struct pci_dev *dev)
  2140. {
  2141. return pci_dev_reset(dev, 0);
  2142. }
  2143. EXPORT_SYMBOL_GPL(__pci_reset_function);
  2144. /**
  2145. * pci_probe_reset_function - check whether the device can be safely reset
  2146. * @dev: PCI device to reset
  2147. *
  2148. * Some devices allow an individual function to be reset without affecting
  2149. * other functions in the same device. The PCI device must be responsive
  2150. * to PCI config space in order to use this function.
  2151. *
  2152. * Returns 0 if the device function can be reset or negative if the
  2153. * device doesn't support resetting a single function.
  2154. */
  2155. int pci_probe_reset_function(struct pci_dev *dev)
  2156. {
  2157. return pci_dev_reset(dev, 1);
  2158. }
  2159. /**
  2160. * pci_reset_function - quiesce and reset a PCI device function
  2161. * @dev: PCI device to reset
  2162. *
  2163. * Some devices allow an individual function to be reset without affecting
  2164. * other functions in the same device. The PCI device must be responsive
  2165. * to PCI config space in order to use this function.
  2166. *
  2167. * This function does not just reset the PCI portion of a device, but
  2168. * clears all the state associated with the device. This function differs
  2169. * from __pci_reset_function in that it saves and restores device state
  2170. * over the reset.
  2171. *
  2172. * Returns 0 if the device function was successfully reset or negative if the
  2173. * device doesn't support resetting a single function.
  2174. */
  2175. int pci_reset_function(struct pci_dev *dev)
  2176. {
  2177. int rc;
  2178. rc = pci_dev_reset(dev, 1);
  2179. if (rc)
  2180. return rc;
  2181. pci_save_state(dev);
  2182. /*
  2183. * both INTx and MSI are disabled after the Interrupt Disable bit
  2184. * is set and the Bus Master bit is cleared.
  2185. */
  2186. pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
  2187. rc = pci_dev_reset(dev, 0);
  2188. pci_restore_state(dev);
  2189. return rc;
  2190. }
  2191. EXPORT_SYMBOL_GPL(pci_reset_function);
  2192. /**
  2193. * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
  2194. * @dev: PCI device to query
  2195. *
  2196. * Returns mmrbc: maximum designed memory read count in bytes
  2197. * or appropriate error value.
  2198. */
  2199. int pcix_get_max_mmrbc(struct pci_dev *dev)
  2200. {
  2201. int cap;
  2202. u32 stat;
  2203. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  2204. if (!cap)
  2205. return -EINVAL;
  2206. if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
  2207. return -EINVAL;
  2208. return 512 << ((stat & PCI_X_STATUS_MAX_READ) >> 21);
  2209. }
  2210. EXPORT_SYMBOL(pcix_get_max_mmrbc);
  2211. /**
  2212. * pcix_get_mmrbc - get PCI-X maximum memory read byte count
  2213. * @dev: PCI device to query
  2214. *
  2215. * Returns mmrbc: maximum memory read count in bytes
  2216. * or appropriate error value.
  2217. */
  2218. int pcix_get_mmrbc(struct pci_dev *dev)
  2219. {
  2220. int cap;
  2221. u16 cmd;
  2222. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  2223. if (!cap)
  2224. return -EINVAL;
  2225. if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
  2226. return -EINVAL;
  2227. return 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
  2228. }
  2229. EXPORT_SYMBOL(pcix_get_mmrbc);
  2230. /**
  2231. * pcix_set_mmrbc - set PCI-X maximum memory read byte count
  2232. * @dev: PCI device to query
  2233. * @mmrbc: maximum memory read count in bytes
  2234. * valid values are 512, 1024, 2048, 4096
  2235. *
  2236. * If possible sets maximum memory read byte count, some bridges have erratas
  2237. * that prevent this.
  2238. */
  2239. int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
  2240. {
  2241. int cap;
  2242. u32 stat, v, o;
  2243. u16 cmd;
  2244. if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
  2245. return -EINVAL;
  2246. v = ffs(mmrbc) - 10;
  2247. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  2248. if (!cap)
  2249. return -EINVAL;
  2250. if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
  2251. return -EINVAL;
  2252. if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
  2253. return -E2BIG;
  2254. if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
  2255. return -EINVAL;
  2256. o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
  2257. if (o != v) {
  2258. if (v > o && dev->bus &&
  2259. (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
  2260. return -EIO;
  2261. cmd &= ~PCI_X_CMD_MAX_READ;
  2262. cmd |= v << 2;
  2263. if (pci_write_config_word(dev, cap + PCI_X_CMD, cmd))
  2264. return -EIO;
  2265. }
  2266. return 0;
  2267. }
  2268. EXPORT_SYMBOL(pcix_set_mmrbc);
  2269. /**
  2270. * pcie_get_readrq - get PCI Express read request size
  2271. * @dev: PCI device to query
  2272. *
  2273. * Returns maximum memory read request in bytes
  2274. * or appropriate error value.
  2275. */
  2276. int pcie_get_readrq(struct pci_dev *dev)
  2277. {
  2278. int ret, cap;
  2279. u16 ctl;
  2280. cap = pci_pcie_cap(dev);
  2281. if (!cap)
  2282. return -EINVAL;
  2283. ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
  2284. if (!ret)
  2285. ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
  2286. return ret;
  2287. }
  2288. EXPORT_SYMBOL(pcie_get_readrq);
  2289. /**
  2290. * pcie_set_readrq - set PCI Express maximum memory read request
  2291. * @dev: PCI device to query
  2292. * @rq: maximum memory read count in bytes
  2293. * valid values are 128, 256, 512, 1024, 2048, 4096
  2294. *
  2295. * If possible sets maximum read byte count
  2296. */
  2297. int pcie_set_readrq(struct pci_dev *dev, int rq)
  2298. {
  2299. int cap, err = -EINVAL;
  2300. u16 ctl, v;
  2301. if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
  2302. goto out;
  2303. v = (ffs(rq) - 8) << 12;
  2304. cap = pci_pcie_cap(dev);
  2305. if (!cap)
  2306. goto out;
  2307. err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
  2308. if (err)
  2309. goto out;
  2310. if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
  2311. ctl &= ~PCI_EXP_DEVCTL_READRQ;
  2312. ctl |= v;
  2313. err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
  2314. }
  2315. out:
  2316. return err;
  2317. }
  2318. EXPORT_SYMBOL(pcie_set_readrq);
  2319. /**
  2320. * pci_select_bars - Make BAR mask from the type of resource
  2321. * @dev: the PCI device for which BAR mask is made
  2322. * @flags: resource type mask to be selected
  2323. *
  2324. * This helper routine makes bar mask from the type of resource.
  2325. */
  2326. int pci_select_bars(struct pci_dev *dev, unsigned long flags)
  2327. {
  2328. int i, bars = 0;
  2329. for (i = 0; i < PCI_NUM_RESOURCES; i++)
  2330. if (pci_resource_flags(dev, i) & flags)
  2331. bars |= (1 << i);
  2332. return bars;
  2333. }
  2334. /**
  2335. * pci_resource_bar - get position of the BAR associated with a resource
  2336. * @dev: the PCI device
  2337. * @resno: the resource number
  2338. * @type: the BAR type to be filled in
  2339. *
  2340. * Returns BAR position in config space, or 0 if the BAR is invalid.
  2341. */
  2342. int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
  2343. {
  2344. int reg;
  2345. if (resno < PCI_ROM_RESOURCE) {
  2346. *type = pci_bar_unknown;
  2347. return PCI_BASE_ADDRESS_0 + 4 * resno;
  2348. } else if (resno == PCI_ROM_RESOURCE) {
  2349. *type = pci_bar_mem32;
  2350. return dev->rom_base_reg;
  2351. } else if (resno < PCI_BRIDGE_RESOURCES) {
  2352. /* device specific resource */
  2353. reg = pci_iov_resource_bar(dev, resno, type);
  2354. if (reg)
  2355. return reg;
  2356. }
  2357. dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
  2358. return 0;
  2359. }
  2360. /* Some architectures require additional programming to enable VGA */
  2361. static arch_set_vga_state_t arch_set_vga_state;
  2362. void __init pci_register_set_vga_state(arch_set_vga_state_t func)
  2363. {
  2364. arch_set_vga_state = func; /* NULL disables */
  2365. }
  2366. static int pci_set_vga_state_arch(struct pci_dev *dev, bool decode,
  2367. unsigned int command_bits, bool change_bridge)
  2368. {
  2369. if (arch_set_vga_state)
  2370. return arch_set_vga_state(dev, decode, command_bits,
  2371. change_bridge);
  2372. return 0;
  2373. }
  2374. /**
  2375. * pci_set_vga_state - set VGA decode state on device and parents if requested
  2376. * @dev: the PCI device
  2377. * @decode: true = enable decoding, false = disable decoding
  2378. * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
  2379. * @change_bridge: traverse ancestors and change bridges
  2380. */
  2381. int pci_set_vga_state(struct pci_dev *dev, bool decode,
  2382. unsigned int command_bits, bool change_bridge)
  2383. {
  2384. struct pci_bus *bus;
  2385. struct pci_dev *bridge;
  2386. u16 cmd;
  2387. int rc;
  2388. WARN_ON(command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY));
  2389. /* ARCH specific VGA enables */
  2390. rc = pci_set_vga_state_arch(dev, decode, command_bits, change_bridge);
  2391. if (rc)
  2392. return rc;
  2393. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  2394. if (decode == true)
  2395. cmd |= command_bits;
  2396. else
  2397. cmd &= ~command_bits;
  2398. pci_write_config_word(dev, PCI_COMMAND, cmd);
  2399. if (change_bridge == false)
  2400. return 0;
  2401. bus = dev->bus;
  2402. while (bus) {
  2403. bridge = bus->self;
  2404. if (bridge) {
  2405. pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
  2406. &cmd);
  2407. if (decode == true)
  2408. cmd |= PCI_BRIDGE_CTL_VGA;
  2409. else
  2410. cmd &= ~PCI_BRIDGE_CTL_VGA;
  2411. pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
  2412. cmd);
  2413. }
  2414. bus = bus->parent;
  2415. }
  2416. return 0;
  2417. }
  2418. #define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
  2419. static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
  2420. static DEFINE_SPINLOCK(resource_alignment_lock);
  2421. /**
  2422. * pci_specified_resource_alignment - get resource alignment specified by user.
  2423. * @dev: the PCI device to get
  2424. *
  2425. * RETURNS: Resource alignment if it is specified.
  2426. * Zero if it is not specified.
  2427. */
  2428. resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
  2429. {
  2430. int seg, bus, slot, func, align_order, count;
  2431. resource_size_t align = 0;
  2432. char *p;
  2433. spin_lock(&resource_alignment_lock);
  2434. p = resource_alignment_param;
  2435. while (*p) {
  2436. count = 0;
  2437. if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
  2438. p[count] == '@') {
  2439. p += count + 1;
  2440. } else {
  2441. align_order = -1;
  2442. }
  2443. if (sscanf(p, "%x:%x:%x.%x%n",
  2444. &seg, &bus, &slot, &func, &count) != 4) {
  2445. seg = 0;
  2446. if (sscanf(p, "%x:%x.%x%n",
  2447. &bus, &slot, &func, &count) != 3) {
  2448. /* Invalid format */
  2449. printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
  2450. p);
  2451. break;
  2452. }
  2453. }
  2454. p += count;
  2455. if (seg == pci_domain_nr(dev->bus) &&
  2456. bus == dev->bus->number &&
  2457. slot == PCI_SLOT(dev->devfn) &&
  2458. func == PCI_FUNC(dev->devfn)) {
  2459. if (align_order == -1) {
  2460. align = PAGE_SIZE;
  2461. } else {
  2462. align = 1 << align_order;
  2463. }
  2464. /* Found */
  2465. break;
  2466. }
  2467. if (*p != ';' && *p != ',') {
  2468. /* End of param or invalid format */
  2469. break;
  2470. }
  2471. p++;
  2472. }
  2473. spin_unlock(&resource_alignment_lock);
  2474. return align;
  2475. }
  2476. /**
  2477. * pci_is_reassigndev - check if specified PCI is target device to reassign
  2478. * @dev: the PCI device to check
  2479. *
  2480. * RETURNS: non-zero for PCI device is a target device to reassign,
  2481. * or zero is not.
  2482. */
  2483. int pci_is_reassigndev(struct pci_dev *dev)
  2484. {
  2485. return (pci_specified_resource_alignment(dev) != 0);
  2486. }
  2487. ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
  2488. {
  2489. if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
  2490. count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
  2491. spin_lock(&resource_alignment_lock);
  2492. strncpy(resource_alignment_param, buf, count);
  2493. resource_alignment_param[count] = '\0';
  2494. spin_unlock(&resource_alignment_lock);
  2495. return count;
  2496. }
  2497. ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
  2498. {
  2499. size_t count;
  2500. spin_lock(&resource_alignment_lock);
  2501. count = snprintf(buf, size, "%s", resource_alignment_param);
  2502. spin_unlock(&resource_alignment_lock);
  2503. return count;
  2504. }
  2505. static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
  2506. {
  2507. return pci_get_resource_alignment_param(buf, PAGE_SIZE);
  2508. }
  2509. static ssize_t pci_resource_alignment_store(struct bus_type *bus,
  2510. const char *buf, size_t count)
  2511. {
  2512. return pci_set_resource_alignment_param(buf, count);
  2513. }
  2514. BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
  2515. pci_resource_alignment_store);
  2516. static int __init pci_resource_alignment_sysfs_init(void)
  2517. {
  2518. return bus_create_file(&pci_bus_type,
  2519. &bus_attr_resource_alignment);
  2520. }
  2521. late_initcall(pci_resource_alignment_sysfs_init);
  2522. static void __devinit pci_no_domains(void)
  2523. {
  2524. #ifdef CONFIG_PCI_DOMAINS
  2525. pci_domains_supported = 0;
  2526. #endif
  2527. }
  2528. /**
  2529. * pci_ext_cfg_enabled - can we access extended PCI config space?
  2530. * @dev: The PCI device of the root bridge.
  2531. *
  2532. * Returns 1 if we can access PCI extended config space (offsets
  2533. * greater than 0xff). This is the default implementation. Architecture
  2534. * implementations can override this.
  2535. */
  2536. int __attribute__ ((weak)) pci_ext_cfg_avail(struct pci_dev *dev)
  2537. {
  2538. return 1;
  2539. }
  2540. void __weak pci_fixup_cardbus(struct pci_bus *bus)
  2541. {
  2542. }
  2543. EXPORT_SYMBOL(pci_fixup_cardbus);
  2544. static int __init pci_setup(char *str)
  2545. {
  2546. while (str) {
  2547. char *k = strchr(str, ',');
  2548. if (k)
  2549. *k++ = 0;
  2550. if (*str && (str = pcibios_setup(str)) && *str) {
  2551. if (!strcmp(str, "nomsi")) {
  2552. pci_no_msi();
  2553. } else if (!strcmp(str, "noaer")) {
  2554. pci_no_aer();
  2555. } else if (!strcmp(str, "nodomains")) {
  2556. pci_no_domains();
  2557. } else if (!strncmp(str, "cbiosize=", 9)) {
  2558. pci_cardbus_io_size = memparse(str + 9, &str);
  2559. } else if (!strncmp(str, "cbmemsize=", 10)) {
  2560. pci_cardbus_mem_size = memparse(str + 10, &str);
  2561. } else if (!strncmp(str, "resource_alignment=", 19)) {
  2562. pci_set_resource_alignment_param(str + 19,
  2563. strlen(str + 19));
  2564. } else if (!strncmp(str, "ecrc=", 5)) {
  2565. pcie_ecrc_get_policy(str + 5);
  2566. } else if (!strncmp(str, "hpiosize=", 9)) {
  2567. pci_hotplug_io_size = memparse(str + 9, &str);
  2568. } else if (!strncmp(str, "hpmemsize=", 10)) {
  2569. pci_hotplug_mem_size = memparse(str + 10, &str);
  2570. } else {
  2571. printk(KERN_ERR "PCI: Unknown option `%s'\n",
  2572. str);
  2573. }
  2574. }
  2575. str = k;
  2576. }
  2577. return 0;
  2578. }
  2579. early_param("pci", pci_setup);
  2580. EXPORT_SYMBOL(pci_reenable_device);
  2581. EXPORT_SYMBOL(pci_enable_device_io);
  2582. EXPORT_SYMBOL(pci_enable_device_mem);
  2583. EXPORT_SYMBOL(pci_enable_device);
  2584. EXPORT_SYMBOL(pcim_enable_device);
  2585. EXPORT_SYMBOL(pcim_pin_device);
  2586. EXPORT_SYMBOL(pci_disable_device);
  2587. EXPORT_SYMBOL(pci_find_capability);
  2588. EXPORT_SYMBOL(pci_bus_find_capability);
  2589. EXPORT_SYMBOL(pci_release_regions);
  2590. EXPORT_SYMBOL(pci_request_regions);
  2591. EXPORT_SYMBOL(pci_request_regions_exclusive);
  2592. EXPORT_SYMBOL(pci_release_region);
  2593. EXPORT_SYMBOL(pci_request_region);
  2594. EXPORT_SYMBOL(pci_request_region_exclusive);
  2595. EXPORT_SYMBOL(pci_release_selected_regions);
  2596. EXPORT_SYMBOL(pci_request_selected_regions);
  2597. EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
  2598. EXPORT_SYMBOL(pci_set_master);
  2599. EXPORT_SYMBOL(pci_clear_master);
  2600. EXPORT_SYMBOL(pci_set_mwi);
  2601. EXPORT_SYMBOL(pci_try_set_mwi);
  2602. EXPORT_SYMBOL(pci_clear_mwi);
  2603. EXPORT_SYMBOL_GPL(pci_intx);
  2604. EXPORT_SYMBOL(pci_assign_resource);
  2605. EXPORT_SYMBOL(pci_find_parent_resource);
  2606. EXPORT_SYMBOL(pci_select_bars);
  2607. EXPORT_SYMBOL(pci_set_power_state);
  2608. EXPORT_SYMBOL(pci_save_state);
  2609. EXPORT_SYMBOL(pci_restore_state);
  2610. EXPORT_SYMBOL(pci_pme_capable);
  2611. EXPORT_SYMBOL(pci_pme_active);
  2612. EXPORT_SYMBOL(pci_wake_from_d3);
  2613. EXPORT_SYMBOL(pci_target_state);
  2614. EXPORT_SYMBOL(pci_prepare_to_sleep);
  2615. EXPORT_SYMBOL(pci_back_from_sleep);
  2616. EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);