setup-bus.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569
  1. /*
  2. * drivers/pci/setup-bus.c
  3. *
  4. * Extruded from code written by
  5. * Dave Rusling (david.rusling@reo.mts.dec.com)
  6. * David Mosberger (davidm@cs.arizona.edu)
  7. * David Miller (davem@redhat.com)
  8. *
  9. * Support routines for initializing a PCI subsystem.
  10. */
  11. /*
  12. * Nov 2000, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
  13. * PCI-PCI bridges cleanup, sorted resource allocation.
  14. * Feb 2002, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
  15. * Converted to allocation in 3 passes, which gives
  16. * tighter packing. Prefetchable range support.
  17. */
  18. #include <linux/init.h>
  19. #include <linux/kernel.h>
  20. #include <linux/module.h>
  21. #include <linux/pci.h>
  22. #include <linux/errno.h>
  23. #include <linux/ioport.h>
  24. #include <linux/cache.h>
  25. #include <linux/slab.h>
  26. #include <asm-generic/pci-bridge.h>
  27. #include "pci.h"
  28. unsigned int pci_flags;
  29. struct pci_dev_resource {
  30. struct list_head list;
  31. struct resource *res;
  32. struct pci_dev *dev;
  33. resource_size_t start;
  34. resource_size_t end;
  35. resource_size_t add_size;
  36. resource_size_t min_align;
  37. unsigned long flags;
  38. };
  39. static void free_list(struct list_head *head)
  40. {
  41. struct pci_dev_resource *dev_res, *tmp;
  42. list_for_each_entry_safe(dev_res, tmp, head, list) {
  43. list_del(&dev_res->list);
  44. kfree(dev_res);
  45. }
  46. }
  47. /**
  48. * add_to_list() - add a new resource tracker to the list
  49. * @head: Head of the list
  50. * @dev: device corresponding to which the resource
  51. * belongs
  52. * @res: The resource to be tracked
  53. * @add_size: additional size to be optionally added
  54. * to the resource
  55. */
  56. static int add_to_list(struct list_head *head,
  57. struct pci_dev *dev, struct resource *res,
  58. resource_size_t add_size, resource_size_t min_align)
  59. {
  60. struct pci_dev_resource *tmp;
  61. tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
  62. if (!tmp) {
  63. pr_warning("add_to_list: kmalloc() failed!\n");
  64. return -ENOMEM;
  65. }
  66. tmp->res = res;
  67. tmp->dev = dev;
  68. tmp->start = res->start;
  69. tmp->end = res->end;
  70. tmp->flags = res->flags;
  71. tmp->add_size = add_size;
  72. tmp->min_align = min_align;
  73. list_add(&tmp->list, head);
  74. return 0;
  75. }
  76. static void remove_from_list(struct list_head *head,
  77. struct resource *res)
  78. {
  79. struct pci_dev_resource *dev_res, *tmp;
  80. list_for_each_entry_safe(dev_res, tmp, head, list) {
  81. if (dev_res->res == res) {
  82. list_del(&dev_res->list);
  83. kfree(dev_res);
  84. break;
  85. }
  86. }
  87. }
  88. static resource_size_t get_res_add_size(struct list_head *head,
  89. struct resource *res)
  90. {
  91. struct pci_dev_resource *dev_res;
  92. list_for_each_entry(dev_res, head, list) {
  93. if (dev_res->res == res) {
  94. int idx = res - &dev_res->dev->resource[0];
  95. dev_printk(KERN_DEBUG, &dev_res->dev->dev,
  96. "res[%d]=%pR get_res_add_size add_size %llx\n",
  97. idx, dev_res->res,
  98. (unsigned long long)dev_res->add_size);
  99. return dev_res->add_size;
  100. }
  101. }
  102. return 0;
  103. }
  104. /* Sort resources by alignment */
  105. static void pdev_sort_resources(struct pci_dev *dev, struct list_head *head)
  106. {
  107. int i;
  108. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  109. struct resource *r;
  110. struct pci_dev_resource *dev_res, *tmp;
  111. resource_size_t r_align;
  112. struct list_head *n;
  113. r = &dev->resource[i];
  114. if (r->flags & IORESOURCE_PCI_FIXED)
  115. continue;
  116. if (!(r->flags) || r->parent)
  117. continue;
  118. r_align = pci_resource_alignment(dev, r);
  119. if (!r_align) {
  120. dev_warn(&dev->dev, "BAR %d: %pR has bogus alignment\n",
  121. i, r);
  122. continue;
  123. }
  124. tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
  125. if (!tmp)
  126. panic("pdev_sort_resources(): "
  127. "kmalloc() failed!\n");
  128. tmp->res = r;
  129. tmp->dev = dev;
  130. /* fallback is smallest one or list is empty*/
  131. n = head;
  132. list_for_each_entry(dev_res, head, list) {
  133. resource_size_t align;
  134. align = pci_resource_alignment(dev_res->dev,
  135. dev_res->res);
  136. if (r_align > align) {
  137. n = &dev_res->list;
  138. break;
  139. }
  140. }
  141. /* Insert it just before n*/
  142. list_add_tail(&tmp->list, n);
  143. }
  144. }
  145. static void __dev_sort_resources(struct pci_dev *dev,
  146. struct list_head *head)
  147. {
  148. u16 class = dev->class >> 8;
  149. /* Don't touch classless devices or host bridges or ioapics. */
  150. if (class == PCI_CLASS_NOT_DEFINED || class == PCI_CLASS_BRIDGE_HOST)
  151. return;
  152. /* Don't touch ioapic devices already enabled by firmware */
  153. if (class == PCI_CLASS_SYSTEM_PIC) {
  154. u16 command;
  155. pci_read_config_word(dev, PCI_COMMAND, &command);
  156. if (command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
  157. return;
  158. }
  159. pdev_sort_resources(dev, head);
  160. }
  161. static inline void reset_resource(struct resource *res)
  162. {
  163. res->start = 0;
  164. res->end = 0;
  165. res->flags = 0;
  166. }
  167. /**
  168. * reassign_resources_sorted() - satisfy any additional resource requests
  169. *
  170. * @realloc_head : head of the list tracking requests requiring additional
  171. * resources
  172. * @head : head of the list tracking requests with allocated
  173. * resources
  174. *
  175. * Walk through each element of the realloc_head and try to procure
  176. * additional resources for the element, provided the element
  177. * is in the head list.
  178. */
  179. static void reassign_resources_sorted(struct list_head *realloc_head,
  180. struct list_head *head)
  181. {
  182. struct resource *res;
  183. struct pci_dev_resource *add_res, *tmp;
  184. struct pci_dev_resource *dev_res;
  185. resource_size_t add_size;
  186. int idx;
  187. list_for_each_entry_safe(add_res, tmp, realloc_head, list) {
  188. bool found_match = false;
  189. res = add_res->res;
  190. /* skip resource that has been reset */
  191. if (!res->flags)
  192. goto out;
  193. /* skip this resource if not found in head list */
  194. list_for_each_entry(dev_res, head, list) {
  195. if (dev_res->res == res) {
  196. found_match = true;
  197. break;
  198. }
  199. }
  200. if (!found_match)/* just skip */
  201. continue;
  202. idx = res - &add_res->dev->resource[0];
  203. add_size = add_res->add_size;
  204. if (!resource_size(res)) {
  205. res->start = add_res->start;
  206. res->end = res->start + add_size - 1;
  207. if (pci_assign_resource(add_res->dev, idx))
  208. reset_resource(res);
  209. } else {
  210. resource_size_t align = add_res->min_align;
  211. res->flags |= add_res->flags &
  212. (IORESOURCE_STARTALIGN|IORESOURCE_SIZEALIGN);
  213. if (pci_reassign_resource(add_res->dev, idx,
  214. add_size, align))
  215. dev_printk(KERN_DEBUG, &add_res->dev->dev,
  216. "failed to add %llx res[%d]=%pR\n",
  217. (unsigned long long)add_size,
  218. idx, res);
  219. }
  220. out:
  221. list_del(&add_res->list);
  222. kfree(add_res);
  223. }
  224. }
  225. /**
  226. * assign_requested_resources_sorted() - satisfy resource requests
  227. *
  228. * @head : head of the list tracking requests for resources
  229. * @fail_head : head of the list tracking requests that could
  230. * not be allocated
  231. *
  232. * Satisfy resource requests of each element in the list. Add
  233. * requests that could not satisfied to the failed_list.
  234. */
  235. static void assign_requested_resources_sorted(struct list_head *head,
  236. struct list_head *fail_head)
  237. {
  238. struct resource *res;
  239. struct pci_dev_resource *dev_res;
  240. int idx;
  241. list_for_each_entry(dev_res, head, list) {
  242. res = dev_res->res;
  243. idx = res - &dev_res->dev->resource[0];
  244. if (resource_size(res) &&
  245. pci_assign_resource(dev_res->dev, idx)) {
  246. if (fail_head) {
  247. /*
  248. * if the failed res is for ROM BAR, and it will
  249. * be enabled later, don't add it to the list
  250. */
  251. if (!((idx == PCI_ROM_RESOURCE) &&
  252. (!(res->flags & IORESOURCE_ROM_ENABLE))))
  253. add_to_list(fail_head,
  254. dev_res->dev, res,
  255. 0 /* dont care */,
  256. 0 /* dont care */);
  257. }
  258. reset_resource(res);
  259. }
  260. }
  261. }
  262. static void __assign_resources_sorted(struct list_head *head,
  263. struct list_head *realloc_head,
  264. struct list_head *fail_head)
  265. {
  266. /*
  267. * Should not assign requested resources at first.
  268. * they could be adjacent, so later reassign can not reallocate
  269. * them one by one in parent resource window.
  270. * Try to assign requested + add_size at beginning
  271. * if could do that, could get out early.
  272. * if could not do that, we still try to assign requested at first,
  273. * then try to reassign add_size for some resources.
  274. */
  275. LIST_HEAD(save_head);
  276. LIST_HEAD(local_fail_head);
  277. struct pci_dev_resource *save_res;
  278. struct pci_dev_resource *dev_res;
  279. /* Check if optional add_size is there */
  280. if (!realloc_head || list_empty(realloc_head))
  281. goto requested_and_reassign;
  282. /* Save original start, end, flags etc at first */
  283. list_for_each_entry(dev_res, head, list) {
  284. if (add_to_list(&save_head, dev_res->dev, dev_res->res, 0, 0)) {
  285. free_list(&save_head);
  286. goto requested_and_reassign;
  287. }
  288. }
  289. /* Update res in head list with add_size in realloc_head list */
  290. list_for_each_entry(dev_res, head, list)
  291. dev_res->res->end += get_res_add_size(realloc_head,
  292. dev_res->res);
  293. /* Try updated head list with add_size added */
  294. assign_requested_resources_sorted(head, &local_fail_head);
  295. /* all assigned with add_size ? */
  296. if (list_empty(&local_fail_head)) {
  297. /* Remove head list from realloc_head list */
  298. list_for_each_entry(dev_res, head, list)
  299. remove_from_list(realloc_head, dev_res->res);
  300. free_list(&save_head);
  301. free_list(head);
  302. return;
  303. }
  304. free_list(&local_fail_head);
  305. /* Release assigned resource */
  306. list_for_each_entry(dev_res, head, list)
  307. if (dev_res->res->parent)
  308. release_resource(dev_res->res);
  309. /* Restore start/end/flags from saved list */
  310. list_for_each_entry(save_res, &save_head, list) {
  311. struct resource *res = save_res->res;
  312. res->start = save_res->start;
  313. res->end = save_res->end;
  314. res->flags = save_res->flags;
  315. }
  316. free_list(&save_head);
  317. requested_and_reassign:
  318. /* Satisfy the must-have resource requests */
  319. assign_requested_resources_sorted(head, fail_head);
  320. /* Try to satisfy any additional optional resource
  321. requests */
  322. if (realloc_head)
  323. reassign_resources_sorted(realloc_head, head);
  324. free_list(head);
  325. }
  326. static void pdev_assign_resources_sorted(struct pci_dev *dev,
  327. struct list_head *add_head,
  328. struct list_head *fail_head)
  329. {
  330. LIST_HEAD(head);
  331. __dev_sort_resources(dev, &head);
  332. __assign_resources_sorted(&head, add_head, fail_head);
  333. }
  334. static void pbus_assign_resources_sorted(const struct pci_bus *bus,
  335. struct list_head *realloc_head,
  336. struct list_head *fail_head)
  337. {
  338. struct pci_dev *dev;
  339. LIST_HEAD(head);
  340. list_for_each_entry(dev, &bus->devices, bus_list)
  341. __dev_sort_resources(dev, &head);
  342. __assign_resources_sorted(&head, realloc_head, fail_head);
  343. }
  344. void pci_setup_cardbus(struct pci_bus *bus)
  345. {
  346. struct pci_dev *bridge = bus->self;
  347. struct resource *res;
  348. struct pci_bus_region region;
  349. dev_info(&bridge->dev, "CardBus bridge to %pR\n",
  350. &bus->busn_res);
  351. res = bus->resource[0];
  352. pcibios_resource_to_bus(bridge, &region, res);
  353. if (res->flags & IORESOURCE_IO) {
  354. /*
  355. * The IO resource is allocated a range twice as large as it
  356. * would normally need. This allows us to set both IO regs.
  357. */
  358. dev_info(&bridge->dev, " bridge window %pR\n", res);
  359. pci_write_config_dword(bridge, PCI_CB_IO_BASE_0,
  360. region.start);
  361. pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_0,
  362. region.end);
  363. }
  364. res = bus->resource[1];
  365. pcibios_resource_to_bus(bridge, &region, res);
  366. if (res->flags & IORESOURCE_IO) {
  367. dev_info(&bridge->dev, " bridge window %pR\n", res);
  368. pci_write_config_dword(bridge, PCI_CB_IO_BASE_1,
  369. region.start);
  370. pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_1,
  371. region.end);
  372. }
  373. res = bus->resource[2];
  374. pcibios_resource_to_bus(bridge, &region, res);
  375. if (res->flags & IORESOURCE_MEM) {
  376. dev_info(&bridge->dev, " bridge window %pR\n", res);
  377. pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_0,
  378. region.start);
  379. pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_0,
  380. region.end);
  381. }
  382. res = bus->resource[3];
  383. pcibios_resource_to_bus(bridge, &region, res);
  384. if (res->flags & IORESOURCE_MEM) {
  385. dev_info(&bridge->dev, " bridge window %pR\n", res);
  386. pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_1,
  387. region.start);
  388. pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_1,
  389. region.end);
  390. }
  391. }
  392. EXPORT_SYMBOL(pci_setup_cardbus);
  393. /* Initialize bridges with base/limit values we have collected.
  394. PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998)
  395. requires that if there is no I/O ports or memory behind the
  396. bridge, corresponding range must be turned off by writing base
  397. value greater than limit to the bridge's base/limit registers.
  398. Note: care must be taken when updating I/O base/limit registers
  399. of bridges which support 32-bit I/O. This update requires two
  400. config space writes, so it's quite possible that an I/O window of
  401. the bridge will have some undesirable address (e.g. 0) after the
  402. first write. Ditto 64-bit prefetchable MMIO. */
  403. static void pci_setup_bridge_io(struct pci_bus *bus)
  404. {
  405. struct pci_dev *bridge = bus->self;
  406. struct resource *res;
  407. struct pci_bus_region region;
  408. unsigned long io_mask;
  409. u8 io_base_lo, io_limit_lo;
  410. u32 l, io_upper16;
  411. io_mask = PCI_IO_RANGE_MASK;
  412. if (bridge->io_window_1k)
  413. io_mask = PCI_IO_1K_RANGE_MASK;
  414. /* Set up the top and bottom of the PCI I/O segment for this bus. */
  415. res = bus->resource[0];
  416. pcibios_resource_to_bus(bridge, &region, res);
  417. if (res->flags & IORESOURCE_IO) {
  418. pci_read_config_dword(bridge, PCI_IO_BASE, &l);
  419. l &= 0xffff0000;
  420. io_base_lo = (region.start >> 8) & io_mask;
  421. io_limit_lo = (region.end >> 8) & io_mask;
  422. l |= ((u32) io_limit_lo << 8) | io_base_lo;
  423. /* Set up upper 16 bits of I/O base/limit. */
  424. io_upper16 = (region.end & 0xffff0000) | (region.start >> 16);
  425. dev_info(&bridge->dev, " bridge window %pR\n", res);
  426. } else {
  427. /* Clear upper 16 bits of I/O base/limit. */
  428. io_upper16 = 0;
  429. l = 0x00f0;
  430. }
  431. /* Temporarily disable the I/O range before updating PCI_IO_BASE. */
  432. pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, 0x0000ffff);
  433. /* Update lower 16 bits of I/O base/limit. */
  434. pci_write_config_dword(bridge, PCI_IO_BASE, l);
  435. /* Update upper 16 bits of I/O base/limit. */
  436. pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, io_upper16);
  437. }
  438. static void pci_setup_bridge_mmio(struct pci_bus *bus)
  439. {
  440. struct pci_dev *bridge = bus->self;
  441. struct resource *res;
  442. struct pci_bus_region region;
  443. u32 l;
  444. /* Set up the top and bottom of the PCI Memory segment for this bus. */
  445. res = bus->resource[1];
  446. pcibios_resource_to_bus(bridge, &region, res);
  447. if (res->flags & IORESOURCE_MEM) {
  448. l = (region.start >> 16) & 0xfff0;
  449. l |= region.end & 0xfff00000;
  450. dev_info(&bridge->dev, " bridge window %pR\n", res);
  451. } else {
  452. l = 0x0000fff0;
  453. }
  454. pci_write_config_dword(bridge, PCI_MEMORY_BASE, l);
  455. }
  456. static void pci_setup_bridge_mmio_pref(struct pci_bus *bus)
  457. {
  458. struct pci_dev *bridge = bus->self;
  459. struct resource *res;
  460. struct pci_bus_region region;
  461. u32 l, bu, lu;
  462. /* Clear out the upper 32 bits of PREF limit.
  463. If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily
  464. disables PREF range, which is ok. */
  465. pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, 0);
  466. /* Set up PREF base/limit. */
  467. bu = lu = 0;
  468. res = bus->resource[2];
  469. pcibios_resource_to_bus(bridge, &region, res);
  470. if (res->flags & IORESOURCE_PREFETCH) {
  471. l = (region.start >> 16) & 0xfff0;
  472. l |= region.end & 0xfff00000;
  473. if (res->flags & IORESOURCE_MEM_64) {
  474. bu = upper_32_bits(region.start);
  475. lu = upper_32_bits(region.end);
  476. }
  477. dev_info(&bridge->dev, " bridge window %pR\n", res);
  478. } else {
  479. l = 0x0000fff0;
  480. }
  481. pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, l);
  482. /* Set the upper 32 bits of PREF base & limit. */
  483. pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu);
  484. pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, lu);
  485. }
  486. static void __pci_setup_bridge(struct pci_bus *bus, unsigned long type)
  487. {
  488. struct pci_dev *bridge = bus->self;
  489. dev_info(&bridge->dev, "PCI bridge to %pR\n",
  490. &bus->busn_res);
  491. if (type & IORESOURCE_IO)
  492. pci_setup_bridge_io(bus);
  493. if (type & IORESOURCE_MEM)
  494. pci_setup_bridge_mmio(bus);
  495. if (type & IORESOURCE_PREFETCH)
  496. pci_setup_bridge_mmio_pref(bus);
  497. pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, bus->bridge_ctl);
  498. }
  499. void pci_setup_bridge(struct pci_bus *bus)
  500. {
  501. unsigned long type = IORESOURCE_IO | IORESOURCE_MEM |
  502. IORESOURCE_PREFETCH;
  503. __pci_setup_bridge(bus, type);
  504. }
  505. /* Check whether the bridge supports optional I/O and
  506. prefetchable memory ranges. If not, the respective
  507. base/limit registers must be read-only and read as 0. */
  508. static void pci_bridge_check_ranges(struct pci_bus *bus)
  509. {
  510. u16 io;
  511. u32 pmem;
  512. struct pci_dev *bridge = bus->self;
  513. struct resource *b_res;
  514. b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
  515. b_res[1].flags |= IORESOURCE_MEM;
  516. pci_read_config_word(bridge, PCI_IO_BASE, &io);
  517. if (!io) {
  518. pci_write_config_word(bridge, PCI_IO_BASE, 0xf0f0);
  519. pci_read_config_word(bridge, PCI_IO_BASE, &io);
  520. pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
  521. }
  522. if (io)
  523. b_res[0].flags |= IORESOURCE_IO;
  524. /* DECchip 21050 pass 2 errata: the bridge may miss an address
  525. disconnect boundary by one PCI data phase.
  526. Workaround: do not use prefetching on this device. */
  527. if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
  528. return;
  529. pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
  530. if (!pmem) {
  531. pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
  532. 0xfff0fff0);
  533. pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
  534. pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
  535. }
  536. if (pmem) {
  537. b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
  538. if ((pmem & PCI_PREF_RANGE_TYPE_MASK) ==
  539. PCI_PREF_RANGE_TYPE_64) {
  540. b_res[2].flags |= IORESOURCE_MEM_64;
  541. b_res[2].flags |= PCI_PREF_RANGE_TYPE_64;
  542. }
  543. }
  544. /* double check if bridge does support 64 bit pref */
  545. if (b_res[2].flags & IORESOURCE_MEM_64) {
  546. u32 mem_base_hi, tmp;
  547. pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32,
  548. &mem_base_hi);
  549. pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
  550. 0xffffffff);
  551. pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &tmp);
  552. if (!tmp)
  553. b_res[2].flags &= ~IORESOURCE_MEM_64;
  554. pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
  555. mem_base_hi);
  556. }
  557. }
  558. /* Helper function for sizing routines: find first available
  559. bus resource of a given type. Note: we intentionally skip
  560. the bus resources which have already been assigned (that is,
  561. have non-NULL parent resource). */
  562. static struct resource *find_free_bus_resource(struct pci_bus *bus, unsigned long type)
  563. {
  564. int i;
  565. struct resource *r;
  566. unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
  567. IORESOURCE_PREFETCH;
  568. pci_bus_for_each_resource(bus, r, i) {
  569. if (r == &ioport_resource || r == &iomem_resource)
  570. continue;
  571. if (r && (r->flags & type_mask) == type && !r->parent)
  572. return r;
  573. }
  574. return NULL;
  575. }
  576. static resource_size_t calculate_iosize(resource_size_t size,
  577. resource_size_t min_size,
  578. resource_size_t size1,
  579. resource_size_t old_size,
  580. resource_size_t align)
  581. {
  582. if (size < min_size)
  583. size = min_size;
  584. if (old_size == 1 )
  585. old_size = 0;
  586. /* To be fixed in 2.5: we should have sort of HAVE_ISA
  587. flag in the struct pci_bus. */
  588. #if defined(CONFIG_ISA) || defined(CONFIG_EISA)
  589. size = (size & 0xff) + ((size & ~0xffUL) << 2);
  590. #endif
  591. size = ALIGN(size + size1, align);
  592. if (size < old_size)
  593. size = old_size;
  594. return size;
  595. }
  596. static resource_size_t calculate_memsize(resource_size_t size,
  597. resource_size_t min_size,
  598. resource_size_t size1,
  599. resource_size_t old_size,
  600. resource_size_t align)
  601. {
  602. if (size < min_size)
  603. size = min_size;
  604. if (old_size == 1 )
  605. old_size = 0;
  606. if (size < old_size)
  607. size = old_size;
  608. size = ALIGN(size + size1, align);
  609. return size;
  610. }
  611. resource_size_t __weak pcibios_window_alignment(struct pci_bus *bus,
  612. unsigned long type)
  613. {
  614. return 1;
  615. }
  616. #define PCI_P2P_DEFAULT_MEM_ALIGN 0x100000 /* 1MiB */
  617. #define PCI_P2P_DEFAULT_IO_ALIGN 0x1000 /* 4KiB */
  618. #define PCI_P2P_DEFAULT_IO_ALIGN_1K 0x400 /* 1KiB */
  619. static resource_size_t window_alignment(struct pci_bus *bus,
  620. unsigned long type)
  621. {
  622. resource_size_t align = 1, arch_align;
  623. if (type & IORESOURCE_MEM)
  624. align = PCI_P2P_DEFAULT_MEM_ALIGN;
  625. else if (type & IORESOURCE_IO) {
  626. /*
  627. * Per spec, I/O windows are 4K-aligned, but some
  628. * bridges have an extension to support 1K alignment.
  629. */
  630. if (bus->self->io_window_1k)
  631. align = PCI_P2P_DEFAULT_IO_ALIGN_1K;
  632. else
  633. align = PCI_P2P_DEFAULT_IO_ALIGN;
  634. }
  635. arch_align = pcibios_window_alignment(bus, type);
  636. return max(align, arch_align);
  637. }
  638. /**
  639. * pbus_size_io() - size the io window of a given bus
  640. *
  641. * @bus : the bus
  642. * @min_size : the minimum io window that must to be allocated
  643. * @add_size : additional optional io window
  644. * @realloc_head : track the additional io window on this list
  645. *
  646. * Sizing the IO windows of the PCI-PCI bridge is trivial,
  647. * since these windows have 1K or 4K granularity and the IO ranges
  648. * of non-bridge PCI devices are limited to 256 bytes.
  649. * We must be careful with the ISA aliasing though.
  650. */
  651. static void pbus_size_io(struct pci_bus *bus, resource_size_t min_size,
  652. resource_size_t add_size, struct list_head *realloc_head)
  653. {
  654. struct pci_dev *dev;
  655. struct resource *b_res = find_free_bus_resource(bus, IORESOURCE_IO);
  656. unsigned long size = 0, size0 = 0, size1 = 0;
  657. resource_size_t children_add_size = 0;
  658. resource_size_t min_align, io_align, align;
  659. if (!b_res)
  660. return;
  661. io_align = min_align = window_alignment(bus, IORESOURCE_IO);
  662. list_for_each_entry(dev, &bus->devices, bus_list) {
  663. int i;
  664. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  665. struct resource *r = &dev->resource[i];
  666. unsigned long r_size;
  667. if (r->parent || !(r->flags & IORESOURCE_IO))
  668. continue;
  669. r_size = resource_size(r);
  670. if (r_size < 0x400)
  671. /* Might be re-aligned for ISA */
  672. size += r_size;
  673. else
  674. size1 += r_size;
  675. align = pci_resource_alignment(dev, r);
  676. if (align > min_align)
  677. min_align = align;
  678. if (realloc_head)
  679. children_add_size += get_res_add_size(realloc_head, r);
  680. }
  681. }
  682. if (min_align > io_align)
  683. min_align = io_align;
  684. size0 = calculate_iosize(size, min_size, size1,
  685. resource_size(b_res), min_align);
  686. if (children_add_size > add_size)
  687. add_size = children_add_size;
  688. size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
  689. calculate_iosize(size, min_size, add_size + size1,
  690. resource_size(b_res), min_align);
  691. if (!size0 && !size1) {
  692. if (b_res->start || b_res->end)
  693. dev_info(&bus->self->dev, "disabling bridge window "
  694. "%pR to %pR (unused)\n", b_res,
  695. &bus->busn_res);
  696. b_res->flags = 0;
  697. return;
  698. }
  699. b_res->start = min_align;
  700. b_res->end = b_res->start + size0 - 1;
  701. b_res->flags |= IORESOURCE_STARTALIGN;
  702. if (size1 > size0 && realloc_head) {
  703. add_to_list(realloc_head, bus->self, b_res, size1-size0,
  704. min_align);
  705. dev_printk(KERN_DEBUG, &bus->self->dev, "bridge window "
  706. "%pR to %pR add_size %lx\n", b_res,
  707. &bus->busn_res, size1-size0);
  708. }
  709. }
  710. static inline resource_size_t calculate_mem_align(resource_size_t *aligns,
  711. int max_order)
  712. {
  713. resource_size_t align = 0;
  714. resource_size_t min_align = 0;
  715. int order;
  716. for (order = 0; order <= max_order; order++) {
  717. resource_size_t align1 = 1;
  718. align1 <<= (order + 20);
  719. if (!align)
  720. min_align = align1;
  721. else if (ALIGN(align + min_align, min_align) < align1)
  722. min_align = align1 >> 1;
  723. align += aligns[order];
  724. }
  725. return min_align;
  726. }
  727. /**
  728. * pbus_size_mem() - size the memory window of a given bus
  729. *
  730. * @bus : the bus
  731. * @min_size : the minimum memory window that must to be allocated
  732. * @add_size : additional optional memory window
  733. * @realloc_head : track the additional memory window on this list
  734. *
  735. * Calculate the size of the bus and minimal alignment which
  736. * guarantees that all child resources fit in this size.
  737. */
  738. static int pbus_size_mem(struct pci_bus *bus, unsigned long mask,
  739. unsigned long type, resource_size_t min_size,
  740. resource_size_t add_size,
  741. struct list_head *realloc_head)
  742. {
  743. struct pci_dev *dev;
  744. resource_size_t min_align, align, size, size0, size1;
  745. resource_size_t aligns[12]; /* Alignments from 1Mb to 2Gb */
  746. int order, max_order;
  747. struct resource *b_res = find_free_bus_resource(bus, type);
  748. unsigned int mem64_mask = 0;
  749. resource_size_t children_add_size = 0;
  750. if (!b_res)
  751. return 0;
  752. memset(aligns, 0, sizeof(aligns));
  753. max_order = 0;
  754. size = 0;
  755. mem64_mask = b_res->flags & IORESOURCE_MEM_64;
  756. b_res->flags &= ~IORESOURCE_MEM_64;
  757. list_for_each_entry(dev, &bus->devices, bus_list) {
  758. int i;
  759. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  760. struct resource *r = &dev->resource[i];
  761. resource_size_t r_size;
  762. if (r->parent || (r->flags & mask) != type)
  763. continue;
  764. r_size = resource_size(r);
  765. #ifdef CONFIG_PCI_IOV
  766. /* put SRIOV requested res to the optional list */
  767. if (realloc_head && i >= PCI_IOV_RESOURCES &&
  768. i <= PCI_IOV_RESOURCE_END) {
  769. r->end = r->start - 1;
  770. add_to_list(realloc_head, dev, r, r_size, 0/* dont' care */);
  771. children_add_size += r_size;
  772. continue;
  773. }
  774. #endif
  775. /* For bridges size != alignment */
  776. align = pci_resource_alignment(dev, r);
  777. order = __ffs(align) - 20;
  778. if (order > 11) {
  779. dev_warn(&dev->dev, "disabling BAR %d: %pR "
  780. "(bad alignment %#llx)\n", i, r,
  781. (unsigned long long) align);
  782. r->flags = 0;
  783. continue;
  784. }
  785. size += r_size;
  786. if (order < 0)
  787. order = 0;
  788. /* Exclude ranges with size > align from
  789. calculation of the alignment. */
  790. if (r_size == align)
  791. aligns[order] += align;
  792. if (order > max_order)
  793. max_order = order;
  794. mem64_mask &= r->flags & IORESOURCE_MEM_64;
  795. if (realloc_head)
  796. children_add_size += get_res_add_size(realloc_head, r);
  797. }
  798. }
  799. min_align = calculate_mem_align(aligns, max_order);
  800. min_align = max(min_align, window_alignment(bus, b_res->flags & mask));
  801. size0 = calculate_memsize(size, min_size, 0, resource_size(b_res), min_align);
  802. if (children_add_size > add_size)
  803. add_size = children_add_size;
  804. size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
  805. calculate_memsize(size, min_size, add_size,
  806. resource_size(b_res), min_align);
  807. if (!size0 && !size1) {
  808. if (b_res->start || b_res->end)
  809. dev_info(&bus->self->dev, "disabling bridge window "
  810. "%pR to %pR (unused)\n", b_res,
  811. &bus->busn_res);
  812. b_res->flags = 0;
  813. return 1;
  814. }
  815. b_res->start = min_align;
  816. b_res->end = size0 + min_align - 1;
  817. b_res->flags |= IORESOURCE_STARTALIGN | mem64_mask;
  818. if (size1 > size0 && realloc_head) {
  819. add_to_list(realloc_head, bus->self, b_res, size1-size0, min_align);
  820. dev_printk(KERN_DEBUG, &bus->self->dev, "bridge window "
  821. "%pR to %pR add_size %llx\n", b_res,
  822. &bus->busn_res, (unsigned long long)size1-size0);
  823. }
  824. return 1;
  825. }
  826. unsigned long pci_cardbus_resource_alignment(struct resource *res)
  827. {
  828. if (res->flags & IORESOURCE_IO)
  829. return pci_cardbus_io_size;
  830. if (res->flags & IORESOURCE_MEM)
  831. return pci_cardbus_mem_size;
  832. return 0;
  833. }
  834. static void pci_bus_size_cardbus(struct pci_bus *bus,
  835. struct list_head *realloc_head)
  836. {
  837. struct pci_dev *bridge = bus->self;
  838. struct resource *b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
  839. resource_size_t b_res_3_size = pci_cardbus_mem_size * 2;
  840. u16 ctrl;
  841. if (b_res[0].parent)
  842. goto handle_b_res_1;
  843. /*
  844. * Reserve some resources for CardBus. We reserve
  845. * a fixed amount of bus space for CardBus bridges.
  846. */
  847. b_res[0].start = pci_cardbus_io_size;
  848. b_res[0].end = b_res[0].start + pci_cardbus_io_size - 1;
  849. b_res[0].flags |= IORESOURCE_IO | IORESOURCE_STARTALIGN;
  850. if (realloc_head) {
  851. b_res[0].end -= pci_cardbus_io_size;
  852. add_to_list(realloc_head, bridge, b_res, pci_cardbus_io_size,
  853. pci_cardbus_io_size);
  854. }
  855. handle_b_res_1:
  856. if (b_res[1].parent)
  857. goto handle_b_res_2;
  858. b_res[1].start = pci_cardbus_io_size;
  859. b_res[1].end = b_res[1].start + pci_cardbus_io_size - 1;
  860. b_res[1].flags |= IORESOURCE_IO | IORESOURCE_STARTALIGN;
  861. if (realloc_head) {
  862. b_res[1].end -= pci_cardbus_io_size;
  863. add_to_list(realloc_head, bridge, b_res+1, pci_cardbus_io_size,
  864. pci_cardbus_io_size);
  865. }
  866. handle_b_res_2:
  867. /* MEM1 must not be pref mmio */
  868. pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
  869. if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM1) {
  870. ctrl &= ~PCI_CB_BRIDGE_CTL_PREFETCH_MEM1;
  871. pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
  872. pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
  873. }
  874. /*
  875. * Check whether prefetchable memory is supported
  876. * by this bridge.
  877. */
  878. pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
  879. if (!(ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)) {
  880. ctrl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
  881. pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
  882. pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
  883. }
  884. if (b_res[2].parent)
  885. goto handle_b_res_3;
  886. /*
  887. * If we have prefetchable memory support, allocate
  888. * two regions. Otherwise, allocate one region of
  889. * twice the size.
  890. */
  891. if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0) {
  892. b_res[2].start = pci_cardbus_mem_size;
  893. b_res[2].end = b_res[2].start + pci_cardbus_mem_size - 1;
  894. b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH |
  895. IORESOURCE_STARTALIGN;
  896. if (realloc_head) {
  897. b_res[2].end -= pci_cardbus_mem_size;
  898. add_to_list(realloc_head, bridge, b_res+2,
  899. pci_cardbus_mem_size, pci_cardbus_mem_size);
  900. }
  901. /* reduce that to half */
  902. b_res_3_size = pci_cardbus_mem_size;
  903. }
  904. handle_b_res_3:
  905. if (b_res[3].parent)
  906. goto handle_done;
  907. b_res[3].start = pci_cardbus_mem_size;
  908. b_res[3].end = b_res[3].start + b_res_3_size - 1;
  909. b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_STARTALIGN;
  910. if (realloc_head) {
  911. b_res[3].end -= b_res_3_size;
  912. add_to_list(realloc_head, bridge, b_res+3, b_res_3_size,
  913. pci_cardbus_mem_size);
  914. }
  915. handle_done:
  916. ;
  917. }
  918. void __ref __pci_bus_size_bridges(struct pci_bus *bus,
  919. struct list_head *realloc_head)
  920. {
  921. struct pci_dev *dev;
  922. unsigned long mask, prefmask;
  923. resource_size_t additional_mem_size = 0, additional_io_size = 0;
  924. list_for_each_entry(dev, &bus->devices, bus_list) {
  925. struct pci_bus *b = dev->subordinate;
  926. if (!b)
  927. continue;
  928. switch (dev->class >> 8) {
  929. case PCI_CLASS_BRIDGE_CARDBUS:
  930. pci_bus_size_cardbus(b, realloc_head);
  931. break;
  932. case PCI_CLASS_BRIDGE_PCI:
  933. default:
  934. __pci_bus_size_bridges(b, realloc_head);
  935. break;
  936. }
  937. }
  938. /* The root bus? */
  939. if (!bus->self)
  940. return;
  941. switch (bus->self->class >> 8) {
  942. case PCI_CLASS_BRIDGE_CARDBUS:
  943. /* don't size cardbuses yet. */
  944. break;
  945. case PCI_CLASS_BRIDGE_PCI:
  946. pci_bridge_check_ranges(bus);
  947. if (bus->self->is_hotplug_bridge) {
  948. additional_io_size = pci_hotplug_io_size;
  949. additional_mem_size = pci_hotplug_mem_size;
  950. }
  951. /*
  952. * Follow thru
  953. */
  954. default:
  955. pbus_size_io(bus, realloc_head ? 0 : additional_io_size,
  956. additional_io_size, realloc_head);
  957. /* If the bridge supports prefetchable range, size it
  958. separately. If it doesn't, or its prefetchable window
  959. has already been allocated by arch code, try
  960. non-prefetchable range for both types of PCI memory
  961. resources. */
  962. mask = IORESOURCE_MEM;
  963. prefmask = IORESOURCE_MEM | IORESOURCE_PREFETCH;
  964. if (pbus_size_mem(bus, prefmask, prefmask,
  965. realloc_head ? 0 : additional_mem_size,
  966. additional_mem_size, realloc_head))
  967. mask = prefmask; /* Success, size non-prefetch only. */
  968. else
  969. additional_mem_size += additional_mem_size;
  970. pbus_size_mem(bus, mask, IORESOURCE_MEM,
  971. realloc_head ? 0 : additional_mem_size,
  972. additional_mem_size, realloc_head);
  973. break;
  974. }
  975. }
  976. void __ref pci_bus_size_bridges(struct pci_bus *bus)
  977. {
  978. __pci_bus_size_bridges(bus, NULL);
  979. }
  980. EXPORT_SYMBOL(pci_bus_size_bridges);
  981. static void __ref __pci_bus_assign_resources(const struct pci_bus *bus,
  982. struct list_head *realloc_head,
  983. struct list_head *fail_head)
  984. {
  985. struct pci_bus *b;
  986. struct pci_dev *dev;
  987. pbus_assign_resources_sorted(bus, realloc_head, fail_head);
  988. list_for_each_entry(dev, &bus->devices, bus_list) {
  989. b = dev->subordinate;
  990. if (!b)
  991. continue;
  992. __pci_bus_assign_resources(b, realloc_head, fail_head);
  993. switch (dev->class >> 8) {
  994. case PCI_CLASS_BRIDGE_PCI:
  995. if (!pci_is_enabled(dev))
  996. pci_setup_bridge(b);
  997. break;
  998. case PCI_CLASS_BRIDGE_CARDBUS:
  999. pci_setup_cardbus(b);
  1000. break;
  1001. default:
  1002. dev_info(&dev->dev, "not setting up bridge for bus "
  1003. "%04x:%02x\n", pci_domain_nr(b), b->number);
  1004. break;
  1005. }
  1006. }
  1007. }
  1008. void __ref pci_bus_assign_resources(const struct pci_bus *bus)
  1009. {
  1010. __pci_bus_assign_resources(bus, NULL, NULL);
  1011. }
  1012. EXPORT_SYMBOL(pci_bus_assign_resources);
  1013. static void __ref __pci_bridge_assign_resources(const struct pci_dev *bridge,
  1014. struct list_head *add_head,
  1015. struct list_head *fail_head)
  1016. {
  1017. struct pci_bus *b;
  1018. pdev_assign_resources_sorted((struct pci_dev *)bridge,
  1019. add_head, fail_head);
  1020. b = bridge->subordinate;
  1021. if (!b)
  1022. return;
  1023. __pci_bus_assign_resources(b, add_head, fail_head);
  1024. switch (bridge->class >> 8) {
  1025. case PCI_CLASS_BRIDGE_PCI:
  1026. pci_setup_bridge(b);
  1027. break;
  1028. case PCI_CLASS_BRIDGE_CARDBUS:
  1029. pci_setup_cardbus(b);
  1030. break;
  1031. default:
  1032. dev_info(&bridge->dev, "not setting up bridge for bus "
  1033. "%04x:%02x\n", pci_domain_nr(b), b->number);
  1034. break;
  1035. }
  1036. }
  1037. static void pci_bridge_release_resources(struct pci_bus *bus,
  1038. unsigned long type)
  1039. {
  1040. int idx;
  1041. bool changed = false;
  1042. struct pci_dev *dev;
  1043. struct resource *r;
  1044. unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
  1045. IORESOURCE_PREFETCH;
  1046. dev = bus->self;
  1047. for (idx = PCI_BRIDGE_RESOURCES; idx <= PCI_BRIDGE_RESOURCE_END;
  1048. idx++) {
  1049. r = &dev->resource[idx];
  1050. if ((r->flags & type_mask) != type)
  1051. continue;
  1052. if (!r->parent)
  1053. continue;
  1054. /*
  1055. * if there are children under that, we should release them
  1056. * all
  1057. */
  1058. release_child_resources(r);
  1059. if (!release_resource(r)) {
  1060. dev_printk(KERN_DEBUG, &dev->dev,
  1061. "resource %d %pR released\n", idx, r);
  1062. /* keep the old size */
  1063. r->end = resource_size(r) - 1;
  1064. r->start = 0;
  1065. r->flags = 0;
  1066. changed = true;
  1067. }
  1068. }
  1069. if (changed) {
  1070. /* avoiding touch the one without PREF */
  1071. if (type & IORESOURCE_PREFETCH)
  1072. type = IORESOURCE_PREFETCH;
  1073. __pci_setup_bridge(bus, type);
  1074. }
  1075. }
  1076. enum release_type {
  1077. leaf_only,
  1078. whole_subtree,
  1079. };
  1080. /*
  1081. * try to release pci bridge resources that is from leaf bridge,
  1082. * so we can allocate big new one later
  1083. */
  1084. static void __ref pci_bus_release_bridge_resources(struct pci_bus *bus,
  1085. unsigned long type,
  1086. enum release_type rel_type)
  1087. {
  1088. struct pci_dev *dev;
  1089. bool is_leaf_bridge = true;
  1090. list_for_each_entry(dev, &bus->devices, bus_list) {
  1091. struct pci_bus *b = dev->subordinate;
  1092. if (!b)
  1093. continue;
  1094. is_leaf_bridge = false;
  1095. if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
  1096. continue;
  1097. if (rel_type == whole_subtree)
  1098. pci_bus_release_bridge_resources(b, type,
  1099. whole_subtree);
  1100. }
  1101. if (pci_is_root_bus(bus))
  1102. return;
  1103. if ((bus->self->class >> 8) != PCI_CLASS_BRIDGE_PCI)
  1104. return;
  1105. if ((rel_type == whole_subtree) || is_leaf_bridge)
  1106. pci_bridge_release_resources(bus, type);
  1107. }
  1108. static void pci_bus_dump_res(struct pci_bus *bus)
  1109. {
  1110. struct resource *res;
  1111. int i;
  1112. pci_bus_for_each_resource(bus, res, i) {
  1113. if (!res || !res->end || !res->flags)
  1114. continue;
  1115. dev_printk(KERN_DEBUG, &bus->dev, "resource %d %pR\n", i, res);
  1116. }
  1117. }
  1118. static void pci_bus_dump_resources(struct pci_bus *bus)
  1119. {
  1120. struct pci_bus *b;
  1121. struct pci_dev *dev;
  1122. pci_bus_dump_res(bus);
  1123. list_for_each_entry(dev, &bus->devices, bus_list) {
  1124. b = dev->subordinate;
  1125. if (!b)
  1126. continue;
  1127. pci_bus_dump_resources(b);
  1128. }
  1129. }
  1130. static int __init pci_bus_get_depth(struct pci_bus *bus)
  1131. {
  1132. int depth = 0;
  1133. struct pci_dev *dev;
  1134. list_for_each_entry(dev, &bus->devices, bus_list) {
  1135. int ret;
  1136. struct pci_bus *b = dev->subordinate;
  1137. if (!b)
  1138. continue;
  1139. ret = pci_bus_get_depth(b);
  1140. if (ret + 1 > depth)
  1141. depth = ret + 1;
  1142. }
  1143. return depth;
  1144. }
  1145. static int __init pci_get_max_depth(void)
  1146. {
  1147. int depth = 0;
  1148. struct pci_bus *bus;
  1149. list_for_each_entry(bus, &pci_root_buses, node) {
  1150. int ret;
  1151. ret = pci_bus_get_depth(bus);
  1152. if (ret > depth)
  1153. depth = ret;
  1154. }
  1155. return depth;
  1156. }
  1157. /*
  1158. * -1: undefined, will auto detect later
  1159. * 0: disabled by user
  1160. * 1: disabled by auto detect
  1161. * 2: enabled by user
  1162. * 3: enabled by auto detect
  1163. */
  1164. enum enable_type {
  1165. undefined = -1,
  1166. user_disabled,
  1167. auto_disabled,
  1168. user_enabled,
  1169. auto_enabled,
  1170. };
  1171. static enum enable_type pci_realloc_enable __initdata = undefined;
  1172. void __init pci_realloc_get_opt(char *str)
  1173. {
  1174. if (!strncmp(str, "off", 3))
  1175. pci_realloc_enable = user_disabled;
  1176. else if (!strncmp(str, "on", 2))
  1177. pci_realloc_enable = user_enabled;
  1178. }
  1179. static bool __init pci_realloc_enabled(void)
  1180. {
  1181. return pci_realloc_enable >= user_enabled;
  1182. }
  1183. static void __init pci_realloc_detect(void)
  1184. {
  1185. #if defined(CONFIG_PCI_IOV) && defined(CONFIG_PCI_REALLOC_ENABLE_AUTO)
  1186. struct pci_dev *dev = NULL;
  1187. if (pci_realloc_enable != undefined)
  1188. return;
  1189. for_each_pci_dev(dev) {
  1190. int i;
  1191. for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++) {
  1192. struct resource *r = &dev->resource[i];
  1193. /* Not assigned, or rejected by kernel ? */
  1194. if (r->flags && !r->start) {
  1195. pci_realloc_enable = auto_enabled;
  1196. return;
  1197. }
  1198. }
  1199. }
  1200. #endif
  1201. }
  1202. /*
  1203. * first try will not touch pci bridge res
  1204. * second and later try will clear small leaf bridge res
  1205. * will stop till to the max deepth if can not find good one
  1206. */
  1207. void __init
  1208. pci_assign_unassigned_resources(void)
  1209. {
  1210. struct pci_bus *bus;
  1211. LIST_HEAD(realloc_head); /* list of resources that
  1212. want additional resources */
  1213. struct list_head *add_list = NULL;
  1214. int tried_times = 0;
  1215. enum release_type rel_type = leaf_only;
  1216. LIST_HEAD(fail_head);
  1217. struct pci_dev_resource *fail_res;
  1218. unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
  1219. IORESOURCE_PREFETCH;
  1220. int pci_try_num = 1;
  1221. /* don't realloc if asked to do so */
  1222. pci_realloc_detect();
  1223. if (pci_realloc_enabled()) {
  1224. int max_depth = pci_get_max_depth();
  1225. pci_try_num = max_depth + 1;
  1226. printk(KERN_DEBUG "PCI: max bus depth: %d pci_try_num: %d\n",
  1227. max_depth, pci_try_num);
  1228. }
  1229. again:
  1230. /*
  1231. * last try will use add_list, otherwise will try good to have as
  1232. * must have, so can realloc parent bridge resource
  1233. */
  1234. if (tried_times + 1 == pci_try_num)
  1235. add_list = &realloc_head;
  1236. /* Depth first, calculate sizes and alignments of all
  1237. subordinate buses. */
  1238. list_for_each_entry(bus, &pci_root_buses, node)
  1239. __pci_bus_size_bridges(bus, add_list);
  1240. /* Depth last, allocate resources and update the hardware. */
  1241. list_for_each_entry(bus, &pci_root_buses, node)
  1242. __pci_bus_assign_resources(bus, add_list, &fail_head);
  1243. if (add_list)
  1244. BUG_ON(!list_empty(add_list));
  1245. tried_times++;
  1246. /* any device complain? */
  1247. if (list_empty(&fail_head))
  1248. goto enable_and_dump;
  1249. if (tried_times >= pci_try_num) {
  1250. if (pci_realloc_enable == undefined)
  1251. printk(KERN_INFO "Some PCI device resources are unassigned, try booting with pci=realloc\n");
  1252. else if (pci_realloc_enable == auto_enabled)
  1253. printk(KERN_INFO "Automatically enabled pci realloc, if you have problem, try booting with pci=realloc=off\n");
  1254. free_list(&fail_head);
  1255. goto enable_and_dump;
  1256. }
  1257. printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
  1258. tried_times + 1);
  1259. /* third times and later will not check if it is leaf */
  1260. if ((tried_times + 1) > 2)
  1261. rel_type = whole_subtree;
  1262. /*
  1263. * Try to release leaf bridge's resources that doesn't fit resource of
  1264. * child device under that bridge
  1265. */
  1266. list_for_each_entry(fail_res, &fail_head, list) {
  1267. bus = fail_res->dev->bus;
  1268. pci_bus_release_bridge_resources(bus,
  1269. fail_res->flags & type_mask,
  1270. rel_type);
  1271. }
  1272. /* restore size and flags */
  1273. list_for_each_entry(fail_res, &fail_head, list) {
  1274. struct resource *res = fail_res->res;
  1275. res->start = fail_res->start;
  1276. res->end = fail_res->end;
  1277. res->flags = fail_res->flags;
  1278. if (fail_res->dev->subordinate)
  1279. res->flags = 0;
  1280. }
  1281. free_list(&fail_head);
  1282. goto again;
  1283. enable_and_dump:
  1284. /* Depth last, update the hardware. */
  1285. list_for_each_entry(bus, &pci_root_buses, node)
  1286. pci_enable_bridges(bus);
  1287. /* dump the resource on buses */
  1288. list_for_each_entry(bus, &pci_root_buses, node)
  1289. pci_bus_dump_resources(bus);
  1290. }
  1291. void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
  1292. {
  1293. struct pci_bus *parent = bridge->subordinate;
  1294. LIST_HEAD(add_list); /* list of resources that
  1295. want additional resources */
  1296. int tried_times = 0;
  1297. LIST_HEAD(fail_head);
  1298. struct pci_dev_resource *fail_res;
  1299. int retval;
  1300. unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
  1301. IORESOURCE_PREFETCH;
  1302. again:
  1303. __pci_bus_size_bridges(parent, &add_list);
  1304. __pci_bridge_assign_resources(bridge, &add_list, &fail_head);
  1305. BUG_ON(!list_empty(&add_list));
  1306. tried_times++;
  1307. if (list_empty(&fail_head))
  1308. goto enable_all;
  1309. if (tried_times >= 2) {
  1310. /* still fail, don't need to try more */
  1311. free_list(&fail_head);
  1312. goto enable_all;
  1313. }
  1314. printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
  1315. tried_times + 1);
  1316. /*
  1317. * Try to release leaf bridge's resources that doesn't fit resource of
  1318. * child device under that bridge
  1319. */
  1320. list_for_each_entry(fail_res, &fail_head, list) {
  1321. struct pci_bus *bus = fail_res->dev->bus;
  1322. unsigned long flags = fail_res->flags;
  1323. pci_bus_release_bridge_resources(bus, flags & type_mask,
  1324. whole_subtree);
  1325. }
  1326. /* restore size and flags */
  1327. list_for_each_entry(fail_res, &fail_head, list) {
  1328. struct resource *res = fail_res->res;
  1329. res->start = fail_res->start;
  1330. res->end = fail_res->end;
  1331. res->flags = fail_res->flags;
  1332. if (fail_res->dev->subordinate)
  1333. res->flags = 0;
  1334. }
  1335. free_list(&fail_head);
  1336. goto again;
  1337. enable_all:
  1338. retval = pci_reenable_device(bridge);
  1339. pci_set_master(bridge);
  1340. pci_enable_bridges(parent);
  1341. }
  1342. EXPORT_SYMBOL_GPL(pci_assign_unassigned_bridge_resources);
  1343. void pci_assign_unassigned_bus_resources(struct pci_bus *bus)
  1344. {
  1345. struct pci_dev *dev;
  1346. LIST_HEAD(add_list); /* list of resources that
  1347. want additional resources */
  1348. down_read(&pci_bus_sem);
  1349. list_for_each_entry(dev, &bus->devices, bus_list)
  1350. if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
  1351. dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
  1352. if (dev->subordinate)
  1353. __pci_bus_size_bridges(dev->subordinate,
  1354. &add_list);
  1355. up_read(&pci_bus_sem);
  1356. __pci_bus_assign_resources(bus, &add_list, NULL);
  1357. BUG_ON(!list_empty(&add_list));
  1358. }