pci-hotplug.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Derived from "arch/powerpc/platforms/pseries/pci_dlpar.c"
  3. *
  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. * Updates, 2013, Gavin Shan <shangw@linux.vnet.ibm.com>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. */
  16. #include <linux/pci.h>
  17. #include <linux/export.h>
  18. #include <asm/pci-bridge.h>
  19. #include <asm/ppc-pci.h>
  20. #include <asm/firmware.h>
  21. #include <asm/eeh.h>
  22. /**
  23. * pcibios_release_device - release PCI device
  24. * @dev: PCI device
  25. *
  26. * The function is called before releasing the indicated PCI device.
  27. */
  28. void pcibios_release_device(struct pci_dev *dev)
  29. {
  30. eeh_remove_device(dev, 1);
  31. }
  32. /**
  33. * __pcibios_remove_pci_devices - remove all devices under this bus
  34. * @bus: the indicated PCI bus
  35. * @purge_pe: destroy the PE on removal of PCI devices
  36. *
  37. * Remove all of the PCI devices under this bus both from the
  38. * linux pci device tree, and from the powerpc EEH address cache.
  39. * By default, the corresponding PE will be destroied during the
  40. * normal PCI hotplug path. For PCI hotplug during EEH recovery,
  41. * the corresponding PE won't be destroied and deallocated.
  42. */
  43. void __pcibios_remove_pci_devices(struct pci_bus *bus, int purge_pe)
  44. {
  45. struct pci_dev *dev, *tmp;
  46. struct pci_bus *child_bus;
  47. /* First go down child busses */
  48. list_for_each_entry(child_bus, &bus->children, node)
  49. __pcibios_remove_pci_devices(child_bus, purge_pe);
  50. pr_debug("PCI: Removing devices on bus %04x:%02x\n",
  51. pci_domain_nr(bus), bus->number);
  52. list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
  53. pr_debug(" * Removing %s...\n", pci_name(dev));
  54. eeh_remove_bus_device(dev, purge_pe);
  55. pci_stop_and_remove_bus_device(dev);
  56. }
  57. }
  58. /**
  59. * pcibios_remove_pci_devices - remove all devices under this bus
  60. * @bus: the indicated PCI bus
  61. *
  62. * Remove all of the PCI devices under this bus both from the
  63. * linux pci device tree, and from the powerpc EEH address cache.
  64. */
  65. void pcibios_remove_pci_devices(struct pci_bus *bus)
  66. {
  67. __pcibios_remove_pci_devices(bus, 1);
  68. }
  69. EXPORT_SYMBOL_GPL(pcibios_remove_pci_devices);
  70. /**
  71. * pcibios_add_pci_devices - adds new pci devices to bus
  72. * @bus: the indicated PCI bus
  73. *
  74. * This routine will find and fixup new pci devices under
  75. * the indicated bus. This routine presumes that there
  76. * might already be some devices under this bridge, so
  77. * it carefully tries to add only new devices. (And that
  78. * is how this routine differs from other, similar pcibios
  79. * routines.)
  80. */
  81. void pcibios_add_pci_devices(struct pci_bus * bus)
  82. {
  83. int slotno, num, mode, pass, max;
  84. struct pci_dev *dev;
  85. struct device_node *dn = pci_bus_to_OF_node(bus);
  86. eeh_add_device_tree_early(dn);
  87. mode = PCI_PROBE_NORMAL;
  88. if (ppc_md.pci_probe_mode)
  89. mode = ppc_md.pci_probe_mode(bus);
  90. if (mode == PCI_PROBE_DEVTREE) {
  91. /* use ofdt-based probe */
  92. of_rescan_bus(dn, bus);
  93. } else if (mode == PCI_PROBE_NORMAL) {
  94. /* use legacy probe */
  95. slotno = PCI_SLOT(PCI_DN(dn->child)->devfn);
  96. num = pci_scan_slot(bus, PCI_DEVFN(slotno, 0));
  97. if (!num)
  98. return;
  99. pcibios_setup_bus_devices(bus);
  100. max = bus->busn_res.start;
  101. for (pass = 0; pass < 2; pass++) {
  102. list_for_each_entry(dev, &bus->devices, bus_list) {
  103. if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
  104. dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
  105. max = pci_scan_bridge(bus, dev,
  106. max, pass);
  107. }
  108. }
  109. }
  110. pcibios_finish_adding_to_bus(bus);
  111. }
  112. EXPORT_SYMBOL_GPL(pcibios_add_pci_devices);