pci_dn.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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/pSeries_reconfig.h>
  30. #include "pci.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. static void * __devinit update_dn_pci_info(struct device_node *dn, void *data)
  36. {
  37. struct pci_controller *phb = data;
  38. int *type = (int *)get_property(dn, "ibm,pci-config-space-type", NULL);
  39. u32 *regs;
  40. dn->phb = phb;
  41. regs = (u32 *)get_property(dn, "reg", NULL);
  42. if (regs) {
  43. /* First register entry is addr (00BBSS00) */
  44. dn->busno = (regs[0] >> 16) & 0xff;
  45. dn->devfn = (regs[0] >> 8) & 0xff;
  46. }
  47. dn->pci_ext_config_space = (type && *type == 1);
  48. return NULL;
  49. }
  50. /*
  51. * Traverse a device tree stopping each PCI device in the tree.
  52. * This is done depth first. As each node is processed, a "pre"
  53. * function is called and the children are processed recursively.
  54. *
  55. * The "pre" func returns a value. If non-zero is returned from
  56. * the "pre" func, the traversal stops and this value is returned.
  57. * This return value is useful when using traverse as a method of
  58. * finding a device.
  59. *
  60. * NOTE: we do not run the func for devices that do not appear to
  61. * be PCI except for the start node which we assume (this is good
  62. * because the start node is often a phb which may be missing PCI
  63. * properties).
  64. * We use the class-code as an indicator. If we run into
  65. * one of these nodes we also assume its siblings are non-pci for
  66. * performance.
  67. */
  68. void *traverse_pci_devices(struct device_node *start, traverse_func pre,
  69. void *data)
  70. {
  71. struct device_node *dn, *nextdn;
  72. void *ret;
  73. /* We started with a phb, iterate all childs */
  74. for (dn = start->child; dn; dn = nextdn) {
  75. u32 *classp, class;
  76. nextdn = NULL;
  77. classp = (u32 *)get_property(dn, "class-code", NULL);
  78. class = classp ? *classp : 0;
  79. if (pre && ((ret = pre(dn, data)) != NULL))
  80. return ret;
  81. /* If we are a PCI bridge, go down */
  82. if (dn->child && ((class >> 8) == PCI_CLASS_BRIDGE_PCI ||
  83. (class >> 8) == PCI_CLASS_BRIDGE_CARDBUS))
  84. /* Depth first...do children */
  85. nextdn = dn->child;
  86. else if (dn->sibling)
  87. /* ok, try next sibling instead. */
  88. nextdn = dn->sibling;
  89. if (!nextdn) {
  90. /* Walk up to next valid sibling. */
  91. do {
  92. dn = dn->parent;
  93. if (dn == start)
  94. return NULL;
  95. } while (dn->sibling == NULL);
  96. nextdn = dn->sibling;
  97. }
  98. }
  99. return NULL;
  100. }
  101. void __devinit pci_devs_phb_init_dynamic(struct pci_controller *phb)
  102. {
  103. struct device_node * dn = (struct device_node *) phb->arch_data;
  104. /* PHB nodes themselves must not match */
  105. dn->devfn = dn->busno = -1;
  106. dn->phb = phb;
  107. /* Update dn->phb ptrs for new phb and children devices */
  108. traverse_pci_devices(dn, update_dn_pci_info, phb);
  109. }
  110. /*
  111. * Traversal func that looks for a <busno,devfcn> value.
  112. * If found, the device_node is returned (thus terminating the traversal).
  113. */
  114. static void *is_devfn_node(struct device_node *dn, void *data)
  115. {
  116. int busno = ((unsigned long)data >> 8) & 0xff;
  117. int devfn = ((unsigned long)data) & 0xff;
  118. return ((devfn == dn->devfn) && (busno == dn->busno)) ? dn : NULL;
  119. }
  120. /*
  121. * This is the "slow" path for looking up a device_node from a
  122. * pci_dev. It will hunt for the device under its parent's
  123. * phb and then update sysdata for a future fastpath.
  124. *
  125. * It may also do fixups on the actual device since this happens
  126. * on the first read/write.
  127. *
  128. * Note that it also must deal with devices that don't exist.
  129. * In this case it may probe for real hardware ("just in case")
  130. * and add a device_node to the device tree if necessary.
  131. *
  132. */
  133. struct device_node *fetch_dev_dn(struct pci_dev *dev)
  134. {
  135. struct device_node *orig_dn = dev->sysdata;
  136. struct pci_controller *phb = orig_dn->phb; /* assume same phb as orig_dn */
  137. struct device_node *phb_dn;
  138. struct device_node *dn;
  139. unsigned long searchval = (dev->bus->number << 8) | dev->devfn;
  140. phb_dn = phb->arch_data;
  141. dn = traverse_pci_devices(phb_dn, is_devfn_node, (void *)searchval);
  142. if (dn)
  143. dev->sysdata = dn;
  144. return dn;
  145. }
  146. EXPORT_SYMBOL(fetch_dev_dn);
  147. static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node)
  148. {
  149. struct device_node *np = node;
  150. int err = NOTIFY_OK;
  151. switch (action) {
  152. case PSERIES_RECONFIG_ADD:
  153. update_dn_pci_info(np, np->parent->phb);
  154. break;
  155. default:
  156. err = NOTIFY_DONE;
  157. break;
  158. }
  159. return err;
  160. }
  161. static struct notifier_block pci_dn_reconfig_nb = {
  162. .notifier_call = pci_dn_reconfig_notifier,
  163. };
  164. /*
  165. * Actually initialize the phbs.
  166. * The buswalk on this phb has not happened yet.
  167. */
  168. void __init pci_devs_phb_init(void)
  169. {
  170. struct pci_controller *phb, *tmp;
  171. /* This must be done first so the device nodes have valid pci info! */
  172. list_for_each_entry_safe(phb, tmp, &hose_list, list_node)
  173. pci_devs_phb_init_dynamic(phb);
  174. pSeries_reconfig_notifier_register(&pci_dn_reconfig_nb);
  175. }