blob: 1b6de1b565aa826650779235eba593f74a5243b0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/pci/bus.c
3 *
4 * From setup-res.c, by:
5 * Dave Rusling (david.rusling@reo.mts.dec.com)
6 * David Mosberger (davidm@cs.arizona.edu)
7 * David Miller (davem@redhat.com)
8 * Ivan Kokshaysky (ink@jurassic.park.msu.ru)
9 */
10#include <linux/module.h>
11#include <linux/kernel.h>
12#include <linux/pci.h>
13#include <linux/errno.h>
14#include <linux/ioport.h>
15#include <linux/proc_fs.h>
16#include <linux/init.h>
17
18#include "pci.h"
19
20/**
21 * pci_bus_alloc_resource - allocate a resource from a parent bus
22 * @bus: PCI bus
23 * @res: resource to allocate
24 * @size: size of resource to allocate
25 * @align: alignment of resource to allocate
26 * @min: minimum /proc/iomem address to allocate
27 * @type_mask: IORESOURCE_* type flags
28 * @alignf: resource alignment function
29 * @alignf_data: data argument for resource alignment function
30 *
31 * Given the PCI bus a device resides on, the size, minimum address,
32 * alignment and type, try to find an acceptable resource allocation
33 * for a specific device resource.
34 */
35int
36pci_bus_alloc_resource(struct pci_bus *bus, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -070037 resource_size_t size, resource_size_t align,
38 resource_size_t min, unsigned int type_mask,
39 void (*alignf)(void *, struct resource *, resource_size_t,
40 resource_size_t),
41 void *alignf_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 int i, ret = -ENOMEM;
44
45 type_mask |= IORESOURCE_IO | IORESOURCE_MEM;
46
47 for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
48 struct resource *r = bus->resource[i];
49 if (!r)
50 continue;
51
52 /* type_mask must match */
53 if ((res->flags ^ r->flags) & type_mask)
54 continue;
55
56 /* We cannot allocate a non-prefetching resource
57 from a pre-fetching area */
58 if ((r->flags & IORESOURCE_PREFETCH) &&
59 !(res->flags & IORESOURCE_PREFETCH))
60 continue;
61
62 /* Ok, try it out.. */
Linus Torvalds688d1912005-08-02 14:55:40 -070063 ret = allocate_resource(r, res, size,
64 r->start ? : min,
65 -1, align,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 alignf, alignf_data);
67 if (ret == 0)
68 break;
69 }
70 return ret;
71}
72
73/**
Yu Zhao3fa16fd2008-11-22 02:41:45 +080074 * pci_bus_add_device - add a single device
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * @dev: device to add
76 *
77 * This adds a single pci device to the global
78 * device list and adds sysfs and procfs entries
79 */
Sam Ravnborg96bde062007-03-26 21:53:30 -080080int pci_bus_add_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -070082 int retval;
83 retval = device_add(&dev->dev);
84 if (retval)
85 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Greg Kroah-Hartman8a1bc902008-02-14 14:56:56 -080087 dev->is_added = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 pci_proc_attach_device(dev);
89 pci_create_sysfs_dev_files(dev);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -070090 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93/**
94 * pci_bus_add_devices - insert newly discovered PCI devices
95 * @bus: bus to check for new devices
96 *
97 * Add newly discovered PCI devices (which are on the bus->devices
98 * list) to the global PCI device list, add the sysfs and procfs
99 * entries. Where a bridge is found, add the discovered bus to
100 * the parents list of child buses, and recurse (breadth-first
101 * to be compatible with 2.4)
102 *
103 * Call hotplug for each new devices.
104 */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800105void pci_bus_add_devices(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 struct pci_dev *dev;
Yu Zhao3fa16fd2008-11-22 02:41:45 +0800108 struct pci_bus *child;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700109 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 list_for_each_entry(dev, &bus->devices, bus_list) {
Greg Kroah-Hartman8a1bc902008-02-14 14:56:56 -0800112 /* Skip already-added devices */
113 if (dev->is_added)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 continue;
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700115 retval = pci_bus_add_device(dev);
116 if (retval)
117 dev_err(&dev->dev, "Error adding device, continuing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119
120 list_for_each_entry(dev, &bus->devices, bus_list) {
Greg Kroah-Hartman8a1bc902008-02-14 14:56:56 -0800121 BUG_ON(!dev->is_added);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Yu Zhao3fa16fd2008-11-22 02:41:45 +0800123 child = dev->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /*
125 * If there is an unattached subordinate bus, attach
126 * it and then scan for unattached PCI devices.
127 */
Yu Zhao3fa16fd2008-11-22 02:41:45 +0800128 if (!child)
129 continue;
130 if (list_empty(&child->node)) {
131 down_write(&pci_bus_sem);
132 list_add_tail(&child->node, &dev->bus->children);
133 up_write(&pci_bus_sem);
134 }
135 pci_bus_add_devices(child);
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -0400136
Yu Zhao3fa16fd2008-11-22 02:41:45 +0800137 /*
138 * register the bus with sysfs as the parent is now
139 * properly registered.
140 */
141 if (child->is_added)
142 continue;
143 child->dev.parent = child->bridge;
144 retval = device_register(&child->dev);
145 if (retval)
146 dev_err(&dev->dev, "Error registering pci_bus,"
147 " continuing...\n");
148 else {
149 child->is_added = 1;
150 retval = device_create_file(&child->dev,
151 &dev_attr_cpuaffinity);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700152 if (retval)
Greg Kroah-Hartman4725e7b2008-03-03 14:47:13 -0800153 dev_err(&dev->dev, "Error creating cpuaffinity"
154 " file, continuing...\n");
Mike Travis93ff68a2008-09-06 05:46:42 -0700155
Yu Zhao3fa16fd2008-11-22 02:41:45 +0800156 retval = device_create_file(&child->dev,
Mike Travis93ff68a2008-09-06 05:46:42 -0700157 &dev_attr_cpulistaffinity);
158 if (retval)
159 dev_err(&dev->dev,
160 "Error creating cpulistaffinity"
161 " file, continuing...\n");
Benjamin Herrenschmidtd3a54012008-11-12 14:38:53 +1100162
163 /* Create legacy_io and legacy_mem files for this bus */
164 pci_create_legacy_files(child_bus);
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167 }
168}
169
170void pci_enable_bridges(struct pci_bus *bus)
171{
172 struct pci_dev *dev;
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700173 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 list_for_each_entry(dev, &bus->devices, bus_list) {
176 if (dev->subordinate) {
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700177 retval = pci_enable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 pci_set_master(dev);
179 pci_enable_bridges(dev->subordinate);
180 }
181 }
182}
183
Paul Mackerrascecf4862005-08-18 14:33:01 +1000184/** pci_walk_bus - walk devices on/under bus, calling callback.
185 * @top bus whose devices should be walked
186 * @cb callback to be called for each device found
187 * @userdata arbitrary pointer to be passed to callback.
188 *
189 * Walk the given bus, including any bridged devices
190 * on buses under this bus. Call the provided callback
191 * on each device found.
192 */
193void pci_walk_bus(struct pci_bus *top, void (*cb)(struct pci_dev *, void *),
194 void *userdata)
195{
196 struct pci_dev *dev;
197 struct pci_bus *bus;
198 struct list_head *next;
199
200 bus = top;
Zhang Yanmind71374d2006-06-02 12:35:43 +0800201 down_read(&pci_bus_sem);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000202 next = top->devices.next;
203 for (;;) {
204 if (next == &bus->devices) {
205 /* end of this bus, go up or finish */
206 if (bus == top)
207 break;
208 next = bus->self->bus_list.next;
209 bus = bus->self->bus;
210 continue;
211 }
212 dev = list_entry(next, struct pci_dev, bus_list);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000213 if (dev->subordinate) {
214 /* this is a pci-pci bridge, do its devices next */
215 next = dev->subordinate->devices.next;
216 bus = dev->subordinate;
217 } else
218 next = dev->bus_list.next;
Paul Mackerrascecf4862005-08-18 14:33:01 +1000219
Zhang Yanmind71374d2006-06-02 12:35:43 +0800220 /* Run device routines with the device locked */
221 down(&dev->dev.sem);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000222 cb(dev, userdata);
Zhang Yanmind71374d2006-06-02 12:35:43 +0800223 up(&dev->dev.sem);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000224 }
Zhang Yanmind71374d2006-06-02 12:35:43 +0800225 up_read(&pci_bus_sem);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000226}
Paul Mackerrascecf4862005-08-18 14:33:01 +1000227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228EXPORT_SYMBOL(pci_bus_alloc_resource);
229EXPORT_SYMBOL_GPL(pci_bus_add_device);
230EXPORT_SYMBOL(pci_bus_add_devices);
231EXPORT_SYMBOL(pci_enable_bridges);