pci.c 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455
  1. /*
  2. * PCI Bus Services, see include/linux/pci.h for further explanation.
  3. *
  4. * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
  5. * David Mosberger-Tang
  6. *
  7. * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
  8. */
  9. #include <linux/kernel.h>
  10. #include <linux/delay.h>
  11. #include <linux/init.h>
  12. #include <linux/pci.h>
  13. #include <linux/pm.h>
  14. #include <linux/slab.h>
  15. #include <linux/module.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/string.h>
  18. #include <linux/log2.h>
  19. #include <linux/pci-aspm.h>
  20. #include <linux/pm_wakeup.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/device.h>
  23. #include <linux/pm_runtime.h>
  24. #include <linux/pci_hotplug.h>
  25. #include <asm-generic/pci-bridge.h>
  26. #include <asm/setup.h>
  27. #include "pci.h"
  28. const char *pci_power_names[] = {
  29. "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
  30. };
  31. EXPORT_SYMBOL_GPL(pci_power_names);
  32. int isa_dma_bridge_buggy;
  33. EXPORT_SYMBOL(isa_dma_bridge_buggy);
  34. int pci_pci_problems;
  35. EXPORT_SYMBOL(pci_pci_problems);
  36. unsigned int pci_pm_d3_delay;
  37. static void pci_pme_list_scan(struct work_struct *work);
  38. static LIST_HEAD(pci_pme_list);
  39. static DEFINE_MUTEX(pci_pme_list_mutex);
  40. static DECLARE_DELAYED_WORK(pci_pme_work, pci_pme_list_scan);
  41. struct pci_pme_device {
  42. struct list_head list;
  43. struct pci_dev *dev;
  44. };
  45. #define PME_TIMEOUT 1000 /* How long between PME checks */
  46. static void pci_dev_d3_sleep(struct pci_dev *dev)
  47. {
  48. unsigned int delay = dev->d3_delay;
  49. if (delay < pci_pm_d3_delay)
  50. delay = pci_pm_d3_delay;
  51. msleep(delay);
  52. }
  53. #ifdef CONFIG_PCI_DOMAINS
  54. int pci_domains_supported = 1;
  55. #endif
  56. #define DEFAULT_CARDBUS_IO_SIZE (256)
  57. #define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
  58. /* pci=cbmemsize=nnM,cbiosize=nn can override this */
  59. unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
  60. unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
  61. #define DEFAULT_HOTPLUG_IO_SIZE (256)
  62. #define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
  63. /* pci=hpmemsize=nnM,hpiosize=nn can override this */
  64. unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
  65. unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
  66. enum pcie_bus_config_types pcie_bus_config = PCIE_BUS_TUNE_OFF;
  67. /*
  68. * The default CLS is used if arch didn't set CLS explicitly and not
  69. * all pci devices agree on the same value. Arch can override either
  70. * the dfl or actual value as it sees fit. Don't forget this is
  71. * measured in 32-bit words, not bytes.
  72. */
  73. u8 pci_dfl_cache_line_size = L1_CACHE_BYTES >> 2;
  74. u8 pci_cache_line_size;
  75. /*
  76. * If we set up a device for bus mastering, we need to check the latency
  77. * timer as certain BIOSes forget to set it properly.
  78. */
  79. unsigned int pcibios_max_latency = 255;
  80. /* If set, the PCIe ARI capability will not be used. */
  81. static bool pcie_ari_disabled;
  82. /**
  83. * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
  84. * @bus: pointer to PCI bus structure to search
  85. *
  86. * Given a PCI bus, returns the highest PCI bus number present in the set
  87. * including the given PCI bus and its list of child PCI buses.
  88. */
  89. unsigned char pci_bus_max_busnr(struct pci_bus* bus)
  90. {
  91. struct pci_bus *tmp;
  92. unsigned char max, n;
  93. max = bus->busn_res.end;
  94. list_for_each_entry(tmp, &bus->children, node) {
  95. n = pci_bus_max_busnr(tmp);
  96. if(n > max)
  97. max = n;
  98. }
  99. return max;
  100. }
  101. EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
  102. #ifdef CONFIG_HAS_IOMEM
  103. void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
  104. {
  105. /*
  106. * Make sure the BAR is actually a memory resource, not an IO resource
  107. */
  108. if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
  109. WARN_ON(1);
  110. return NULL;
  111. }
  112. return ioremap_nocache(pci_resource_start(pdev, bar),
  113. pci_resource_len(pdev, bar));
  114. }
  115. EXPORT_SYMBOL_GPL(pci_ioremap_bar);
  116. #endif
  117. #define PCI_FIND_CAP_TTL 48
  118. static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
  119. u8 pos, int cap, int *ttl)
  120. {
  121. u8 id;
  122. while ((*ttl)--) {
  123. pci_bus_read_config_byte(bus, devfn, pos, &pos);
  124. if (pos < 0x40)
  125. break;
  126. pos &= ~3;
  127. pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
  128. &id);
  129. if (id == 0xff)
  130. break;
  131. if (id == cap)
  132. return pos;
  133. pos += PCI_CAP_LIST_NEXT;
  134. }
  135. return 0;
  136. }
  137. static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
  138. u8 pos, int cap)
  139. {
  140. int ttl = PCI_FIND_CAP_TTL;
  141. return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
  142. }
  143. int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
  144. {
  145. return __pci_find_next_cap(dev->bus, dev->devfn,
  146. pos + PCI_CAP_LIST_NEXT, cap);
  147. }
  148. EXPORT_SYMBOL_GPL(pci_find_next_capability);
  149. static int __pci_bus_find_cap_start(struct pci_bus *bus,
  150. unsigned int devfn, u8 hdr_type)
  151. {
  152. u16 status;
  153. pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
  154. if (!(status & PCI_STATUS_CAP_LIST))
  155. return 0;
  156. switch (hdr_type) {
  157. case PCI_HEADER_TYPE_NORMAL:
  158. case PCI_HEADER_TYPE_BRIDGE:
  159. return PCI_CAPABILITY_LIST;
  160. case PCI_HEADER_TYPE_CARDBUS:
  161. return PCI_CB_CAPABILITY_LIST;
  162. default:
  163. return 0;
  164. }
  165. return 0;
  166. }
  167. /**
  168. * pci_find_capability - query for devices' capabilities
  169. * @dev: PCI device to query
  170. * @cap: capability code
  171. *
  172. * Tell if a device supports a given PCI capability.
  173. * Returns the address of the requested capability structure within the
  174. * device's PCI configuration space or 0 in case the device does not
  175. * support it. Possible values for @cap:
  176. *
  177. * %PCI_CAP_ID_PM Power Management
  178. * %PCI_CAP_ID_AGP Accelerated Graphics Port
  179. * %PCI_CAP_ID_VPD Vital Product Data
  180. * %PCI_CAP_ID_SLOTID Slot Identification
  181. * %PCI_CAP_ID_MSI Message Signalled Interrupts
  182. * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
  183. * %PCI_CAP_ID_PCIX PCI-X
  184. * %PCI_CAP_ID_EXP PCI Express
  185. */
  186. int pci_find_capability(struct pci_dev *dev, int cap)
  187. {
  188. int pos;
  189. pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
  190. if (pos)
  191. pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
  192. return pos;
  193. }
  194. /**
  195. * pci_bus_find_capability - query for devices' capabilities
  196. * @bus: the PCI bus to query
  197. * @devfn: PCI device to query
  198. * @cap: capability code
  199. *
  200. * Like pci_find_capability() but works for pci devices that do not have a
  201. * pci_dev structure set up yet.
  202. *
  203. * Returns the address of the requested capability structure within the
  204. * device's PCI configuration space or 0 in case the device does not
  205. * support it.
  206. */
  207. int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
  208. {
  209. int pos;
  210. u8 hdr_type;
  211. pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
  212. pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
  213. if (pos)
  214. pos = __pci_find_next_cap(bus, devfn, pos, cap);
  215. return pos;
  216. }
  217. /**
  218. * pci_find_next_ext_capability - Find an extended capability
  219. * @dev: PCI device to query
  220. * @start: address at which to start looking (0 to start at beginning of list)
  221. * @cap: capability code
  222. *
  223. * Returns the address of the next matching extended capability structure
  224. * within the device's PCI configuration space or 0 if the device does
  225. * not support it. Some capabilities can occur several times, e.g., the
  226. * vendor-specific capability, and this provides a way to find them all.
  227. */
  228. int pci_find_next_ext_capability(struct pci_dev *dev, int start, int cap)
  229. {
  230. u32 header;
  231. int ttl;
  232. int pos = PCI_CFG_SPACE_SIZE;
  233. /* minimum 8 bytes per capability */
  234. ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
  235. if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
  236. return 0;
  237. if (start)
  238. pos = start;
  239. if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
  240. return 0;
  241. /*
  242. * If we have no capabilities, this is indicated by cap ID,
  243. * cap version and next pointer all being 0.
  244. */
  245. if (header == 0)
  246. return 0;
  247. while (ttl-- > 0) {
  248. if (PCI_EXT_CAP_ID(header) == cap && pos != start)
  249. return pos;
  250. pos = PCI_EXT_CAP_NEXT(header);
  251. if (pos < PCI_CFG_SPACE_SIZE)
  252. break;
  253. if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
  254. break;
  255. }
  256. return 0;
  257. }
  258. EXPORT_SYMBOL_GPL(pci_find_next_ext_capability);
  259. /**
  260. * pci_find_ext_capability - Find an extended capability
  261. * @dev: PCI device to query
  262. * @cap: capability code
  263. *
  264. * Returns the address of the requested extended capability structure
  265. * within the device's PCI configuration space or 0 if the device does
  266. * not support it. Possible values for @cap:
  267. *
  268. * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
  269. * %PCI_EXT_CAP_ID_VC Virtual Channel
  270. * %PCI_EXT_CAP_ID_DSN Device Serial Number
  271. * %PCI_EXT_CAP_ID_PWR Power Budgeting
  272. */
  273. int pci_find_ext_capability(struct pci_dev *dev, int cap)
  274. {
  275. return pci_find_next_ext_capability(dev, 0, cap);
  276. }
  277. EXPORT_SYMBOL_GPL(pci_find_ext_capability);
  278. static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
  279. {
  280. int rc, ttl = PCI_FIND_CAP_TTL;
  281. u8 cap, mask;
  282. if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
  283. mask = HT_3BIT_CAP_MASK;
  284. else
  285. mask = HT_5BIT_CAP_MASK;
  286. pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
  287. PCI_CAP_ID_HT, &ttl);
  288. while (pos) {
  289. rc = pci_read_config_byte(dev, pos + 3, &cap);
  290. if (rc != PCIBIOS_SUCCESSFUL)
  291. return 0;
  292. if ((cap & mask) == ht_cap)
  293. return pos;
  294. pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
  295. pos + PCI_CAP_LIST_NEXT,
  296. PCI_CAP_ID_HT, &ttl);
  297. }
  298. return 0;
  299. }
  300. /**
  301. * pci_find_next_ht_capability - query a device's Hypertransport capabilities
  302. * @dev: PCI device to query
  303. * @pos: Position from which to continue searching
  304. * @ht_cap: Hypertransport capability code
  305. *
  306. * To be used in conjunction with pci_find_ht_capability() to search for
  307. * all capabilities matching @ht_cap. @pos should always be a value returned
  308. * from pci_find_ht_capability().
  309. *
  310. * NB. To be 100% safe against broken PCI devices, the caller should take
  311. * steps to avoid an infinite loop.
  312. */
  313. int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
  314. {
  315. return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
  316. }
  317. EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
  318. /**
  319. * pci_find_ht_capability - query a device's Hypertransport capabilities
  320. * @dev: PCI device to query
  321. * @ht_cap: Hypertransport capability code
  322. *
  323. * Tell if a device supports a given Hypertransport capability.
  324. * Returns an address within the device's PCI configuration space
  325. * or 0 in case the device does not support the request capability.
  326. * The address points to the PCI capability, of type PCI_CAP_ID_HT,
  327. * which has a Hypertransport capability matching @ht_cap.
  328. */
  329. int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
  330. {
  331. int pos;
  332. pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
  333. if (pos)
  334. pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
  335. return pos;
  336. }
  337. EXPORT_SYMBOL_GPL(pci_find_ht_capability);
  338. /**
  339. * pci_find_parent_resource - return resource region of parent bus of given region
  340. * @dev: PCI device structure contains resources to be searched
  341. * @res: child resource record for which parent is sought
  342. *
  343. * For given resource region of given device, return the resource
  344. * region of parent bus the given region is contained in.
  345. */
  346. struct resource *
  347. pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
  348. {
  349. const struct pci_bus *bus = dev->bus;
  350. struct resource *r;
  351. int i;
  352. pci_bus_for_each_resource(bus, r, i) {
  353. if (!r)
  354. continue;
  355. if (res->start && resource_contains(r, res)) {
  356. /*
  357. * If the window is prefetchable but the BAR is
  358. * not, the allocator made a mistake.
  359. */
  360. if (r->flags & IORESOURCE_PREFETCH &&
  361. !(res->flags & IORESOURCE_PREFETCH))
  362. return NULL;
  363. /*
  364. * If we're below a transparent bridge, there may
  365. * be both a positively-decoded aperture and a
  366. * subtractively-decoded region that contain the BAR.
  367. * We want the positively-decoded one, so this depends
  368. * on pci_bus_for_each_resource() giving us those
  369. * first.
  370. */
  371. return r;
  372. }
  373. }
  374. return NULL;
  375. }
  376. /**
  377. * pci_wait_for_pending - wait for @mask bit(s) to clear in status word @pos
  378. * @dev: the PCI device to operate on
  379. * @pos: config space offset of status word
  380. * @mask: mask of bit(s) to care about in status word
  381. *
  382. * Return 1 when mask bit(s) in status word clear, 0 otherwise.
  383. */
  384. int pci_wait_for_pending(struct pci_dev *dev, int pos, u16 mask)
  385. {
  386. int i;
  387. /* Wait for Transaction Pending bit clean */
  388. for (i = 0; i < 4; i++) {
  389. u16 status;
  390. if (i)
  391. msleep((1 << (i - 1)) * 100);
  392. pci_read_config_word(dev, pos, &status);
  393. if (!(status & mask))
  394. return 1;
  395. }
  396. return 0;
  397. }
  398. /**
  399. * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
  400. * @dev: PCI device to have its BARs restored
  401. *
  402. * Restore the BAR values for a given device, so as to make it
  403. * accessible by its driver.
  404. */
  405. static void
  406. pci_restore_bars(struct pci_dev *dev)
  407. {
  408. int i;
  409. for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
  410. pci_update_resource(dev, i);
  411. }
  412. static struct pci_platform_pm_ops *pci_platform_pm;
  413. int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
  414. {
  415. if (!ops->is_manageable || !ops->set_state || !ops->choose_state
  416. || !ops->sleep_wake)
  417. return -EINVAL;
  418. pci_platform_pm = ops;
  419. return 0;
  420. }
  421. static inline bool platform_pci_power_manageable(struct pci_dev *dev)
  422. {
  423. return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
  424. }
  425. static inline int platform_pci_set_power_state(struct pci_dev *dev,
  426. pci_power_t t)
  427. {
  428. return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
  429. }
  430. static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
  431. {
  432. return pci_platform_pm ?
  433. pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
  434. }
  435. static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
  436. {
  437. return pci_platform_pm ?
  438. pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
  439. }
  440. static inline int platform_pci_run_wake(struct pci_dev *dev, bool enable)
  441. {
  442. return pci_platform_pm ?
  443. pci_platform_pm->run_wake(dev, enable) : -ENODEV;
  444. }
  445. /**
  446. * pci_raw_set_power_state - Use PCI PM registers to set the power state of
  447. * given PCI device
  448. * @dev: PCI device to handle.
  449. * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
  450. *
  451. * RETURN VALUE:
  452. * -EINVAL if the requested state is invalid.
  453. * -EIO if device does not support PCI PM or its PM capabilities register has a
  454. * wrong version, or device doesn't support the requested state.
  455. * 0 if device already is in the requested state.
  456. * 0 if device's power state has been successfully changed.
  457. */
  458. static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
  459. {
  460. u16 pmcsr;
  461. bool need_restore = false;
  462. /* Check if we're already there */
  463. if (dev->current_state == state)
  464. return 0;
  465. if (!dev->pm_cap)
  466. return -EIO;
  467. if (state < PCI_D0 || state > PCI_D3hot)
  468. return -EINVAL;
  469. /* Validate current state:
  470. * Can enter D0 from any state, but if we can only go deeper
  471. * to sleep if we're already in a low power state
  472. */
  473. if (state != PCI_D0 && dev->current_state <= PCI_D3cold
  474. && dev->current_state > state) {
  475. dev_err(&dev->dev, "invalid power transition "
  476. "(from state %d to %d)\n", dev->current_state, state);
  477. return -EINVAL;
  478. }
  479. /* check if this device supports the desired state */
  480. if ((state == PCI_D1 && !dev->d1_support)
  481. || (state == PCI_D2 && !dev->d2_support))
  482. return -EIO;
  483. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  484. /* If we're (effectively) in D3, force entire word to 0.
  485. * This doesn't affect PME_Status, disables PME_En, and
  486. * sets PowerState to 0.
  487. */
  488. switch (dev->current_state) {
  489. case PCI_D0:
  490. case PCI_D1:
  491. case PCI_D2:
  492. pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
  493. pmcsr |= state;
  494. break;
  495. case PCI_D3hot:
  496. case PCI_D3cold:
  497. case PCI_UNKNOWN: /* Boot-up */
  498. if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
  499. && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
  500. need_restore = true;
  501. /* Fall-through: force to D0 */
  502. default:
  503. pmcsr = 0;
  504. break;
  505. }
  506. /* enter specified state */
  507. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
  508. /* Mandatory power management transition delays */
  509. /* see PCI PM 1.1 5.6.1 table 18 */
  510. if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
  511. pci_dev_d3_sleep(dev);
  512. else if (state == PCI_D2 || dev->current_state == PCI_D2)
  513. udelay(PCI_PM_D2_DELAY);
  514. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  515. dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
  516. if (dev->current_state != state && printk_ratelimit())
  517. dev_info(&dev->dev, "Refused to change power state, "
  518. "currently in D%d\n", dev->current_state);
  519. /*
  520. * According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
  521. * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
  522. * from D3hot to D0 _may_ perform an internal reset, thereby
  523. * going to "D0 Uninitialized" rather than "D0 Initialized".
  524. * For example, at least some versions of the 3c905B and the
  525. * 3c556B exhibit this behaviour.
  526. *
  527. * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
  528. * devices in a D3hot state at boot. Consequently, we need to
  529. * restore at least the BARs so that the device will be
  530. * accessible to its driver.
  531. */
  532. if (need_restore)
  533. pci_restore_bars(dev);
  534. if (dev->bus->self)
  535. pcie_aspm_pm_state_change(dev->bus->self);
  536. return 0;
  537. }
  538. /**
  539. * pci_update_current_state - Read PCI power state of given device from its
  540. * PCI PM registers and cache it
  541. * @dev: PCI device to handle.
  542. * @state: State to cache in case the device doesn't have the PM capability
  543. */
  544. void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
  545. {
  546. if (dev->pm_cap) {
  547. u16 pmcsr;
  548. /*
  549. * Configuration space is not accessible for device in
  550. * D3cold, so just keep or set D3cold for safety
  551. */
  552. if (dev->current_state == PCI_D3cold)
  553. return;
  554. if (state == PCI_D3cold) {
  555. dev->current_state = PCI_D3cold;
  556. return;
  557. }
  558. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  559. dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
  560. } else {
  561. dev->current_state = state;
  562. }
  563. }
  564. /**
  565. * pci_power_up - Put the given device into D0 forcibly
  566. * @dev: PCI device to power up
  567. */
  568. void pci_power_up(struct pci_dev *dev)
  569. {
  570. if (platform_pci_power_manageable(dev))
  571. platform_pci_set_power_state(dev, PCI_D0);
  572. pci_raw_set_power_state(dev, PCI_D0);
  573. pci_update_current_state(dev, PCI_D0);
  574. }
  575. /**
  576. * pci_platform_power_transition - Use platform to change device power state
  577. * @dev: PCI device to handle.
  578. * @state: State to put the device into.
  579. */
  580. static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
  581. {
  582. int error;
  583. if (platform_pci_power_manageable(dev)) {
  584. error = platform_pci_set_power_state(dev, state);
  585. if (!error)
  586. pci_update_current_state(dev, state);
  587. } else
  588. error = -ENODEV;
  589. if (error && !dev->pm_cap) /* Fall back to PCI_D0 */
  590. dev->current_state = PCI_D0;
  591. return error;
  592. }
  593. /**
  594. * pci_wakeup - Wake up a PCI device
  595. * @pci_dev: Device to handle.
  596. * @ign: ignored parameter
  597. */
  598. static int pci_wakeup(struct pci_dev *pci_dev, void *ign)
  599. {
  600. pci_wakeup_event(pci_dev);
  601. pm_request_resume(&pci_dev->dev);
  602. return 0;
  603. }
  604. /**
  605. * pci_wakeup_bus - Walk given bus and wake up devices on it
  606. * @bus: Top bus of the subtree to walk.
  607. */
  608. static void pci_wakeup_bus(struct pci_bus *bus)
  609. {
  610. if (bus)
  611. pci_walk_bus(bus, pci_wakeup, NULL);
  612. }
  613. /**
  614. * __pci_start_power_transition - Start power transition of a PCI device
  615. * @dev: PCI device to handle.
  616. * @state: State to put the device into.
  617. */
  618. static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
  619. {
  620. if (state == PCI_D0) {
  621. pci_platform_power_transition(dev, PCI_D0);
  622. /*
  623. * Mandatory power management transition delays, see
  624. * PCI Express Base Specification Revision 2.0 Section
  625. * 6.6.1: Conventional Reset. Do not delay for
  626. * devices powered on/off by corresponding bridge,
  627. * because have already delayed for the bridge.
  628. */
  629. if (dev->runtime_d3cold) {
  630. msleep(dev->d3cold_delay);
  631. /*
  632. * When powering on a bridge from D3cold, the
  633. * whole hierarchy may be powered on into
  634. * D0uninitialized state, resume them to give
  635. * them a chance to suspend again
  636. */
  637. pci_wakeup_bus(dev->subordinate);
  638. }
  639. }
  640. }
  641. /**
  642. * __pci_dev_set_current_state - Set current state of a PCI device
  643. * @dev: Device to handle
  644. * @data: pointer to state to be set
  645. */
  646. static int __pci_dev_set_current_state(struct pci_dev *dev, void *data)
  647. {
  648. pci_power_t state = *(pci_power_t *)data;
  649. dev->current_state = state;
  650. return 0;
  651. }
  652. /**
  653. * __pci_bus_set_current_state - Walk given bus and set current state of devices
  654. * @bus: Top bus of the subtree to walk.
  655. * @state: state to be set
  656. */
  657. static void __pci_bus_set_current_state(struct pci_bus *bus, pci_power_t state)
  658. {
  659. if (bus)
  660. pci_walk_bus(bus, __pci_dev_set_current_state, &state);
  661. }
  662. /**
  663. * __pci_complete_power_transition - Complete power transition of a PCI device
  664. * @dev: PCI device to handle.
  665. * @state: State to put the device into.
  666. *
  667. * This function should not be called directly by device drivers.
  668. */
  669. int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
  670. {
  671. int ret;
  672. if (state <= PCI_D0)
  673. return -EINVAL;
  674. ret = pci_platform_power_transition(dev, state);
  675. /* Power off the bridge may power off the whole hierarchy */
  676. if (!ret && state == PCI_D3cold)
  677. __pci_bus_set_current_state(dev->subordinate, PCI_D3cold);
  678. return ret;
  679. }
  680. EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
  681. /**
  682. * pci_set_power_state - Set the power state of a PCI device
  683. * @dev: PCI device to handle.
  684. * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
  685. *
  686. * Transition a device to a new power state, using the platform firmware and/or
  687. * the device's PCI PM registers.
  688. *
  689. * RETURN VALUE:
  690. * -EINVAL if the requested state is invalid.
  691. * -EIO if device does not support PCI PM or its PM capabilities register has a
  692. * wrong version, or device doesn't support the requested state.
  693. * 0 if device already is in the requested state.
  694. * 0 if device's power state has been successfully changed.
  695. */
  696. int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
  697. {
  698. int error;
  699. /* bound the state we're entering */
  700. if (state > PCI_D3cold)
  701. state = PCI_D3cold;
  702. else if (state < PCI_D0)
  703. state = PCI_D0;
  704. else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
  705. /*
  706. * If the device or the parent bridge do not support PCI PM,
  707. * ignore the request if we're doing anything other than putting
  708. * it into D0 (which would only happen on boot).
  709. */
  710. return 0;
  711. /* Check if we're already there */
  712. if (dev->current_state == state)
  713. return 0;
  714. __pci_start_power_transition(dev, state);
  715. /* This device is quirked not to be put into D3, so
  716. don't put it in D3 */
  717. if (state >= PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
  718. return 0;
  719. /*
  720. * To put device in D3cold, we put device into D3hot in native
  721. * way, then put device into D3cold with platform ops
  722. */
  723. error = pci_raw_set_power_state(dev, state > PCI_D3hot ?
  724. PCI_D3hot : state);
  725. if (!__pci_complete_power_transition(dev, state))
  726. error = 0;
  727. /*
  728. * When aspm_policy is "powersave" this call ensures
  729. * that ASPM is configured.
  730. */
  731. if (!error && dev->bus->self)
  732. pcie_aspm_powersave_config_link(dev->bus->self);
  733. return error;
  734. }
  735. /**
  736. * pci_choose_state - Choose the power state of a PCI device
  737. * @dev: PCI device to be suspended
  738. * @state: target sleep state for the whole system. This is the value
  739. * that is passed to suspend() function.
  740. *
  741. * Returns PCI power state suitable for given device and given system
  742. * message.
  743. */
  744. pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
  745. {
  746. pci_power_t ret;
  747. if (!dev->pm_cap)
  748. return PCI_D0;
  749. ret = platform_pci_choose_state(dev);
  750. if (ret != PCI_POWER_ERROR)
  751. return ret;
  752. switch (state.event) {
  753. case PM_EVENT_ON:
  754. return PCI_D0;
  755. case PM_EVENT_FREEZE:
  756. case PM_EVENT_PRETHAW:
  757. /* REVISIT both freeze and pre-thaw "should" use D0 */
  758. case PM_EVENT_SUSPEND:
  759. case PM_EVENT_HIBERNATE:
  760. return PCI_D3hot;
  761. default:
  762. dev_info(&dev->dev, "unrecognized suspend event %d\n",
  763. state.event);
  764. BUG();
  765. }
  766. return PCI_D0;
  767. }
  768. EXPORT_SYMBOL(pci_choose_state);
  769. #define PCI_EXP_SAVE_REGS 7
  770. static struct pci_cap_saved_state *_pci_find_saved_cap(struct pci_dev *pci_dev,
  771. u16 cap, bool extended)
  772. {
  773. struct pci_cap_saved_state *tmp;
  774. hlist_for_each_entry(tmp, &pci_dev->saved_cap_space, next) {
  775. if (tmp->cap.cap_extended == extended && tmp->cap.cap_nr == cap)
  776. return tmp;
  777. }
  778. return NULL;
  779. }
  780. struct pci_cap_saved_state *pci_find_saved_cap(struct pci_dev *dev, char cap)
  781. {
  782. return _pci_find_saved_cap(dev, cap, false);
  783. }
  784. struct pci_cap_saved_state *pci_find_saved_ext_cap(struct pci_dev *dev, u16 cap)
  785. {
  786. return _pci_find_saved_cap(dev, cap, true);
  787. }
  788. static int pci_save_pcie_state(struct pci_dev *dev)
  789. {
  790. int i = 0;
  791. struct pci_cap_saved_state *save_state;
  792. u16 *cap;
  793. if (!pci_is_pcie(dev))
  794. return 0;
  795. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
  796. if (!save_state) {
  797. dev_err(&dev->dev, "buffer not found in %s\n", __func__);
  798. return -ENOMEM;
  799. }
  800. cap = (u16 *)&save_state->cap.data[0];
  801. pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &cap[i++]);
  802. pcie_capability_read_word(dev, PCI_EXP_LNKCTL, &cap[i++]);
  803. pcie_capability_read_word(dev, PCI_EXP_SLTCTL, &cap[i++]);
  804. pcie_capability_read_word(dev, PCI_EXP_RTCTL, &cap[i++]);
  805. pcie_capability_read_word(dev, PCI_EXP_DEVCTL2, &cap[i++]);
  806. pcie_capability_read_word(dev, PCI_EXP_LNKCTL2, &cap[i++]);
  807. pcie_capability_read_word(dev, PCI_EXP_SLTCTL2, &cap[i++]);
  808. return 0;
  809. }
  810. static void pci_restore_pcie_state(struct pci_dev *dev)
  811. {
  812. int i = 0;
  813. struct pci_cap_saved_state *save_state;
  814. u16 *cap;
  815. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
  816. if (!save_state)
  817. return;
  818. cap = (u16 *)&save_state->cap.data[0];
  819. pcie_capability_write_word(dev, PCI_EXP_DEVCTL, cap[i++]);
  820. pcie_capability_write_word(dev, PCI_EXP_LNKCTL, cap[i++]);
  821. pcie_capability_write_word(dev, PCI_EXP_SLTCTL, cap[i++]);
  822. pcie_capability_write_word(dev, PCI_EXP_RTCTL, cap[i++]);
  823. pcie_capability_write_word(dev, PCI_EXP_DEVCTL2, cap[i++]);
  824. pcie_capability_write_word(dev, PCI_EXP_LNKCTL2, cap[i++]);
  825. pcie_capability_write_word(dev, PCI_EXP_SLTCTL2, cap[i++]);
  826. }
  827. static int pci_save_pcix_state(struct pci_dev *dev)
  828. {
  829. int pos;
  830. struct pci_cap_saved_state *save_state;
  831. pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  832. if (pos <= 0)
  833. return 0;
  834. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
  835. if (!save_state) {
  836. dev_err(&dev->dev, "buffer not found in %s\n", __func__);
  837. return -ENOMEM;
  838. }
  839. pci_read_config_word(dev, pos + PCI_X_CMD,
  840. (u16 *)save_state->cap.data);
  841. return 0;
  842. }
  843. static void pci_restore_pcix_state(struct pci_dev *dev)
  844. {
  845. int i = 0, pos;
  846. struct pci_cap_saved_state *save_state;
  847. u16 *cap;
  848. save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
  849. pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  850. if (!save_state || pos <= 0)
  851. return;
  852. cap = (u16 *)&save_state->cap.data[0];
  853. pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
  854. }
  855. /**
  856. * pci_save_state - save the PCI configuration space of a device before suspending
  857. * @dev: - PCI device that we're dealing with
  858. */
  859. int
  860. pci_save_state(struct pci_dev *dev)
  861. {
  862. int i;
  863. /* XXX: 100% dword access ok here? */
  864. for (i = 0; i < 16; i++)
  865. pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
  866. dev->state_saved = true;
  867. if ((i = pci_save_pcie_state(dev)) != 0)
  868. return i;
  869. if ((i = pci_save_pcix_state(dev)) != 0)
  870. return i;
  871. if ((i = pci_save_vc_state(dev)) != 0)
  872. return i;
  873. return 0;
  874. }
  875. static void pci_restore_config_dword(struct pci_dev *pdev, int offset,
  876. u32 saved_val, int retry)
  877. {
  878. u32 val;
  879. pci_read_config_dword(pdev, offset, &val);
  880. if (val == saved_val)
  881. return;
  882. for (;;) {
  883. dev_dbg(&pdev->dev, "restoring config space at offset "
  884. "%#x (was %#x, writing %#x)\n", offset, val, saved_val);
  885. pci_write_config_dword(pdev, offset, saved_val);
  886. if (retry-- <= 0)
  887. return;
  888. pci_read_config_dword(pdev, offset, &val);
  889. if (val == saved_val)
  890. return;
  891. mdelay(1);
  892. }
  893. }
  894. static void pci_restore_config_space_range(struct pci_dev *pdev,
  895. int start, int end, int retry)
  896. {
  897. int index;
  898. for (index = end; index >= start; index--)
  899. pci_restore_config_dword(pdev, 4 * index,
  900. pdev->saved_config_space[index],
  901. retry);
  902. }
  903. static void pci_restore_config_space(struct pci_dev *pdev)
  904. {
  905. if (pdev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
  906. pci_restore_config_space_range(pdev, 10, 15, 0);
  907. /* Restore BARs before the command register. */
  908. pci_restore_config_space_range(pdev, 4, 9, 10);
  909. pci_restore_config_space_range(pdev, 0, 3, 0);
  910. } else {
  911. pci_restore_config_space_range(pdev, 0, 15, 0);
  912. }
  913. }
  914. /**
  915. * pci_restore_state - Restore the saved state of a PCI device
  916. * @dev: - PCI device that we're dealing with
  917. */
  918. void pci_restore_state(struct pci_dev *dev)
  919. {
  920. if (!dev->state_saved)
  921. return;
  922. /* PCI Express register must be restored first */
  923. pci_restore_pcie_state(dev);
  924. pci_restore_ats_state(dev);
  925. pci_restore_vc_state(dev);
  926. pci_restore_config_space(dev);
  927. pci_restore_pcix_state(dev);
  928. pci_restore_msi_state(dev);
  929. pci_restore_iov_state(dev);
  930. dev->state_saved = false;
  931. }
  932. struct pci_saved_state {
  933. u32 config_space[16];
  934. struct pci_cap_saved_data cap[0];
  935. };
  936. /**
  937. * pci_store_saved_state - Allocate and return an opaque struct containing
  938. * the device saved state.
  939. * @dev: PCI device that we're dealing with
  940. *
  941. * Return NULL if no state or error.
  942. */
  943. struct pci_saved_state *pci_store_saved_state(struct pci_dev *dev)
  944. {
  945. struct pci_saved_state *state;
  946. struct pci_cap_saved_state *tmp;
  947. struct pci_cap_saved_data *cap;
  948. size_t size;
  949. if (!dev->state_saved)
  950. return NULL;
  951. size = sizeof(*state) + sizeof(struct pci_cap_saved_data);
  952. hlist_for_each_entry(tmp, &dev->saved_cap_space, next)
  953. size += sizeof(struct pci_cap_saved_data) + tmp->cap.size;
  954. state = kzalloc(size, GFP_KERNEL);
  955. if (!state)
  956. return NULL;
  957. memcpy(state->config_space, dev->saved_config_space,
  958. sizeof(state->config_space));
  959. cap = state->cap;
  960. hlist_for_each_entry(tmp, &dev->saved_cap_space, next) {
  961. size_t len = sizeof(struct pci_cap_saved_data) + tmp->cap.size;
  962. memcpy(cap, &tmp->cap, len);
  963. cap = (struct pci_cap_saved_data *)((u8 *)cap + len);
  964. }
  965. /* Empty cap_save terminates list */
  966. return state;
  967. }
  968. EXPORT_SYMBOL_GPL(pci_store_saved_state);
  969. /**
  970. * pci_load_saved_state - Reload the provided save state into struct pci_dev.
  971. * @dev: PCI device that we're dealing with
  972. * @state: Saved state returned from pci_store_saved_state()
  973. */
  974. static int pci_load_saved_state(struct pci_dev *dev,
  975. struct pci_saved_state *state)
  976. {
  977. struct pci_cap_saved_data *cap;
  978. dev->state_saved = false;
  979. if (!state)
  980. return 0;
  981. memcpy(dev->saved_config_space, state->config_space,
  982. sizeof(state->config_space));
  983. cap = state->cap;
  984. while (cap->size) {
  985. struct pci_cap_saved_state *tmp;
  986. tmp = _pci_find_saved_cap(dev, cap->cap_nr, cap->cap_extended);
  987. if (!tmp || tmp->cap.size != cap->size)
  988. return -EINVAL;
  989. memcpy(tmp->cap.data, cap->data, tmp->cap.size);
  990. cap = (struct pci_cap_saved_data *)((u8 *)cap +
  991. sizeof(struct pci_cap_saved_data) + cap->size);
  992. }
  993. dev->state_saved = true;
  994. return 0;
  995. }
  996. /**
  997. * pci_load_and_free_saved_state - Reload the save state pointed to by state,
  998. * and free the memory allocated for it.
  999. * @dev: PCI device that we're dealing with
  1000. * @state: Pointer to saved state returned from pci_store_saved_state()
  1001. */
  1002. int pci_load_and_free_saved_state(struct pci_dev *dev,
  1003. struct pci_saved_state **state)
  1004. {
  1005. int ret = pci_load_saved_state(dev, *state);
  1006. kfree(*state);
  1007. *state = NULL;
  1008. return ret;
  1009. }
  1010. EXPORT_SYMBOL_GPL(pci_load_and_free_saved_state);
  1011. int __weak pcibios_enable_device(struct pci_dev *dev, int bars)
  1012. {
  1013. return pci_enable_resources(dev, bars);
  1014. }
  1015. static int do_pci_enable_device(struct pci_dev *dev, int bars)
  1016. {
  1017. int err;
  1018. u16 cmd;
  1019. u8 pin;
  1020. err = pci_set_power_state(dev, PCI_D0);
  1021. if (err < 0 && err != -EIO)
  1022. return err;
  1023. err = pcibios_enable_device(dev, bars);
  1024. if (err < 0)
  1025. return err;
  1026. pci_fixup_device(pci_fixup_enable, dev);
  1027. if (dev->msi_enabled || dev->msix_enabled)
  1028. return 0;
  1029. pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
  1030. if (pin) {
  1031. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  1032. if (cmd & PCI_COMMAND_INTX_DISABLE)
  1033. pci_write_config_word(dev, PCI_COMMAND,
  1034. cmd & ~PCI_COMMAND_INTX_DISABLE);
  1035. }
  1036. return 0;
  1037. }
  1038. /**
  1039. * pci_reenable_device - Resume abandoned device
  1040. * @dev: PCI device to be resumed
  1041. *
  1042. * Note this function is a backend of pci_default_resume and is not supposed
  1043. * to be called by normal code, write proper resume handler and use it instead.
  1044. */
  1045. int pci_reenable_device(struct pci_dev *dev)
  1046. {
  1047. if (pci_is_enabled(dev))
  1048. return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
  1049. return 0;
  1050. }
  1051. static void pci_enable_bridge(struct pci_dev *dev)
  1052. {
  1053. struct pci_dev *bridge;
  1054. int retval;
  1055. bridge = pci_upstream_bridge(dev);
  1056. if (bridge)
  1057. pci_enable_bridge(bridge);
  1058. if (pci_is_enabled(dev)) {
  1059. if (!dev->is_busmaster)
  1060. pci_set_master(dev);
  1061. return;
  1062. }
  1063. retval = pci_enable_device(dev);
  1064. if (retval)
  1065. dev_err(&dev->dev, "Error enabling bridge (%d), continuing\n",
  1066. retval);
  1067. pci_set_master(dev);
  1068. }
  1069. static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
  1070. {
  1071. struct pci_dev *bridge;
  1072. int err;
  1073. int i, bars = 0;
  1074. /*
  1075. * Power state could be unknown at this point, either due to a fresh
  1076. * boot or a device removal call. So get the current power state
  1077. * so that things like MSI message writing will behave as expected
  1078. * (e.g. if the device really is in D0 at enable time).
  1079. */
  1080. if (dev->pm_cap) {
  1081. u16 pmcsr;
  1082. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  1083. dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
  1084. }
  1085. if (atomic_inc_return(&dev->enable_cnt) > 1)
  1086. return 0; /* already enabled */
  1087. bridge = pci_upstream_bridge(dev);
  1088. if (bridge)
  1089. pci_enable_bridge(bridge);
  1090. /* only skip sriov related */
  1091. for (i = 0; i <= PCI_ROM_RESOURCE; i++)
  1092. if (dev->resource[i].flags & flags)
  1093. bars |= (1 << i);
  1094. for (i = PCI_BRIDGE_RESOURCES; i < DEVICE_COUNT_RESOURCE; i++)
  1095. if (dev->resource[i].flags & flags)
  1096. bars |= (1 << i);
  1097. err = do_pci_enable_device(dev, bars);
  1098. if (err < 0)
  1099. atomic_dec(&dev->enable_cnt);
  1100. return err;
  1101. }
  1102. /**
  1103. * pci_enable_device_io - Initialize a device for use with IO space
  1104. * @dev: PCI device to be initialized
  1105. *
  1106. * Initialize device before it's used by a driver. Ask low-level code
  1107. * to enable I/O resources. Wake up the device if it was suspended.
  1108. * Beware, this function can fail.
  1109. */
  1110. int pci_enable_device_io(struct pci_dev *dev)
  1111. {
  1112. return pci_enable_device_flags(dev, IORESOURCE_IO);
  1113. }
  1114. /**
  1115. * pci_enable_device_mem - Initialize a device for use with Memory space
  1116. * @dev: PCI device to be initialized
  1117. *
  1118. * Initialize device before it's used by a driver. Ask low-level code
  1119. * to enable Memory resources. Wake up the device if it was suspended.
  1120. * Beware, this function can fail.
  1121. */
  1122. int pci_enable_device_mem(struct pci_dev *dev)
  1123. {
  1124. return pci_enable_device_flags(dev, IORESOURCE_MEM);
  1125. }
  1126. /**
  1127. * pci_enable_device - Initialize device before it's used by a driver.
  1128. * @dev: PCI device to be initialized
  1129. *
  1130. * Initialize device before it's used by a driver. Ask low-level code
  1131. * to enable I/O and memory. Wake up the device if it was suspended.
  1132. * Beware, this function can fail.
  1133. *
  1134. * Note we don't actually enable the device many times if we call
  1135. * this function repeatedly (we just increment the count).
  1136. */
  1137. int pci_enable_device(struct pci_dev *dev)
  1138. {
  1139. return pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
  1140. }
  1141. /*
  1142. * Managed PCI resources. This manages device on/off, intx/msi/msix
  1143. * on/off and BAR regions. pci_dev itself records msi/msix status, so
  1144. * there's no need to track it separately. pci_devres is initialized
  1145. * when a device is enabled using managed PCI device enable interface.
  1146. */
  1147. struct pci_devres {
  1148. unsigned int enabled:1;
  1149. unsigned int pinned:1;
  1150. unsigned int orig_intx:1;
  1151. unsigned int restore_intx:1;
  1152. u32 region_mask;
  1153. };
  1154. static void pcim_release(struct device *gendev, void *res)
  1155. {
  1156. struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
  1157. struct pci_devres *this = res;
  1158. int i;
  1159. if (dev->msi_enabled)
  1160. pci_disable_msi(dev);
  1161. if (dev->msix_enabled)
  1162. pci_disable_msix(dev);
  1163. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
  1164. if (this->region_mask & (1 << i))
  1165. pci_release_region(dev, i);
  1166. if (this->restore_intx)
  1167. pci_intx(dev, this->orig_intx);
  1168. if (this->enabled && !this->pinned)
  1169. pci_disable_device(dev);
  1170. }
  1171. static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
  1172. {
  1173. struct pci_devres *dr, *new_dr;
  1174. dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
  1175. if (dr)
  1176. return dr;
  1177. new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
  1178. if (!new_dr)
  1179. return NULL;
  1180. return devres_get(&pdev->dev, new_dr, NULL, NULL);
  1181. }
  1182. static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
  1183. {
  1184. if (pci_is_managed(pdev))
  1185. return devres_find(&pdev->dev, pcim_release, NULL, NULL);
  1186. return NULL;
  1187. }
  1188. /**
  1189. * pcim_enable_device - Managed pci_enable_device()
  1190. * @pdev: PCI device to be initialized
  1191. *
  1192. * Managed pci_enable_device().
  1193. */
  1194. int pcim_enable_device(struct pci_dev *pdev)
  1195. {
  1196. struct pci_devres *dr;
  1197. int rc;
  1198. dr = get_pci_dr(pdev);
  1199. if (unlikely(!dr))
  1200. return -ENOMEM;
  1201. if (dr->enabled)
  1202. return 0;
  1203. rc = pci_enable_device(pdev);
  1204. if (!rc) {
  1205. pdev->is_managed = 1;
  1206. dr->enabled = 1;
  1207. }
  1208. return rc;
  1209. }
  1210. /**
  1211. * pcim_pin_device - Pin managed PCI device
  1212. * @pdev: PCI device to pin
  1213. *
  1214. * Pin managed PCI device @pdev. Pinned device won't be disabled on
  1215. * driver detach. @pdev must have been enabled with
  1216. * pcim_enable_device().
  1217. */
  1218. void pcim_pin_device(struct pci_dev *pdev)
  1219. {
  1220. struct pci_devres *dr;
  1221. dr = find_pci_dr(pdev);
  1222. WARN_ON(!dr || !dr->enabled);
  1223. if (dr)
  1224. dr->pinned = 1;
  1225. }
  1226. /*
  1227. * pcibios_add_device - provide arch specific hooks when adding device dev
  1228. * @dev: the PCI device being added
  1229. *
  1230. * Permits the platform to provide architecture specific functionality when
  1231. * devices are added. This is the default implementation. Architecture
  1232. * implementations can override this.
  1233. */
  1234. int __weak pcibios_add_device (struct pci_dev *dev)
  1235. {
  1236. return 0;
  1237. }
  1238. /**
  1239. * pcibios_release_device - provide arch specific hooks when releasing device dev
  1240. * @dev: the PCI device being released
  1241. *
  1242. * Permits the platform to provide architecture specific functionality when
  1243. * devices are released. This is the default implementation. Architecture
  1244. * implementations can override this.
  1245. */
  1246. void __weak pcibios_release_device(struct pci_dev *dev) {}
  1247. /**
  1248. * pcibios_disable_device - disable arch specific PCI resources for device dev
  1249. * @dev: the PCI device to disable
  1250. *
  1251. * Disables architecture specific PCI resources for the device. This
  1252. * is the default implementation. Architecture implementations can
  1253. * override this.
  1254. */
  1255. void __weak pcibios_disable_device (struct pci_dev *dev) {}
  1256. static void do_pci_disable_device(struct pci_dev *dev)
  1257. {
  1258. u16 pci_command;
  1259. pci_read_config_word(dev, PCI_COMMAND, &pci_command);
  1260. if (pci_command & PCI_COMMAND_MASTER) {
  1261. pci_command &= ~PCI_COMMAND_MASTER;
  1262. pci_write_config_word(dev, PCI_COMMAND, pci_command);
  1263. }
  1264. pcibios_disable_device(dev);
  1265. }
  1266. /**
  1267. * pci_disable_enabled_device - Disable device without updating enable_cnt
  1268. * @dev: PCI device to disable
  1269. *
  1270. * NOTE: This function is a backend of PCI power management routines and is
  1271. * not supposed to be called drivers.
  1272. */
  1273. void pci_disable_enabled_device(struct pci_dev *dev)
  1274. {
  1275. if (pci_is_enabled(dev))
  1276. do_pci_disable_device(dev);
  1277. }
  1278. /**
  1279. * pci_disable_device - Disable PCI device after use
  1280. * @dev: PCI device to be disabled
  1281. *
  1282. * Signal to the system that the PCI device is not in use by the system
  1283. * anymore. This only involves disabling PCI bus-mastering, if active.
  1284. *
  1285. * Note we don't actually disable the device until all callers of
  1286. * pci_enable_device() have called pci_disable_device().
  1287. */
  1288. void
  1289. pci_disable_device(struct pci_dev *dev)
  1290. {
  1291. struct pci_devres *dr;
  1292. dr = find_pci_dr(dev);
  1293. if (dr)
  1294. dr->enabled = 0;
  1295. dev_WARN_ONCE(&dev->dev, atomic_read(&dev->enable_cnt) <= 0,
  1296. "disabling already-disabled device");
  1297. if (atomic_dec_return(&dev->enable_cnt) != 0)
  1298. return;
  1299. do_pci_disable_device(dev);
  1300. dev->is_busmaster = 0;
  1301. }
  1302. /**
  1303. * pcibios_set_pcie_reset_state - set reset state for device dev
  1304. * @dev: the PCIe device reset
  1305. * @state: Reset state to enter into
  1306. *
  1307. *
  1308. * Sets the PCIe reset state for the device. This is the default
  1309. * implementation. Architecture implementations can override this.
  1310. */
  1311. int __weak pcibios_set_pcie_reset_state(struct pci_dev *dev,
  1312. enum pcie_reset_state state)
  1313. {
  1314. return -EINVAL;
  1315. }
  1316. /**
  1317. * pci_set_pcie_reset_state - set reset state for device dev
  1318. * @dev: the PCIe device reset
  1319. * @state: Reset state to enter into
  1320. *
  1321. *
  1322. * Sets the PCI reset state for the device.
  1323. */
  1324. int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
  1325. {
  1326. return pcibios_set_pcie_reset_state(dev, state);
  1327. }
  1328. /**
  1329. * pci_check_pme_status - Check if given device has generated PME.
  1330. * @dev: Device to check.
  1331. *
  1332. * Check the PME status of the device and if set, clear it and clear PME enable
  1333. * (if set). Return 'true' if PME status and PME enable were both set or
  1334. * 'false' otherwise.
  1335. */
  1336. bool pci_check_pme_status(struct pci_dev *dev)
  1337. {
  1338. int pmcsr_pos;
  1339. u16 pmcsr;
  1340. bool ret = false;
  1341. if (!dev->pm_cap)
  1342. return false;
  1343. pmcsr_pos = dev->pm_cap + PCI_PM_CTRL;
  1344. pci_read_config_word(dev, pmcsr_pos, &pmcsr);
  1345. if (!(pmcsr & PCI_PM_CTRL_PME_STATUS))
  1346. return false;
  1347. /* Clear PME status. */
  1348. pmcsr |= PCI_PM_CTRL_PME_STATUS;
  1349. if (pmcsr & PCI_PM_CTRL_PME_ENABLE) {
  1350. /* Disable PME to avoid interrupt flood. */
  1351. pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
  1352. ret = true;
  1353. }
  1354. pci_write_config_word(dev, pmcsr_pos, pmcsr);
  1355. return ret;
  1356. }
  1357. /**
  1358. * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
  1359. * @dev: Device to handle.
  1360. * @pme_poll_reset: Whether or not to reset the device's pme_poll flag.
  1361. *
  1362. * Check if @dev has generated PME and queue a resume request for it in that
  1363. * case.
  1364. */
  1365. static int pci_pme_wakeup(struct pci_dev *dev, void *pme_poll_reset)
  1366. {
  1367. if (pme_poll_reset && dev->pme_poll)
  1368. dev->pme_poll = false;
  1369. if (pci_check_pme_status(dev)) {
  1370. pci_wakeup_event(dev);
  1371. pm_request_resume(&dev->dev);
  1372. }
  1373. return 0;
  1374. }
  1375. /**
  1376. * pci_pme_wakeup_bus - Walk given bus and wake up devices on it, if necessary.
  1377. * @bus: Top bus of the subtree to walk.
  1378. */
  1379. void pci_pme_wakeup_bus(struct pci_bus *bus)
  1380. {
  1381. if (bus)
  1382. pci_walk_bus(bus, pci_pme_wakeup, (void *)true);
  1383. }
  1384. /**
  1385. * pci_pme_capable - check the capability of PCI device to generate PME#
  1386. * @dev: PCI device to handle.
  1387. * @state: PCI state from which device will issue PME#.
  1388. */
  1389. bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
  1390. {
  1391. if (!dev->pm_cap)
  1392. return false;
  1393. return !!(dev->pme_support & (1 << state));
  1394. }
  1395. static void pci_pme_list_scan(struct work_struct *work)
  1396. {
  1397. struct pci_pme_device *pme_dev, *n;
  1398. mutex_lock(&pci_pme_list_mutex);
  1399. list_for_each_entry_safe(pme_dev, n, &pci_pme_list, list) {
  1400. if (pme_dev->dev->pme_poll) {
  1401. struct pci_dev *bridge;
  1402. bridge = pme_dev->dev->bus->self;
  1403. /*
  1404. * If bridge is in low power state, the
  1405. * configuration space of subordinate devices
  1406. * may be not accessible
  1407. */
  1408. if (bridge && bridge->current_state != PCI_D0)
  1409. continue;
  1410. pci_pme_wakeup(pme_dev->dev, NULL);
  1411. } else {
  1412. list_del(&pme_dev->list);
  1413. kfree(pme_dev);
  1414. }
  1415. }
  1416. if (!list_empty(&pci_pme_list))
  1417. schedule_delayed_work(&pci_pme_work,
  1418. msecs_to_jiffies(PME_TIMEOUT));
  1419. mutex_unlock(&pci_pme_list_mutex);
  1420. }
  1421. /**
  1422. * pci_pme_active - enable or disable PCI device's PME# function
  1423. * @dev: PCI device to handle.
  1424. * @enable: 'true' to enable PME# generation; 'false' to disable it.
  1425. *
  1426. * The caller must verify that the device is capable of generating PME# before
  1427. * calling this function with @enable equal to 'true'.
  1428. */
  1429. void pci_pme_active(struct pci_dev *dev, bool enable)
  1430. {
  1431. u16 pmcsr;
  1432. if (!dev->pme_support)
  1433. return;
  1434. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
  1435. /* Clear PME_Status by writing 1 to it and enable PME# */
  1436. pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
  1437. if (!enable)
  1438. pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
  1439. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
  1440. /*
  1441. * PCI (as opposed to PCIe) PME requires that the device have
  1442. * its PME# line hooked up correctly. Not all hardware vendors
  1443. * do this, so the PME never gets delivered and the device
  1444. * remains asleep. The easiest way around this is to
  1445. * periodically walk the list of suspended devices and check
  1446. * whether any have their PME flag set. The assumption is that
  1447. * we'll wake up often enough anyway that this won't be a huge
  1448. * hit, and the power savings from the devices will still be a
  1449. * win.
  1450. *
  1451. * Although PCIe uses in-band PME message instead of PME# line
  1452. * to report PME, PME does not work for some PCIe devices in
  1453. * reality. For example, there are devices that set their PME
  1454. * status bits, but don't really bother to send a PME message;
  1455. * there are PCI Express Root Ports that don't bother to
  1456. * trigger interrupts when they receive PME messages from the
  1457. * devices below. So PME poll is used for PCIe devices too.
  1458. */
  1459. if (dev->pme_poll) {
  1460. struct pci_pme_device *pme_dev;
  1461. if (enable) {
  1462. pme_dev = kmalloc(sizeof(struct pci_pme_device),
  1463. GFP_KERNEL);
  1464. if (!pme_dev) {
  1465. dev_warn(&dev->dev, "can't enable PME#\n");
  1466. return;
  1467. }
  1468. pme_dev->dev = dev;
  1469. mutex_lock(&pci_pme_list_mutex);
  1470. list_add(&pme_dev->list, &pci_pme_list);
  1471. if (list_is_singular(&pci_pme_list))
  1472. schedule_delayed_work(&pci_pme_work,
  1473. msecs_to_jiffies(PME_TIMEOUT));
  1474. mutex_unlock(&pci_pme_list_mutex);
  1475. } else {
  1476. mutex_lock(&pci_pme_list_mutex);
  1477. list_for_each_entry(pme_dev, &pci_pme_list, list) {
  1478. if (pme_dev->dev == dev) {
  1479. list_del(&pme_dev->list);
  1480. kfree(pme_dev);
  1481. break;
  1482. }
  1483. }
  1484. mutex_unlock(&pci_pme_list_mutex);
  1485. }
  1486. }
  1487. dev_dbg(&dev->dev, "PME# %s\n", enable ? "enabled" : "disabled");
  1488. }
  1489. /**
  1490. * __pci_enable_wake - enable PCI device as wakeup event source
  1491. * @dev: PCI device affected
  1492. * @state: PCI state from which device will issue wakeup events
  1493. * @runtime: True if the events are to be generated at run time
  1494. * @enable: True to enable event generation; false to disable
  1495. *
  1496. * This enables the device as a wakeup event source, or disables it.
  1497. * When such events involves platform-specific hooks, those hooks are
  1498. * called automatically by this routine.
  1499. *
  1500. * Devices with legacy power management (no standard PCI PM capabilities)
  1501. * always require such platform hooks.
  1502. *
  1503. * RETURN VALUE:
  1504. * 0 is returned on success
  1505. * -EINVAL is returned if device is not supposed to wake up the system
  1506. * Error code depending on the platform is returned if both the platform and
  1507. * the native mechanism fail to enable the generation of wake-up events
  1508. */
  1509. int __pci_enable_wake(struct pci_dev *dev, pci_power_t state,
  1510. bool runtime, bool enable)
  1511. {
  1512. int ret = 0;
  1513. if (enable && !runtime && !device_may_wakeup(&dev->dev))
  1514. return -EINVAL;
  1515. /* Don't do the same thing twice in a row for one device. */
  1516. if (!!enable == !!dev->wakeup_prepared)
  1517. return 0;
  1518. /*
  1519. * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
  1520. * Anderson we should be doing PME# wake enable followed by ACPI wake
  1521. * enable. To disable wake-up we call the platform first, for symmetry.
  1522. */
  1523. if (enable) {
  1524. int error;
  1525. if (pci_pme_capable(dev, state))
  1526. pci_pme_active(dev, true);
  1527. else
  1528. ret = 1;
  1529. error = runtime ? platform_pci_run_wake(dev, true) :
  1530. platform_pci_sleep_wake(dev, true);
  1531. if (ret)
  1532. ret = error;
  1533. if (!ret)
  1534. dev->wakeup_prepared = true;
  1535. } else {
  1536. if (runtime)
  1537. platform_pci_run_wake(dev, false);
  1538. else
  1539. platform_pci_sleep_wake(dev, false);
  1540. pci_pme_active(dev, false);
  1541. dev->wakeup_prepared = false;
  1542. }
  1543. return ret;
  1544. }
  1545. EXPORT_SYMBOL(__pci_enable_wake);
  1546. /**
  1547. * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
  1548. * @dev: PCI device to prepare
  1549. * @enable: True to enable wake-up event generation; false to disable
  1550. *
  1551. * Many drivers want the device to wake up the system from D3_hot or D3_cold
  1552. * and this function allows them to set that up cleanly - pci_enable_wake()
  1553. * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
  1554. * ordering constraints.
  1555. *
  1556. * This function only returns error code if the device is not capable of
  1557. * generating PME# from both D3_hot and D3_cold, and the platform is unable to
  1558. * enable wake-up power for it.
  1559. */
  1560. int pci_wake_from_d3(struct pci_dev *dev, bool enable)
  1561. {
  1562. return pci_pme_capable(dev, PCI_D3cold) ?
  1563. pci_enable_wake(dev, PCI_D3cold, enable) :
  1564. pci_enable_wake(dev, PCI_D3hot, enable);
  1565. }
  1566. /**
  1567. * pci_target_state - find an appropriate low power state for a given PCI dev
  1568. * @dev: PCI device
  1569. *
  1570. * Use underlying platform code to find a supported low power state for @dev.
  1571. * If the platform can't manage @dev, return the deepest state from which it
  1572. * can generate wake events, based on any available PME info.
  1573. */
  1574. static pci_power_t pci_target_state(struct pci_dev *dev)
  1575. {
  1576. pci_power_t target_state = PCI_D3hot;
  1577. if (platform_pci_power_manageable(dev)) {
  1578. /*
  1579. * Call the platform to choose the target state of the device
  1580. * and enable wake-up from this state if supported.
  1581. */
  1582. pci_power_t state = platform_pci_choose_state(dev);
  1583. switch (state) {
  1584. case PCI_POWER_ERROR:
  1585. case PCI_UNKNOWN:
  1586. break;
  1587. case PCI_D1:
  1588. case PCI_D2:
  1589. if (pci_no_d1d2(dev))
  1590. break;
  1591. default:
  1592. target_state = state;
  1593. }
  1594. } else if (!dev->pm_cap) {
  1595. target_state = PCI_D0;
  1596. } else if (device_may_wakeup(&dev->dev)) {
  1597. /*
  1598. * Find the deepest state from which the device can generate
  1599. * wake-up events, make it the target state and enable device
  1600. * to generate PME#.
  1601. */
  1602. if (dev->pme_support) {
  1603. while (target_state
  1604. && !(dev->pme_support & (1 << target_state)))
  1605. target_state--;
  1606. }
  1607. }
  1608. return target_state;
  1609. }
  1610. /**
  1611. * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
  1612. * @dev: Device to handle.
  1613. *
  1614. * Choose the power state appropriate for the device depending on whether
  1615. * it can wake up the system and/or is power manageable by the platform
  1616. * (PCI_D3hot is the default) and put the device into that state.
  1617. */
  1618. int pci_prepare_to_sleep(struct pci_dev *dev)
  1619. {
  1620. pci_power_t target_state = pci_target_state(dev);
  1621. int error;
  1622. if (target_state == PCI_POWER_ERROR)
  1623. return -EIO;
  1624. /* D3cold during system suspend/hibernate is not supported */
  1625. if (target_state > PCI_D3hot)
  1626. target_state = PCI_D3hot;
  1627. pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
  1628. error = pci_set_power_state(dev, target_state);
  1629. if (error)
  1630. pci_enable_wake(dev, target_state, false);
  1631. return error;
  1632. }
  1633. /**
  1634. * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
  1635. * @dev: Device to handle.
  1636. *
  1637. * Disable device's system wake-up capability and put it into D0.
  1638. */
  1639. int pci_back_from_sleep(struct pci_dev *dev)
  1640. {
  1641. pci_enable_wake(dev, PCI_D0, false);
  1642. return pci_set_power_state(dev, PCI_D0);
  1643. }
  1644. /**
  1645. * pci_finish_runtime_suspend - Carry out PCI-specific part of runtime suspend.
  1646. * @dev: PCI device being suspended.
  1647. *
  1648. * Prepare @dev to generate wake-up events at run time and put it into a low
  1649. * power state.
  1650. */
  1651. int pci_finish_runtime_suspend(struct pci_dev *dev)
  1652. {
  1653. pci_power_t target_state = pci_target_state(dev);
  1654. int error;
  1655. if (target_state == PCI_POWER_ERROR)
  1656. return -EIO;
  1657. dev->runtime_d3cold = target_state == PCI_D3cold;
  1658. __pci_enable_wake(dev, target_state, true, pci_dev_run_wake(dev));
  1659. error = pci_set_power_state(dev, target_state);
  1660. if (error) {
  1661. __pci_enable_wake(dev, target_state, true, false);
  1662. dev->runtime_d3cold = false;
  1663. }
  1664. return error;
  1665. }
  1666. /**
  1667. * pci_dev_run_wake - Check if device can generate run-time wake-up events.
  1668. * @dev: Device to check.
  1669. *
  1670. * Return true if the device itself is capable of generating wake-up events
  1671. * (through the platform or using the native PCIe PME) or if the device supports
  1672. * PME and one of its upstream bridges can generate wake-up events.
  1673. */
  1674. bool pci_dev_run_wake(struct pci_dev *dev)
  1675. {
  1676. struct pci_bus *bus = dev->bus;
  1677. if (device_run_wake(&dev->dev))
  1678. return true;
  1679. if (!dev->pme_support)
  1680. return false;
  1681. while (bus->parent) {
  1682. struct pci_dev *bridge = bus->self;
  1683. if (device_run_wake(&bridge->dev))
  1684. return true;
  1685. bus = bus->parent;
  1686. }
  1687. /* We have reached the root bus. */
  1688. if (bus->bridge)
  1689. return device_run_wake(bus->bridge);
  1690. return false;
  1691. }
  1692. EXPORT_SYMBOL_GPL(pci_dev_run_wake);
  1693. void pci_config_pm_runtime_get(struct pci_dev *pdev)
  1694. {
  1695. struct device *dev = &pdev->dev;
  1696. struct device *parent = dev->parent;
  1697. if (parent)
  1698. pm_runtime_get_sync(parent);
  1699. pm_runtime_get_noresume(dev);
  1700. /*
  1701. * pdev->current_state is set to PCI_D3cold during suspending,
  1702. * so wait until suspending completes
  1703. */
  1704. pm_runtime_barrier(dev);
  1705. /*
  1706. * Only need to resume devices in D3cold, because config
  1707. * registers are still accessible for devices suspended but
  1708. * not in D3cold.
  1709. */
  1710. if (pdev->current_state == PCI_D3cold)
  1711. pm_runtime_resume(dev);
  1712. }
  1713. void pci_config_pm_runtime_put(struct pci_dev *pdev)
  1714. {
  1715. struct device *dev = &pdev->dev;
  1716. struct device *parent = dev->parent;
  1717. pm_runtime_put(dev);
  1718. if (parent)
  1719. pm_runtime_put_sync(parent);
  1720. }
  1721. /**
  1722. * pci_pm_init - Initialize PM functions of given PCI device
  1723. * @dev: PCI device to handle.
  1724. */
  1725. void pci_pm_init(struct pci_dev *dev)
  1726. {
  1727. int pm;
  1728. u16 pmc;
  1729. pm_runtime_forbid(&dev->dev);
  1730. pm_runtime_set_active(&dev->dev);
  1731. pm_runtime_enable(&dev->dev);
  1732. device_enable_async_suspend(&dev->dev);
  1733. dev->wakeup_prepared = false;
  1734. dev->pm_cap = 0;
  1735. dev->pme_support = 0;
  1736. /* find PCI PM capability in list */
  1737. pm = pci_find_capability(dev, PCI_CAP_ID_PM);
  1738. if (!pm)
  1739. return;
  1740. /* Check device's ability to generate PME# */
  1741. pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
  1742. if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
  1743. dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
  1744. pmc & PCI_PM_CAP_VER_MASK);
  1745. return;
  1746. }
  1747. dev->pm_cap = pm;
  1748. dev->d3_delay = PCI_PM_D3_WAIT;
  1749. dev->d3cold_delay = PCI_PM_D3COLD_WAIT;
  1750. dev->d3cold_allowed = true;
  1751. dev->d1_support = false;
  1752. dev->d2_support = false;
  1753. if (!pci_no_d1d2(dev)) {
  1754. if (pmc & PCI_PM_CAP_D1)
  1755. dev->d1_support = true;
  1756. if (pmc & PCI_PM_CAP_D2)
  1757. dev->d2_support = true;
  1758. if (dev->d1_support || dev->d2_support)
  1759. dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
  1760. dev->d1_support ? " D1" : "",
  1761. dev->d2_support ? " D2" : "");
  1762. }
  1763. pmc &= PCI_PM_CAP_PME_MASK;
  1764. if (pmc) {
  1765. dev_printk(KERN_DEBUG, &dev->dev,
  1766. "PME# supported from%s%s%s%s%s\n",
  1767. (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
  1768. (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
  1769. (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
  1770. (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
  1771. (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
  1772. dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
  1773. dev->pme_poll = true;
  1774. /*
  1775. * Make device's PM flags reflect the wake-up capability, but
  1776. * let the user space enable it to wake up the system as needed.
  1777. */
  1778. device_set_wakeup_capable(&dev->dev, true);
  1779. /* Disable the PME# generation functionality */
  1780. pci_pme_active(dev, false);
  1781. }
  1782. }
  1783. static void pci_add_saved_cap(struct pci_dev *pci_dev,
  1784. struct pci_cap_saved_state *new_cap)
  1785. {
  1786. hlist_add_head(&new_cap->next, &pci_dev->saved_cap_space);
  1787. }
  1788. /**
  1789. * _pci_add_cap_save_buffer - allocate buffer for saving given
  1790. * capability registers
  1791. * @dev: the PCI device
  1792. * @cap: the capability to allocate the buffer for
  1793. * @extended: Standard or Extended capability ID
  1794. * @size: requested size of the buffer
  1795. */
  1796. static int _pci_add_cap_save_buffer(struct pci_dev *dev, u16 cap,
  1797. bool extended, unsigned int size)
  1798. {
  1799. int pos;
  1800. struct pci_cap_saved_state *save_state;
  1801. if (extended)
  1802. pos = pci_find_ext_capability(dev, cap);
  1803. else
  1804. pos = pci_find_capability(dev, cap);
  1805. if (pos <= 0)
  1806. return 0;
  1807. save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
  1808. if (!save_state)
  1809. return -ENOMEM;
  1810. save_state->cap.cap_nr = cap;
  1811. save_state->cap.cap_extended = extended;
  1812. save_state->cap.size = size;
  1813. pci_add_saved_cap(dev, save_state);
  1814. return 0;
  1815. }
  1816. int pci_add_cap_save_buffer(struct pci_dev *dev, char cap, unsigned int size)
  1817. {
  1818. return _pci_add_cap_save_buffer(dev, cap, false, size);
  1819. }
  1820. int pci_add_ext_cap_save_buffer(struct pci_dev *dev, u16 cap, unsigned int size)
  1821. {
  1822. return _pci_add_cap_save_buffer(dev, cap, true, size);
  1823. }
  1824. /**
  1825. * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
  1826. * @dev: the PCI device
  1827. */
  1828. void pci_allocate_cap_save_buffers(struct pci_dev *dev)
  1829. {
  1830. int error;
  1831. error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
  1832. PCI_EXP_SAVE_REGS * sizeof(u16));
  1833. if (error)
  1834. dev_err(&dev->dev,
  1835. "unable to preallocate PCI Express save buffer\n");
  1836. error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
  1837. if (error)
  1838. dev_err(&dev->dev,
  1839. "unable to preallocate PCI-X save buffer\n");
  1840. pci_allocate_vc_save_buffers(dev);
  1841. }
  1842. void pci_free_cap_save_buffers(struct pci_dev *dev)
  1843. {
  1844. struct pci_cap_saved_state *tmp;
  1845. struct hlist_node *n;
  1846. hlist_for_each_entry_safe(tmp, n, &dev->saved_cap_space, next)
  1847. kfree(tmp);
  1848. }
  1849. /**
  1850. * pci_configure_ari - enable or disable ARI forwarding
  1851. * @dev: the PCI device
  1852. *
  1853. * If @dev and its upstream bridge both support ARI, enable ARI in the
  1854. * bridge. Otherwise, disable ARI in the bridge.
  1855. */
  1856. void pci_configure_ari(struct pci_dev *dev)
  1857. {
  1858. u32 cap;
  1859. struct pci_dev *bridge;
  1860. if (pcie_ari_disabled || !pci_is_pcie(dev) || dev->devfn)
  1861. return;
  1862. bridge = dev->bus->self;
  1863. if (!bridge)
  1864. return;
  1865. pcie_capability_read_dword(bridge, PCI_EXP_DEVCAP2, &cap);
  1866. if (!(cap & PCI_EXP_DEVCAP2_ARI))
  1867. return;
  1868. if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI)) {
  1869. pcie_capability_set_word(bridge, PCI_EXP_DEVCTL2,
  1870. PCI_EXP_DEVCTL2_ARI);
  1871. bridge->ari_enabled = 1;
  1872. } else {
  1873. pcie_capability_clear_word(bridge, PCI_EXP_DEVCTL2,
  1874. PCI_EXP_DEVCTL2_ARI);
  1875. bridge->ari_enabled = 0;
  1876. }
  1877. }
  1878. static int pci_acs_enable;
  1879. /**
  1880. * pci_request_acs - ask for ACS to be enabled if supported
  1881. */
  1882. void pci_request_acs(void)
  1883. {
  1884. pci_acs_enable = 1;
  1885. }
  1886. /**
  1887. * pci_std_enable_acs - enable ACS on devices using standard ACS capabilites
  1888. * @dev: the PCI device
  1889. */
  1890. static int pci_std_enable_acs(struct pci_dev *dev)
  1891. {
  1892. int pos;
  1893. u16 cap;
  1894. u16 ctrl;
  1895. pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
  1896. if (!pos)
  1897. return -ENODEV;
  1898. pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
  1899. pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
  1900. /* Source Validation */
  1901. ctrl |= (cap & PCI_ACS_SV);
  1902. /* P2P Request Redirect */
  1903. ctrl |= (cap & PCI_ACS_RR);
  1904. /* P2P Completion Redirect */
  1905. ctrl |= (cap & PCI_ACS_CR);
  1906. /* Upstream Forwarding */
  1907. ctrl |= (cap & PCI_ACS_UF);
  1908. pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
  1909. return 0;
  1910. }
  1911. /**
  1912. * pci_enable_acs - enable ACS if hardware support it
  1913. * @dev: the PCI device
  1914. */
  1915. void pci_enable_acs(struct pci_dev *dev)
  1916. {
  1917. if (!pci_acs_enable)
  1918. return;
  1919. if (!pci_std_enable_acs(dev))
  1920. return;
  1921. pci_dev_specific_enable_acs(dev);
  1922. }
  1923. static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
  1924. {
  1925. int pos;
  1926. u16 cap, ctrl;
  1927. pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ACS);
  1928. if (!pos)
  1929. return false;
  1930. /*
  1931. * Except for egress control, capabilities are either required
  1932. * or only required if controllable. Features missing from the
  1933. * capability field can therefore be assumed as hard-wired enabled.
  1934. */
  1935. pci_read_config_word(pdev, pos + PCI_ACS_CAP, &cap);
  1936. acs_flags &= (cap | PCI_ACS_EC);
  1937. pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
  1938. return (ctrl & acs_flags) == acs_flags;
  1939. }
  1940. /**
  1941. * pci_acs_enabled - test ACS against required flags for a given device
  1942. * @pdev: device to test
  1943. * @acs_flags: required PCI ACS flags
  1944. *
  1945. * Return true if the device supports the provided flags. Automatically
  1946. * filters out flags that are not implemented on multifunction devices.
  1947. *
  1948. * Note that this interface checks the effective ACS capabilities of the
  1949. * device rather than the actual capabilities. For instance, most single
  1950. * function endpoints are not required to support ACS because they have no
  1951. * opportunity for peer-to-peer access. We therefore return 'true'
  1952. * regardless of whether the device exposes an ACS capability. This makes
  1953. * it much easier for callers of this function to ignore the actual type
  1954. * or topology of the device when testing ACS support.
  1955. */
  1956. bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
  1957. {
  1958. int ret;
  1959. ret = pci_dev_specific_acs_enabled(pdev, acs_flags);
  1960. if (ret >= 0)
  1961. return ret > 0;
  1962. /*
  1963. * Conventional PCI and PCI-X devices never support ACS, either
  1964. * effectively or actually. The shared bus topology implies that
  1965. * any device on the bus can receive or snoop DMA.
  1966. */
  1967. if (!pci_is_pcie(pdev))
  1968. return false;
  1969. switch (pci_pcie_type(pdev)) {
  1970. /*
  1971. * PCI/X-to-PCIe bridges are not specifically mentioned by the spec,
  1972. * but since their primary interface is PCI/X, we conservatively
  1973. * handle them as we would a non-PCIe device.
  1974. */
  1975. case PCI_EXP_TYPE_PCIE_BRIDGE:
  1976. /*
  1977. * PCIe 3.0, 6.12.1 excludes ACS on these devices. "ACS is never
  1978. * applicable... must never implement an ACS Extended Capability...".
  1979. * This seems arbitrary, but we take a conservative interpretation
  1980. * of this statement.
  1981. */
  1982. case PCI_EXP_TYPE_PCI_BRIDGE:
  1983. case PCI_EXP_TYPE_RC_EC:
  1984. return false;
  1985. /*
  1986. * PCIe 3.0, 6.12.1.1 specifies that downstream and root ports should
  1987. * implement ACS in order to indicate their peer-to-peer capabilities,
  1988. * regardless of whether they are single- or multi-function devices.
  1989. */
  1990. case PCI_EXP_TYPE_DOWNSTREAM:
  1991. case PCI_EXP_TYPE_ROOT_PORT:
  1992. return pci_acs_flags_enabled(pdev, acs_flags);
  1993. /*
  1994. * PCIe 3.0, 6.12.1.2 specifies ACS capabilities that should be
  1995. * implemented by the remaining PCIe types to indicate peer-to-peer
  1996. * capabilities, but only when they are part of a multifunction
  1997. * device. The footnote for section 6.12 indicates the specific
  1998. * PCIe types included here.
  1999. */
  2000. case PCI_EXP_TYPE_ENDPOINT:
  2001. case PCI_EXP_TYPE_UPSTREAM:
  2002. case PCI_EXP_TYPE_LEG_END:
  2003. case PCI_EXP_TYPE_RC_END:
  2004. if (!pdev->multifunction)
  2005. break;
  2006. return pci_acs_flags_enabled(pdev, acs_flags);
  2007. }
  2008. /*
  2009. * PCIe 3.0, 6.12.1.3 specifies no ACS capabilities are applicable
  2010. * to single function devices with the exception of downstream ports.
  2011. */
  2012. return true;
  2013. }
  2014. /**
  2015. * pci_acs_path_enable - test ACS flags from start to end in a hierarchy
  2016. * @start: starting downstream device
  2017. * @end: ending upstream device or NULL to search to the root bus
  2018. * @acs_flags: required flags
  2019. *
  2020. * Walk up a device tree from start to end testing PCI ACS support. If
  2021. * any step along the way does not support the required flags, return false.
  2022. */
  2023. bool pci_acs_path_enabled(struct pci_dev *start,
  2024. struct pci_dev *end, u16 acs_flags)
  2025. {
  2026. struct pci_dev *pdev, *parent = start;
  2027. do {
  2028. pdev = parent;
  2029. if (!pci_acs_enabled(pdev, acs_flags))
  2030. return false;
  2031. if (pci_is_root_bus(pdev->bus))
  2032. return (end == NULL);
  2033. parent = pdev->bus->self;
  2034. } while (pdev != end);
  2035. return true;
  2036. }
  2037. /**
  2038. * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
  2039. * @dev: the PCI device
  2040. * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTC, 4=INTD)
  2041. *
  2042. * Perform INTx swizzling for a device behind one level of bridge. This is
  2043. * required by section 9.1 of the PCI-to-PCI bridge specification for devices
  2044. * behind bridges on add-in cards. For devices with ARI enabled, the slot
  2045. * number is always 0 (see the Implementation Note in section 2.2.8.1 of
  2046. * the PCI Express Base Specification, Revision 2.1)
  2047. */
  2048. u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin)
  2049. {
  2050. int slot;
  2051. if (pci_ari_enabled(dev->bus))
  2052. slot = 0;
  2053. else
  2054. slot = PCI_SLOT(dev->devfn);
  2055. return (((pin - 1) + slot) % 4) + 1;
  2056. }
  2057. int
  2058. pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
  2059. {
  2060. u8 pin;
  2061. pin = dev->pin;
  2062. if (!pin)
  2063. return -1;
  2064. while (!pci_is_root_bus(dev->bus)) {
  2065. pin = pci_swizzle_interrupt_pin(dev, pin);
  2066. dev = dev->bus->self;
  2067. }
  2068. *bridge = dev;
  2069. return pin;
  2070. }
  2071. /**
  2072. * pci_common_swizzle - swizzle INTx all the way to root bridge
  2073. * @dev: the PCI device
  2074. * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
  2075. *
  2076. * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
  2077. * bridges all the way up to a PCI root bus.
  2078. */
  2079. u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
  2080. {
  2081. u8 pin = *pinp;
  2082. while (!pci_is_root_bus(dev->bus)) {
  2083. pin = pci_swizzle_interrupt_pin(dev, pin);
  2084. dev = dev->bus->self;
  2085. }
  2086. *pinp = pin;
  2087. return PCI_SLOT(dev->devfn);
  2088. }
  2089. /**
  2090. * pci_release_region - Release a PCI bar
  2091. * @pdev: PCI device whose resources were previously reserved by pci_request_region
  2092. * @bar: BAR to release
  2093. *
  2094. * Releases the PCI I/O and memory resources previously reserved by a
  2095. * successful call to pci_request_region. Call this function only
  2096. * after all use of the PCI regions has ceased.
  2097. */
  2098. void pci_release_region(struct pci_dev *pdev, int bar)
  2099. {
  2100. struct pci_devres *dr;
  2101. if (pci_resource_len(pdev, bar) == 0)
  2102. return;
  2103. if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
  2104. release_region(pci_resource_start(pdev, bar),
  2105. pci_resource_len(pdev, bar));
  2106. else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
  2107. release_mem_region(pci_resource_start(pdev, bar),
  2108. pci_resource_len(pdev, bar));
  2109. dr = find_pci_dr(pdev);
  2110. if (dr)
  2111. dr->region_mask &= ~(1 << bar);
  2112. }
  2113. /**
  2114. * __pci_request_region - Reserved PCI I/O and memory resource
  2115. * @pdev: PCI device whose resources are to be reserved
  2116. * @bar: BAR to be reserved
  2117. * @res_name: Name to be associated with resource.
  2118. * @exclusive: whether the region access is exclusive or not
  2119. *
  2120. * Mark the PCI region associated with PCI device @pdev BR @bar as
  2121. * being reserved by owner @res_name. Do not access any
  2122. * address inside the PCI regions unless this call returns
  2123. * successfully.
  2124. *
  2125. * If @exclusive is set, then the region is marked so that userspace
  2126. * is explicitly not allowed to map the resource via /dev/mem or
  2127. * sysfs MMIO access.
  2128. *
  2129. * Returns 0 on success, or %EBUSY on error. A warning
  2130. * message is also printed on failure.
  2131. */
  2132. static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
  2133. int exclusive)
  2134. {
  2135. struct pci_devres *dr;
  2136. if (pci_resource_len(pdev, bar) == 0)
  2137. return 0;
  2138. if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
  2139. if (!request_region(pci_resource_start(pdev, bar),
  2140. pci_resource_len(pdev, bar), res_name))
  2141. goto err_out;
  2142. }
  2143. else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
  2144. if (!__request_mem_region(pci_resource_start(pdev, bar),
  2145. pci_resource_len(pdev, bar), res_name,
  2146. exclusive))
  2147. goto err_out;
  2148. }
  2149. dr = find_pci_dr(pdev);
  2150. if (dr)
  2151. dr->region_mask |= 1 << bar;
  2152. return 0;
  2153. err_out:
  2154. dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
  2155. &pdev->resource[bar]);
  2156. return -EBUSY;
  2157. }
  2158. /**
  2159. * pci_request_region - Reserve PCI I/O and memory resource
  2160. * @pdev: PCI device whose resources are to be reserved
  2161. * @bar: BAR to be reserved
  2162. * @res_name: Name to be associated with resource
  2163. *
  2164. * Mark the PCI region associated with PCI device @pdev BAR @bar as
  2165. * being reserved by owner @res_name. Do not access any
  2166. * address inside the PCI regions unless this call returns
  2167. * successfully.
  2168. *
  2169. * Returns 0 on success, or %EBUSY on error. A warning
  2170. * message is also printed on failure.
  2171. */
  2172. int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
  2173. {
  2174. return __pci_request_region(pdev, bar, res_name, 0);
  2175. }
  2176. /**
  2177. * pci_request_region_exclusive - Reserved PCI I/O and memory resource
  2178. * @pdev: PCI device whose resources are to be reserved
  2179. * @bar: BAR to be reserved
  2180. * @res_name: Name to be associated with resource.
  2181. *
  2182. * Mark the PCI region associated with PCI device @pdev BR @bar as
  2183. * being reserved by owner @res_name. Do not access any
  2184. * address inside the PCI regions unless this call returns
  2185. * successfully.
  2186. *
  2187. * Returns 0 on success, or %EBUSY on error. A warning
  2188. * message is also printed on failure.
  2189. *
  2190. * The key difference that _exclusive makes it that userspace is
  2191. * explicitly not allowed to map the resource via /dev/mem or
  2192. * sysfs.
  2193. */
  2194. int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
  2195. {
  2196. return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
  2197. }
  2198. /**
  2199. * pci_release_selected_regions - Release selected PCI I/O and memory resources
  2200. * @pdev: PCI device whose resources were previously reserved
  2201. * @bars: Bitmask of BARs to be released
  2202. *
  2203. * Release selected PCI I/O and memory resources previously reserved.
  2204. * Call this function only after all use of the PCI regions has ceased.
  2205. */
  2206. void pci_release_selected_regions(struct pci_dev *pdev, int bars)
  2207. {
  2208. int i;
  2209. for (i = 0; i < 6; i++)
  2210. if (bars & (1 << i))
  2211. pci_release_region(pdev, i);
  2212. }
  2213. static int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
  2214. const char *res_name, int excl)
  2215. {
  2216. int i;
  2217. for (i = 0; i < 6; i++)
  2218. if (bars & (1 << i))
  2219. if (__pci_request_region(pdev, i, res_name, excl))
  2220. goto err_out;
  2221. return 0;
  2222. err_out:
  2223. while(--i >= 0)
  2224. if (bars & (1 << i))
  2225. pci_release_region(pdev, i);
  2226. return -EBUSY;
  2227. }
  2228. /**
  2229. * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
  2230. * @pdev: PCI device whose resources are to be reserved
  2231. * @bars: Bitmask of BARs to be requested
  2232. * @res_name: Name to be associated with resource
  2233. */
  2234. int pci_request_selected_regions(struct pci_dev *pdev, int bars,
  2235. const char *res_name)
  2236. {
  2237. return __pci_request_selected_regions(pdev, bars, res_name, 0);
  2238. }
  2239. int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
  2240. int bars, const char *res_name)
  2241. {
  2242. return __pci_request_selected_regions(pdev, bars, res_name,
  2243. IORESOURCE_EXCLUSIVE);
  2244. }
  2245. /**
  2246. * pci_release_regions - Release reserved PCI I/O and memory resources
  2247. * @pdev: PCI device whose resources were previously reserved by pci_request_regions
  2248. *
  2249. * Releases all PCI I/O and memory resources previously reserved by a
  2250. * successful call to pci_request_regions. Call this function only
  2251. * after all use of the PCI regions has ceased.
  2252. */
  2253. void pci_release_regions(struct pci_dev *pdev)
  2254. {
  2255. pci_release_selected_regions(pdev, (1 << 6) - 1);
  2256. }
  2257. /**
  2258. * pci_request_regions - Reserved PCI I/O and memory resources
  2259. * @pdev: PCI device whose resources are to be reserved
  2260. * @res_name: Name to be associated with resource.
  2261. *
  2262. * Mark all PCI regions associated with PCI device @pdev as
  2263. * being reserved by owner @res_name. Do not access any
  2264. * address inside the PCI regions unless this call returns
  2265. * successfully.
  2266. *
  2267. * Returns 0 on success, or %EBUSY on error. A warning
  2268. * message is also printed on failure.
  2269. */
  2270. int pci_request_regions(struct pci_dev *pdev, const char *res_name)
  2271. {
  2272. return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
  2273. }
  2274. /**
  2275. * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
  2276. * @pdev: PCI device whose resources are to be reserved
  2277. * @res_name: Name to be associated with resource.
  2278. *
  2279. * Mark all PCI regions associated with PCI device @pdev as
  2280. * being reserved by owner @res_name. Do not access any
  2281. * address inside the PCI regions unless this call returns
  2282. * successfully.
  2283. *
  2284. * pci_request_regions_exclusive() will mark the region so that
  2285. * /dev/mem and the sysfs MMIO access will not be allowed.
  2286. *
  2287. * Returns 0 on success, or %EBUSY on error. A warning
  2288. * message is also printed on failure.
  2289. */
  2290. int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
  2291. {
  2292. return pci_request_selected_regions_exclusive(pdev,
  2293. ((1 << 6) - 1), res_name);
  2294. }
  2295. static void __pci_set_master(struct pci_dev *dev, bool enable)
  2296. {
  2297. u16 old_cmd, cmd;
  2298. pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
  2299. if (enable)
  2300. cmd = old_cmd | PCI_COMMAND_MASTER;
  2301. else
  2302. cmd = old_cmd & ~PCI_COMMAND_MASTER;
  2303. if (cmd != old_cmd) {
  2304. dev_dbg(&dev->dev, "%s bus mastering\n",
  2305. enable ? "enabling" : "disabling");
  2306. pci_write_config_word(dev, PCI_COMMAND, cmd);
  2307. }
  2308. dev->is_busmaster = enable;
  2309. }
  2310. /**
  2311. * pcibios_setup - process "pci=" kernel boot arguments
  2312. * @str: string used to pass in "pci=" kernel boot arguments
  2313. *
  2314. * Process kernel boot arguments. This is the default implementation.
  2315. * Architecture specific implementations can override this as necessary.
  2316. */
  2317. char * __weak __init pcibios_setup(char *str)
  2318. {
  2319. return str;
  2320. }
  2321. /**
  2322. * pcibios_set_master - enable PCI bus-mastering for device dev
  2323. * @dev: the PCI device to enable
  2324. *
  2325. * Enables PCI bus-mastering for the device. This is the default
  2326. * implementation. Architecture specific implementations can override
  2327. * this if necessary.
  2328. */
  2329. void __weak pcibios_set_master(struct pci_dev *dev)
  2330. {
  2331. u8 lat;
  2332. /* The latency timer doesn't apply to PCIe (either Type 0 or Type 1) */
  2333. if (pci_is_pcie(dev))
  2334. return;
  2335. pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
  2336. if (lat < 16)
  2337. lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
  2338. else if (lat > pcibios_max_latency)
  2339. lat = pcibios_max_latency;
  2340. else
  2341. return;
  2342. pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
  2343. }
  2344. /**
  2345. * pci_set_master - enables bus-mastering for device dev
  2346. * @dev: the PCI device to enable
  2347. *
  2348. * Enables bus-mastering on the device and calls pcibios_set_master()
  2349. * to do the needed arch specific settings.
  2350. */
  2351. void pci_set_master(struct pci_dev *dev)
  2352. {
  2353. __pci_set_master(dev, true);
  2354. pcibios_set_master(dev);
  2355. }
  2356. /**
  2357. * pci_clear_master - disables bus-mastering for device dev
  2358. * @dev: the PCI device to disable
  2359. */
  2360. void pci_clear_master(struct pci_dev *dev)
  2361. {
  2362. __pci_set_master(dev, false);
  2363. }
  2364. /**
  2365. * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
  2366. * @dev: the PCI device for which MWI is to be enabled
  2367. *
  2368. * Helper function for pci_set_mwi.
  2369. * Originally copied from drivers/net/acenic.c.
  2370. * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
  2371. *
  2372. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  2373. */
  2374. int pci_set_cacheline_size(struct pci_dev *dev)
  2375. {
  2376. u8 cacheline_size;
  2377. if (!pci_cache_line_size)
  2378. return -EINVAL;
  2379. /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
  2380. equal to or multiple of the right value. */
  2381. pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
  2382. if (cacheline_size >= pci_cache_line_size &&
  2383. (cacheline_size % pci_cache_line_size) == 0)
  2384. return 0;
  2385. /* Write the correct value. */
  2386. pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
  2387. /* Read it back. */
  2388. pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
  2389. if (cacheline_size == pci_cache_line_size)
  2390. return 0;
  2391. dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
  2392. "supported\n", pci_cache_line_size << 2);
  2393. return -EINVAL;
  2394. }
  2395. EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
  2396. #ifdef PCI_DISABLE_MWI
  2397. int pci_set_mwi(struct pci_dev *dev)
  2398. {
  2399. return 0;
  2400. }
  2401. int pci_try_set_mwi(struct pci_dev *dev)
  2402. {
  2403. return 0;
  2404. }
  2405. void pci_clear_mwi(struct pci_dev *dev)
  2406. {
  2407. }
  2408. #else
  2409. /**
  2410. * pci_set_mwi - enables memory-write-invalidate PCI transaction
  2411. * @dev: the PCI device for which MWI is enabled
  2412. *
  2413. * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
  2414. *
  2415. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  2416. */
  2417. int
  2418. pci_set_mwi(struct pci_dev *dev)
  2419. {
  2420. int rc;
  2421. u16 cmd;
  2422. rc = pci_set_cacheline_size(dev);
  2423. if (rc)
  2424. return rc;
  2425. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  2426. if (! (cmd & PCI_COMMAND_INVALIDATE)) {
  2427. dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
  2428. cmd |= PCI_COMMAND_INVALIDATE;
  2429. pci_write_config_word(dev, PCI_COMMAND, cmd);
  2430. }
  2431. return 0;
  2432. }
  2433. /**
  2434. * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
  2435. * @dev: the PCI device for which MWI is enabled
  2436. *
  2437. * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
  2438. * Callers are not required to check the return value.
  2439. *
  2440. * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
  2441. */
  2442. int pci_try_set_mwi(struct pci_dev *dev)
  2443. {
  2444. int rc = pci_set_mwi(dev);
  2445. return rc;
  2446. }
  2447. /**
  2448. * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
  2449. * @dev: the PCI device to disable
  2450. *
  2451. * Disables PCI Memory-Write-Invalidate transaction on the device
  2452. */
  2453. void
  2454. pci_clear_mwi(struct pci_dev *dev)
  2455. {
  2456. u16 cmd;
  2457. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  2458. if (cmd & PCI_COMMAND_INVALIDATE) {
  2459. cmd &= ~PCI_COMMAND_INVALIDATE;
  2460. pci_write_config_word(dev, PCI_COMMAND, cmd);
  2461. }
  2462. }
  2463. #endif /* ! PCI_DISABLE_MWI */
  2464. /**
  2465. * pci_intx - enables/disables PCI INTx for device dev
  2466. * @pdev: the PCI device to operate on
  2467. * @enable: boolean: whether to enable or disable PCI INTx
  2468. *
  2469. * Enables/disables PCI INTx for device dev
  2470. */
  2471. void
  2472. pci_intx(struct pci_dev *pdev, int enable)
  2473. {
  2474. u16 pci_command, new;
  2475. pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
  2476. if (enable) {
  2477. new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
  2478. } else {
  2479. new = pci_command | PCI_COMMAND_INTX_DISABLE;
  2480. }
  2481. if (new != pci_command) {
  2482. struct pci_devres *dr;
  2483. pci_write_config_word(pdev, PCI_COMMAND, new);
  2484. dr = find_pci_dr(pdev);
  2485. if (dr && !dr->restore_intx) {
  2486. dr->restore_intx = 1;
  2487. dr->orig_intx = !enable;
  2488. }
  2489. }
  2490. }
  2491. /**
  2492. * pci_intx_mask_supported - probe for INTx masking support
  2493. * @dev: the PCI device to operate on
  2494. *
  2495. * Check if the device dev support INTx masking via the config space
  2496. * command word.
  2497. */
  2498. bool pci_intx_mask_supported(struct pci_dev *dev)
  2499. {
  2500. bool mask_supported = false;
  2501. u16 orig, new;
  2502. if (dev->broken_intx_masking)
  2503. return false;
  2504. pci_cfg_access_lock(dev);
  2505. pci_read_config_word(dev, PCI_COMMAND, &orig);
  2506. pci_write_config_word(dev, PCI_COMMAND,
  2507. orig ^ PCI_COMMAND_INTX_DISABLE);
  2508. pci_read_config_word(dev, PCI_COMMAND, &new);
  2509. /*
  2510. * There's no way to protect against hardware bugs or detect them
  2511. * reliably, but as long as we know what the value should be, let's
  2512. * go ahead and check it.
  2513. */
  2514. if ((new ^ orig) & ~PCI_COMMAND_INTX_DISABLE) {
  2515. dev_err(&dev->dev, "Command register changed from "
  2516. "0x%x to 0x%x: driver or hardware bug?\n", orig, new);
  2517. } else if ((new ^ orig) & PCI_COMMAND_INTX_DISABLE) {
  2518. mask_supported = true;
  2519. pci_write_config_word(dev, PCI_COMMAND, orig);
  2520. }
  2521. pci_cfg_access_unlock(dev);
  2522. return mask_supported;
  2523. }
  2524. EXPORT_SYMBOL_GPL(pci_intx_mask_supported);
  2525. static bool pci_check_and_set_intx_mask(struct pci_dev *dev, bool mask)
  2526. {
  2527. struct pci_bus *bus = dev->bus;
  2528. bool mask_updated = true;
  2529. u32 cmd_status_dword;
  2530. u16 origcmd, newcmd;
  2531. unsigned long flags;
  2532. bool irq_pending;
  2533. /*
  2534. * We do a single dword read to retrieve both command and status.
  2535. * Document assumptions that make this possible.
  2536. */
  2537. BUILD_BUG_ON(PCI_COMMAND % 4);
  2538. BUILD_BUG_ON(PCI_COMMAND + 2 != PCI_STATUS);
  2539. raw_spin_lock_irqsave(&pci_lock, flags);
  2540. bus->ops->read(bus, dev->devfn, PCI_COMMAND, 4, &cmd_status_dword);
  2541. irq_pending = (cmd_status_dword >> 16) & PCI_STATUS_INTERRUPT;
  2542. /*
  2543. * Check interrupt status register to see whether our device
  2544. * triggered the interrupt (when masking) or the next IRQ is
  2545. * already pending (when unmasking).
  2546. */
  2547. if (mask != irq_pending) {
  2548. mask_updated = false;
  2549. goto done;
  2550. }
  2551. origcmd = cmd_status_dword;
  2552. newcmd = origcmd & ~PCI_COMMAND_INTX_DISABLE;
  2553. if (mask)
  2554. newcmd |= PCI_COMMAND_INTX_DISABLE;
  2555. if (newcmd != origcmd)
  2556. bus->ops->write(bus, dev->devfn, PCI_COMMAND, 2, newcmd);
  2557. done:
  2558. raw_spin_unlock_irqrestore(&pci_lock, flags);
  2559. return mask_updated;
  2560. }
  2561. /**
  2562. * pci_check_and_mask_intx - mask INTx on pending interrupt
  2563. * @dev: the PCI device to operate on
  2564. *
  2565. * Check if the device dev has its INTx line asserted, mask it and
  2566. * return true in that case. False is returned if not interrupt was
  2567. * pending.
  2568. */
  2569. bool pci_check_and_mask_intx(struct pci_dev *dev)
  2570. {
  2571. return pci_check_and_set_intx_mask(dev, true);
  2572. }
  2573. EXPORT_SYMBOL_GPL(pci_check_and_mask_intx);
  2574. /**
  2575. * pci_check_and_unmask_intx - unmask INTx if no interrupt is pending
  2576. * @dev: the PCI device to operate on
  2577. *
  2578. * Check if the device dev has its INTx line asserted, unmask it if not
  2579. * and return true. False is returned and the mask remains active if
  2580. * there was still an interrupt pending.
  2581. */
  2582. bool pci_check_and_unmask_intx(struct pci_dev *dev)
  2583. {
  2584. return pci_check_and_set_intx_mask(dev, false);
  2585. }
  2586. EXPORT_SYMBOL_GPL(pci_check_and_unmask_intx);
  2587. /**
  2588. * pci_msi_off - disables any MSI or MSI-X capabilities
  2589. * @dev: the PCI device to operate on
  2590. *
  2591. * If you want to use MSI, see pci_enable_msi() and friends.
  2592. * This is a lower-level primitive that allows us to disable
  2593. * MSI operation at the device level.
  2594. */
  2595. void pci_msi_off(struct pci_dev *dev)
  2596. {
  2597. int pos;
  2598. u16 control;
  2599. /*
  2600. * This looks like it could go in msi.c, but we need it even when
  2601. * CONFIG_PCI_MSI=n. For the same reason, we can't use
  2602. * dev->msi_cap or dev->msix_cap here.
  2603. */
  2604. pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
  2605. if (pos) {
  2606. pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
  2607. control &= ~PCI_MSI_FLAGS_ENABLE;
  2608. pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
  2609. }
  2610. pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
  2611. if (pos) {
  2612. pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
  2613. control &= ~PCI_MSIX_FLAGS_ENABLE;
  2614. pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
  2615. }
  2616. }
  2617. EXPORT_SYMBOL_GPL(pci_msi_off);
  2618. int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
  2619. {
  2620. return dma_set_max_seg_size(&dev->dev, size);
  2621. }
  2622. EXPORT_SYMBOL(pci_set_dma_max_seg_size);
  2623. int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
  2624. {
  2625. return dma_set_seg_boundary(&dev->dev, mask);
  2626. }
  2627. EXPORT_SYMBOL(pci_set_dma_seg_boundary);
  2628. /**
  2629. * pci_wait_for_pending_transaction - waits for pending transaction
  2630. * @dev: the PCI device to operate on
  2631. *
  2632. * Return 0 if transaction is pending 1 otherwise.
  2633. */
  2634. int pci_wait_for_pending_transaction(struct pci_dev *dev)
  2635. {
  2636. if (!pci_is_pcie(dev))
  2637. return 1;
  2638. return pci_wait_for_pending(dev, pci_pcie_cap(dev) + PCI_EXP_DEVSTA,
  2639. PCI_EXP_DEVSTA_TRPND);
  2640. }
  2641. EXPORT_SYMBOL(pci_wait_for_pending_transaction);
  2642. static int pcie_flr(struct pci_dev *dev, int probe)
  2643. {
  2644. u32 cap;
  2645. pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
  2646. if (!(cap & PCI_EXP_DEVCAP_FLR))
  2647. return -ENOTTY;
  2648. if (probe)
  2649. return 0;
  2650. if (!pci_wait_for_pending_transaction(dev))
  2651. dev_err(&dev->dev, "transaction is not cleared; proceeding with reset anyway\n");
  2652. pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
  2653. msleep(100);
  2654. return 0;
  2655. }
  2656. static int pci_af_flr(struct pci_dev *dev, int probe)
  2657. {
  2658. int pos;
  2659. u8 cap;
  2660. pos = pci_find_capability(dev, PCI_CAP_ID_AF);
  2661. if (!pos)
  2662. return -ENOTTY;
  2663. pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
  2664. if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
  2665. return -ENOTTY;
  2666. if (probe)
  2667. return 0;
  2668. /* Wait for Transaction Pending bit clean */
  2669. if (pci_wait_for_pending(dev, pos + PCI_AF_STATUS, PCI_AF_STATUS_TP))
  2670. goto clear;
  2671. dev_err(&dev->dev, "transaction is not cleared; "
  2672. "proceeding with reset anyway\n");
  2673. clear:
  2674. pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
  2675. msleep(100);
  2676. return 0;
  2677. }
  2678. /**
  2679. * pci_pm_reset - Put device into PCI_D3 and back into PCI_D0.
  2680. * @dev: Device to reset.
  2681. * @probe: If set, only check if the device can be reset this way.
  2682. *
  2683. * If @dev supports native PCI PM and its PCI_PM_CTRL_NO_SOFT_RESET flag is
  2684. * unset, it will be reinitialized internally when going from PCI_D3hot to
  2685. * PCI_D0. If that's the case and the device is not in a low-power state
  2686. * already, force it into PCI_D3hot and back to PCI_D0, causing it to be reset.
  2687. *
  2688. * NOTE: This causes the caller to sleep for twice the device power transition
  2689. * cooldown period, which for the D0->D3hot and D3hot->D0 transitions is 10 ms
  2690. * by default (i.e. unless the @dev's d3_delay field has a different value).
  2691. * Moreover, only devices in D0 can be reset by this function.
  2692. */
  2693. static int pci_pm_reset(struct pci_dev *dev, int probe)
  2694. {
  2695. u16 csr;
  2696. if (!dev->pm_cap)
  2697. return -ENOTTY;
  2698. pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
  2699. if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
  2700. return -ENOTTY;
  2701. if (probe)
  2702. return 0;
  2703. if (dev->current_state != PCI_D0)
  2704. return -EINVAL;
  2705. csr &= ~PCI_PM_CTRL_STATE_MASK;
  2706. csr |= PCI_D3hot;
  2707. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
  2708. pci_dev_d3_sleep(dev);
  2709. csr &= ~PCI_PM_CTRL_STATE_MASK;
  2710. csr |= PCI_D0;
  2711. pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
  2712. pci_dev_d3_sleep(dev);
  2713. return 0;
  2714. }
  2715. /**
  2716. * pci_reset_bridge_secondary_bus - Reset the secondary bus on a PCI bridge.
  2717. * @dev: Bridge device
  2718. *
  2719. * Use the bridge control register to assert reset on the secondary bus.
  2720. * Devices on the secondary bus are left in power-on state.
  2721. */
  2722. void pci_reset_bridge_secondary_bus(struct pci_dev *dev)
  2723. {
  2724. u16 ctrl;
  2725. pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
  2726. ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
  2727. pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
  2728. /*
  2729. * PCI spec v3.0 7.6.4.2 requires minimum Trst of 1ms. Double
  2730. * this to 2ms to ensure that we meet the minimum requirement.
  2731. */
  2732. msleep(2);
  2733. ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
  2734. pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
  2735. /*
  2736. * Trhfa for conventional PCI is 2^25 clock cycles.
  2737. * Assuming a minimum 33MHz clock this results in a 1s
  2738. * delay before we can consider subordinate devices to
  2739. * be re-initialized. PCIe has some ways to shorten this,
  2740. * but we don't make use of them yet.
  2741. */
  2742. ssleep(1);
  2743. }
  2744. EXPORT_SYMBOL_GPL(pci_reset_bridge_secondary_bus);
  2745. static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
  2746. {
  2747. struct pci_dev *pdev;
  2748. if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
  2749. return -ENOTTY;
  2750. list_for_each_entry(pdev, &dev->bus->devices, bus_list)
  2751. if (pdev != dev)
  2752. return -ENOTTY;
  2753. if (probe)
  2754. return 0;
  2755. pci_reset_bridge_secondary_bus(dev->bus->self);
  2756. return 0;
  2757. }
  2758. static int pci_reset_hotplug_slot(struct hotplug_slot *hotplug, int probe)
  2759. {
  2760. int rc = -ENOTTY;
  2761. if (!hotplug || !try_module_get(hotplug->ops->owner))
  2762. return rc;
  2763. if (hotplug->ops->reset_slot)
  2764. rc = hotplug->ops->reset_slot(hotplug, probe);
  2765. module_put(hotplug->ops->owner);
  2766. return rc;
  2767. }
  2768. static int pci_dev_reset_slot_function(struct pci_dev *dev, int probe)
  2769. {
  2770. struct pci_dev *pdev;
  2771. if (dev->subordinate || !dev->slot)
  2772. return -ENOTTY;
  2773. list_for_each_entry(pdev, &dev->bus->devices, bus_list)
  2774. if (pdev != dev && pdev->slot == dev->slot)
  2775. return -ENOTTY;
  2776. return pci_reset_hotplug_slot(dev->slot->hotplug, probe);
  2777. }
  2778. static int __pci_dev_reset(struct pci_dev *dev, int probe)
  2779. {
  2780. int rc;
  2781. might_sleep();
  2782. rc = pci_dev_specific_reset(dev, probe);
  2783. if (rc != -ENOTTY)
  2784. goto done;
  2785. rc = pcie_flr(dev, probe);
  2786. if (rc != -ENOTTY)
  2787. goto done;
  2788. rc = pci_af_flr(dev, probe);
  2789. if (rc != -ENOTTY)
  2790. goto done;
  2791. rc = pci_pm_reset(dev, probe);
  2792. if (rc != -ENOTTY)
  2793. goto done;
  2794. rc = pci_dev_reset_slot_function(dev, probe);
  2795. if (rc != -ENOTTY)
  2796. goto done;
  2797. rc = pci_parent_bus_reset(dev, probe);
  2798. done:
  2799. return rc;
  2800. }
  2801. static void pci_dev_lock(struct pci_dev *dev)
  2802. {
  2803. pci_cfg_access_lock(dev);
  2804. /* block PM suspend, driver probe, etc. */
  2805. device_lock(&dev->dev);
  2806. }
  2807. /* Return 1 on successful lock, 0 on contention */
  2808. static int pci_dev_trylock(struct pci_dev *dev)
  2809. {
  2810. if (pci_cfg_access_trylock(dev)) {
  2811. if (device_trylock(&dev->dev))
  2812. return 1;
  2813. pci_cfg_access_unlock(dev);
  2814. }
  2815. return 0;
  2816. }
  2817. static void pci_dev_unlock(struct pci_dev *dev)
  2818. {
  2819. device_unlock(&dev->dev);
  2820. pci_cfg_access_unlock(dev);
  2821. }
  2822. static void pci_dev_save_and_disable(struct pci_dev *dev)
  2823. {
  2824. /*
  2825. * Wake-up device prior to save. PM registers default to D0 after
  2826. * reset and a simple register restore doesn't reliably return
  2827. * to a non-D0 state anyway.
  2828. */
  2829. pci_set_power_state(dev, PCI_D0);
  2830. pci_save_state(dev);
  2831. /*
  2832. * Disable the device by clearing the Command register, except for
  2833. * INTx-disable which is set. This not only disables MMIO and I/O port
  2834. * BARs, but also prevents the device from being Bus Master, preventing
  2835. * DMA from the device including MSI/MSI-X interrupts. For PCI 2.3
  2836. * compliant devices, INTx-disable prevents legacy interrupts.
  2837. */
  2838. pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
  2839. }
  2840. static void pci_dev_restore(struct pci_dev *dev)
  2841. {
  2842. pci_restore_state(dev);
  2843. }
  2844. static int pci_dev_reset(struct pci_dev *dev, int probe)
  2845. {
  2846. int rc;
  2847. if (!probe)
  2848. pci_dev_lock(dev);
  2849. rc = __pci_dev_reset(dev, probe);
  2850. if (!probe)
  2851. pci_dev_unlock(dev);
  2852. return rc;
  2853. }
  2854. /**
  2855. * __pci_reset_function - reset a PCI device function
  2856. * @dev: PCI device to reset
  2857. *
  2858. * Some devices allow an individual function to be reset without affecting
  2859. * other functions in the same device. The PCI device must be responsive
  2860. * to PCI config space in order to use this function.
  2861. *
  2862. * The device function is presumed to be unused when this function is called.
  2863. * Resetting the device will make the contents of PCI configuration space
  2864. * random, so any caller of this must be prepared to reinitialise the
  2865. * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
  2866. * etc.
  2867. *
  2868. * Returns 0 if the device function was successfully reset or negative if the
  2869. * device doesn't support resetting a single function.
  2870. */
  2871. int __pci_reset_function(struct pci_dev *dev)
  2872. {
  2873. return pci_dev_reset(dev, 0);
  2874. }
  2875. EXPORT_SYMBOL_GPL(__pci_reset_function);
  2876. /**
  2877. * __pci_reset_function_locked - reset a PCI device function while holding
  2878. * the @dev mutex lock.
  2879. * @dev: PCI device to reset
  2880. *
  2881. * Some devices allow an individual function to be reset without affecting
  2882. * other functions in the same device. The PCI device must be responsive
  2883. * to PCI config space in order to use this function.
  2884. *
  2885. * The device function is presumed to be unused and the caller is holding
  2886. * the device mutex lock when this function is called.
  2887. * Resetting the device will make the contents of PCI configuration space
  2888. * random, so any caller of this must be prepared to reinitialise the
  2889. * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
  2890. * etc.
  2891. *
  2892. * Returns 0 if the device function was successfully reset or negative if the
  2893. * device doesn't support resetting a single function.
  2894. */
  2895. int __pci_reset_function_locked(struct pci_dev *dev)
  2896. {
  2897. return __pci_dev_reset(dev, 0);
  2898. }
  2899. EXPORT_SYMBOL_GPL(__pci_reset_function_locked);
  2900. /**
  2901. * pci_probe_reset_function - check whether the device can be safely reset
  2902. * @dev: PCI device to reset
  2903. *
  2904. * Some devices allow an individual function to be reset without affecting
  2905. * other functions in the same device. The PCI device must be responsive
  2906. * to PCI config space in order to use this function.
  2907. *
  2908. * Returns 0 if the device function can be reset or negative if the
  2909. * device doesn't support resetting a single function.
  2910. */
  2911. int pci_probe_reset_function(struct pci_dev *dev)
  2912. {
  2913. return pci_dev_reset(dev, 1);
  2914. }
  2915. /**
  2916. * pci_reset_function - quiesce and reset a PCI device function
  2917. * @dev: PCI device to reset
  2918. *
  2919. * Some devices allow an individual function to be reset without affecting
  2920. * other functions in the same device. The PCI device must be responsive
  2921. * to PCI config space in order to use this function.
  2922. *
  2923. * This function does not just reset the PCI portion of a device, but
  2924. * clears all the state associated with the device. This function differs
  2925. * from __pci_reset_function in that it saves and restores device state
  2926. * over the reset.
  2927. *
  2928. * Returns 0 if the device function was successfully reset or negative if the
  2929. * device doesn't support resetting a single function.
  2930. */
  2931. int pci_reset_function(struct pci_dev *dev)
  2932. {
  2933. int rc;
  2934. rc = pci_dev_reset(dev, 1);
  2935. if (rc)
  2936. return rc;
  2937. pci_dev_save_and_disable(dev);
  2938. rc = pci_dev_reset(dev, 0);
  2939. pci_dev_restore(dev);
  2940. return rc;
  2941. }
  2942. EXPORT_SYMBOL_GPL(pci_reset_function);
  2943. /**
  2944. * pci_try_reset_function - quiesce and reset a PCI device function
  2945. * @dev: PCI device to reset
  2946. *
  2947. * Same as above, except return -EAGAIN if unable to lock device.
  2948. */
  2949. int pci_try_reset_function(struct pci_dev *dev)
  2950. {
  2951. int rc;
  2952. rc = pci_dev_reset(dev, 1);
  2953. if (rc)
  2954. return rc;
  2955. pci_dev_save_and_disable(dev);
  2956. if (pci_dev_trylock(dev)) {
  2957. rc = __pci_dev_reset(dev, 0);
  2958. pci_dev_unlock(dev);
  2959. } else
  2960. rc = -EAGAIN;
  2961. pci_dev_restore(dev);
  2962. return rc;
  2963. }
  2964. EXPORT_SYMBOL_GPL(pci_try_reset_function);
  2965. /* Lock devices from the top of the tree down */
  2966. static void pci_bus_lock(struct pci_bus *bus)
  2967. {
  2968. struct pci_dev *dev;
  2969. list_for_each_entry(dev, &bus->devices, bus_list) {
  2970. pci_dev_lock(dev);
  2971. if (dev->subordinate)
  2972. pci_bus_lock(dev->subordinate);
  2973. }
  2974. }
  2975. /* Unlock devices from the bottom of the tree up */
  2976. static void pci_bus_unlock(struct pci_bus *bus)
  2977. {
  2978. struct pci_dev *dev;
  2979. list_for_each_entry(dev, &bus->devices, bus_list) {
  2980. if (dev->subordinate)
  2981. pci_bus_unlock(dev->subordinate);
  2982. pci_dev_unlock(dev);
  2983. }
  2984. }
  2985. /* Return 1 on successful lock, 0 on contention */
  2986. static int pci_bus_trylock(struct pci_bus *bus)
  2987. {
  2988. struct pci_dev *dev;
  2989. list_for_each_entry(dev, &bus->devices, bus_list) {
  2990. if (!pci_dev_trylock(dev))
  2991. goto unlock;
  2992. if (dev->subordinate) {
  2993. if (!pci_bus_trylock(dev->subordinate)) {
  2994. pci_dev_unlock(dev);
  2995. goto unlock;
  2996. }
  2997. }
  2998. }
  2999. return 1;
  3000. unlock:
  3001. list_for_each_entry_continue_reverse(dev, &bus->devices, bus_list) {
  3002. if (dev->subordinate)
  3003. pci_bus_unlock(dev->subordinate);
  3004. pci_dev_unlock(dev);
  3005. }
  3006. return 0;
  3007. }
  3008. /* Lock devices from the top of the tree down */
  3009. static void pci_slot_lock(struct pci_slot *slot)
  3010. {
  3011. struct pci_dev *dev;
  3012. list_for_each_entry(dev, &slot->bus->devices, bus_list) {
  3013. if (!dev->slot || dev->slot != slot)
  3014. continue;
  3015. pci_dev_lock(dev);
  3016. if (dev->subordinate)
  3017. pci_bus_lock(dev->subordinate);
  3018. }
  3019. }
  3020. /* Unlock devices from the bottom of the tree up */
  3021. static void pci_slot_unlock(struct pci_slot *slot)
  3022. {
  3023. struct pci_dev *dev;
  3024. list_for_each_entry(dev, &slot->bus->devices, bus_list) {
  3025. if (!dev->slot || dev->slot != slot)
  3026. continue;
  3027. if (dev->subordinate)
  3028. pci_bus_unlock(dev->subordinate);
  3029. pci_dev_unlock(dev);
  3030. }
  3031. }
  3032. /* Return 1 on successful lock, 0 on contention */
  3033. static int pci_slot_trylock(struct pci_slot *slot)
  3034. {
  3035. struct pci_dev *dev;
  3036. list_for_each_entry(dev, &slot->bus->devices, bus_list) {
  3037. if (!dev->slot || dev->slot != slot)
  3038. continue;
  3039. if (!pci_dev_trylock(dev))
  3040. goto unlock;
  3041. if (dev->subordinate) {
  3042. if (!pci_bus_trylock(dev->subordinate)) {
  3043. pci_dev_unlock(dev);
  3044. goto unlock;
  3045. }
  3046. }
  3047. }
  3048. return 1;
  3049. unlock:
  3050. list_for_each_entry_continue_reverse(dev,
  3051. &slot->bus->devices, bus_list) {
  3052. if (!dev->slot || dev->slot != slot)
  3053. continue;
  3054. if (dev->subordinate)
  3055. pci_bus_unlock(dev->subordinate);
  3056. pci_dev_unlock(dev);
  3057. }
  3058. return 0;
  3059. }
  3060. /* Save and disable devices from the top of the tree down */
  3061. static void pci_bus_save_and_disable(struct pci_bus *bus)
  3062. {
  3063. struct pci_dev *dev;
  3064. list_for_each_entry(dev, &bus->devices, bus_list) {
  3065. pci_dev_save_and_disable(dev);
  3066. if (dev->subordinate)
  3067. pci_bus_save_and_disable(dev->subordinate);
  3068. }
  3069. }
  3070. /*
  3071. * Restore devices from top of the tree down - parent bridges need to be
  3072. * restored before we can get to subordinate devices.
  3073. */
  3074. static void pci_bus_restore(struct pci_bus *bus)
  3075. {
  3076. struct pci_dev *dev;
  3077. list_for_each_entry(dev, &bus->devices, bus_list) {
  3078. pci_dev_restore(dev);
  3079. if (dev->subordinate)
  3080. pci_bus_restore(dev->subordinate);
  3081. }
  3082. }
  3083. /* Save and disable devices from the top of the tree down */
  3084. static void pci_slot_save_and_disable(struct pci_slot *slot)
  3085. {
  3086. struct pci_dev *dev;
  3087. list_for_each_entry(dev, &slot->bus->devices, bus_list) {
  3088. if (!dev->slot || dev->slot != slot)
  3089. continue;
  3090. pci_dev_save_and_disable(dev);
  3091. if (dev->subordinate)
  3092. pci_bus_save_and_disable(dev->subordinate);
  3093. }
  3094. }
  3095. /*
  3096. * Restore devices from top of the tree down - parent bridges need to be
  3097. * restored before we can get to subordinate devices.
  3098. */
  3099. static void pci_slot_restore(struct pci_slot *slot)
  3100. {
  3101. struct pci_dev *dev;
  3102. list_for_each_entry(dev, &slot->bus->devices, bus_list) {
  3103. if (!dev->slot || dev->slot != slot)
  3104. continue;
  3105. pci_dev_restore(dev);
  3106. if (dev->subordinate)
  3107. pci_bus_restore(dev->subordinate);
  3108. }
  3109. }
  3110. static int pci_slot_reset(struct pci_slot *slot, int probe)
  3111. {
  3112. int rc;
  3113. if (!slot)
  3114. return -ENOTTY;
  3115. if (!probe)
  3116. pci_slot_lock(slot);
  3117. might_sleep();
  3118. rc = pci_reset_hotplug_slot(slot->hotplug, probe);
  3119. if (!probe)
  3120. pci_slot_unlock(slot);
  3121. return rc;
  3122. }
  3123. /**
  3124. * pci_probe_reset_slot - probe whether a PCI slot can be reset
  3125. * @slot: PCI slot to probe
  3126. *
  3127. * Return 0 if slot can be reset, negative if a slot reset is not supported.
  3128. */
  3129. int pci_probe_reset_slot(struct pci_slot *slot)
  3130. {
  3131. return pci_slot_reset(slot, 1);
  3132. }
  3133. EXPORT_SYMBOL_GPL(pci_probe_reset_slot);
  3134. /**
  3135. * pci_reset_slot - reset a PCI slot
  3136. * @slot: PCI slot to reset
  3137. *
  3138. * A PCI bus may host multiple slots, each slot may support a reset mechanism
  3139. * independent of other slots. For instance, some slots may support slot power
  3140. * control. In the case of a 1:1 bus to slot architecture, this function may
  3141. * wrap the bus reset to avoid spurious slot related events such as hotplug.
  3142. * Generally a slot reset should be attempted before a bus reset. All of the
  3143. * function of the slot and any subordinate buses behind the slot are reset
  3144. * through this function. PCI config space of all devices in the slot and
  3145. * behind the slot is saved before and restored after reset.
  3146. *
  3147. * Return 0 on success, non-zero on error.
  3148. */
  3149. int pci_reset_slot(struct pci_slot *slot)
  3150. {
  3151. int rc;
  3152. rc = pci_slot_reset(slot, 1);
  3153. if (rc)
  3154. return rc;
  3155. pci_slot_save_and_disable(slot);
  3156. rc = pci_slot_reset(slot, 0);
  3157. pci_slot_restore(slot);
  3158. return rc;
  3159. }
  3160. EXPORT_SYMBOL_GPL(pci_reset_slot);
  3161. /**
  3162. * pci_try_reset_slot - Try to reset a PCI slot
  3163. * @slot: PCI slot to reset
  3164. *
  3165. * Same as above except return -EAGAIN if the slot cannot be locked
  3166. */
  3167. int pci_try_reset_slot(struct pci_slot *slot)
  3168. {
  3169. int rc;
  3170. rc = pci_slot_reset(slot, 1);
  3171. if (rc)
  3172. return rc;
  3173. pci_slot_save_and_disable(slot);
  3174. if (pci_slot_trylock(slot)) {
  3175. might_sleep();
  3176. rc = pci_reset_hotplug_slot(slot->hotplug, 0);
  3177. pci_slot_unlock(slot);
  3178. } else
  3179. rc = -EAGAIN;
  3180. pci_slot_restore(slot);
  3181. return rc;
  3182. }
  3183. EXPORT_SYMBOL_GPL(pci_try_reset_slot);
  3184. static int pci_bus_reset(struct pci_bus *bus, int probe)
  3185. {
  3186. if (!bus->self)
  3187. return -ENOTTY;
  3188. if (probe)
  3189. return 0;
  3190. pci_bus_lock(bus);
  3191. might_sleep();
  3192. pci_reset_bridge_secondary_bus(bus->self);
  3193. pci_bus_unlock(bus);
  3194. return 0;
  3195. }
  3196. /**
  3197. * pci_probe_reset_bus - probe whether a PCI bus can be reset
  3198. * @bus: PCI bus to probe
  3199. *
  3200. * Return 0 if bus can be reset, negative if a bus reset is not supported.
  3201. */
  3202. int pci_probe_reset_bus(struct pci_bus *bus)
  3203. {
  3204. return pci_bus_reset(bus, 1);
  3205. }
  3206. EXPORT_SYMBOL_GPL(pci_probe_reset_bus);
  3207. /**
  3208. * pci_reset_bus - reset a PCI bus
  3209. * @bus: top level PCI bus to reset
  3210. *
  3211. * Do a bus reset on the given bus and any subordinate buses, saving
  3212. * and restoring state of all devices.
  3213. *
  3214. * Return 0 on success, non-zero on error.
  3215. */
  3216. int pci_reset_bus(struct pci_bus *bus)
  3217. {
  3218. int rc;
  3219. rc = pci_bus_reset(bus, 1);
  3220. if (rc)
  3221. return rc;
  3222. pci_bus_save_and_disable(bus);
  3223. rc = pci_bus_reset(bus, 0);
  3224. pci_bus_restore(bus);
  3225. return rc;
  3226. }
  3227. EXPORT_SYMBOL_GPL(pci_reset_bus);
  3228. /**
  3229. * pci_try_reset_bus - Try to reset a PCI bus
  3230. * @bus: top level PCI bus to reset
  3231. *
  3232. * Same as above except return -EAGAIN if the bus cannot be locked
  3233. */
  3234. int pci_try_reset_bus(struct pci_bus *bus)
  3235. {
  3236. int rc;
  3237. rc = pci_bus_reset(bus, 1);
  3238. if (rc)
  3239. return rc;
  3240. pci_bus_save_and_disable(bus);
  3241. if (pci_bus_trylock(bus)) {
  3242. might_sleep();
  3243. pci_reset_bridge_secondary_bus(bus->self);
  3244. pci_bus_unlock(bus);
  3245. } else
  3246. rc = -EAGAIN;
  3247. pci_bus_restore(bus);
  3248. return rc;
  3249. }
  3250. EXPORT_SYMBOL_GPL(pci_try_reset_bus);
  3251. /**
  3252. * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
  3253. * @dev: PCI device to query
  3254. *
  3255. * Returns mmrbc: maximum designed memory read count in bytes
  3256. * or appropriate error value.
  3257. */
  3258. int pcix_get_max_mmrbc(struct pci_dev *dev)
  3259. {
  3260. int cap;
  3261. u32 stat;
  3262. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  3263. if (!cap)
  3264. return -EINVAL;
  3265. if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
  3266. return -EINVAL;
  3267. return 512 << ((stat & PCI_X_STATUS_MAX_READ) >> 21);
  3268. }
  3269. EXPORT_SYMBOL(pcix_get_max_mmrbc);
  3270. /**
  3271. * pcix_get_mmrbc - get PCI-X maximum memory read byte count
  3272. * @dev: PCI device to query
  3273. *
  3274. * Returns mmrbc: maximum memory read count in bytes
  3275. * or appropriate error value.
  3276. */
  3277. int pcix_get_mmrbc(struct pci_dev *dev)
  3278. {
  3279. int cap;
  3280. u16 cmd;
  3281. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  3282. if (!cap)
  3283. return -EINVAL;
  3284. if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
  3285. return -EINVAL;
  3286. return 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
  3287. }
  3288. EXPORT_SYMBOL(pcix_get_mmrbc);
  3289. /**
  3290. * pcix_set_mmrbc - set PCI-X maximum memory read byte count
  3291. * @dev: PCI device to query
  3292. * @mmrbc: maximum memory read count in bytes
  3293. * valid values are 512, 1024, 2048, 4096
  3294. *
  3295. * If possible sets maximum memory read byte count, some bridges have erratas
  3296. * that prevent this.
  3297. */
  3298. int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
  3299. {
  3300. int cap;
  3301. u32 stat, v, o;
  3302. u16 cmd;
  3303. if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
  3304. return -EINVAL;
  3305. v = ffs(mmrbc) - 10;
  3306. cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
  3307. if (!cap)
  3308. return -EINVAL;
  3309. if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
  3310. return -EINVAL;
  3311. if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
  3312. return -E2BIG;
  3313. if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
  3314. return -EINVAL;
  3315. o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
  3316. if (o != v) {
  3317. if (v > o && (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
  3318. return -EIO;
  3319. cmd &= ~PCI_X_CMD_MAX_READ;
  3320. cmd |= v << 2;
  3321. if (pci_write_config_word(dev, cap + PCI_X_CMD, cmd))
  3322. return -EIO;
  3323. }
  3324. return 0;
  3325. }
  3326. EXPORT_SYMBOL(pcix_set_mmrbc);
  3327. /**
  3328. * pcie_get_readrq - get PCI Express read request size
  3329. * @dev: PCI device to query
  3330. *
  3331. * Returns maximum memory read request in bytes
  3332. * or appropriate error value.
  3333. */
  3334. int pcie_get_readrq(struct pci_dev *dev)
  3335. {
  3336. u16 ctl;
  3337. pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
  3338. return 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
  3339. }
  3340. EXPORT_SYMBOL(pcie_get_readrq);
  3341. /**
  3342. * pcie_set_readrq - set PCI Express maximum memory read request
  3343. * @dev: PCI device to query
  3344. * @rq: maximum memory read count in bytes
  3345. * valid values are 128, 256, 512, 1024, 2048, 4096
  3346. *
  3347. * If possible sets maximum memory read request in bytes
  3348. */
  3349. int pcie_set_readrq(struct pci_dev *dev, int rq)
  3350. {
  3351. u16 v;
  3352. if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
  3353. return -EINVAL;
  3354. /*
  3355. * If using the "performance" PCIe config, we clamp the
  3356. * read rq size to the max packet size to prevent the
  3357. * host bridge generating requests larger than we can
  3358. * cope with
  3359. */
  3360. if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
  3361. int mps = pcie_get_mps(dev);
  3362. if (mps < rq)
  3363. rq = mps;
  3364. }
  3365. v = (ffs(rq) - 8) << 12;
  3366. return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
  3367. PCI_EXP_DEVCTL_READRQ, v);
  3368. }
  3369. EXPORT_SYMBOL(pcie_set_readrq);
  3370. /**
  3371. * pcie_get_mps - get PCI Express maximum payload size
  3372. * @dev: PCI device to query
  3373. *
  3374. * Returns maximum payload size in bytes
  3375. */
  3376. int pcie_get_mps(struct pci_dev *dev)
  3377. {
  3378. u16 ctl;
  3379. pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
  3380. return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
  3381. }
  3382. EXPORT_SYMBOL(pcie_get_mps);
  3383. /**
  3384. * pcie_set_mps - set PCI Express maximum payload size
  3385. * @dev: PCI device to query
  3386. * @mps: maximum payload size in bytes
  3387. * valid values are 128, 256, 512, 1024, 2048, 4096
  3388. *
  3389. * If possible sets maximum payload size
  3390. */
  3391. int pcie_set_mps(struct pci_dev *dev, int mps)
  3392. {
  3393. u16 v;
  3394. if (mps < 128 || mps > 4096 || !is_power_of_2(mps))
  3395. return -EINVAL;
  3396. v = ffs(mps) - 8;
  3397. if (v > dev->pcie_mpss)
  3398. return -EINVAL;
  3399. v <<= 5;
  3400. return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
  3401. PCI_EXP_DEVCTL_PAYLOAD, v);
  3402. }
  3403. EXPORT_SYMBOL(pcie_set_mps);
  3404. /**
  3405. * pcie_get_minimum_link - determine minimum link settings of a PCI device
  3406. * @dev: PCI device to query
  3407. * @speed: storage for minimum speed
  3408. * @width: storage for minimum width
  3409. *
  3410. * This function will walk up the PCI device chain and determine the minimum
  3411. * link width and speed of the device.
  3412. */
  3413. int pcie_get_minimum_link(struct pci_dev *dev, enum pci_bus_speed *speed,
  3414. enum pcie_link_width *width)
  3415. {
  3416. int ret;
  3417. *speed = PCI_SPEED_UNKNOWN;
  3418. *width = PCIE_LNK_WIDTH_UNKNOWN;
  3419. while (dev) {
  3420. u16 lnksta;
  3421. enum pci_bus_speed next_speed;
  3422. enum pcie_link_width next_width;
  3423. ret = pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta);
  3424. if (ret)
  3425. return ret;
  3426. next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS];
  3427. next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >>
  3428. PCI_EXP_LNKSTA_NLW_SHIFT;
  3429. if (next_speed < *speed)
  3430. *speed = next_speed;
  3431. if (next_width < *width)
  3432. *width = next_width;
  3433. dev = dev->bus->self;
  3434. }
  3435. return 0;
  3436. }
  3437. EXPORT_SYMBOL(pcie_get_minimum_link);
  3438. /**
  3439. * pci_select_bars - Make BAR mask from the type of resource
  3440. * @dev: the PCI device for which BAR mask is made
  3441. * @flags: resource type mask to be selected
  3442. *
  3443. * This helper routine makes bar mask from the type of resource.
  3444. */
  3445. int pci_select_bars(struct pci_dev *dev, unsigned long flags)
  3446. {
  3447. int i, bars = 0;
  3448. for (i = 0; i < PCI_NUM_RESOURCES; i++)
  3449. if (pci_resource_flags(dev, i) & flags)
  3450. bars |= (1 << i);
  3451. return bars;
  3452. }
  3453. /**
  3454. * pci_resource_bar - get position of the BAR associated with a resource
  3455. * @dev: the PCI device
  3456. * @resno: the resource number
  3457. * @type: the BAR type to be filled in
  3458. *
  3459. * Returns BAR position in config space, or 0 if the BAR is invalid.
  3460. */
  3461. int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
  3462. {
  3463. int reg;
  3464. if (resno < PCI_ROM_RESOURCE) {
  3465. *type = pci_bar_unknown;
  3466. return PCI_BASE_ADDRESS_0 + 4 * resno;
  3467. } else if (resno == PCI_ROM_RESOURCE) {
  3468. *type = pci_bar_mem32;
  3469. return dev->rom_base_reg;
  3470. } else if (resno < PCI_BRIDGE_RESOURCES) {
  3471. /* device specific resource */
  3472. reg = pci_iov_resource_bar(dev, resno, type);
  3473. if (reg)
  3474. return reg;
  3475. }
  3476. dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
  3477. return 0;
  3478. }
  3479. /* Some architectures require additional programming to enable VGA */
  3480. static arch_set_vga_state_t arch_set_vga_state;
  3481. void __init pci_register_set_vga_state(arch_set_vga_state_t func)
  3482. {
  3483. arch_set_vga_state = func; /* NULL disables */
  3484. }
  3485. static int pci_set_vga_state_arch(struct pci_dev *dev, bool decode,
  3486. unsigned int command_bits, u32 flags)
  3487. {
  3488. if (arch_set_vga_state)
  3489. return arch_set_vga_state(dev, decode, command_bits,
  3490. flags);
  3491. return 0;
  3492. }
  3493. /**
  3494. * pci_set_vga_state - set VGA decode state on device and parents if requested
  3495. * @dev: the PCI device
  3496. * @decode: true = enable decoding, false = disable decoding
  3497. * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
  3498. * @flags: traverse ancestors and change bridges
  3499. * CHANGE_BRIDGE_ONLY / CHANGE_BRIDGE
  3500. */
  3501. int pci_set_vga_state(struct pci_dev *dev, bool decode,
  3502. unsigned int command_bits, u32 flags)
  3503. {
  3504. struct pci_bus *bus;
  3505. struct pci_dev *bridge;
  3506. u16 cmd;
  3507. int rc;
  3508. WARN_ON((flags & PCI_VGA_STATE_CHANGE_DECODES) & (command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY)));
  3509. /* ARCH specific VGA enables */
  3510. rc = pci_set_vga_state_arch(dev, decode, command_bits, flags);
  3511. if (rc)
  3512. return rc;
  3513. if (flags & PCI_VGA_STATE_CHANGE_DECODES) {
  3514. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  3515. if (decode == true)
  3516. cmd |= command_bits;
  3517. else
  3518. cmd &= ~command_bits;
  3519. pci_write_config_word(dev, PCI_COMMAND, cmd);
  3520. }
  3521. if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
  3522. return 0;
  3523. bus = dev->bus;
  3524. while (bus) {
  3525. bridge = bus->self;
  3526. if (bridge) {
  3527. pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
  3528. &cmd);
  3529. if (decode == true)
  3530. cmd |= PCI_BRIDGE_CTL_VGA;
  3531. else
  3532. cmd &= ~PCI_BRIDGE_CTL_VGA;
  3533. pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
  3534. cmd);
  3535. }
  3536. bus = bus->parent;
  3537. }
  3538. return 0;
  3539. }
  3540. bool pci_device_is_present(struct pci_dev *pdev)
  3541. {
  3542. u32 v;
  3543. return pci_bus_read_dev_vendor_id(pdev->bus, pdev->devfn, &v, 0);
  3544. }
  3545. EXPORT_SYMBOL_GPL(pci_device_is_present);
  3546. #define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
  3547. static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
  3548. static DEFINE_SPINLOCK(resource_alignment_lock);
  3549. /**
  3550. * pci_specified_resource_alignment - get resource alignment specified by user.
  3551. * @dev: the PCI device to get
  3552. *
  3553. * RETURNS: Resource alignment if it is specified.
  3554. * Zero if it is not specified.
  3555. */
  3556. static resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
  3557. {
  3558. int seg, bus, slot, func, align_order, count;
  3559. resource_size_t align = 0;
  3560. char *p;
  3561. spin_lock(&resource_alignment_lock);
  3562. p = resource_alignment_param;
  3563. while (*p) {
  3564. count = 0;
  3565. if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
  3566. p[count] == '@') {
  3567. p += count + 1;
  3568. } else {
  3569. align_order = -1;
  3570. }
  3571. if (sscanf(p, "%x:%x:%x.%x%n",
  3572. &seg, &bus, &slot, &func, &count) != 4) {
  3573. seg = 0;
  3574. if (sscanf(p, "%x:%x.%x%n",
  3575. &bus, &slot, &func, &count) != 3) {
  3576. /* Invalid format */
  3577. printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
  3578. p);
  3579. break;
  3580. }
  3581. }
  3582. p += count;
  3583. if (seg == pci_domain_nr(dev->bus) &&
  3584. bus == dev->bus->number &&
  3585. slot == PCI_SLOT(dev->devfn) &&
  3586. func == PCI_FUNC(dev->devfn)) {
  3587. if (align_order == -1) {
  3588. align = PAGE_SIZE;
  3589. } else {
  3590. align = 1 << align_order;
  3591. }
  3592. /* Found */
  3593. break;
  3594. }
  3595. if (*p != ';' && *p != ',') {
  3596. /* End of param or invalid format */
  3597. break;
  3598. }
  3599. p++;
  3600. }
  3601. spin_unlock(&resource_alignment_lock);
  3602. return align;
  3603. }
  3604. /*
  3605. * This function disables memory decoding and releases memory resources
  3606. * of the device specified by kernel's boot parameter 'pci=resource_alignment='.
  3607. * It also rounds up size to specified alignment.
  3608. * Later on, the kernel will assign page-aligned memory resource back
  3609. * to the device.
  3610. */
  3611. void pci_reassigndev_resource_alignment(struct pci_dev *dev)
  3612. {
  3613. int i;
  3614. struct resource *r;
  3615. resource_size_t align, size;
  3616. u16 command;
  3617. /* check if specified PCI is target device to reassign */
  3618. align = pci_specified_resource_alignment(dev);
  3619. if (!align)
  3620. return;
  3621. if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
  3622. (dev->class >> 8) == PCI_CLASS_BRIDGE_HOST) {
  3623. dev_warn(&dev->dev,
  3624. "Can't reassign resources to host bridge.\n");
  3625. return;
  3626. }
  3627. dev_info(&dev->dev,
  3628. "Disabling memory decoding and releasing memory resources.\n");
  3629. pci_read_config_word(dev, PCI_COMMAND, &command);
  3630. command &= ~PCI_COMMAND_MEMORY;
  3631. pci_write_config_word(dev, PCI_COMMAND, command);
  3632. for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
  3633. r = &dev->resource[i];
  3634. if (!(r->flags & IORESOURCE_MEM))
  3635. continue;
  3636. size = resource_size(r);
  3637. if (size < align) {
  3638. size = align;
  3639. dev_info(&dev->dev,
  3640. "Rounding up size of resource #%d to %#llx.\n",
  3641. i, (unsigned long long)size);
  3642. }
  3643. r->flags |= IORESOURCE_UNSET;
  3644. r->end = size - 1;
  3645. r->start = 0;
  3646. }
  3647. /* Need to disable bridge's resource window,
  3648. * to enable the kernel to reassign new resource
  3649. * window later on.
  3650. */
  3651. if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
  3652. (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
  3653. for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++) {
  3654. r = &dev->resource[i];
  3655. if (!(r->flags & IORESOURCE_MEM))
  3656. continue;
  3657. r->flags |= IORESOURCE_UNSET;
  3658. r->end = resource_size(r) - 1;
  3659. r->start = 0;
  3660. }
  3661. pci_disable_bridge_window(dev);
  3662. }
  3663. }
  3664. static ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
  3665. {
  3666. if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
  3667. count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
  3668. spin_lock(&resource_alignment_lock);
  3669. strncpy(resource_alignment_param, buf, count);
  3670. resource_alignment_param[count] = '\0';
  3671. spin_unlock(&resource_alignment_lock);
  3672. return count;
  3673. }
  3674. static ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
  3675. {
  3676. size_t count;
  3677. spin_lock(&resource_alignment_lock);
  3678. count = snprintf(buf, size, "%s", resource_alignment_param);
  3679. spin_unlock(&resource_alignment_lock);
  3680. return count;
  3681. }
  3682. static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
  3683. {
  3684. return pci_get_resource_alignment_param(buf, PAGE_SIZE);
  3685. }
  3686. static ssize_t pci_resource_alignment_store(struct bus_type *bus,
  3687. const char *buf, size_t count)
  3688. {
  3689. return pci_set_resource_alignment_param(buf, count);
  3690. }
  3691. BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
  3692. pci_resource_alignment_store);
  3693. static int __init pci_resource_alignment_sysfs_init(void)
  3694. {
  3695. return bus_create_file(&pci_bus_type,
  3696. &bus_attr_resource_alignment);
  3697. }
  3698. late_initcall(pci_resource_alignment_sysfs_init);
  3699. static void pci_no_domains(void)
  3700. {
  3701. #ifdef CONFIG_PCI_DOMAINS
  3702. pci_domains_supported = 0;
  3703. #endif
  3704. }
  3705. /**
  3706. * pci_ext_cfg_avail - can we access extended PCI config space?
  3707. *
  3708. * Returns 1 if we can access PCI extended config space (offsets
  3709. * greater than 0xff). This is the default implementation. Architecture
  3710. * implementations can override this.
  3711. */
  3712. int __weak pci_ext_cfg_avail(void)
  3713. {
  3714. return 1;
  3715. }
  3716. void __weak pci_fixup_cardbus(struct pci_bus *bus)
  3717. {
  3718. }
  3719. EXPORT_SYMBOL(pci_fixup_cardbus);
  3720. static int __init pci_setup(char *str)
  3721. {
  3722. while (str) {
  3723. char *k = strchr(str, ',');
  3724. if (k)
  3725. *k++ = 0;
  3726. if (*str && (str = pcibios_setup(str)) && *str) {
  3727. if (!strcmp(str, "nomsi")) {
  3728. pci_no_msi();
  3729. } else if (!strcmp(str, "noaer")) {
  3730. pci_no_aer();
  3731. } else if (!strncmp(str, "realloc=", 8)) {
  3732. pci_realloc_get_opt(str + 8);
  3733. } else if (!strncmp(str, "realloc", 7)) {
  3734. pci_realloc_get_opt("on");
  3735. } else if (!strcmp(str, "nodomains")) {
  3736. pci_no_domains();
  3737. } else if (!strncmp(str, "noari", 5)) {
  3738. pcie_ari_disabled = true;
  3739. } else if (!strncmp(str, "cbiosize=", 9)) {
  3740. pci_cardbus_io_size = memparse(str + 9, &str);
  3741. } else if (!strncmp(str, "cbmemsize=", 10)) {
  3742. pci_cardbus_mem_size = memparse(str + 10, &str);
  3743. } else if (!strncmp(str, "resource_alignment=", 19)) {
  3744. pci_set_resource_alignment_param(str + 19,
  3745. strlen(str + 19));
  3746. } else if (!strncmp(str, "ecrc=", 5)) {
  3747. pcie_ecrc_get_policy(str + 5);
  3748. } else if (!strncmp(str, "hpiosize=", 9)) {
  3749. pci_hotplug_io_size = memparse(str + 9, &str);
  3750. } else if (!strncmp(str, "hpmemsize=", 10)) {
  3751. pci_hotplug_mem_size = memparse(str + 10, &str);
  3752. } else if (!strncmp(str, "pcie_bus_tune_off", 17)) {
  3753. pcie_bus_config = PCIE_BUS_TUNE_OFF;
  3754. } else if (!strncmp(str, "pcie_bus_safe", 13)) {
  3755. pcie_bus_config = PCIE_BUS_SAFE;
  3756. } else if (!strncmp(str, "pcie_bus_perf", 13)) {
  3757. pcie_bus_config = PCIE_BUS_PERFORMANCE;
  3758. } else if (!strncmp(str, "pcie_bus_peer2peer", 18)) {
  3759. pcie_bus_config = PCIE_BUS_PEER2PEER;
  3760. } else if (!strncmp(str, "pcie_scan_all", 13)) {
  3761. pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS);
  3762. } else {
  3763. printk(KERN_ERR "PCI: Unknown option `%s'\n",
  3764. str);
  3765. }
  3766. }
  3767. str = k;
  3768. }
  3769. return 0;
  3770. }
  3771. early_param("pci", pci_setup);
  3772. EXPORT_SYMBOL(pci_reenable_device);
  3773. EXPORT_SYMBOL(pci_enable_device_io);
  3774. EXPORT_SYMBOL(pci_enable_device_mem);
  3775. EXPORT_SYMBOL(pci_enable_device);
  3776. EXPORT_SYMBOL(pcim_enable_device);
  3777. EXPORT_SYMBOL(pcim_pin_device);
  3778. EXPORT_SYMBOL(pci_disable_device);
  3779. EXPORT_SYMBOL(pci_find_capability);
  3780. EXPORT_SYMBOL(pci_bus_find_capability);
  3781. EXPORT_SYMBOL(pci_release_regions);
  3782. EXPORT_SYMBOL(pci_request_regions);
  3783. EXPORT_SYMBOL(pci_request_regions_exclusive);
  3784. EXPORT_SYMBOL(pci_release_region);
  3785. EXPORT_SYMBOL(pci_request_region);
  3786. EXPORT_SYMBOL(pci_request_region_exclusive);
  3787. EXPORT_SYMBOL(pci_release_selected_regions);
  3788. EXPORT_SYMBOL(pci_request_selected_regions);
  3789. EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
  3790. EXPORT_SYMBOL(pci_set_master);
  3791. EXPORT_SYMBOL(pci_clear_master);
  3792. EXPORT_SYMBOL(pci_set_mwi);
  3793. EXPORT_SYMBOL(pci_try_set_mwi);
  3794. EXPORT_SYMBOL(pci_clear_mwi);
  3795. EXPORT_SYMBOL_GPL(pci_intx);
  3796. EXPORT_SYMBOL(pci_assign_resource);
  3797. EXPORT_SYMBOL(pci_find_parent_resource);
  3798. EXPORT_SYMBOL(pci_select_bars);
  3799. EXPORT_SYMBOL(pci_set_power_state);
  3800. EXPORT_SYMBOL(pci_save_state);
  3801. EXPORT_SYMBOL(pci_restore_state);
  3802. EXPORT_SYMBOL(pci_pme_capable);
  3803. EXPORT_SYMBOL(pci_pme_active);
  3804. EXPORT_SYMBOL(pci_wake_from_d3);
  3805. EXPORT_SYMBOL(pci_prepare_to_sleep);
  3806. EXPORT_SYMBOL(pci_back_from_sleep);
  3807. EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);