pci.c 79 KB

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