blob: df038442548a1397fb3cf5c9458fc39379a381a2 [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>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <asm/io.h>
30#include <asm/prom.h>
31#include <asm/pci-bridge.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100032#include <asm/ppc-pci.h>
Stephen Rothwell095eed42006-05-19 16:54:42 +100033#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Benjamin Herrenschmidtb72c1f62013-05-21 22:58:21 +000035struct pci_dn *pci_get_pdn(struct pci_dev *pdev)
36{
37 struct device_node *dn = pci_device_to_OF_node(pdev);
38 if (!dn)
39 return NULL;
40 return PCI_DN(dn);
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
44 * Traverse_func that inits the PCI fields of the device node.
45 * NOTE: this *must* be done before read/write config to the device.
46 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080047void *update_dn_pci_info(struct device_node *dn, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 struct pci_controller *phb = data;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100050 const int *type =
51 of_get_property(dn, "ibm,pci-config-space-type", NULL);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100052 const u32 *regs;
Paul Mackerras16353172005-09-06 13:17:54 +100053 struct pci_dn *pdn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Milton Millera56555e2011-05-10 19:29:24 +000055 pdn = zalloc_maybe_bootmem(sizeof(*pdn), GFP_KERNEL);
Paul Mackerras16353172005-09-06 13:17:54 +100056 if (pdn == NULL)
57 return NULL;
Paul Mackerras16353172005-09-06 13:17:54 +100058 dn->data = pdn;
59 pdn->node = dn;
60 pdn->phb = phb;
Benjamin Herrenschmidt184cd4a2011-11-15 17:29:08 +000061#ifdef CONFIG_PPC_POWERNV
62 pdn->pe_number = IODA_INVALID_PE;
63#endif
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100064 regs = of_get_property(dn, "reg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (regs) {
66 /* First register entry is addr (00BBSS00) */
Paul Mackerras16353172005-09-06 13:17:54 +100067 pdn->busno = (regs[0] >> 16) & 0xff;
68 pdn->devfn = (regs[0] >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
70
Paul Mackerras16353172005-09-06 13:17:54 +100071 pdn->pci_ext_config_space = (type && *type == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return NULL;
73}
74
75/*
76 * Traverse a device tree stopping each PCI device in the tree.
77 * This is done depth first. As each node is processed, a "pre"
78 * function is called and the children are processed recursively.
79 *
80 * The "pre" func returns a value. If non-zero is returned from
81 * the "pre" func, the traversal stops and this value is returned.
82 * This return value is useful when using traverse as a method of
83 * finding a device.
84 *
85 * NOTE: we do not run the func for devices that do not appear to
86 * be PCI except for the start node which we assume (this is good
87 * because the start node is often a phb which may be missing PCI
88 * properties).
89 * We use the class-code as an indicator. If we run into
90 * one of these nodes we also assume its siblings are non-pci for
91 * performance.
92 */
93void *traverse_pci_devices(struct device_node *start, traverse_func pre,
94 void *data)
95{
96 struct device_node *dn, *nextdn;
97 void *ret;
98
99 /* We started with a phb, iterate all childs */
100 for (dn = start->child; dn; dn = nextdn) {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000101 const u32 *classp;
102 u32 class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 nextdn = NULL;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000105 classp = of_get_property(dn, "class-code", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 class = classp ? *classp : 0;
107
108 if (pre && ((ret = pre(dn, data)) != NULL))
109 return ret;
110
111 /* If we are a PCI bridge, go down */
112 if (dn->child && ((class >> 8) == PCI_CLASS_BRIDGE_PCI ||
113 (class >> 8) == PCI_CLASS_BRIDGE_CARDBUS))
114 /* Depth first...do children */
115 nextdn = dn->child;
116 else if (dn->sibling)
117 /* ok, try next sibling instead. */
118 nextdn = dn->sibling;
119 if (!nextdn) {
120 /* Walk up to next valid sibling. */
121 do {
122 dn = dn->parent;
123 if (dn == start)
124 return NULL;
125 } while (dn->sibling == NULL);
126 nextdn = dn->sibling;
127 }
128 }
129 return NULL;
130}
131
Linas Vepstas18126f32005-11-03 18:49:38 -0600132/**
133 * pci_devs_phb_init_dynamic - setup pci devices under this PHB
134 * phb: pci-to-host bridge (top-level bridge connecting to cpu)
135 *
136 * This routine is called both during boot, (before the memory
137 * subsystem is set up, before kmalloc is valid) and during the
138 * dynamic lpar operation of adding a PHB to a running system.
139 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800140void pci_devs_phb_init_dynamic(struct pci_controller *phb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Stephen Rothwell44ef3392007-12-10 14:33:21 +1100142 struct device_node *dn = phb->dn;
Paul Mackerras16353172005-09-06 13:17:54 +1000143 struct pci_dn *pdn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* PHB nodes themselves must not match */
Paul Mackerras16353172005-09-06 13:17:54 +1000146 update_dn_pci_info(dn, phb);
147 pdn = dn->data;
148 if (pdn) {
149 pdn->devfn = pdn->busno = -1;
150 pdn->phb = phb;
151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /* Update dn->phb ptrs for new phb and children devices */
154 traverse_pci_devices(dn, update_dn_pci_info, phb);
155}
156
Linas Vepstas18126f32005-11-03 18:49:38 -0600157/**
158 * pci_devs_phb_init - Initialize phbs and pci devs under them.
159 *
160 * This routine walks over all phb's (pci-host bridges) on the
161 * system, and sets up assorted pci-related structures
162 * (including pci info in the device node structs) for each
163 * pci device found underneath. This routine runs once,
164 * early in the boot sequence.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
166void __init pci_devs_phb_init(void)
167{
168 struct pci_controller *phb, *tmp;
169
170 /* This must be done first so the device nodes have valid pci info! */
171 list_for_each_entry_safe(phb, tmp, &hose_list, list_node)
172 pci_devs_phb_init_dynamic(phb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}