pci_dn.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*
  2. * pci_dn.c
  3. *
  4. * Copyright (C) 2001 Todd Inglett, IBM Corporation
  5. *
  6. * PCI manipulation via device_nodes.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #include <linux/kernel.h>
  23. #include <linux/pci.h>
  24. #include <linux/string.h>
  25. #include <linux/export.h>
  26. #include <linux/init.h>
  27. #include <linux/gfp.h>
  28. #include <asm/io.h>
  29. #include <asm/prom.h>
  30. #include <asm/pci-bridge.h>
  31. #include <asm/ppc-pci.h>
  32. #include <asm/firmware.h>
  33. struct pci_dn *pci_get_pdn(struct pci_dev *pdev)
  34. {
  35. struct device_node *dn = pci_device_to_OF_node(pdev);
  36. if (!dn)
  37. return NULL;
  38. return PCI_DN(dn);
  39. }
  40. /*
  41. * Traverse_func that inits the PCI fields of the device node.
  42. * NOTE: this *must* be done before read/write config to the device.
  43. */
  44. void *update_dn_pci_info(struct device_node *dn, void *data)
  45. {
  46. struct pci_controller *phb = data;
  47. const __be32 *type = of_get_property(dn, "ibm,pci-config-space-type", NULL);
  48. const __be32 *regs;
  49. struct pci_dn *pdn;
  50. pdn = zalloc_maybe_bootmem(sizeof(*pdn), GFP_KERNEL);
  51. if (pdn == NULL)
  52. return NULL;
  53. dn->data = pdn;
  54. pdn->node = dn;
  55. pdn->phb = phb;
  56. #ifdef CONFIG_PPC_POWERNV
  57. pdn->pe_number = IODA_INVALID_PE;
  58. #endif
  59. regs = of_get_property(dn, "reg", NULL);
  60. if (regs) {
  61. u32 addr = of_read_number(regs, 1);
  62. /* First register entry is addr (00BBSS00) */
  63. pdn->busno = (addr >> 16) & 0xff;
  64. pdn->devfn = (addr >> 8) & 0xff;
  65. }
  66. pdn->pci_ext_config_space = (type && of_read_number(type, 1) == 1);
  67. return NULL;
  68. }
  69. /*
  70. * Traverse a device tree stopping each PCI device in the tree.
  71. * This is done depth first. As each node is processed, a "pre"
  72. * function is called and the children are processed recursively.
  73. *
  74. * The "pre" func returns a value. If non-zero is returned from
  75. * the "pre" func, the traversal stops and this value is returned.
  76. * This return value is useful when using traverse as a method of
  77. * finding a device.
  78. *
  79. * NOTE: we do not run the func for devices that do not appear to
  80. * be PCI except for the start node which we assume (this is good
  81. * because the start node is often a phb which may be missing PCI
  82. * properties).
  83. * We use the class-code as an indicator. If we run into
  84. * one of these nodes we also assume its siblings are non-pci for
  85. * performance.
  86. */
  87. void *traverse_pci_devices(struct device_node *start, traverse_func pre,
  88. void *data)
  89. {
  90. struct device_node *dn, *nextdn;
  91. void *ret;
  92. /* We started with a phb, iterate all childs */
  93. for (dn = start->child; dn; dn = nextdn) {
  94. const __be32 *classp;
  95. u32 class = 0;
  96. nextdn = NULL;
  97. classp = of_get_property(dn, "class-code", NULL);
  98. if (classp)
  99. class = of_read_number(classp, 1);
  100. if (pre && ((ret = pre(dn, data)) != NULL))
  101. return ret;
  102. /* If we are a PCI bridge, go down */
  103. if (dn->child && ((class >> 8) == PCI_CLASS_BRIDGE_PCI ||
  104. (class >> 8) == PCI_CLASS_BRIDGE_CARDBUS))
  105. /* Depth first...do children */
  106. nextdn = dn->child;
  107. else if (dn->sibling)
  108. /* ok, try next sibling instead. */
  109. nextdn = dn->sibling;
  110. if (!nextdn) {
  111. /* Walk up to next valid sibling. */
  112. do {
  113. dn = dn->parent;
  114. if (dn == start)
  115. return NULL;
  116. } while (dn->sibling == NULL);
  117. nextdn = dn->sibling;
  118. }
  119. }
  120. return NULL;
  121. }
  122. /**
  123. * pci_devs_phb_init_dynamic - setup pci devices under this PHB
  124. * phb: pci-to-host bridge (top-level bridge connecting to cpu)
  125. *
  126. * This routine is called both during boot, (before the memory
  127. * subsystem is set up, before kmalloc is valid) and during the
  128. * dynamic lpar operation of adding a PHB to a running system.
  129. */
  130. void pci_devs_phb_init_dynamic(struct pci_controller *phb)
  131. {
  132. struct device_node *dn = phb->dn;
  133. struct pci_dn *pdn;
  134. /* PHB nodes themselves must not match */
  135. update_dn_pci_info(dn, phb);
  136. pdn = dn->data;
  137. if (pdn) {
  138. pdn->devfn = pdn->busno = -1;
  139. pdn->phb = phb;
  140. }
  141. /* Update dn->phb ptrs for new phb and children devices */
  142. traverse_pci_devices(dn, update_dn_pci_info, phb);
  143. }
  144. /**
  145. * pci_devs_phb_init - Initialize phbs and pci devs under them.
  146. *
  147. * This routine walks over all phb's (pci-host bridges) on the
  148. * system, and sets up assorted pci-related structures
  149. * (including pci info in the device node structs) for each
  150. * pci device found underneath. This routine runs once,
  151. * early in the boot sequence.
  152. */
  153. void __init pci_devs_phb_init(void)
  154. {
  155. struct pci_controller *phb, *tmp;
  156. /* This must be done first so the device nodes have valid pci info! */
  157. list_for_each_entry_safe(phb, tmp, &hose_list, list_node)
  158. pci_devs_phb_init_dynamic(phb);
  159. }