pci.c 77 KB

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