pci-common.c 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713
  1. /*
  2. * Contains common pci routines for ALL ppc platform
  3. * (based on pci_32.c and pci_64.c)
  4. *
  5. * Port for PPC64 David Engebretsen, IBM Corp.
  6. * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
  7. *
  8. * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
  9. * Rework, based on alpha PCI code.
  10. *
  11. * Common pmac/prep/chrp pci routines. -- Cort
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License
  15. * as published by the Free Software Foundation; either version
  16. * 2 of the License, or (at your option) any later version.
  17. */
  18. #include <linux/kernel.h>
  19. #include <linux/pci.h>
  20. #include <linux/string.h>
  21. #include <linux/init.h>
  22. #include <linux/bootmem.h>
  23. #include <linux/export.h>
  24. #include <linux/of_address.h>
  25. #include <linux/of_pci.h>
  26. #include <linux/mm.h>
  27. #include <linux/list.h>
  28. #include <linux/syscalls.h>
  29. #include <linux/irq.h>
  30. #include <linux/vmalloc.h>
  31. #include <linux/slab.h>
  32. #include <asm/processor.h>
  33. #include <asm/io.h>
  34. #include <asm/prom.h>
  35. #include <asm/pci-bridge.h>
  36. #include <asm/byteorder.h>
  37. #include <asm/machdep.h>
  38. #include <asm/ppc-pci.h>
  39. #include <asm/firmware.h>
  40. #include <asm/eeh.h>
  41. static DEFINE_SPINLOCK(hose_spinlock);
  42. LIST_HEAD(hose_list);
  43. /* XXX kill that some day ... */
  44. static int global_phb_number; /* Global phb counter */
  45. /* ISA Memory physical address */
  46. resource_size_t isa_mem_base;
  47. static struct dma_map_ops *pci_dma_ops = &dma_direct_ops;
  48. void set_pci_dma_ops(struct dma_map_ops *dma_ops)
  49. {
  50. pci_dma_ops = dma_ops;
  51. }
  52. struct dma_map_ops *get_pci_dma_ops(void)
  53. {
  54. return pci_dma_ops;
  55. }
  56. EXPORT_SYMBOL(get_pci_dma_ops);
  57. struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
  58. {
  59. struct pci_controller *phb;
  60. phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
  61. if (phb == NULL)
  62. return NULL;
  63. spin_lock(&hose_spinlock);
  64. phb->global_number = global_phb_number++;
  65. list_add_tail(&phb->list_node, &hose_list);
  66. spin_unlock(&hose_spinlock);
  67. phb->dn = dev;
  68. phb->is_dynamic = mem_init_done;
  69. #ifdef CONFIG_PPC64
  70. if (dev) {
  71. int nid = of_node_to_nid(dev);
  72. if (nid < 0 || !node_online(nid))
  73. nid = -1;
  74. PHB_SET_NODE(phb, nid);
  75. }
  76. #endif
  77. return phb;
  78. }
  79. void pcibios_free_controller(struct pci_controller *phb)
  80. {
  81. spin_lock(&hose_spinlock);
  82. list_del(&phb->list_node);
  83. spin_unlock(&hose_spinlock);
  84. if (phb->is_dynamic)
  85. kfree(phb);
  86. }
  87. static resource_size_t pcibios_io_size(const struct pci_controller *hose)
  88. {
  89. #ifdef CONFIG_PPC64
  90. return hose->pci_io_size;
  91. #else
  92. return resource_size(&hose->io_resource);
  93. #endif
  94. }
  95. int pcibios_vaddr_is_ioport(void __iomem *address)
  96. {
  97. int ret = 0;
  98. struct pci_controller *hose;
  99. resource_size_t size;
  100. spin_lock(&hose_spinlock);
  101. list_for_each_entry(hose, &hose_list, list_node) {
  102. size = pcibios_io_size(hose);
  103. if (address >= hose->io_base_virt &&
  104. address < (hose->io_base_virt + size)) {
  105. ret = 1;
  106. break;
  107. }
  108. }
  109. spin_unlock(&hose_spinlock);
  110. return ret;
  111. }
  112. unsigned long pci_address_to_pio(phys_addr_t address)
  113. {
  114. struct pci_controller *hose;
  115. resource_size_t size;
  116. unsigned long ret = ~0;
  117. spin_lock(&hose_spinlock);
  118. list_for_each_entry(hose, &hose_list, list_node) {
  119. size = pcibios_io_size(hose);
  120. if (address >= hose->io_base_phys &&
  121. address < (hose->io_base_phys + size)) {
  122. unsigned long base =
  123. (unsigned long)hose->io_base_virt - _IO_BASE;
  124. ret = base + (address - hose->io_base_phys);
  125. break;
  126. }
  127. }
  128. spin_unlock(&hose_spinlock);
  129. return ret;
  130. }
  131. EXPORT_SYMBOL_GPL(pci_address_to_pio);
  132. /*
  133. * Return the domain number for this bus.
  134. */
  135. int pci_domain_nr(struct pci_bus *bus)
  136. {
  137. struct pci_controller *hose = pci_bus_to_host(bus);
  138. return hose->global_number;
  139. }
  140. EXPORT_SYMBOL(pci_domain_nr);
  141. /* This routine is meant to be used early during boot, when the
  142. * PCI bus numbers have not yet been assigned, and you need to
  143. * issue PCI config cycles to an OF device.
  144. * It could also be used to "fix" RTAS config cycles if you want
  145. * to set pci_assign_all_buses to 1 and still use RTAS for PCI
  146. * config cycles.
  147. */
  148. struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
  149. {
  150. while(node) {
  151. struct pci_controller *hose, *tmp;
  152. list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
  153. if (hose->dn == node)
  154. return hose;
  155. node = node->parent;
  156. }
  157. return NULL;
  158. }
  159. static ssize_t pci_show_devspec(struct device *dev,
  160. struct device_attribute *attr, char *buf)
  161. {
  162. struct pci_dev *pdev;
  163. struct device_node *np;
  164. pdev = to_pci_dev (dev);
  165. np = pci_device_to_OF_node(pdev);
  166. if (np == NULL || np->full_name == NULL)
  167. return 0;
  168. return sprintf(buf, "%s", np->full_name);
  169. }
  170. static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
  171. /* Add sysfs properties */
  172. int pcibios_add_platform_entries(struct pci_dev *pdev)
  173. {
  174. return device_create_file(&pdev->dev, &dev_attr_devspec);
  175. }
  176. char __devinit *pcibios_setup(char *str)
  177. {
  178. return str;
  179. }
  180. /*
  181. * Reads the interrupt pin to determine if interrupt is use by card.
  182. * If the interrupt is used, then gets the interrupt line from the
  183. * openfirmware and sets it in the pci_dev and pci_config line.
  184. */
  185. static int pci_read_irq_line(struct pci_dev *pci_dev)
  186. {
  187. struct of_irq oirq;
  188. unsigned int virq;
  189. /* The current device-tree that iSeries generates from the HV
  190. * PCI informations doesn't contain proper interrupt routing,
  191. * and all the fallback would do is print out crap, so we
  192. * don't attempt to resolve the interrupts here at all, some
  193. * iSeries specific fixup does it.
  194. *
  195. * In the long run, we will hopefully fix the generated device-tree
  196. * instead.
  197. */
  198. #ifdef CONFIG_PPC_ISERIES
  199. if (firmware_has_feature(FW_FEATURE_ISERIES))
  200. return -1;
  201. #endif
  202. pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));
  203. #ifdef DEBUG
  204. memset(&oirq, 0xff, sizeof(oirq));
  205. #endif
  206. /* Try to get a mapping from the device-tree */
  207. if (of_irq_map_pci(pci_dev, &oirq)) {
  208. u8 line, pin;
  209. /* If that fails, lets fallback to what is in the config
  210. * space and map that through the default controller. We
  211. * also set the type to level low since that's what PCI
  212. * interrupts are. If your platform does differently, then
  213. * either provide a proper interrupt tree or don't use this
  214. * function.
  215. */
  216. if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
  217. return -1;
  218. if (pin == 0)
  219. return -1;
  220. if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
  221. line == 0xff || line == 0) {
  222. return -1;
  223. }
  224. pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
  225. line, pin);
  226. virq = irq_create_mapping(NULL, line);
  227. if (virq != NO_IRQ)
  228. irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
  229. } else {
  230. pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
  231. oirq.size, oirq.specifier[0], oirq.specifier[1],
  232. oirq.controller ? oirq.controller->full_name :
  233. "<default>");
  234. virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
  235. oirq.size);
  236. }
  237. if(virq == NO_IRQ) {
  238. pr_debug(" Failed to map !\n");
  239. return -1;
  240. }
  241. pr_debug(" Mapped to linux irq %d\n", virq);
  242. pci_dev->irq = virq;
  243. return 0;
  244. }
  245. /*
  246. * Platform support for /proc/bus/pci/X/Y mmap()s,
  247. * modelled on the sparc64 implementation by Dave Miller.
  248. * -- paulus.
  249. */
  250. /*
  251. * Adjust vm_pgoff of VMA such that it is the physical page offset
  252. * corresponding to the 32-bit pci bus offset for DEV requested by the user.
  253. *
  254. * Basically, the user finds the base address for his device which he wishes
  255. * to mmap. They read the 32-bit value from the config space base register,
  256. * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
  257. * offset parameter of mmap on /proc/bus/pci/XXX for that device.
  258. *
  259. * Returns negative error code on failure, zero on success.
  260. */
  261. static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
  262. resource_size_t *offset,
  263. enum pci_mmap_state mmap_state)
  264. {
  265. struct pci_controller *hose = pci_bus_to_host(dev->bus);
  266. unsigned long io_offset = 0;
  267. int i, res_bit;
  268. if (hose == 0)
  269. return NULL; /* should never happen */
  270. /* If memory, add on the PCI bridge address offset */
  271. if (mmap_state == pci_mmap_mem) {
  272. #if 0 /* See comment in pci_resource_to_user() for why this is disabled */
  273. *offset += hose->pci_mem_offset;
  274. #endif
  275. res_bit = IORESOURCE_MEM;
  276. } else {
  277. io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
  278. *offset += io_offset;
  279. res_bit = IORESOURCE_IO;
  280. }
  281. /*
  282. * Check that the offset requested corresponds to one of the
  283. * resources of the device.
  284. */
  285. for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
  286. struct resource *rp = &dev->resource[i];
  287. int flags = rp->flags;
  288. /* treat ROM as memory (should be already) */
  289. if (i == PCI_ROM_RESOURCE)
  290. flags |= IORESOURCE_MEM;
  291. /* Active and same type? */
  292. if ((flags & res_bit) == 0)
  293. continue;
  294. /* In the range of this resource? */
  295. if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
  296. continue;
  297. /* found it! construct the final physical address */
  298. if (mmap_state == pci_mmap_io)
  299. *offset += hose->io_base_phys - io_offset;
  300. return rp;
  301. }
  302. return NULL;
  303. }
  304. /*
  305. * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
  306. * device mapping.
  307. */
  308. static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
  309. pgprot_t protection,
  310. enum pci_mmap_state mmap_state,
  311. int write_combine)
  312. {
  313. unsigned long prot = pgprot_val(protection);
  314. /* Write combine is always 0 on non-memory space mappings. On
  315. * memory space, if the user didn't pass 1, we check for a
  316. * "prefetchable" resource. This is a bit hackish, but we use
  317. * this to workaround the inability of /sysfs to provide a write
  318. * combine bit
  319. */
  320. if (mmap_state != pci_mmap_mem)
  321. write_combine = 0;
  322. else if (write_combine == 0) {
  323. if (rp->flags & IORESOURCE_PREFETCH)
  324. write_combine = 1;
  325. }
  326. /* XXX would be nice to have a way to ask for write-through */
  327. if (write_combine)
  328. return pgprot_noncached_wc(prot);
  329. else
  330. return pgprot_noncached(prot);
  331. }
  332. /*
  333. * This one is used by /dev/mem and fbdev who have no clue about the
  334. * PCI device, it tries to find the PCI device first and calls the
  335. * above routine
  336. */
  337. pgprot_t pci_phys_mem_access_prot(struct file *file,
  338. unsigned long pfn,
  339. unsigned long size,
  340. pgprot_t prot)
  341. {
  342. struct pci_dev *pdev = NULL;
  343. struct resource *found = NULL;
  344. resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
  345. int i;
  346. if (page_is_ram(pfn))
  347. return prot;
  348. prot = pgprot_noncached(prot);
  349. for_each_pci_dev(pdev) {
  350. for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
  351. struct resource *rp = &pdev->resource[i];
  352. int flags = rp->flags;
  353. /* Active and same type? */
  354. if ((flags & IORESOURCE_MEM) == 0)
  355. continue;
  356. /* In the range of this resource? */
  357. if (offset < (rp->start & PAGE_MASK) ||
  358. offset > rp->end)
  359. continue;
  360. found = rp;
  361. break;
  362. }
  363. if (found)
  364. break;
  365. }
  366. if (found) {
  367. if (found->flags & IORESOURCE_PREFETCH)
  368. prot = pgprot_noncached_wc(prot);
  369. pci_dev_put(pdev);
  370. }
  371. pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
  372. (unsigned long long)offset, pgprot_val(prot));
  373. return prot;
  374. }
  375. /*
  376. * Perform the actual remap of the pages for a PCI device mapping, as
  377. * appropriate for this architecture. The region in the process to map
  378. * is described by vm_start and vm_end members of VMA, the base physical
  379. * address is found in vm_pgoff.
  380. * The pci device structure is provided so that architectures may make mapping
  381. * decisions on a per-device or per-bus basis.
  382. *
  383. * Returns a negative error code on failure, zero on success.
  384. */
  385. int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
  386. enum pci_mmap_state mmap_state, int write_combine)
  387. {
  388. resource_size_t offset =
  389. ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
  390. struct resource *rp;
  391. int ret;
  392. rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
  393. if (rp == NULL)
  394. return -EINVAL;
  395. vma->vm_pgoff = offset >> PAGE_SHIFT;
  396. vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
  397. vma->vm_page_prot,
  398. mmap_state, write_combine);
  399. ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
  400. vma->vm_end - vma->vm_start, vma->vm_page_prot);
  401. return ret;
  402. }
  403. /* This provides legacy IO read access on a bus */
  404. int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
  405. {
  406. unsigned long offset;
  407. struct pci_controller *hose = pci_bus_to_host(bus);
  408. struct resource *rp = &hose->io_resource;
  409. void __iomem *addr;
  410. /* Check if port can be supported by that bus. We only check
  411. * the ranges of the PHB though, not the bus itself as the rules
  412. * for forwarding legacy cycles down bridges are not our problem
  413. * here. So if the host bridge supports it, we do it.
  414. */
  415. offset = (unsigned long)hose->io_base_virt - _IO_BASE;
  416. offset += port;
  417. if (!(rp->flags & IORESOURCE_IO))
  418. return -ENXIO;
  419. if (offset < rp->start || (offset + size) > rp->end)
  420. return -ENXIO;
  421. addr = hose->io_base_virt + port;
  422. switch(size) {
  423. case 1:
  424. *((u8 *)val) = in_8(addr);
  425. return 1;
  426. case 2:
  427. if (port & 1)
  428. return -EINVAL;
  429. *((u16 *)val) = in_le16(addr);
  430. return 2;
  431. case 4:
  432. if (port & 3)
  433. return -EINVAL;
  434. *((u32 *)val) = in_le32(addr);
  435. return 4;
  436. }
  437. return -EINVAL;
  438. }
  439. /* This provides legacy IO write access on a bus */
  440. int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
  441. {
  442. unsigned long offset;
  443. struct pci_controller *hose = pci_bus_to_host(bus);
  444. struct resource *rp = &hose->io_resource;
  445. void __iomem *addr;
  446. /* Check if port can be supported by that bus. We only check
  447. * the ranges of the PHB though, not the bus itself as the rules
  448. * for forwarding legacy cycles down bridges are not our problem
  449. * here. So if the host bridge supports it, we do it.
  450. */
  451. offset = (unsigned long)hose->io_base_virt - _IO_BASE;
  452. offset += port;
  453. if (!(rp->flags & IORESOURCE_IO))
  454. return -ENXIO;
  455. if (offset < rp->start || (offset + size) > rp->end)
  456. return -ENXIO;
  457. addr = hose->io_base_virt + port;
  458. /* WARNING: The generic code is idiotic. It gets passed a pointer
  459. * to what can be a 1, 2 or 4 byte quantity and always reads that
  460. * as a u32, which means that we have to correct the location of
  461. * the data read within those 32 bits for size 1 and 2
  462. */
  463. switch(size) {
  464. case 1:
  465. out_8(addr, val >> 24);
  466. return 1;
  467. case 2:
  468. if (port & 1)
  469. return -EINVAL;
  470. out_le16(addr, val >> 16);
  471. return 2;
  472. case 4:
  473. if (port & 3)
  474. return -EINVAL;
  475. out_le32(addr, val);
  476. return 4;
  477. }
  478. return -EINVAL;
  479. }
  480. /* This provides legacy IO or memory mmap access on a bus */
  481. int pci_mmap_legacy_page_range(struct pci_bus *bus,
  482. struct vm_area_struct *vma,
  483. enum pci_mmap_state mmap_state)
  484. {
  485. struct pci_controller *hose = pci_bus_to_host(bus);
  486. resource_size_t offset =
  487. ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
  488. resource_size_t size = vma->vm_end - vma->vm_start;
  489. struct resource *rp;
  490. pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
  491. pci_domain_nr(bus), bus->number,
  492. mmap_state == pci_mmap_mem ? "MEM" : "IO",
  493. (unsigned long long)offset,
  494. (unsigned long long)(offset + size - 1));
  495. if (mmap_state == pci_mmap_mem) {
  496. /* Hack alert !
  497. *
  498. * Because X is lame and can fail starting if it gets an error trying
  499. * to mmap legacy_mem (instead of just moving on without legacy memory
  500. * access) we fake it here by giving it anonymous memory, effectively
  501. * behaving just like /dev/zero
  502. */
  503. if ((offset + size) > hose->isa_mem_size) {
  504. printk(KERN_DEBUG
  505. "Process %s (pid:%d) mapped non-existing PCI legacy memory for 0%04x:%02x\n",
  506. current->comm, current->pid, pci_domain_nr(bus), bus->number);
  507. if (vma->vm_flags & VM_SHARED)
  508. return shmem_zero_setup(vma);
  509. return 0;
  510. }
  511. offset += hose->isa_mem_phys;
  512. } else {
  513. unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
  514. unsigned long roffset = offset + io_offset;
  515. rp = &hose->io_resource;
  516. if (!(rp->flags & IORESOURCE_IO))
  517. return -ENXIO;
  518. if (roffset < rp->start || (roffset + size) > rp->end)
  519. return -ENXIO;
  520. offset += hose->io_base_phys;
  521. }
  522. pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
  523. vma->vm_pgoff = offset >> PAGE_SHIFT;
  524. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  525. return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
  526. vma->vm_end - vma->vm_start,
  527. vma->vm_page_prot);
  528. }
  529. void pci_resource_to_user(const struct pci_dev *dev, int bar,
  530. const struct resource *rsrc,
  531. resource_size_t *start, resource_size_t *end)
  532. {
  533. struct pci_controller *hose = pci_bus_to_host(dev->bus);
  534. resource_size_t offset = 0;
  535. if (hose == NULL)
  536. return;
  537. if (rsrc->flags & IORESOURCE_IO)
  538. offset = (unsigned long)hose->io_base_virt - _IO_BASE;
  539. /* We pass a fully fixed up address to userland for MMIO instead of
  540. * a BAR value because X is lame and expects to be able to use that
  541. * to pass to /dev/mem !
  542. *
  543. * That means that we'll have potentially 64 bits values where some
  544. * userland apps only expect 32 (like X itself since it thinks only
  545. * Sparc has 64 bits MMIO) but if we don't do that, we break it on
  546. * 32 bits CHRPs :-(
  547. *
  548. * Hopefully, the sysfs insterface is immune to that gunk. Once X
  549. * has been fixed (and the fix spread enough), we can re-enable the
  550. * 2 lines below and pass down a BAR value to userland. In that case
  551. * we'll also have to re-enable the matching code in
  552. * __pci_mmap_make_offset().
  553. *
  554. * BenH.
  555. */
  556. #if 0
  557. else if (rsrc->flags & IORESOURCE_MEM)
  558. offset = hose->pci_mem_offset;
  559. #endif
  560. *start = rsrc->start - offset;
  561. *end = rsrc->end - offset;
  562. }
  563. /**
  564. * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
  565. * @hose: newly allocated pci_controller to be setup
  566. * @dev: device node of the host bridge
  567. * @primary: set if primary bus (32 bits only, soon to be deprecated)
  568. *
  569. * This function will parse the "ranges" property of a PCI host bridge device
  570. * node and setup the resource mapping of a pci controller based on its
  571. * content.
  572. *
  573. * Life would be boring if it wasn't for a few issues that we have to deal
  574. * with here:
  575. *
  576. * - We can only cope with one IO space range and up to 3 Memory space
  577. * ranges. However, some machines (thanks Apple !) tend to split their
  578. * space into lots of small contiguous ranges. So we have to coalesce.
  579. *
  580. * - We can only cope with all memory ranges having the same offset
  581. * between CPU addresses and PCI addresses. Unfortunately, some bridges
  582. * are setup for a large 1:1 mapping along with a small "window" which
  583. * maps PCI address 0 to some arbitrary high address of the CPU space in
  584. * order to give access to the ISA memory hole.
  585. * The way out of here that I've chosen for now is to always set the
  586. * offset based on the first resource found, then override it if we
  587. * have a different offset and the previous was set by an ISA hole.
  588. *
  589. * - Some busses have IO space not starting at 0, which causes trouble with
  590. * the way we do our IO resource renumbering. The code somewhat deals with
  591. * it for 64 bits but I would expect problems on 32 bits.
  592. *
  593. * - Some 32 bits platforms such as 4xx can have physical space larger than
  594. * 32 bits so we need to use 64 bits values for the parsing
  595. */
  596. void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
  597. struct device_node *dev,
  598. int primary)
  599. {
  600. const u32 *ranges;
  601. int rlen;
  602. int pna = of_n_addr_cells(dev);
  603. int np = pna + 5;
  604. int memno = 0, isa_hole = -1;
  605. u32 pci_space;
  606. unsigned long long pci_addr, cpu_addr, pci_next, cpu_next, size;
  607. unsigned long long isa_mb = 0;
  608. struct resource *res;
  609. printk(KERN_INFO "PCI host bridge %s %s ranges:\n",
  610. dev->full_name, primary ? "(primary)" : "");
  611. /* Get ranges property */
  612. ranges = of_get_property(dev, "ranges", &rlen);
  613. if (ranges == NULL)
  614. return;
  615. /* Parse it */
  616. while ((rlen -= np * 4) >= 0) {
  617. /* Read next ranges element */
  618. pci_space = ranges[0];
  619. pci_addr = of_read_number(ranges + 1, 2);
  620. cpu_addr = of_translate_address(dev, ranges + 3);
  621. size = of_read_number(ranges + pna + 3, 2);
  622. ranges += np;
  623. /* If we failed translation or got a zero-sized region
  624. * (some FW try to feed us with non sensical zero sized regions
  625. * such as power3 which look like some kind of attempt at exposing
  626. * the VGA memory hole)
  627. */
  628. if (cpu_addr == OF_BAD_ADDR || size == 0)
  629. continue;
  630. /* Now consume following elements while they are contiguous */
  631. for (; rlen >= np * sizeof(u32);
  632. ranges += np, rlen -= np * 4) {
  633. if (ranges[0] != pci_space)
  634. break;
  635. pci_next = of_read_number(ranges + 1, 2);
  636. cpu_next = of_translate_address(dev, ranges + 3);
  637. if (pci_next != pci_addr + size ||
  638. cpu_next != cpu_addr + size)
  639. break;
  640. size += of_read_number(ranges + pna + 3, 2);
  641. }
  642. /* Act based on address space type */
  643. res = NULL;
  644. switch ((pci_space >> 24) & 0x3) {
  645. case 1: /* PCI IO space */
  646. printk(KERN_INFO
  647. " IO 0x%016llx..0x%016llx -> 0x%016llx\n",
  648. cpu_addr, cpu_addr + size - 1, pci_addr);
  649. /* We support only one IO range */
  650. if (hose->pci_io_size) {
  651. printk(KERN_INFO
  652. " \\--> Skipped (too many) !\n");
  653. continue;
  654. }
  655. #ifdef CONFIG_PPC32
  656. /* On 32 bits, limit I/O space to 16MB */
  657. if (size > 0x01000000)
  658. size = 0x01000000;
  659. /* 32 bits needs to map IOs here */
  660. hose->io_base_virt = ioremap(cpu_addr, size);
  661. /* Expect trouble if pci_addr is not 0 */
  662. if (primary)
  663. isa_io_base =
  664. (unsigned long)hose->io_base_virt;
  665. #endif /* CONFIG_PPC32 */
  666. /* pci_io_size and io_base_phys always represent IO
  667. * space starting at 0 so we factor in pci_addr
  668. */
  669. hose->pci_io_size = pci_addr + size;
  670. hose->io_base_phys = cpu_addr - pci_addr;
  671. /* Build resource */
  672. res = &hose->io_resource;
  673. res->flags = IORESOURCE_IO;
  674. res->start = pci_addr;
  675. break;
  676. case 2: /* PCI Memory space */
  677. case 3: /* PCI 64 bits Memory space */
  678. printk(KERN_INFO
  679. " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
  680. cpu_addr, cpu_addr + size - 1, pci_addr,
  681. (pci_space & 0x40000000) ? "Prefetch" : "");
  682. /* We support only 3 memory ranges */
  683. if (memno >= 3) {
  684. printk(KERN_INFO
  685. " \\--> Skipped (too many) !\n");
  686. continue;
  687. }
  688. /* Handles ISA memory hole space here */
  689. if (pci_addr == 0) {
  690. isa_mb = cpu_addr;
  691. isa_hole = memno;
  692. if (primary || isa_mem_base == 0)
  693. isa_mem_base = cpu_addr;
  694. hose->isa_mem_phys = cpu_addr;
  695. hose->isa_mem_size = size;
  696. }
  697. /* We get the PCI/Mem offset from the first range or
  698. * the, current one if the offset came from an ISA
  699. * hole. If they don't match, bugger.
  700. */
  701. if (memno == 0 ||
  702. (isa_hole >= 0 && pci_addr != 0 &&
  703. hose->pci_mem_offset == isa_mb))
  704. hose->pci_mem_offset = cpu_addr - pci_addr;
  705. else if (pci_addr != 0 &&
  706. hose->pci_mem_offset != cpu_addr - pci_addr) {
  707. printk(KERN_INFO
  708. " \\--> Skipped (offset mismatch) !\n");
  709. continue;
  710. }
  711. /* Build resource */
  712. res = &hose->mem_resources[memno++];
  713. res->flags = IORESOURCE_MEM;
  714. if (pci_space & 0x40000000)
  715. res->flags |= IORESOURCE_PREFETCH;
  716. res->start = cpu_addr;
  717. break;
  718. }
  719. if (res != NULL) {
  720. res->name = dev->full_name;
  721. res->end = res->start + size - 1;
  722. res->parent = NULL;
  723. res->sibling = NULL;
  724. res->child = NULL;
  725. }
  726. }
  727. /* If there's an ISA hole and the pci_mem_offset is -not- matching
  728. * the ISA hole offset, then we need to remove the ISA hole from
  729. * the resource list for that brige
  730. */
  731. if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
  732. unsigned int next = isa_hole + 1;
  733. printk(KERN_INFO " Removing ISA hole at 0x%016llx\n", isa_mb);
  734. if (next < memno)
  735. memmove(&hose->mem_resources[isa_hole],
  736. &hose->mem_resources[next],
  737. sizeof(struct resource) * (memno - next));
  738. hose->mem_resources[--memno].flags = 0;
  739. }
  740. }
  741. /* Decide whether to display the domain number in /proc */
  742. int pci_proc_domain(struct pci_bus *bus)
  743. {
  744. struct pci_controller *hose = pci_bus_to_host(bus);
  745. if (!pci_has_flag(PCI_ENABLE_PROC_DOMAINS))
  746. return 0;
  747. if (pci_has_flag(PCI_COMPAT_DOMAIN_0))
  748. return hose->global_number != 0;
  749. return 1;
  750. }
  751. /* This header fixup will do the resource fixup for all devices as they are
  752. * probed, but not for bridge ranges
  753. */
  754. static void __devinit pcibios_fixup_resources(struct pci_dev *dev)
  755. {
  756. struct pci_controller *hose = pci_bus_to_host(dev->bus);
  757. int i;
  758. if (!hose) {
  759. printk(KERN_ERR "No host bridge for PCI dev %s !\n",
  760. pci_name(dev));
  761. return;
  762. }
  763. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
  764. struct resource *res = dev->resource + i;
  765. if (!res->flags)
  766. continue;
  767. /* If we're going to re-assign everything, we mark all resources
  768. * as unset (and 0-base them). In addition, we mark BARs starting
  769. * at 0 as unset as well, except if PCI_PROBE_ONLY is also set
  770. * since in that case, we don't want to re-assign anything
  771. */
  772. if (pci_has_flag(PCI_REASSIGN_ALL_RSRC) ||
  773. (res->start == 0 && !pci_has_flag(PCI_PROBE_ONLY))) {
  774. /* Only print message if not re-assigning */
  775. if (!pci_has_flag(PCI_REASSIGN_ALL_RSRC))
  776. pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] "
  777. "is unassigned\n",
  778. pci_name(dev), i,
  779. (unsigned long long)res->start,
  780. (unsigned long long)res->end,
  781. (unsigned int)res->flags);
  782. res->end -= res->start;
  783. res->start = 0;
  784. res->flags |= IORESOURCE_UNSET;
  785. continue;
  786. }
  787. pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]\n",
  788. pci_name(dev), i,
  789. (unsigned long long)res->start,\
  790. (unsigned long long)res->end,
  791. (unsigned int)res->flags);
  792. }
  793. /* Call machine specific resource fixup */
  794. if (ppc_md.pcibios_fixup_resources)
  795. ppc_md.pcibios_fixup_resources(dev);
  796. }
  797. DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
  798. /* This function tries to figure out if a bridge resource has been initialized
  799. * by the firmware or not. It doesn't have to be absolutely bullet proof, but
  800. * things go more smoothly when it gets it right. It should covers cases such
  801. * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
  802. */
  803. static int __devinit pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
  804. struct resource *res)
  805. {
  806. struct pci_controller *hose = pci_bus_to_host(bus);
  807. struct pci_dev *dev = bus->self;
  808. resource_size_t offset;
  809. u16 command;
  810. int i;
  811. /* We don't do anything if PCI_PROBE_ONLY is set */
  812. if (pci_has_flag(PCI_PROBE_ONLY))
  813. return 0;
  814. /* Job is a bit different between memory and IO */
  815. if (res->flags & IORESOURCE_MEM) {
  816. /* If the BAR is non-0 (res != pci_mem_offset) then it's probably been
  817. * initialized by somebody
  818. */
  819. if (res->start != hose->pci_mem_offset)
  820. return 0;
  821. /* The BAR is 0, let's check if memory decoding is enabled on
  822. * the bridge. If not, we consider it unassigned
  823. */
  824. pci_read_config_word(dev, PCI_COMMAND, &command);
  825. if ((command & PCI_COMMAND_MEMORY) == 0)
  826. return 1;
  827. /* Memory decoding is enabled and the BAR is 0. If any of the bridge
  828. * resources covers that starting address (0 then it's good enough for
  829. * us for memory
  830. */
  831. for (i = 0; i < 3; i++) {
  832. if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
  833. hose->mem_resources[i].start == hose->pci_mem_offset)
  834. return 0;
  835. }
  836. /* Well, it starts at 0 and we know it will collide so we may as
  837. * well consider it as unassigned. That covers the Apple case.
  838. */
  839. return 1;
  840. } else {
  841. /* If the BAR is non-0, then we consider it assigned */
  842. offset = (unsigned long)hose->io_base_virt - _IO_BASE;
  843. if (((res->start - offset) & 0xfffffffful) != 0)
  844. return 0;
  845. /* Here, we are a bit different than memory as typically IO space
  846. * starting at low addresses -is- valid. What we do instead if that
  847. * we consider as unassigned anything that doesn't have IO enabled
  848. * in the PCI command register, and that's it.
  849. */
  850. pci_read_config_word(dev, PCI_COMMAND, &command);
  851. if (command & PCI_COMMAND_IO)
  852. return 0;
  853. /* It's starting at 0 and IO is disabled in the bridge, consider
  854. * it unassigned
  855. */
  856. return 1;
  857. }
  858. }
  859. /* Fixup resources of a PCI<->PCI bridge */
  860. static void __devinit pcibios_fixup_bridge(struct pci_bus *bus)
  861. {
  862. struct resource *res;
  863. int i;
  864. struct pci_dev *dev = bus->self;
  865. pci_bus_for_each_resource(bus, res, i) {
  866. if (!res || !res->flags)
  867. continue;
  868. if (i >= 3 && bus->self->transparent)
  869. continue;
  870. /* If we are going to re-assign everything, mark the resource
  871. * as unset and move it down to 0
  872. */
  873. if (pci_has_flag(PCI_REASSIGN_ALL_RSRC)) {
  874. res->flags |= IORESOURCE_UNSET;
  875. res->end -= res->start;
  876. res->start = 0;
  877. continue;
  878. }
  879. pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x]\n",
  880. pci_name(dev), i,
  881. (unsigned long long)res->start,\
  882. (unsigned long long)res->end,
  883. (unsigned int)res->flags);
  884. /* Try to detect uninitialized P2P bridge resources,
  885. * and clear them out so they get re-assigned later
  886. */
  887. if (pcibios_uninitialized_bridge_resource(bus, res)) {
  888. res->flags = 0;
  889. pr_debug("PCI:%s (unassigned)\n", pci_name(dev));
  890. }
  891. }
  892. }
  893. void __devinit pcibios_setup_bus_self(struct pci_bus *bus)
  894. {
  895. /* Fix up the bus resources for P2P bridges */
  896. if (bus->self != NULL)
  897. pcibios_fixup_bridge(bus);
  898. /* Platform specific bus fixups. This is currently only used
  899. * by fsl_pci and I'm hoping to get rid of it at some point
  900. */
  901. if (ppc_md.pcibios_fixup_bus)
  902. ppc_md.pcibios_fixup_bus(bus);
  903. /* Setup bus DMA mappings */
  904. if (ppc_md.pci_dma_bus_setup)
  905. ppc_md.pci_dma_bus_setup(bus);
  906. }
  907. void __devinit pcibios_setup_bus_devices(struct pci_bus *bus)
  908. {
  909. struct pci_dev *dev;
  910. pr_debug("PCI: Fixup bus devices %d (%s)\n",
  911. bus->number, bus->self ? pci_name(bus->self) : "PHB");
  912. list_for_each_entry(dev, &bus->devices, bus_list) {
  913. /* Cardbus can call us to add new devices to a bus, so ignore
  914. * those who are already fully discovered
  915. */
  916. if (dev->is_added)
  917. continue;
  918. /* Fixup NUMA node as it may not be setup yet by the generic
  919. * code and is needed by the DMA init
  920. */
  921. set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
  922. /* Hook up default DMA ops */
  923. set_dma_ops(&dev->dev, pci_dma_ops);
  924. set_dma_offset(&dev->dev, PCI_DRAM_OFFSET);
  925. /* Additional platform DMA/iommu setup */
  926. if (ppc_md.pci_dma_dev_setup)
  927. ppc_md.pci_dma_dev_setup(dev);
  928. /* Read default IRQs and fixup if necessary */
  929. pci_read_irq_line(dev);
  930. if (ppc_md.pci_irq_fixup)
  931. ppc_md.pci_irq_fixup(dev);
  932. }
  933. }
  934. void pcibios_set_master(struct pci_dev *dev)
  935. {
  936. /* No special bus mastering setup handling */
  937. }
  938. void __devinit pcibios_fixup_bus(struct pci_bus *bus)
  939. {
  940. /* When called from the generic PCI probe, read PCI<->PCI bridge
  941. * bases. This is -not- called when generating the PCI tree from
  942. * the OF device-tree.
  943. */
  944. if (bus->self != NULL)
  945. pci_read_bridge_bases(bus);
  946. /* Now fixup the bus bus */
  947. pcibios_setup_bus_self(bus);
  948. /* Now fixup devices on that bus */
  949. pcibios_setup_bus_devices(bus);
  950. }
  951. EXPORT_SYMBOL(pcibios_fixup_bus);
  952. void __devinit pci_fixup_cardbus(struct pci_bus *bus)
  953. {
  954. /* Now fixup devices on that bus */
  955. pcibios_setup_bus_devices(bus);
  956. }
  957. static int skip_isa_ioresource_align(struct pci_dev *dev)
  958. {
  959. if (pci_has_flag(PCI_CAN_SKIP_ISA_ALIGN) &&
  960. !(dev->bus->bridge_ctl & PCI_BRIDGE_CTL_ISA))
  961. return 1;
  962. return 0;
  963. }
  964. /*
  965. * We need to avoid collisions with `mirrored' VGA ports
  966. * and other strange ISA hardware, so we always want the
  967. * addresses to be allocated in the 0x000-0x0ff region
  968. * modulo 0x400.
  969. *
  970. * Why? Because some silly external IO cards only decode
  971. * the low 10 bits of the IO address. The 0x00-0xff region
  972. * is reserved for motherboard devices that decode all 16
  973. * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
  974. * but we want to try to avoid allocating at 0x2900-0x2bff
  975. * which might have be mirrored at 0x0100-0x03ff..
  976. */
  977. resource_size_t pcibios_align_resource(void *data, const struct resource *res,
  978. resource_size_t size, resource_size_t align)
  979. {
  980. struct pci_dev *dev = data;
  981. resource_size_t start = res->start;
  982. if (res->flags & IORESOURCE_IO) {
  983. if (skip_isa_ioresource_align(dev))
  984. return start;
  985. if (start & 0x300)
  986. start = (start + 0x3ff) & ~0x3ff;
  987. }
  988. return start;
  989. }
  990. EXPORT_SYMBOL(pcibios_align_resource);
  991. /*
  992. * Reparent resource children of pr that conflict with res
  993. * under res, and make res replace those children.
  994. */
  995. static int reparent_resources(struct resource *parent,
  996. struct resource *res)
  997. {
  998. struct resource *p, **pp;
  999. struct resource **firstpp = NULL;
  1000. for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
  1001. if (p->end < res->start)
  1002. continue;
  1003. if (res->end < p->start)
  1004. break;
  1005. if (p->start < res->start || p->end > res->end)
  1006. return -1; /* not completely contained */
  1007. if (firstpp == NULL)
  1008. firstpp = pp;
  1009. }
  1010. if (firstpp == NULL)
  1011. return -1; /* didn't find any conflicting entries? */
  1012. res->parent = parent;
  1013. res->child = *firstpp;
  1014. res->sibling = *pp;
  1015. *firstpp = res;
  1016. *pp = NULL;
  1017. for (p = res->child; p != NULL; p = p->sibling) {
  1018. p->parent = res;
  1019. pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
  1020. p->name,
  1021. (unsigned long long)p->start,
  1022. (unsigned long long)p->end, res->name);
  1023. }
  1024. return 0;
  1025. }
  1026. /*
  1027. * Handle resources of PCI devices. If the world were perfect, we could
  1028. * just allocate all the resource regions and do nothing more. It isn't.
  1029. * On the other hand, we cannot just re-allocate all devices, as it would
  1030. * require us to know lots of host bridge internals. So we attempt to
  1031. * keep as much of the original configuration as possible, but tweak it
  1032. * when it's found to be wrong.
  1033. *
  1034. * Known BIOS problems we have to work around:
  1035. * - I/O or memory regions not configured
  1036. * - regions configured, but not enabled in the command register
  1037. * - bogus I/O addresses above 64K used
  1038. * - expansion ROMs left enabled (this may sound harmless, but given
  1039. * the fact the PCI specs explicitly allow address decoders to be
  1040. * shared between expansion ROMs and other resource regions, it's
  1041. * at least dangerous)
  1042. *
  1043. * Our solution:
  1044. * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
  1045. * This gives us fixed barriers on where we can allocate.
  1046. * (2) Allocate resources for all enabled devices. If there is
  1047. * a collision, just mark the resource as unallocated. Also
  1048. * disable expansion ROMs during this step.
  1049. * (3) Try to allocate resources for disabled devices. If the
  1050. * resources were assigned correctly, everything goes well,
  1051. * if they weren't, they won't disturb allocation of other
  1052. * resources.
  1053. * (4) Assign new addresses to resources which were either
  1054. * not configured at all or misconfigured. If explicitly
  1055. * requested by the user, configure expansion ROM address
  1056. * as well.
  1057. */
  1058. void pcibios_allocate_bus_resources(struct pci_bus *bus)
  1059. {
  1060. struct pci_bus *b;
  1061. int i;
  1062. struct resource *res, *pr;
  1063. pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
  1064. pci_domain_nr(bus), bus->number);
  1065. pci_bus_for_each_resource(bus, res, i) {
  1066. if (!res || !res->flags || res->start > res->end || res->parent)
  1067. continue;
  1068. /* If the resource was left unset at this point, we clear it */
  1069. if (res->flags & IORESOURCE_UNSET)
  1070. goto clear_resource;
  1071. if (bus->parent == NULL)
  1072. pr = (res->flags & IORESOURCE_IO) ?
  1073. &ioport_resource : &iomem_resource;
  1074. else {
  1075. pr = pci_find_parent_resource(bus->self, res);
  1076. if (pr == res) {
  1077. /* this happens when the generic PCI
  1078. * code (wrongly) decides that this
  1079. * bridge is transparent -- paulus
  1080. */
  1081. continue;
  1082. }
  1083. }
  1084. pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx "
  1085. "[0x%x], parent %p (%s)\n",
  1086. bus->self ? pci_name(bus->self) : "PHB",
  1087. bus->number, i,
  1088. (unsigned long long)res->start,
  1089. (unsigned long long)res->end,
  1090. (unsigned int)res->flags,
  1091. pr, (pr && pr->name) ? pr->name : "nil");
  1092. if (pr && !(pr->flags & IORESOURCE_UNSET)) {
  1093. if (request_resource(pr, res) == 0)
  1094. continue;
  1095. /*
  1096. * Must be a conflict with an existing entry.
  1097. * Move that entry (or entries) under the
  1098. * bridge resource and try again.
  1099. */
  1100. if (reparent_resources(pr, res) == 0)
  1101. continue;
  1102. }
  1103. pr_warning("PCI: Cannot allocate resource region "
  1104. "%d of PCI bridge %d, will remap\n", i, bus->number);
  1105. clear_resource:
  1106. res->start = res->end = 0;
  1107. res->flags = 0;
  1108. }
  1109. list_for_each_entry(b, &bus->children, node)
  1110. pcibios_allocate_bus_resources(b);
  1111. }
  1112. static inline void __devinit alloc_resource(struct pci_dev *dev, int idx)
  1113. {
  1114. struct resource *pr, *r = &dev->resource[idx];
  1115. pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
  1116. pci_name(dev), idx,
  1117. (unsigned long long)r->start,
  1118. (unsigned long long)r->end,
  1119. (unsigned int)r->flags);
  1120. pr = pci_find_parent_resource(dev, r);
  1121. if (!pr || (pr->flags & IORESOURCE_UNSET) ||
  1122. request_resource(pr, r) < 0) {
  1123. printk(KERN_WARNING "PCI: Cannot allocate resource region %d"
  1124. " of device %s, will remap\n", idx, pci_name(dev));
  1125. if (pr)
  1126. pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
  1127. pr,
  1128. (unsigned long long)pr->start,
  1129. (unsigned long long)pr->end,
  1130. (unsigned int)pr->flags);
  1131. /* We'll assign a new address later */
  1132. r->flags |= IORESOURCE_UNSET;
  1133. r->end -= r->start;
  1134. r->start = 0;
  1135. }
  1136. }
  1137. static void __init pcibios_allocate_resources(int pass)
  1138. {
  1139. struct pci_dev *dev = NULL;
  1140. int idx, disabled;
  1141. u16 command;
  1142. struct resource *r;
  1143. for_each_pci_dev(dev) {
  1144. pci_read_config_word(dev, PCI_COMMAND, &command);
  1145. for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
  1146. r = &dev->resource[idx];
  1147. if (r->parent) /* Already allocated */
  1148. continue;
  1149. if (!r->flags || (r->flags & IORESOURCE_UNSET))
  1150. continue; /* Not assigned at all */
  1151. /* We only allocate ROMs on pass 1 just in case they
  1152. * have been screwed up by firmware
  1153. */
  1154. if (idx == PCI_ROM_RESOURCE )
  1155. disabled = 1;
  1156. if (r->flags & IORESOURCE_IO)
  1157. disabled = !(command & PCI_COMMAND_IO);
  1158. else
  1159. disabled = !(command & PCI_COMMAND_MEMORY);
  1160. if (pass == disabled)
  1161. alloc_resource(dev, idx);
  1162. }
  1163. if (pass)
  1164. continue;
  1165. r = &dev->resource[PCI_ROM_RESOURCE];
  1166. if (r->flags) {
  1167. /* Turn the ROM off, leave the resource region,
  1168. * but keep it unregistered.
  1169. */
  1170. u32 reg;
  1171. pci_read_config_dword(dev, dev->rom_base_reg, &reg);
  1172. if (reg & PCI_ROM_ADDRESS_ENABLE) {
  1173. pr_debug("PCI: Switching off ROM of %s\n",
  1174. pci_name(dev));
  1175. r->flags &= ~IORESOURCE_ROM_ENABLE;
  1176. pci_write_config_dword(dev, dev->rom_base_reg,
  1177. reg & ~PCI_ROM_ADDRESS_ENABLE);
  1178. }
  1179. }
  1180. }
  1181. }
  1182. static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
  1183. {
  1184. struct pci_controller *hose = pci_bus_to_host(bus);
  1185. resource_size_t offset;
  1186. struct resource *res, *pres;
  1187. int i;
  1188. pr_debug("Reserving legacy ranges for domain %04x\n", pci_domain_nr(bus));
  1189. /* Check for IO */
  1190. if (!(hose->io_resource.flags & IORESOURCE_IO))
  1191. goto no_io;
  1192. offset = (unsigned long)hose->io_base_virt - _IO_BASE;
  1193. res = kzalloc(sizeof(struct resource), GFP_KERNEL);
  1194. BUG_ON(res == NULL);
  1195. res->name = "Legacy IO";
  1196. res->flags = IORESOURCE_IO;
  1197. res->start = offset;
  1198. res->end = (offset + 0xfff) & 0xfffffffful;
  1199. pr_debug("Candidate legacy IO: %pR\n", res);
  1200. if (request_resource(&hose->io_resource, res)) {
  1201. printk(KERN_DEBUG
  1202. "PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
  1203. pci_domain_nr(bus), bus->number, res);
  1204. kfree(res);
  1205. }
  1206. no_io:
  1207. /* Check for memory */
  1208. offset = hose->pci_mem_offset;
  1209. pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
  1210. for (i = 0; i < 3; i++) {
  1211. pres = &hose->mem_resources[i];
  1212. if (!(pres->flags & IORESOURCE_MEM))
  1213. continue;
  1214. pr_debug("hose mem res: %pR\n", pres);
  1215. if ((pres->start - offset) <= 0xa0000 &&
  1216. (pres->end - offset) >= 0xbffff)
  1217. break;
  1218. }
  1219. if (i >= 3)
  1220. return;
  1221. res = kzalloc(sizeof(struct resource), GFP_KERNEL);
  1222. BUG_ON(res == NULL);
  1223. res->name = "Legacy VGA memory";
  1224. res->flags = IORESOURCE_MEM;
  1225. res->start = 0xa0000 + offset;
  1226. res->end = 0xbffff + offset;
  1227. pr_debug("Candidate VGA memory: %pR\n", res);
  1228. if (request_resource(pres, res)) {
  1229. printk(KERN_DEBUG
  1230. "PCI %04x:%02x Cannot reserve VGA memory %pR\n",
  1231. pci_domain_nr(bus), bus->number, res);
  1232. kfree(res);
  1233. }
  1234. }
  1235. void __init pcibios_resource_survey(void)
  1236. {
  1237. struct pci_bus *b;
  1238. /* Allocate and assign resources */
  1239. list_for_each_entry(b, &pci_root_buses, node)
  1240. pcibios_allocate_bus_resources(b);
  1241. pcibios_allocate_resources(0);
  1242. pcibios_allocate_resources(1);
  1243. /* Before we start assigning unassigned resource, we try to reserve
  1244. * the low IO area and the VGA memory area if they intersect the
  1245. * bus available resources to avoid allocating things on top of them
  1246. */
  1247. if (!pci_has_flag(PCI_PROBE_ONLY)) {
  1248. list_for_each_entry(b, &pci_root_buses, node)
  1249. pcibios_reserve_legacy_regions(b);
  1250. }
  1251. /* Now, if the platform didn't decide to blindly trust the firmware,
  1252. * we proceed to assigning things that were left unassigned
  1253. */
  1254. if (!pci_has_flag(PCI_PROBE_ONLY)) {
  1255. pr_debug("PCI: Assigning unassigned resources...\n");
  1256. pci_assign_unassigned_resources();
  1257. }
  1258. /* Call machine dependent fixup */
  1259. if (ppc_md.pcibios_fixup)
  1260. ppc_md.pcibios_fixup();
  1261. }
  1262. #ifdef CONFIG_HOTPLUG
  1263. /* This is used by the PCI hotplug driver to allocate resource
  1264. * of newly plugged busses. We can try to consolidate with the
  1265. * rest of the code later, for now, keep it as-is as our main
  1266. * resource allocation function doesn't deal with sub-trees yet.
  1267. */
  1268. void pcibios_claim_one_bus(struct pci_bus *bus)
  1269. {
  1270. struct pci_dev *dev;
  1271. struct pci_bus *child_bus;
  1272. list_for_each_entry(dev, &bus->devices, bus_list) {
  1273. int i;
  1274. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  1275. struct resource *r = &dev->resource[i];
  1276. if (r->parent || !r->start || !r->flags)
  1277. continue;
  1278. pr_debug("PCI: Claiming %s: "
  1279. "Resource %d: %016llx..%016llx [%x]\n",
  1280. pci_name(dev), i,
  1281. (unsigned long long)r->start,
  1282. (unsigned long long)r->end,
  1283. (unsigned int)r->flags);
  1284. pci_claim_resource(dev, i);
  1285. }
  1286. }
  1287. list_for_each_entry(child_bus, &bus->children, node)
  1288. pcibios_claim_one_bus(child_bus);
  1289. }
  1290. /* pcibios_finish_adding_to_bus
  1291. *
  1292. * This is to be called by the hotplug code after devices have been
  1293. * added to a bus, this include calling it for a PHB that is just
  1294. * being added
  1295. */
  1296. void pcibios_finish_adding_to_bus(struct pci_bus *bus)
  1297. {
  1298. pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
  1299. pci_domain_nr(bus), bus->number);
  1300. /* Allocate bus and devices resources */
  1301. pcibios_allocate_bus_resources(bus);
  1302. pcibios_claim_one_bus(bus);
  1303. /* Add new devices to global lists. Register in proc, sysfs. */
  1304. pci_bus_add_devices(bus);
  1305. /* Fixup EEH */
  1306. eeh_add_device_tree_late(bus);
  1307. }
  1308. EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
  1309. #endif /* CONFIG_HOTPLUG */
  1310. int pcibios_enable_device(struct pci_dev *dev, int mask)
  1311. {
  1312. if (ppc_md.pcibios_enable_device_hook)
  1313. if (ppc_md.pcibios_enable_device_hook(dev))
  1314. return -EINVAL;
  1315. return pci_enable_resources(dev, mask);
  1316. }
  1317. static void __devinit pcibios_setup_phb_resources(struct pci_controller *hose, struct list_head *resources)
  1318. {
  1319. struct resource *res;
  1320. int i;
  1321. /* Hookup PHB IO resource */
  1322. res = &hose->io_resource;
  1323. if (!res->flags) {
  1324. printk(KERN_WARNING "PCI: I/O resource not set for host"
  1325. " bridge %s (domain %d)\n",
  1326. hose->dn->full_name, hose->global_number);
  1327. #ifdef CONFIG_PPC32
  1328. /* Workaround for lack of IO resource only on 32-bit */
  1329. res->start = (unsigned long)hose->io_base_virt - isa_io_base;
  1330. res->end = res->start + IO_SPACE_LIMIT;
  1331. res->flags = IORESOURCE_IO;
  1332. #endif /* CONFIG_PPC32 */
  1333. }
  1334. pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
  1335. (unsigned long long)res->start,
  1336. (unsigned long long)res->end,
  1337. (unsigned long)res->flags);
  1338. pci_add_resource_offset(resources, res,
  1339. (resource_size_t) hose->io_base_virt - _IO_BASE);
  1340. /* Hookup PHB Memory resources */
  1341. for (i = 0; i < 3; ++i) {
  1342. res = &hose->mem_resources[i];
  1343. if (!res->flags) {
  1344. if (i > 0)
  1345. continue;
  1346. printk(KERN_ERR "PCI: Memory resource 0 not set for "
  1347. "host bridge %s (domain %d)\n",
  1348. hose->dn->full_name, hose->global_number);
  1349. #ifdef CONFIG_PPC32
  1350. /* Workaround for lack of MEM resource only on 32-bit */
  1351. res->start = hose->pci_mem_offset;
  1352. res->end = (resource_size_t)-1LL;
  1353. res->flags = IORESOURCE_MEM;
  1354. #endif /* CONFIG_PPC32 */
  1355. }
  1356. pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n", i,
  1357. (unsigned long long)res->start,
  1358. (unsigned long long)res->end,
  1359. (unsigned long)res->flags);
  1360. pci_add_resource_offset(resources, res, hose->pci_mem_offset);
  1361. }
  1362. pr_debug("PCI: PHB MEM offset = %016llx\n",
  1363. (unsigned long long)hose->pci_mem_offset);
  1364. pr_debug("PCI: PHB IO offset = %08lx\n",
  1365. (unsigned long)hose->io_base_virt - _IO_BASE);
  1366. }
  1367. /*
  1368. * Null PCI config access functions, for the case when we can't
  1369. * find a hose.
  1370. */
  1371. #define NULL_PCI_OP(rw, size, type) \
  1372. static int \
  1373. null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
  1374. { \
  1375. return PCIBIOS_DEVICE_NOT_FOUND; \
  1376. }
  1377. static int
  1378. null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
  1379. int len, u32 *val)
  1380. {
  1381. return PCIBIOS_DEVICE_NOT_FOUND;
  1382. }
  1383. static int
  1384. null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
  1385. int len, u32 val)
  1386. {
  1387. return PCIBIOS_DEVICE_NOT_FOUND;
  1388. }
  1389. static struct pci_ops null_pci_ops =
  1390. {
  1391. .read = null_read_config,
  1392. .write = null_write_config,
  1393. };
  1394. /*
  1395. * These functions are used early on before PCI scanning is done
  1396. * and all of the pci_dev and pci_bus structures have been created.
  1397. */
  1398. static struct pci_bus *
  1399. fake_pci_bus(struct pci_controller *hose, int busnr)
  1400. {
  1401. static struct pci_bus bus;
  1402. if (hose == 0) {
  1403. printk(KERN_ERR "Can't find hose for PCI bus %d!\n", busnr);
  1404. }
  1405. bus.number = busnr;
  1406. bus.sysdata = hose;
  1407. bus.ops = hose? hose->ops: &null_pci_ops;
  1408. return &bus;
  1409. }
  1410. #define EARLY_PCI_OP(rw, size, type) \
  1411. int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
  1412. int devfn, int offset, type value) \
  1413. { \
  1414. return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
  1415. devfn, offset, value); \
  1416. }
  1417. EARLY_PCI_OP(read, byte, u8 *)
  1418. EARLY_PCI_OP(read, word, u16 *)
  1419. EARLY_PCI_OP(read, dword, u32 *)
  1420. EARLY_PCI_OP(write, byte, u8)
  1421. EARLY_PCI_OP(write, word, u16)
  1422. EARLY_PCI_OP(write, dword, u32)
  1423. extern int pci_bus_find_capability (struct pci_bus *bus, unsigned int devfn, int cap);
  1424. int early_find_capability(struct pci_controller *hose, int bus, int devfn,
  1425. int cap)
  1426. {
  1427. return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
  1428. }
  1429. struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
  1430. {
  1431. struct pci_controller *hose = bus->sysdata;
  1432. return of_node_get(hose->dn);
  1433. }
  1434. /**
  1435. * pci_scan_phb - Given a pci_controller, setup and scan the PCI bus
  1436. * @hose: Pointer to the PCI host controller instance structure
  1437. */
  1438. void __devinit pcibios_scan_phb(struct pci_controller *hose)
  1439. {
  1440. LIST_HEAD(resources);
  1441. struct pci_bus *bus;
  1442. struct device_node *node = hose->dn;
  1443. int mode;
  1444. pr_debug("PCI: Scanning PHB %s\n",
  1445. node ? node->full_name : "<NO NAME>");
  1446. /* Get some IO space for the new PHB */
  1447. pcibios_setup_phb_io_space(hose);
  1448. /* Wire up PHB bus resources */
  1449. pcibios_setup_phb_resources(hose, &resources);
  1450. /* Create an empty bus for the toplevel */
  1451. bus = pci_create_root_bus(hose->parent, hose->first_busno,
  1452. hose->ops, hose, &resources);
  1453. if (bus == NULL) {
  1454. pr_err("Failed to create bus for PCI domain %04x\n",
  1455. hose->global_number);
  1456. pci_free_resource_list(&resources);
  1457. return;
  1458. }
  1459. bus->secondary = hose->first_busno;
  1460. hose->bus = bus;
  1461. /* Get probe mode and perform scan */
  1462. mode = PCI_PROBE_NORMAL;
  1463. if (node && ppc_md.pci_probe_mode)
  1464. mode = ppc_md.pci_probe_mode(bus);
  1465. pr_debug(" probe mode: %d\n", mode);
  1466. if (mode == PCI_PROBE_DEVTREE) {
  1467. bus->subordinate = hose->last_busno;
  1468. of_scan_bus(node, bus);
  1469. }
  1470. if (mode == PCI_PROBE_NORMAL)
  1471. hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
  1472. /* Platform gets a chance to do some global fixups before
  1473. * we proceed to resource allocation
  1474. */
  1475. if (ppc_md.pcibios_fixup_phb)
  1476. ppc_md.pcibios_fixup_phb(hose);
  1477. /* Configure PCI Express settings */
  1478. if (bus && !pci_has_flag(PCI_PROBE_ONLY)) {
  1479. struct pci_bus *child;
  1480. list_for_each_entry(child, &bus->children, node) {
  1481. struct pci_dev *self = child->self;
  1482. if (!self)
  1483. continue;
  1484. pcie_bus_configure_settings(child, self->pcie_mpss);
  1485. }
  1486. }
  1487. }
  1488. static void fixup_hide_host_resource_fsl(struct pci_dev *dev)
  1489. {
  1490. int i, class = dev->class >> 8;
  1491. /* When configured as agent, programing interface = 1 */
  1492. int prog_if = dev->class & 0xf;
  1493. if ((class == PCI_CLASS_PROCESSOR_POWERPC ||
  1494. class == PCI_CLASS_BRIDGE_OTHER) &&
  1495. (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) &&
  1496. (prog_if == 0) &&
  1497. (dev->bus->parent == NULL)) {
  1498. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
  1499. dev->resource[i].start = 0;
  1500. dev->resource[i].end = 0;
  1501. dev->resource[i].flags = 0;
  1502. }
  1503. }
  1504. }
  1505. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MOTOROLA, PCI_ANY_ID, fixup_hide_host_resource_fsl);
  1506. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_FREESCALE, PCI_ANY_ID, fixup_hide_host_resource_fsl);