blob: bb154511db5eb2ab484fe390973bd759a5b5fc7b [file] [log] [blame]
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001/*
2 * Common pmac/prep/chrp pci routines. -- Cort
3 */
4
Paul Mackerrase05b3b42006-01-15 22:05:47 +11005#include <linux/kernel.h>
6#include <linux/pci.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>
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -070014#include <linux/irq.h>
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +110015#include <linux/list.h>
Stephen Rothwell66524b22007-12-21 15:52:43 +110016#include <linux/of.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Paul Mackerrase05b3b42006-01-15 22:05:47 +110018
19#include <asm/processor.h>
20#include <asm/io.h>
21#include <asm/prom.h>
22#include <asm/sections.h>
23#include <asm/pci-bridge.h>
Milton Millerc3bd5172009-01-08 02:19:46 +000024#include <asm/ppc-pci.h>
Paul Mackerrase05b3b42006-01-15 22:05:47 +110025#include <asm/byteorder.h>
Paul Mackerrase05b3b42006-01-15 22:05:47 +110026#include <asm/uaccess.h>
27#include <asm/machdep.h>
28
29#undef DEBUG
30
Paul Mackerrase05b3b42006-01-15 22:05:47 +110031unsigned long isa_io_base = 0;
Paul Mackerrase05b3b42006-01-15 22:05:47 +110032unsigned long pci_dram_offset = 0;
33int pcibios_assign_bus_offset = 1;
34
35void pcibios_make_OF_bus_map(void);
36
Paul Mackerrase05b3b42006-01-15 22:05:47 +110037static void fixup_cpc710_pci64(struct pci_dev* dev);
Paul Mackerrase05b3b42006-01-15 22:05:47 +110038static u8* pci_to_OF_bus_map;
Paul Mackerrase05b3b42006-01-15 22:05:47 +110039
40/* By default, we don't re-assign bus numbers. We do this only on
41 * some pmacs
42 */
Benjamin Herrenschmidtfc3fb712007-12-20 14:54:46 +110043static int pci_assign_all_buses;
Paul Mackerrase05b3b42006-01-15 22:05:47 +110044
Paul Mackerrase05b3b42006-01-15 22:05:47 +110045static int pci_bus_count;
46
Benjamin Herrenschmidt7b6b5742008-10-13 17:51:46 +000047/* This will remain NULL for now, until isa-bridge.c is made common
48 * to both 32-bit and 64-bit.
49 */
50struct pci_dev *isa_bridge_pcidev;
51EXPORT_SYMBOL_GPL(isa_bridge_pcidev);
52
Paul Mackerrase05b3b42006-01-15 22:05:47 +110053static void
Paul Mackerrase05b3b42006-01-15 22:05:47 +110054fixup_cpc710_pci64(struct pci_dev* dev)
55{
56 /* Hide the PCI64 BARs from the kernel as their content doesn't
57 * fit well in the resource management
58 */
59 dev->resource[0].start = dev->resource[0].end = 0;
60 dev->resource[0].flags = 0;
61 dev->resource[1].start = dev->resource[1].end = 0;
62 dev->resource[1].flags = 0;
63}
64DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CPC710_PCI64, fixup_cpc710_pci64);
65
Paul Mackerrase05b3b42006-01-15 22:05:47 +110066/*
67 * Functions below are used on OpenFirmware machines.
68 */
69static void
70make_one_node_map(struct device_node* node, u8 pci_bus)
71{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100072 const int *bus_range;
Paul Mackerrase05b3b42006-01-15 22:05:47 +110073 int len;
74
75 if (pci_bus >= pci_bus_count)
76 return;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100077 bus_range = of_get_property(node, "bus-range", &len);
Paul Mackerrase05b3b42006-01-15 22:05:47 +110078 if (bus_range == NULL || len < 2 * sizeof(int)) {
79 printk(KERN_WARNING "Can't get bus-range for %s, "
80 "assuming it starts at 0\n", node->full_name);
81 pci_to_OF_bus_map[pci_bus] = 0;
82 } else
83 pci_to_OF_bus_map[pci_bus] = bus_range[0];
84
Stephen Rothwell66524b22007-12-21 15:52:43 +110085 for_each_child_of_node(node, node) {
Paul Mackerrase05b3b42006-01-15 22:05:47 +110086 struct pci_dev* dev;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100087 const unsigned int *class_code, *reg;
Paul Mackerrase05b3b42006-01-15 22:05:47 +110088
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100089 class_code = of_get_property(node, "class-code", NULL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +110090 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
91 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
92 continue;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100093 reg = of_get_property(node, "reg", NULL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +110094 if (!reg)
95 continue;
Alan Coxab462762007-04-23 14:47:59 +010096 dev = pci_get_bus_and_slot(pci_bus, ((reg[0] >> 8) & 0xff));
97 if (!dev || !dev->subordinate) {
98 pci_dev_put(dev);
Paul Mackerrase05b3b42006-01-15 22:05:47 +110099 continue;
Alan Coxab462762007-04-23 14:47:59 +0100100 }
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100101 make_one_node_map(node, dev->subordinate->number);
Alan Coxab462762007-04-23 14:47:59 +0100102 pci_dev_put(dev);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100103 }
104}
105
106void
107pcibios_make_OF_bus_map(void)
108{
109 int i;
Kumar Galaa4c9e322007-06-27 13:09:43 -0500110 struct pci_controller *hose, *tmp;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000111 struct property *map_prop;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000112 struct device_node *dn;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100113
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800114 pci_to_OF_bus_map = kmalloc(pci_bus_count, GFP_KERNEL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100115 if (!pci_to_OF_bus_map) {
116 printk(KERN_ERR "Can't allocate OF bus map !\n");
117 return;
118 }
119
120 /* We fill the bus map with invalid values, that helps
121 * debugging.
122 */
123 for (i=0; i<pci_bus_count; i++)
124 pci_to_OF_bus_map[i] = 0xff;
125
126 /* For each hose, we begin searching bridges */
Kumar Galaa4c9e322007-06-27 13:09:43 -0500127 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Stephen Rothwell44ef3392007-12-10 14:33:21 +1100128 struct device_node* node = hose->dn;
129
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100130 if (!node)
131 continue;
132 make_one_node_map(node, hose->first_busno);
133 }
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000134 dn = of_find_node_by_path("/");
135 map_prop = of_find_property(dn, "pci-OF-bus-map", NULL);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000136 if (map_prop) {
137 BUG_ON(pci_bus_count > map_prop->length);
138 memcpy(map_prop->value, pci_to_OF_bus_map, pci_bus_count);
139 }
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000140 of_node_put(dn);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100141#ifdef DEBUG
142 printk("PCI->OF bus map:\n");
143 for (i=0; i<pci_bus_count; i++) {
144 if (pci_to_OF_bus_map[i] == 0xff)
145 continue;
146 printk("%d -> %d\n", i, pci_to_OF_bus_map[i]);
147 }
148#endif
149}
150
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100151
152/*
153 * Returns the PCI device matching a given OF node
154 */
Benjamin Herrenschmidt98d9f302011-04-11 11:37:07 +1000155int pci_device_from_OF_node(struct device_node *node, u8 *bus, u8 *devfn)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100156{
Benjamin Herrenschmidt98d9f302011-04-11 11:37:07 +1000157 struct pci_dev *dev = NULL;
158 const __be32 *reg;
159 int size;
160
161 /* Check if it might have a chance to be a PCI device */
162 if (!pci_find_hose_for_OF_device(node))
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100163 return -ENODEV;
Benjamin Herrenschmidt98d9f302011-04-11 11:37:07 +1000164
165 reg = of_get_property(node, "reg", &size);
166 if (!reg || size < 5 * sizeof(u32))
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100167 return -ENODEV;
Benjamin Herrenschmidt98d9f302011-04-11 11:37:07 +1000168
169 *bus = (be32_to_cpup(&reg[0]) >> 16) & 0xff;
170 *devfn = (be32_to_cpup(&reg[0]) >> 8) & 0xff;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100171
172 /* Ok, here we need some tweak. If we have already renumbered
173 * all busses, we can't rely on the OF bus number any more.
174 * the pci_to_OF_bus_map is not enough as several PCI busses
175 * may match the same OF bus number.
176 */
177 if (!pci_to_OF_bus_map)
178 return 0;
179
180 for_each_pci_dev(dev)
181 if (pci_to_OF_bus_map[dev->bus->number] == *bus &&
182 dev->devfn == *devfn) {
183 *bus = dev->bus->number;
184 pci_dev_put(dev);
185 return 0;
186 }
187
188 return -ENODEV;
189}
190EXPORT_SYMBOL(pci_device_from_OF_node);
191
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100192/* We create the "pci-OF-bus-map" property now so it appears in the
193 * /proc device tree
194 */
195void __init
196pci_create_OF_bus_map(void)
197{
198 struct property* of_prop;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000199 struct device_node *dn;
200
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100201 of_prop = (struct property*) alloc_bootmem(sizeof(struct property) + 256);
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000202 if (!of_prop)
203 return;
204 dn = of_find_node_by_path("/");
205 if (dn) {
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100206 memset(of_prop, -1, sizeof(struct property) + 256);
207 of_prop->name = "pci-OF-bus-map";
208 of_prop->length = 256;
Stephen Rothwell1a381472007-04-03 10:58:52 +1000209 of_prop->value = &of_prop[1];
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000210 prom_add_property(dn, of_prop);
211 of_node_put(dn);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100212 }
213}
214
Grant Likely0ed2c722009-08-28 08:58:16 +0000215void __devinit pcibios_setup_phb_io_space(struct pci_controller *hose)
Benjamin Herrenschmidt53280322008-10-27 19:48:29 +0000216{
Benjamin Herrenschmidt53280322008-10-27 19:48:29 +0000217 unsigned long io_offset;
218 struct resource *res = &hose->io_resource;
219
Benjamin Herrenschmidt53280322008-10-27 19:48:29 +0000220 /* Fixup IO space offset */
221 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
222 res->start = (res->start + io_offset) & 0xffffffffu;
223 res->end = (res->end + io_offset) & 0xffffffffu;
Benjamin Herrenschmidt53280322008-10-27 19:48:29 +0000224}
225
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +1100226static int __init pcibios_init(void)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100227{
Kumar Galaa4c9e322007-06-27 13:09:43 -0500228 struct pci_controller *hose, *tmp;
Kumar Galaa4c9e322007-06-27 13:09:43 -0500229 int next_busno = 0;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100230
231 printk(KERN_INFO "PCI: Probing PCI hardware\n");
232
Rob Herring0e47ff12011-07-12 09:25:51 -0500233 if (pci_has_flag(PCI_REASSIGN_ALL_BUS))
Benjamin Herrenschmidtfc3fb712007-12-20 14:54:46 +1100234 pci_assign_all_buses = 1;
235
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100236 /* Scan all of the recorded PCI controllers. */
Kumar Galaa4c9e322007-06-27 13:09:43 -0500237 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100238 if (pci_assign_all_buses)
239 hose->first_busno = next_busno;
240 hose->last_busno = 0xff;
Grant Likelyb5d937d2011-02-04 11:24:11 -0700241 pcibios_scan_phb(hose);
Benjamin Herrenschmidt53280322008-10-27 19:48:29 +0000242 pci_bus_add_devices(hose->bus);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100243 if (pci_assign_all_buses || next_busno <= hose->last_busno)
244 next_busno = hose->last_busno + pcibios_assign_bus_offset;
245 }
246 pci_bus_count = next_busno;
247
248 /* OpenFirmware based machines need a map of OF bus
249 * numbers vs. kernel bus numbers since we may have to
250 * remap them.
251 */
Anton Vorontsov6b82b3e2008-12-09 09:47:29 +0000252 if (pci_assign_all_buses)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100253 pcibios_make_OF_bus_map();
254
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +1100255 /* Call common code to handle resource allocation */
256 pcibios_resource_survey();
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100257
258 /* Call machine dependent post-init code */
259 if (ppc_md.pcibios_after_init)
260 ppc_md.pcibios_after_init();
261
262 return 0;
263}
264
265subsys_initcall(pcibios_init);
266
Kumar Gala0b1d40c2007-06-27 10:27:33 -0500267static struct pci_controller*
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100268pci_bus_to_hose(int bus)
269{
Kumar Galaa4c9e322007-06-27 13:09:43 -0500270 struct pci_controller *hose, *tmp;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100271
Kumar Galaa4c9e322007-06-27 13:09:43 -0500272 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100273 if (bus >= hose->first_busno && bus <= hose->last_busno)
274 return hose;
275 return NULL;
276}
277
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100278/* Provide information on locations of various I/O regions in physical
279 * memory. Do this on a per-card basis so that we choose the right
280 * root bridge.
281 * Note that the returned IO or memory base is a physical address
282 */
283
284long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
285{
286 struct pci_controller* hose;
287 long result = -EOPNOTSUPP;
288
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100289 hose = pci_bus_to_hose(bus);
290 if (!hose)
291 return -ENODEV;
292
293 switch (which) {
294 case IOBASE_BRIDGE_NUMBER:
295 return (long)hose->first_busno;
296 case IOBASE_MEMORY:
297 return (long)hose->pci_mem_offset;
298 case IOBASE_IO:
299 return (long)hose->io_base_phys;
300 case IOBASE_ISA_IO:
301 return (long)isa_io_base;
302 case IOBASE_ISA_MEM:
303 return (long)isa_mem_base;
304 }
305
306 return result;
307}
308
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100309