pci_dn.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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/config.h>
  23. #include <linux/kernel.h>
  24. #include <linux/pci.h>
  25. #include <linux/delay.h>
  26. #include <linux/string.h>
  27. #include <linux/init.h>
  28. #include <linux/bootmem.h>
  29. #include <asm/io.h>
  30. #include <asm/pgtable.h>
  31. #include <asm/irq.h>
  32. #include <asm/prom.h>
  33. #include <asm/machdep.h>
  34. #include <asm/init.h>
  35. #include <asm/pci-bridge.h>
  36. #include <asm/ppcdebug.h>
  37. #include <asm/naca.h>
  38. #include <asm/pci_dma.h>
  39. #include "pci.h"
  40. /* Traverse_func that inits the PCI fields of the device node.
  41.  * NOTE: this *must* be done before read/write config to the device.
  42.  */
  43. static void * __init
  44. update_dn_pci_info(struct device_node *dn, void *data)
  45. {
  46. struct pci_controller *phb = (struct pci_controller *)data;
  47. u32 *regs;
  48. char *device_type = get_property(dn, "device_type", 0);
  49. dn->phb = phb;
  50. if (device_type && strcmp(device_type, "pci") == 0 && get_property(dn, "class-code", 0) == 0) {
  51. /* special case for PHB's.  Sigh. */
  52. regs = (u32 *)get_property(dn, "bus-range", 0);
  53. dn->busno = regs[0];
  54. dn->devfn = 0; /* assumption */
  55. } else {
  56. regs = (u32 *)get_property(dn, "reg", 0);
  57. if (regs) {
  58. /* First register entry is addr (00BBSS00)  */
  59. dn->busno = (regs[0] >> 16) & 0xff;
  60. dn->devfn = (regs[0] >> 8) & 0xff;
  61. }
  62. }
  63. return NULL;
  64. }
  65. /*
  66.  * Hit all the BARs of all the devices with values from OF.
  67.  * This is unnecessary on most systems, but also harmless.
  68.  */
  69. static void * __init
  70. write_OF_bars(struct device_node *dn, void *data)
  71. {
  72. int i;
  73. u32 oldbar, newbar, newbartest;
  74. u8  config_offset;
  75. char *name = get_property(dn, "name", 0);
  76. char *device_type = get_property(dn, "device_type", 0);
  77. char devname[128];
  78. sprintf(devname, "%04x:%02x.%x %s (%s)", dn->busno, PCI_SLOT(dn->devfn), PCI_FUNC(dn->devfn), name ? name : "<no name>", device_type ? device_type : "<unknown type>");
  79. if (device_type && strcmp(device_type, "pci") == 0 &&
  80.     get_property(dn, "class-code", 0) == 0)
  81. return NULL; /* This is probably a phb.  Skip it. */
  82. if (dn->n_addrs == 0)
  83. return NULL; /* This is normal for some adapters or bridges */
  84. if (dn->addrs == NULL) {
  85. /* This shouldn't happen. */
  86. printk(KERN_WARNING "write_OF_bars %s: device has %d BARs, but no addrs recordedn", devname, dn->n_addrs);
  87. return NULL;
  88. }
  89. #ifndef CONFIG_PPC_ISERIES 
  90. for (i = 0; i < dn->n_addrs; i++) {
  91. newbar = dn->addrs[i].address;
  92. config_offset = dn->addrs[i].space & 0xff;
  93. if (ppc_md.pcibios_read_config_dword(dn, config_offset, &oldbar) != PCIBIOS_SUCCESSFUL) {
  94. printk(KERN_WARNING "write_OF_bars %s: read BAR%d failedn", devname, i);
  95. continue;
  96. }
  97. /* Need to update this BAR. */
  98. if (ppc_md.pcibios_write_config_dword(dn, config_offset, newbar) != PCIBIOS_SUCCESSFUL) {
  99. printk(KERN_WARNING "write_OF_bars %s: write BAR%d with 0x%08x failed (old was 0x%08x)n", devname, i, newbar, oldbar);
  100. continue;
  101. }
  102. /* sanity check */
  103. if (ppc_md.pcibios_read_config_dword(dn, config_offset, &newbartest) != PCIBIOS_SUCCESSFUL) {
  104. printk(KERN_WARNING "write_OF_bars %s: sanity test read BAR%d failed?n", devname, i);
  105. continue;
  106. }
  107. if ((newbar & PCI_BASE_ADDRESS_MEM_MASK) != (newbartest & PCI_BASE_ADDRESS_MEM_MASK)) {
  108. printk(KERN_WARNING "write_OF_bars %s: oops...BAR%d read back as 0x%08x%s!n", devname, i, newbartest, (oldbar & PCI_BASE_ADDRESS_MEM_MASK) == (newbartest & PCI_BASE_ADDRESS_MEM_MASK) ? " (original value)" : "");
  109. continue;
  110. }
  111. }
  112. #endif
  113. return NULL; 
  114. }
  115. #if 0
  116. /* Traverse_func that starts the BIST (self test) */
  117. static void * __init
  118. startBIST(struct device_node *dn, void *data)
  119. {
  120. struct pci_controller *phb = (struct pci_controller *)data;
  121. u8 bist;
  122. char *name = get_property(dn, "name", 0);
  123. udbg_printf("startBIST: %s phb=%p, device=%pn", name ? name : "<unknown>", phb, dn);
  124. if (ppc_md.pcibios_read_config_byte(dn, PCI_BIST, &bist) == PCIBIOS_SUCCESSFUL) {
  125. if (bist & PCI_BIST_CAPABLE) {
  126. udbg_printf("  -> is BIST capable!n", phb, dn);
  127. /* Start bist here */
  128. }
  129. }
  130. return NULL;
  131. }
  132. #endif
  133. /******************************************************************
  134.  * Traverse a device tree stopping each PCI device in the tree.
  135.  * This is done depth first.  As each node is processed, a "pre"
  136.  * function is called, the children are processed recursively, and
  137.  * then a "post" function is called.
  138.  *
  139.  * The "pre" and "post" funcs return a value.  If non-zero
  140.  * is returned from the "pre" func, the traversal stops and this
  141.  * value is returned.  The return value from "post" is not used.
  142.  * This return value is useful when using traverse as
  143.  * a method of finding a device.
  144.  *
  145.  * NOTE: we do not run the funcs for devices that do not appear to
  146.  * be PCI except for the start node which we assume (this is good
  147.  * because the start node is often a phb which may be missing PCI
  148.  * properties).
  149.  * We use the class-code as an indicator. If we run into
  150.  * one of these nodes we also assume its siblings are non-pci for
  151.  * performance.
  152.  *
  153.  ******************************************************************/
  154. void *traverse_pci_devices(struct device_node *start, traverse_func pre, traverse_func post, void *data)
  155. {
  156. struct device_node *dn, *nextdn;
  157. void *ret;
  158. if (pre && (ret = pre(start, data)) != NULL)
  159. return ret;
  160. for (dn = start->child; dn; dn = nextdn) {
  161. nextdn = NULL;
  162. if (get_property(dn, "class-code", 0)) {
  163. if (pre && (ret = pre(dn, data)) != NULL)
  164. return ret;
  165. if (dn->child) {
  166. /* Depth first...do children */
  167. nextdn = dn->child;
  168. } else if (dn->sibling) {
  169. /* ok, try next sibling instead. */
  170. nextdn = dn->sibling;
  171. } else {
  172. /* no more children or siblings...call "post" */
  173. if (post)
  174. post(dn, data);
  175. }
  176. }
  177. if (!nextdn) {
  178. /* Walk up to next valid sibling. */
  179. do {
  180. dn = dn->parent;
  181. if (dn == start)
  182. return NULL;
  183. } while (dn->sibling == NULL);
  184. nextdn = dn->sibling;
  185. }
  186. }
  187. return NULL;
  188. }
  189. /* Same as traverse_pci_devices except this does it for all phbs.
  190.  */
  191. void *traverse_all_pci_devices(traverse_func pre)
  192. {
  193. struct pci_controller* phb;
  194. void *ret;
  195. for (phb=hose_head;phb;phb=phb->next)
  196. if ((ret = traverse_pci_devices((struct device_node *)phb->arch_data, pre, NULL, phb)) != NULL)
  197. return ret;
  198. return NULL;
  199. }
  200. /* Traversal func that looks for a <busno,devfcn> value.
  201.  * If found, the device_node is returned (thus terminating the traversal).
  202.  */
  203. static void *
  204. is_devfn_node(struct device_node *dn, void *data)
  205. {
  206. int busno = ((unsigned long)data >> 8) & 0xff;
  207. int devfn = ((unsigned long)data) & 0xff;
  208. return (devfn == dn->devfn && busno == dn->busno) ? dn : NULL;
  209. }
  210. /* Same as is_devfn_node except ignore the "fn" part of the "devfn".
  211.  */
  212. static void *
  213. is_devfn_sub_node(struct device_node *dn, void *data)
  214. {
  215. int busno = ((unsigned long)data >> 8) & 0xff;
  216. int devfn = ((unsigned long)data) & 0xf8;
  217. return (devfn == (dn->devfn & 0xf8) && busno == dn->busno) ? dn : NULL;
  218. }
  219. /* Given an existing EADs (pci bridge) device node create a fake one
  220.  * that will simulate function zero.  Make it a sibling of other_eads.
  221.  */
  222. static struct device_node *
  223. create_eads_node(struct device_node *other_eads)
  224. {
  225. struct device_node *eads = (struct device_node *)kmalloc(sizeof(struct device_node), GFP_KERNEL);
  226. if (!eads) return NULL; /* huh? */
  227. *eads = *other_eads;
  228. eads->devfn &= ~7; /* make it function zero */
  229. eads->tce_table = NULL;
  230. /*
  231.  * NOTE: share properties.  We could copy but for now this should
  232.  * suffice.  The full_name is also incorrect...but seems harmless.
  233.  */
  234. eads->child = NULL;
  235. eads->next = NULL;
  236. other_eads->allnext = eads;
  237. other_eads->sibling = eads;
  238. return eads;
  239. }
  240. /* This is the "slow" path for looking up a device_node from a
  241.  * pci_dev.  It will hunt for the device under it's parent's
  242.  * phb and then update sysdata for a future fastpath.
  243.  *
  244.  * It may also do fixups on the actual device since this happens
  245.  * on the first read/write.
  246.  *
  247.  * Note that it also must deal with devices that don't exist.
  248.  * In this case it may probe for real hardware ("just in case")
  249.  * and add a device_node to the device tree if necessary.
  250.  *
  251.  */
  252. struct device_node *fetch_dev_dn(struct pci_dev *dev)
  253. {
  254. struct device_node *orig_dn = (struct device_node *)dev->sysdata;
  255. struct pci_controller *phb = orig_dn->phb; /* assume same phb as orig_dn */
  256. struct device_node *phb_dn;
  257. struct device_node *dn;
  258. unsigned long searchval = (dev->bus->number << 8) | dev->devfn;
  259. phb_dn = (struct device_node *)(phb->arch_data);
  260. dn = (struct device_node *)traverse_pci_devices(phb_dn, is_devfn_node, NULL, (void *)searchval);
  261. if (dn) {
  262. dev->sysdata = dn;
  263. /* ToDo: call some device init hook here */
  264. } else {
  265. /* Now it is very possible that we can't find the device
  266.  * because it is not the zero'th device of a mutifunction
  267.  * device and we don't have permission to read the zero'th
  268.  * device.  If this is the case, Linux would ordinarily skip
  269.  * all the other functions.
  270.  */
  271. if ((searchval & 0x7) == 0) {
  272. struct device_node *thisdevdn;
  273. /* Ok, we are looking for fn == 0.  Let's check for other functions. */
  274. thisdevdn = (struct device_node *)traverse_pci_devices(phb_dn, is_devfn_sub_node, NULL, (void *)searchval);
  275. if (thisdevdn) {
  276. /* Ah ha!  There does exist a sub function.
  277.  * Now this isn't an exact match for
  278.  * searchval, but in order to get Linux to
  279.  * believe the sub functions exist we will
  280.  * need to manufacture a fake device_node for
  281.  * this zero'th function.  To keept this
  282.  * simple for now we only handle pci bridges
  283.  * and we just hand back the found node which
  284.  * isn't correct, but Linux won't care.
  285.  */
  286. char *device_type = (char *)get_property(thisdevdn, "device_type", 0);
  287. if (device_type && strcmp(device_type, "pci") == 0) {
  288. return create_eads_node(thisdevdn);
  289. }
  290. }
  291. }
  292. /* ToDo: device not found...probe for it anyway with a fake dn?
  293. struct device_node fake_dn;
  294. memset(&fake_dn, 0, sizeof(fake_dn));
  295. fake_dn.phb = phb;
  296. fake_dn.busno = dev->bus->number;
  297. fake_dn.devfn = dev->devfn;
  298. ... now do ppc_md.pcibios_read_config_dword(&fake_dn.....)
  299.  ... if ok, alloc a real device_node and dn = real_dn;
  300.  */
  301. }
  302. return dn;
  303. }
  304. /******************************************************************
  305.  * Actually initialize the phbs.
  306.  * The buswalk on this phb has not happened yet.
  307.  ******************************************************************/
  308. void __init
  309. pci_devs_phb_init(void)
  310. {
  311. /* This must be done first so the device nodes have valid pci info! */
  312. traverse_all_pci_devices(update_dn_pci_info);
  313. /* Hack for regatta which does not init the bars correctly */
  314. traverse_all_pci_devices(write_OF_bars);
  315. #if 0
  316. traverse_all_pci_devices(startBIST);
  317. mdelay(5000);
  318. traverse_all_pci_devices(checkBIST);
  319. #endif
  320. }
  321. static void __init
  322. pci_fixup_bus_sysdata_list(struct list_head *bus_list)
  323. {
  324. struct list_head *ln;
  325. struct pci_bus *bus;
  326. struct pci_controller *phb;
  327. int newnum;
  328. for (ln=bus_list->next; ln != bus_list; ln=ln->next) {
  329. bus = pci_bus_b(ln);
  330. if (bus->self) {
  331. bus->sysdata = bus->self->sysdata;
  332. /* Also fixup the bus number on large bus systems to
  333.  * include the PHB# in the next byte
  334.  */
  335. phb = PCI_GET_DN(bus)->phb;
  336. if (phb && phb->buid) {
  337. newnum = (phb->global_number << 8) | bus->number;
  338. bus->number = newnum;
  339. sprintf(bus->name, "PCI Bus #%x", bus->number);
  340. }
  341. }
  342. pci_fixup_bus_sysdata_list(&bus->children);
  343. }
  344. }
  345. /******************************************************************
  346.  * Fixup the bus->sysdata ptrs to point to the bus' device_node.
  347.  * This is done late in pcibios_init().  We do this mostly for
  348.  * sanity, but pci_dma.c uses these at DMA time so they must be
  349.  * correct.
  350.  * To do this we recurse down the bus hierarchy.  Note that PHB's
  351.  * have bus->self == NULL, but fortunately bus->sysdata is already
  352.  * correct in this case.
  353.  ******************************************************************/
  354. void __init
  355. pci_fix_bus_sysdata(void)
  356. {
  357. pci_fixup_bus_sysdata_list(&pci_root_buses);
  358. }