pci_dlpar.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * PCI Dynamic LPAR, PCI Hot Plug and PCI EEH recovery code
  3. * for RPA-compliant PPC64 platform.
  4. * Copyright (C) 2003 Linda Xie <lxie@us.ibm.com>
  5. * Copyright (C) 2005 International Business Machines
  6. *
  7. * Updates, 2005, John Rose <johnrose@austin.ibm.com>
  8. * Updates, 2005, Linas Vepstas <linas@austin.ibm.com>
  9. *
  10. * All rights reserved.
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or (at
  15. * your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful, but
  18. * WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  20. * NON INFRINGEMENT. See the GNU General Public License for more
  21. * details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26. */
  27. #include <linux/pci.h>
  28. #include <asm/pci-bridge.h>
  29. static struct pci_bus *
  30. find_bus_among_children(struct pci_bus *bus,
  31. struct device_node *dn)
  32. {
  33. struct pci_bus *child = NULL;
  34. struct list_head *tmp;
  35. struct device_node *busdn;
  36. busdn = pci_bus_to_OF_node(bus);
  37. if (busdn == dn)
  38. return bus;
  39. list_for_each(tmp, &bus->children) {
  40. child = find_bus_among_children(pci_bus_b(tmp), dn);
  41. if (child)
  42. break;
  43. };
  44. return child;
  45. }
  46. struct pci_bus *
  47. pcibios_find_pci_bus(struct device_node *dn)
  48. {
  49. struct pci_dn *pdn = dn->data;
  50. if (!pdn || !pdn->phb || !pdn->phb->bus)
  51. return NULL;
  52. return find_bus_among_children(pdn->phb->bus, dn);
  53. }
  54. EXPORT_SYMBOL_GPL(pcibios_find_pci_bus);
  55. /**
  56. * pcibios_remove_pci_devices - remove all devices under this bus
  57. *
  58. * Remove all of the PCI devices under this bus both from the
  59. * linux pci device tree, and from the powerpc EEH address cache.
  60. */
  61. void
  62. pcibios_remove_pci_devices(struct pci_bus *bus)
  63. {
  64. struct pci_dev *dev, *tmp;
  65. list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
  66. eeh_remove_bus_device(dev);
  67. pci_remove_bus_device(dev);
  68. }
  69. }
  70. /* Must be called before pci_bus_add_devices */
  71. void
  72. pcibios_fixup_new_pci_devices(struct pci_bus *bus, int fix_bus)
  73. {
  74. struct pci_dev *dev;
  75. list_for_each_entry(dev, &bus->devices, bus_list) {
  76. /*
  77. * Skip already-present devices (which are on the
  78. * global device list.)
  79. */
  80. if (list_empty(&dev->global_list)) {
  81. int i;
  82. /* Need to setup IOMMU tables */
  83. ppc_md.iommu_dev_setup(dev);
  84. if(fix_bus)
  85. pcibios_fixup_device_resources(dev, bus);
  86. pci_read_irq_line(dev);
  87. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  88. struct resource *r = &dev->resource[i];
  89. if (r->parent || !r->start || !r->flags)
  90. continue;
  91. pci_claim_resource(dev, i);
  92. }
  93. }
  94. }
  95. eeh_add_device_tree_late(bus);
  96. }
  97. EXPORT_SYMBOL_GPL(pcibios_fixup_new_pci_devices);
  98. static int
  99. pcibios_pci_config_bridge(struct pci_dev *dev)
  100. {
  101. u8 sec_busno;
  102. struct pci_bus *child_bus;
  103. /* Get busno of downstream bus */
  104. pci_read_config_byte(dev, PCI_SECONDARY_BUS, &sec_busno);
  105. /* Add to children of PCI bridge dev->bus */
  106. child_bus = pci_add_new_bus(dev->bus, dev, sec_busno);
  107. if (!child_bus) {
  108. printk (KERN_ERR "%s: could not add second bus\n", __FUNCTION__);
  109. return -EIO;
  110. }
  111. sprintf(child_bus->name, "PCI Bus #%02x", child_bus->number);
  112. pci_scan_child_bus(child_bus);
  113. /* Fixup new pci devices without touching bus struct */
  114. pcibios_fixup_new_pci_devices(child_bus, 0);
  115. /* Make the discovered devices available */
  116. pci_bus_add_devices(child_bus);
  117. return 0;
  118. }
  119. /**
  120. * pcibios_add_pci_devices - adds new pci devices to bus
  121. *
  122. * This routine will find and fixup new pci devices under
  123. * the indicated bus. This routine presumes that there
  124. * might already be some devices under this bridge, so
  125. * it carefully tries to add only new devices. (And that
  126. * is how this routine differs from other, similar pcibios
  127. * routines.)
  128. */
  129. void
  130. pcibios_add_pci_devices(struct pci_bus * bus)
  131. {
  132. int slotno, num;
  133. struct pci_dev *dev;
  134. struct device_node *dn = pci_bus_to_OF_node(bus);
  135. eeh_add_device_tree_early(dn);
  136. if (_machine == PLATFORM_PSERIES_LPAR) {
  137. /* use ofdt-based probe */
  138. of_scan_bus(dn, bus);
  139. if (!list_empty(&bus->devices)) {
  140. pcibios_fixup_new_pci_devices(bus, 0);
  141. pci_bus_add_devices(bus);
  142. }
  143. } else {
  144. /* use legacy probe */
  145. slotno = PCI_SLOT(PCI_DN(dn->child)->devfn);
  146. num = pci_scan_slot(bus, PCI_DEVFN(slotno, 0));
  147. if (num) {
  148. pcibios_fixup_new_pci_devices(bus, 1);
  149. pci_bus_add_devices(bus);
  150. }
  151. list_for_each_entry(dev, &bus->devices, bus_list)
  152. if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE)
  153. pcibios_pci_config_bridge(dev);
  154. }
  155. }
  156. EXPORT_SYMBOL_GPL(pcibios_add_pci_devices);