2 * Helper routines to scan the device tree for PCI devices and busses
4 * Migrated out of PowerPC architecture pci_64.c file by Grant Likely
5 * <grant.likely@secretlab.ca> so that these routines are available for
8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
9 * Rework, based on alpha PCI code.
10 * Copyright (c) 2009 Secret Lab Technologies Ltd.
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * version 2 as published by the Free Software Foundation.
17 #include <linux/pci.h>
18 #include <asm/pci-bridge.h>
22 * get_int_prop - Decode a u32 from a device tree property
24 static u32
get_int_prop(struct device_node
*np
, const char *name
, u32 def
)
29 prop
= of_get_property(np
, name
, &len
);
36 * pci_parse_of_flags - Parse the flags cell of a device tree PCI address
37 * @addr0: value of 1st cell of a device tree PCI address.
38 * @bridge: Set this flag if the address is from a bridge 'ranges' property
40 unsigned int pci_parse_of_flags(u32 addr0
, int bridge
)
42 unsigned int flags
= 0;
44 if (addr0
& 0x02000000) {
45 flags
= IORESOURCE_MEM
| PCI_BASE_ADDRESS_SPACE_MEMORY
;
46 flags
|= (addr0
>> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64
;
47 flags
|= (addr0
>> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M
;
48 if (addr0
& 0x40000000)
49 flags
|= IORESOURCE_PREFETCH
50 | PCI_BASE_ADDRESS_MEM_PREFETCH
;
51 /* Note: We don't know whether the ROM has been left enabled
52 * by the firmware or not. We mark it as disabled (ie, we do
53 * not set the IORESOURCE_ROM_ENABLE flag) for now rather than
54 * do a config space read, it will be force-enabled if needed
56 if (!bridge
&& (addr0
& 0xff) == 0x30)
57 flags
|= IORESOURCE_READONLY
;
58 } else if (addr0
& 0x01000000)
59 flags
= IORESOURCE_IO
| PCI_BASE_ADDRESS_SPACE_IO
;
61 flags
|= IORESOURCE_SIZEALIGN
;
66 * of_pci_parse_addrs - Parse PCI addresses assigned in the device tree node
67 * @node: device tree node for the PCI device
68 * @dev: pci_dev structure for the device
70 * This function parses the 'assigned-addresses' property of a PCI devices'
71 * device tree node and writes them into the associated pci_dev structure.
73 static void of_pci_parse_addrs(struct device_node
*node
, struct pci_dev
*dev
)
82 addrs
= of_get_property(node
, "assigned-addresses", &proplen
);
85 pr_debug(" parse addresses (%d bytes) @ %p\n", proplen
, addrs
);
86 for (; proplen
>= 20; proplen
-= 20, addrs
+= 5) {
87 flags
= pci_parse_of_flags(addrs
[0], 0);
90 base
= of_read_number(&addrs
[1], 2);
91 size
= of_read_number(&addrs
[3], 2);
95 pr_debug(" base: %llx, size: %llx, i: %x\n",
96 (unsigned long long)base
,
97 (unsigned long long)size
, i
);
99 if (PCI_BASE_ADDRESS_0
<= i
&& i
<= PCI_BASE_ADDRESS_5
) {
100 res
= &dev
->resource
[(i
- PCI_BASE_ADDRESS_0
) >> 2];
101 } else if (i
== dev
->rom_base_reg
) {
102 res
= &dev
->resource
[PCI_ROM_RESOURCE
];
103 flags
|= IORESOURCE_READONLY
| IORESOURCE_CACHEABLE
;
105 printk(KERN_ERR
"PCI: bad cfg reg num 0x%x\n", i
);
109 res
->end
= base
+ size
- 1;
111 res
->name
= pci_name(dev
);
116 * of_create_pci_dev - Given a device tree node on a pci bus, create a pci_dev
117 * @node: device tree node pointer
118 * @bus: bus the device is sitting on
119 * @devfn: PCI function number, extracted from device tree by caller.
121 struct pci_dev
*of_create_pci_dev(struct device_node
*node
,
122 struct pci_bus
*bus
, int devfn
)
127 dev
= alloc_pci_dev();
130 type
= of_get_property(node
, "device_type", NULL
);
134 pr_debug(" create device, devfn: %x, type: %s\n", devfn
, type
);
138 dev
->dev
.parent
= bus
->bridge
;
139 dev
->dev
.bus
= &pci_bus_type
;
141 dev
->multifunction
= 0; /* maybe a lie? */
142 dev
->needs_freset
= 0; /* pcie fundamental reset required */
143 set_pcie_port_type(dev
);
145 dev
->vendor
= get_int_prop(node
, "vendor-id", 0xffff);
146 dev
->device
= get_int_prop(node
, "device-id", 0xffff);
147 dev
->subsystem_vendor
= get_int_prop(node
, "subsystem-vendor-id", 0);
148 dev
->subsystem_device
= get_int_prop(node
, "subsystem-id", 0);
150 dev
->cfg_size
= pci_cfg_space_size(dev
);
152 dev_set_name(&dev
->dev
, "%04x:%02x:%02x.%d", pci_domain_nr(bus
),
153 dev
->bus
->number
, PCI_SLOT(devfn
), PCI_FUNC(devfn
));
154 dev
->class = get_int_prop(node
, "class-code", 0);
155 dev
->revision
= get_int_prop(node
, "revision-id", 0);
157 pr_debug(" class: 0x%x\n", dev
->class);
158 pr_debug(" revision: 0x%x\n", dev
->revision
);
160 dev
->current_state
= 4; /* unknown power state */
161 dev
->error_state
= pci_channel_io_normal
;
162 dev
->dma_mask
= 0xffffffff;
164 if (!strcmp(type
, "pci") || !strcmp(type
, "pciex")) {
165 /* a PCI-PCI bridge */
166 dev
->hdr_type
= PCI_HEADER_TYPE_BRIDGE
;
167 dev
->rom_base_reg
= PCI_ROM_ADDRESS1
;
168 set_pcie_hotplug_bridge(dev
);
169 } else if (!strcmp(type
, "cardbus")) {
170 dev
->hdr_type
= PCI_HEADER_TYPE_CARDBUS
;
172 dev
->hdr_type
= PCI_HEADER_TYPE_NORMAL
;
173 dev
->rom_base_reg
= PCI_ROM_ADDRESS
;
174 /* Maybe do a default OF mapping here */
178 of_pci_parse_addrs(node
, dev
);
180 pr_debug(" adding to system ...\n");
182 pci_device_add(dev
, bus
);
186 EXPORT_SYMBOL(of_create_pci_dev
);
189 * of_scan_pci_bridge - Set up a PCI bridge and scan for child nodes
190 * @node: device tree node of bridge
191 * @dev: pci_dev structure for the bridge
193 * of_scan_bus() calls this routine for each PCI bridge that it finds, and
194 * this routine in turn call of_scan_bus() recusively to scan for more child
197 void __devinit
of_scan_pci_bridge(struct device_node
*node
,
201 const u32
*busrange
, *ranges
;
203 struct resource
*res
;
207 pr_debug("of_scan_pci_bridge(%s)\n", node
->full_name
);
209 /* parse bus-range property */
210 busrange
= of_get_property(node
, "bus-range", &len
);
211 if (busrange
== NULL
|| len
!= 8) {
212 printk(KERN_DEBUG
"Can't get bus-range for PCI-PCI bridge %s\n",
216 ranges
= of_get_property(node
, "ranges", &len
);
217 if (ranges
== NULL
) {
218 printk(KERN_DEBUG
"Can't get ranges for PCI-PCI bridge %s\n",
223 bus
= pci_add_new_bus(dev
->bus
, dev
, busrange
[0]);
225 printk(KERN_ERR
"Failed to create pci bus for %s\n",
230 bus
->primary
= dev
->bus
->number
;
231 bus
->subordinate
= busrange
[1];
235 /* parse ranges property */
236 /* PCI #address-cells == 3 and #size-cells == 2 always */
237 res
= &dev
->resource
[PCI_BRIDGE_RESOURCES
];
238 for (i
= 0; i
< PCI_NUM_RESOURCES
- PCI_BRIDGE_RESOURCES
; ++i
) {
240 bus
->resource
[i
] = res
;
244 for (; len
>= 32; len
-= 32, ranges
+= 8) {
245 flags
= pci_parse_of_flags(ranges
[0], 1);
246 size
= of_read_number(&ranges
[6], 2);
247 if (flags
== 0 || size
== 0)
249 if (flags
& IORESOURCE_IO
) {
250 res
= bus
->resource
[0];
252 printk(KERN_ERR
"PCI: ignoring extra I/O range"
253 " for bridge %s\n", node
->full_name
);
257 if (i
>= PCI_NUM_RESOURCES
- PCI_BRIDGE_RESOURCES
) {
258 printk(KERN_ERR
"PCI: too many memory ranges"
259 " for bridge %s\n", node
->full_name
);
262 res
= bus
->resource
[i
];
265 res
->start
= of_read_number(&ranges
[1], 2);
266 res
->end
= res
->start
+ size
- 1;
269 sprintf(bus
->name
, "PCI Bus %04x:%02x", pci_domain_nr(bus
),
271 pr_debug(" bus name: %s\n", bus
->name
);
273 mode
= PCI_PROBE_NORMAL
;
274 if (ppc_md
.pci_probe_mode
)
275 mode
= ppc_md
.pci_probe_mode(bus
);
276 pr_debug(" probe mode: %d\n", mode
);
278 if (mode
== PCI_PROBE_DEVTREE
)
279 of_scan_bus(node
, bus
);
280 else if (mode
== PCI_PROBE_NORMAL
)
281 pci_scan_child_bus(bus
);
283 EXPORT_SYMBOL(of_scan_pci_bridge
);
286 * __of_scan_bus - given a PCI bus node, setup bus and scan for child devices
287 * @node: device tree node for the PCI bus
288 * @bus: pci_bus structure for the PCI bus
289 * @rescan_existing: Flag indicating bus has already been set up
291 static void __devinit
__of_scan_bus(struct device_node
*node
,
292 struct pci_bus
*bus
, int rescan_existing
)
294 struct device_node
*child
;
299 pr_debug("of_scan_bus(%s) bus no %d... \n",
300 node
->full_name
, bus
->number
);
302 /* Scan direct children */
303 for_each_child_of_node(node
, child
) {
304 pr_debug(" * %s\n", child
->full_name
);
305 reg
= of_get_property(child
, "reg", ®len
);
306 if (reg
== NULL
|| reglen
< 20)
308 devfn
= (reg
[0] >> 8) & 0xff;
310 /* create a new pci_dev for this device */
311 dev
= of_create_pci_dev(child
, bus
, devfn
);
314 pr_debug(" dev header type: %x\n", dev
->hdr_type
);
317 /* Apply all fixups necessary. We don't fixup the bus "self"
318 * for an existing bridge that is being rescanned
320 if (!rescan_existing
)
321 pcibios_setup_bus_self(bus
);
322 pcibios_setup_bus_devices(bus
);
324 /* Now scan child busses */
325 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
326 if (dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
||
327 dev
->hdr_type
== PCI_HEADER_TYPE_CARDBUS
) {
328 struct device_node
*child
= pci_device_to_OF_node(dev
);
330 of_scan_pci_bridge(child
, dev
);
336 * of_scan_bus - given a PCI bus node, setup bus and scan for child devices
337 * @node: device tree node for the PCI bus
338 * @bus: pci_bus structure for the PCI bus
340 void __devinit
of_scan_bus(struct device_node
*node
,
343 __of_scan_bus(node
, bus
, 0);
345 EXPORT_SYMBOL_GPL(of_scan_bus
);
348 * of_rescan_bus - given a PCI bus node, scan for child devices
349 * @node: device tree node for the PCI bus
350 * @bus: pci_bus structure for the PCI bus
352 * Same as of_scan_bus, but for a pci_bus structure that has already been
355 void __devinit
of_rescan_bus(struct device_node
*node
,
358 __of_scan_bus(node
, bus
, 1);
360 EXPORT_SYMBOL_GPL(of_rescan_bus
);