blob: 6baabc13306aa1940a98141914a86f9baa10b50a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/io.h>
29#include <asm/prom.h>
30#include <asm/pci-bridge.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100031#include <asm/ppc-pci.h>
Stephen Rothwell095eed42006-05-19 16:54:42 +100032#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
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 */
Kumar Gala2eb4afb2009-04-30 09:26:21 +000038void * __devinit update_dn_pci_info(struct device_node *dn, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 struct pci_controller *phb = data;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100041 const int *type =
42 of_get_property(dn, "ibm,pci-config-space-type", NULL);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100043 const u32 *regs;
Paul Mackerras16353172005-09-06 13:17:54 +100044 struct pci_dn *pdn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Milton Millera56555e2011-05-10 19:29:24 +000046 pdn = zalloc_maybe_bootmem(sizeof(*pdn), GFP_KERNEL);
Paul Mackerras16353172005-09-06 13:17:54 +100047 if (pdn == NULL)
48 return NULL;
Paul Mackerras16353172005-09-06 13:17:54 +100049 dn->data = pdn;
50 pdn->node = dn;
51 pdn->phb = phb;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100052 regs = of_get_property(dn, "reg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (regs) {
54 /* First register entry is addr (00BBSS00) */
Paul Mackerras16353172005-09-06 13:17:54 +100055 pdn->busno = (regs[0] >> 16) & 0xff;
56 pdn->devfn = (regs[0] >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58
Paul Mackerras16353172005-09-06 13:17:54 +100059 pdn->pci_ext_config_space = (type && *type == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return NULL;
61}
62
63/*
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.
67 *
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
71 * finding a device.
72 *
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
76 * properties).
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
79 * performance.
80 */
81void *traverse_pci_devices(struct device_node *start, traverse_func pre,
82 void *data)
83{
84 struct device_node *dn, *nextdn;
85 void *ret;
86
87 /* We started with a phb, iterate all childs */
88 for (dn = start->child; dn; dn = nextdn) {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100089 const u32 *classp;
90 u32 class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 nextdn = NULL;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100093 classp = of_get_property(dn, "class-code", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 class = classp ? *classp : 0;
95
96 if (pre && ((ret = pre(dn, data)) != NULL))
97 return ret;
98
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
Linas Vepstas18126f32005-11-03 18:49:38 -0600120/**
121 * pci_devs_phb_init_dynamic - setup pci devices under this PHB
122 * phb: pci-to-host bridge (top-level bridge connecting to cpu)
123 *
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.
127 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128void __devinit pci_devs_phb_init_dynamic(struct pci_controller *phb)
129{
Stephen Rothwell44ef3392007-12-10 14:33:21 +1100130 struct device_node *dn = phb->dn;
Paul Mackerras16353172005-09-06 13:17:54 +1000131 struct pci_dn *pdn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* PHB nodes themselves must not match */
Paul Mackerras16353172005-09-06 13:17:54 +1000134 update_dn_pci_info(dn, phb);
135 pdn = dn->data;
136 if (pdn) {
137 pdn->devfn = pdn->busno = -1;
138 pdn->phb = phb;
139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* Update dn->phb ptrs for new phb and children devices */
142 traverse_pci_devices(dn, update_dn_pci_info, phb);
143}
144
145/*
146 * Traversal func that looks for a <busno,devfcn> value.
Paul Mackerras16353172005-09-06 13:17:54 +1000147 * If found, the pci_dn is returned (thus terminating the traversal).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
149static void *is_devfn_node(struct device_node *dn, void *data)
150{
151 int busno = ((unsigned long)data >> 8) & 0xff;
152 int devfn = ((unsigned long)data) & 0xff;
Paul Mackerras16353172005-09-06 13:17:54 +1000153 struct pci_dn *pci = dn->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Paul Mackerras16353172005-09-06 13:17:54 +1000155 if (pci && (devfn == pci->devfn) && (busno == pci->busno))
156 return dn;
157 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/*
161 * This is the "slow" path for looking up a device_node from a
162 * pci_dev. It will hunt for the device under its parent's
Grant Likelyb5d937d2011-02-04 11:24:11 -0700163 * phb and then update of_node pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
165 * It may also do fixups on the actual device since this happens
166 * on the first read/write.
167 *
168 * Note that it also must deal with devices that don't exist.
169 * In this case it may probe for real hardware ("just in case")
170 * and add a device_node to the device tree if necessary.
171 *
Grant Likelyb5d937d2011-02-04 11:24:11 -0700172 * Is this function necessary anymore now that dev->dev.of_node is
173 * used to store the node pointer?
174 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
176struct device_node *fetch_dev_dn(struct pci_dev *dev)
177{
Benjamin Herrenschmidt90407c92011-03-21 10:57:57 +1100178 struct pci_controller *phb = dev->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct device_node *dn;
180 unsigned long searchval = (dev->bus->number << 8) | dev->devfn;
181
Benjamin Herrenschmidt90407c92011-03-21 10:57:57 +1100182 if (WARN_ON(!phb))
183 return NULL;
184
185 dn = traverse_pci_devices(phb->dn, is_devfn_node, (void *)searchval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (dn)
Grant Likelyb5d937d2011-02-04 11:24:11 -0700187 dev->dev.of_node = dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return dn;
189}
190EXPORT_SYMBOL(fetch_dev_dn);
191
Linas Vepstas18126f32005-11-03 18:49:38 -0600192/**
193 * pci_devs_phb_init - Initialize phbs and pci devs under them.
194 *
195 * This routine walks over all phb's (pci-host bridges) on the
196 * system, and sets up assorted pci-related structures
197 * (including pci info in the device node structs) for each
198 * pci device found underneath. This routine runs once,
199 * early in the boot sequence.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 */
201void __init pci_devs_phb_init(void)
202{
203 struct pci_controller *phb, *tmp;
204
205 /* This must be done first so the device nodes have valid pci info! */
206 list_for_each_entry_safe(phb, tmp, &hose_list, list_node)
207 pci_devs_phb_init_dynamic(phb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}