pci.c 73 KB

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