pci_dn.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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/init.h>
  26. #include <asm/io.h>
  27. #include <asm/prom.h>
  28. #include <asm/pci-bridge.h>
  29. #include <asm/ppc-pci.h>
  30. #include <asm/firmware.h>
  31. /*
  32. * Traverse_func that inits the PCI fields of the device node.
  33. * NOTE: this *must* be done before read/write config to the device.
  34. */
  35. void * __devinit update_dn_pci_info(struct device_node *dn, void *data)
  36. {
  37. struct pci_controller *phb = data;
  38. const int *type =
  39. of_get_property(dn, "ibm,pci-config-space-type", NULL);
  40. const u32 *regs;
  41. struct pci_dn *pdn;
  42. pdn = alloc_maybe_bootmem(sizeof(*pdn), GFP_KERNEL);
  43. if (pdn == NULL)
  44. return NULL;
  45. memset(pdn, 0, sizeof(*pdn));
  46. dn->data = pdn;
  47. pdn->node = dn;
  48. pdn->phb = phb;
  49. regs = of_get_property(dn, "reg", NULL);
  50. if (regs) {
  51. /* First register entry is addr (00BBSS00) */
  52. pdn->busno = (regs[0] >> 16) & 0xff;
  53. pdn->devfn = (regs[0] >> 8) & 0xff;
  54. }
  55. pdn->pci_ext_config_space = (type && *type == 1);
  56. return NULL;
  57. }
  58. /*
  59. * Traverse a device tree stopping each PCI device in the tree.
  60. * This is done depth first. As each node is processed, a "pre"
  61. * function is called and the children are processed recursively.
  62. *
  63. * The "pre" func returns a value. If non-zero is returned from
  64. * the "pre" func, the traversal stops and this value is returned.
  65. * This return value is useful when using traverse as a method of
  66. * finding a device.
  67. *
  68. * NOTE: we do not run the func for devices that do not appear to
  69. * be PCI except for the start node which we assume (this is good
  70. * because the start node is often a phb which may be missing PCI
  71. * properties).
  72. * We use the class-code as an indicator. If we run into
  73. * one of these nodes we also assume its siblings are non-pci for
  74. * performance.
  75. */
  76. void *traverse_pci_devices(struct device_node *start, traverse_func pre,
  77. void *data)
  78. {
  79. struct device_node *dn, *nextdn;
  80. void *ret;
  81. /* We started with a phb, iterate all childs */
  82. for (dn = start->child; dn; dn = nextdn) {
  83. const u32 *classp;
  84. u32 class;
  85. nextdn = NULL;
  86. classp = of_get_property(dn, "class-code", NULL);
  87. class = classp ? *classp : 0;
  88. if (pre && ((ret = pre(dn, data)) != NULL))
  89. return ret;
  90. /* If we are a PCI bridge, go down */
  91. if (dn->child && ((class >> 8) == PCI_CLASS_BRIDGE_PCI ||
  92. (class >> 8) == PCI_CLASS_BRIDGE_CARDBUS))
  93. /* Depth first...do children */
  94. nextdn = dn->child;
  95. else if (dn->sibling)
  96. /* ok, try next sibling instead. */
  97. nextdn = dn->sibling;
  98. if (!nextdn) {
  99. /* Walk up to next valid sibling. */
  100. do {
  101. dn = dn->parent;
  102. if (dn == start)
  103. return NULL;
  104. } while (dn->sibling == NULL);
  105. nextdn = dn->sibling;
  106. }
  107. }
  108. return NULL;
  109. }
  110. /**
  111. * pci_devs_phb_init_dynamic - setup pci devices under this PHB
  112. * phb: pci-to-host bridge (top-level bridge connecting to cpu)
  113. *
  114. * This routine is called both during boot, (before the memory
  115. * subsystem is set up, before kmalloc is valid) and during the
  116. * dynamic lpar operation of adding a PHB to a running system.
  117. */
  118. void __devinit pci_devs_phb_init_dynamic(struct pci_controller *phb)
  119. {
  120. struct device_node *dn = phb->dn;
  121. struct pci_dn *pdn;
  122. /* PHB nodes themselves must not match */
  123. update_dn_pci_info(dn, phb);
  124. pdn = dn->data;
  125. if (pdn) {
  126. pdn->devfn = pdn->busno = -1;
  127. pdn->phb = phb;
  128. }
  129. /* Update dn->phb ptrs for new phb and children devices */
  130. traverse_pci_devices(dn, update_dn_pci_info, phb);
  131. }
  132. /*
  133. * Traversal func that looks for a <busno,devfcn> value.
  134. * If found, the pci_dn is returned (thus terminating the traversal).
  135. */
  136. static void *is_devfn_node(struct device_node *dn, void *data)
  137. {
  138. int busno = ((unsigned long)data >> 8) & 0xff;
  139. int devfn = ((unsigned long)data) & 0xff;
  140. struct pci_dn *pci = dn->data;
  141. if (pci && (devfn == pci->devfn) && (busno == pci->busno))
  142. return dn;
  143. return NULL;
  144. }
  145. /*
  146. * This is the "slow" path for looking up a device_node from a
  147. * pci_dev. It will hunt for the device under its parent's
  148. * phb and then update sysdata for a future fastpath.
  149. *
  150. * It may also do fixups on the actual device since this happens
  151. * on the first read/write.
  152. *
  153. * Note that it also must deal with devices that don't exist.
  154. * In this case it may probe for real hardware ("just in case")
  155. * and add a device_node to the device tree if necessary.
  156. *
  157. */
  158. struct device_node *fetch_dev_dn(struct pci_dev *dev)
  159. {
  160. struct device_node *orig_dn = dev->sysdata;
  161. struct device_node *dn;
  162. unsigned long searchval = (dev->bus->number << 8) | dev->devfn;
  163. dn = traverse_pci_devices(orig_dn, is_devfn_node, (void *)searchval);
  164. if (dn)
  165. dev->sysdata = dn;
  166. return dn;
  167. }
  168. EXPORT_SYMBOL(fetch_dev_dn);
  169. /**
  170. * pci_devs_phb_init - Initialize phbs and pci devs under them.
  171. *
  172. * This routine walks over all phb's (pci-host bridges) on the
  173. * system, and sets up assorted pci-related structures
  174. * (including pci info in the device node structs) for each
  175. * pci device found underneath. This routine runs once,
  176. * early in the boot sequence.
  177. */
  178. void __init pci_devs_phb_init(void)
  179. {
  180. struct pci_controller *phb, *tmp;
  181. /* This must be done first so the device nodes have valid pci info! */
  182. list_for_each_entry_safe(phb, tmp, &hose_list, list_node)
  183. pci_devs_phb_init_dynamic(phb);
  184. }