pci_dn.c 6.8 KB

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