4 * Copyright (C) 2001 Todd Inglett, IBM Corporation
6 * PCI manipulation via device_nodes.
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.
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.
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
22 #include <linux/kernel.h>
23 #include <linux/pci.h>
24 #include <linux/string.h>
25 #include <linux/init.h>
26 #include <linux/gfp.h>
30 #include <asm/pci-bridge.h>
31 #include <asm/ppc-pci.h>
32 #include <asm/firmware.h>
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.
38 void * __devinit
update_dn_pci_info(struct device_node
*dn
, void *data
)
40 struct pci_controller
*phb
= data
;
42 of_get_property(dn
, "ibm,pci-config-space-type", NULL
);
46 pdn
= zalloc_maybe_bootmem(sizeof(*pdn
), GFP_KERNEL
);
52 regs
= of_get_property(dn
, "reg", NULL
);
54 /* First register entry is addr (00BBSS00) */
55 pdn
->busno
= (regs
[0] >> 16) & 0xff;
56 pdn
->devfn
= (regs
[0] >> 8) & 0xff;
59 pdn
->pci_ext_config_space
= (type
&& *type
== 1);
64 * Traverse a device tree stopping each PCI device in the tree.
65 * This is done depth first. As each node is processed, a "pre"
66 * function is called and the children are processed recursively.
68 * The "pre" func returns a value. If non-zero is returned from
69 * the "pre" func, the traversal stops and this value is returned.
70 * This return value is useful when using traverse as a method of
73 * NOTE: we do not run the func for devices that do not appear to
74 * be PCI except for the start node which we assume (this is good
75 * because the start node is often a phb which may be missing PCI
77 * We use the class-code as an indicator. If we run into
78 * one of these nodes we also assume its siblings are non-pci for
81 void *traverse_pci_devices(struct device_node
*start
, traverse_func pre
,
84 struct device_node
*dn
, *nextdn
;
87 /* We started with a phb, iterate all childs */
88 for (dn
= start
->child
; dn
; dn
= nextdn
) {
93 classp
= of_get_property(dn
, "class-code", NULL
);
94 class = classp
? *classp
: 0;
96 if (pre
&& ((ret
= pre(dn
, data
)) != NULL
))
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 */
104 else if (dn
->sibling
)
105 /* ok, try next sibling instead. */
106 nextdn
= dn
->sibling
;
108 /* Walk up to next valid sibling. */
113 } while (dn
->sibling
== NULL
);
114 nextdn
= dn
->sibling
;
121 * pci_devs_phb_init_dynamic - setup pci devices under this PHB
122 * phb: pci-to-host bridge (top-level bridge connecting to cpu)
124 * This routine is called both during boot, (before the memory
125 * subsystem is set up, before kmalloc is valid) and during the
126 * dynamic lpar operation of adding a PHB to a running system.
128 void __devinit
pci_devs_phb_init_dynamic(struct pci_controller
*phb
)
130 struct device_node
*dn
= phb
->dn
;
133 /* PHB nodes themselves must not match */
134 update_dn_pci_info(dn
, phb
);
137 pdn
->devfn
= pdn
->busno
= -1;
141 /* Update dn->phb ptrs for new phb and children devices */
142 traverse_pci_devices(dn
, update_dn_pci_info
, phb
);
146 * pci_devs_phb_init - Initialize phbs and pci devs under them.
148 * This routine walks over all phb's (pci-host bridges) on the
149 * system, and sets up assorted pci-related structures
150 * (including pci info in the device node structs) for each
151 * pci device found underneath. This routine runs once,
152 * early in the boot sequence.
154 void __init
pci_devs_phb_init(void)
156 struct pci_controller
*phb
, *tmp
;
158 /* This must be done first so the device nodes have valid pci info! */
159 list_for_each_entry_safe(phb
, tmp
, &hose_list
, list_node
)
160 pci_devs_phb_init_dynamic(phb
);