2 * Common pmac/prep/chrp pci routines. -- Cort
5 #include <linux/kernel.h>
7 #include <linux/delay.h>
8 #include <linux/string.h>
9 #include <linux/init.h>
10 #include <linux/capability.h>
11 #include <linux/sched.h>
12 #include <linux/errno.h>
13 #include <linux/bootmem.h>
14 #include <linux/syscalls.h>
15 #include <linux/irq.h>
16 #include <linux/list.h>
18 #include <linux/slab.h>
19 #include <linux/export.h>
20 #include <linux/syscalls.h>
22 #include <asm/processor.h>
25 #include <asm/sections.h>
26 #include <asm/pci-bridge.h>
27 #include <asm/ppc-pci.h>
28 #include <asm/byteorder.h>
29 #include <linux/uaccess.h>
30 #include <asm/machdep.h>
34 unsigned long isa_io_base = 0;
35 unsigned long pci_dram_offset = 0;
36 int pcibios_assign_bus_offset = 1;
37 EXPORT_SYMBOL(isa_io_base);
38 EXPORT_SYMBOL(pci_dram_offset);
40 void pcibios_make_OF_bus_map(void);
42 static void fixup_cpc710_pci64(struct pci_dev* dev);
43 static u8* pci_to_OF_bus_map;
45 /* By default, we don't re-assign bus numbers. We do this only on
48 static int pci_assign_all_buses;
50 static int pci_bus_count;
52 /* This will remain NULL for now, until isa-bridge.c is made common
53 * to both 32-bit and 64-bit.
55 struct pci_dev *isa_bridge_pcidev;
56 EXPORT_SYMBOL_GPL(isa_bridge_pcidev);
59 fixup_cpc710_pci64(struct pci_dev* dev)
61 /* Hide the PCI64 BARs from the kernel as their content doesn't
62 * fit well in the resource management
64 dev->resource[0].start = dev->resource[0].end = 0;
65 dev->resource[0].flags = 0;
66 dev->resource[1].start = dev->resource[1].end = 0;
67 dev->resource[1].flags = 0;
69 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CPC710_PCI64, fixup_cpc710_pci64);
72 * Functions below are used on OpenFirmware machines.
75 make_one_node_map(struct device_node* node, u8 pci_bus)
80 if (pci_bus >= pci_bus_count)
82 bus_range = of_get_property(node, "bus-range", &len);
83 if (bus_range == NULL || len < 2 * sizeof(int)) {
84 printk(KERN_WARNING "Can't get bus-range for %pOF, "
85 "assuming it starts at 0\n", node);
86 pci_to_OF_bus_map[pci_bus] = 0;
88 pci_to_OF_bus_map[pci_bus] = bus_range[0];
90 for_each_child_of_node(node, node) {
92 const unsigned int *class_code, *reg;
94 class_code = of_get_property(node, "class-code", NULL);
95 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
96 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
98 reg = of_get_property(node, "reg", NULL);
101 dev = pci_get_domain_bus_and_slot(0, pci_bus,
102 ((reg[0] >> 8) & 0xff));
103 if (!dev || !dev->subordinate) {
107 make_one_node_map(node, dev->subordinate->number);
113 pcibios_make_OF_bus_map(void)
116 struct pci_controller *hose, *tmp;
117 struct property *map_prop;
118 struct device_node *dn;
120 pci_to_OF_bus_map = kmalloc(pci_bus_count, GFP_KERNEL);
121 if (!pci_to_OF_bus_map) {
122 printk(KERN_ERR "Can't allocate OF bus map !\n");
126 /* We fill the bus map with invalid values, that helps
129 for (i=0; i<pci_bus_count; i++)
130 pci_to_OF_bus_map[i] = 0xff;
132 /* For each hose, we begin searching bridges */
133 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
134 struct device_node* node = hose->dn;
138 make_one_node_map(node, hose->first_busno);
140 dn = of_find_node_by_path("/");
141 map_prop = of_find_property(dn, "pci-OF-bus-map", NULL);
143 BUG_ON(pci_bus_count > map_prop->length);
144 memcpy(map_prop->value, pci_to_OF_bus_map, pci_bus_count);
148 printk("PCI->OF bus map:\n");
149 for (i=0; i<pci_bus_count; i++) {
150 if (pci_to_OF_bus_map[i] == 0xff)
152 printk("%d -> %d\n", i, pci_to_OF_bus_map[i]);
159 * Returns the PCI device matching a given OF node
161 int pci_device_from_OF_node(struct device_node *node, u8 *bus, u8 *devfn)
163 struct pci_dev *dev = NULL;
167 /* Check if it might have a chance to be a PCI device */
168 if (!pci_find_hose_for_OF_device(node))
171 reg = of_get_property(node, "reg", &size);
172 if (!reg || size < 5 * sizeof(u32))
175 *bus = (be32_to_cpup(®[0]) >> 16) & 0xff;
176 *devfn = (be32_to_cpup(®[0]) >> 8) & 0xff;
178 /* Ok, here we need some tweak. If we have already renumbered
179 * all busses, we can't rely on the OF bus number any more.
180 * the pci_to_OF_bus_map is not enough as several PCI busses
181 * may match the same OF bus number.
183 if (!pci_to_OF_bus_map)
186 for_each_pci_dev(dev)
187 if (pci_to_OF_bus_map[dev->bus->number] == *bus &&
188 dev->devfn == *devfn) {
189 *bus = dev->bus->number;
196 EXPORT_SYMBOL(pci_device_from_OF_node);
198 /* We create the "pci-OF-bus-map" property now so it appears in the
202 pci_create_OF_bus_map(void)
204 struct property* of_prop;
205 struct device_node *dn;
207 of_prop = memblock_virt_alloc(sizeof(struct property) + 256, 0);
208 dn = of_find_node_by_path("/");
210 memset(of_prop, -1, sizeof(struct property) + 256);
211 of_prop->name = "pci-OF-bus-map";
212 of_prop->length = 256;
213 of_prop->value = &of_prop[1];
214 of_add_property(dn, of_prop);
219 void pcibios_setup_phb_io_space(struct pci_controller *hose)
221 unsigned long io_offset;
222 struct resource *res = &hose->io_resource;
224 /* Fixup IO space offset */
225 io_offset = pcibios_io_space_offset(hose);
226 res->start += io_offset;
227 res->end += io_offset;
230 static int __init pcibios_init(void)
232 struct pci_controller *hose, *tmp;
235 printk(KERN_INFO "PCI: Probing PCI hardware\n");
237 if (pci_has_flag(PCI_REASSIGN_ALL_BUS))
238 pci_assign_all_buses = 1;
240 /* Scan all of the recorded PCI controllers. */
241 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
242 if (pci_assign_all_buses)
243 hose->first_busno = next_busno;
244 hose->last_busno = 0xff;
245 pcibios_scan_phb(hose);
246 pci_bus_add_devices(hose->bus);
247 if (pci_assign_all_buses || next_busno <= hose->last_busno)
248 next_busno = hose->last_busno + pcibios_assign_bus_offset;
250 pci_bus_count = next_busno;
252 /* OpenFirmware based machines need a map of OF bus
253 * numbers vs. kernel bus numbers since we may have to
256 if (pci_assign_all_buses)
257 pcibios_make_OF_bus_map();
259 /* Call common code to handle resource allocation */
260 pcibios_resource_survey();
262 /* Call machine dependent post-init code */
263 if (ppc_md.pcibios_after_init)
264 ppc_md.pcibios_after_init();
269 subsys_initcall(pcibios_init);
271 static struct pci_controller*
272 pci_bus_to_hose(int bus)
274 struct pci_controller *hose, *tmp;
276 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
277 if (bus >= hose->first_busno && bus <= hose->last_busno)
282 /* Provide information on locations of various I/O regions in physical
283 * memory. Do this on a per-card basis so that we choose the right
285 * Note that the returned IO or memory base is a physical address
288 SYSCALL_DEFINE3(pciconfig_iobase, long, which,
289 unsigned long, bus, unsigned long, devfn)
291 struct pci_controller* hose;
292 long result = -EOPNOTSUPP;
294 hose = pci_bus_to_hose(bus);
299 case IOBASE_BRIDGE_NUMBER:
300 return (long)hose->first_busno;
302 return (long)hose->mem_offset[0];
304 return (long)hose->io_base_phys;
306 return (long)isa_io_base;
308 return (long)isa_mem_base;