1 // SPDX-License-Identifier: GPL-2.0-only
3 * Common pmac/prep/chrp pci routines. -- Cort
6 #include <linux/kernel.h>
8 #include <linux/delay.h>
9 #include <linux/string.h>
10 #include <linux/init.h>
11 #include <linux/capability.h>
12 #include <linux/sched.h>
13 #include <linux/errno.h>
14 #include <linux/memblock.h>
15 #include <linux/syscalls.h>
16 #include <linux/irq.h>
17 #include <linux/list.h>
19 #include <linux/slab.h>
20 #include <linux/export.h>
22 #include <asm/processor.h>
24 #include <asm/sections.h>
25 #include <asm/pci-bridge.h>
26 #include <asm/ppc-pci.h>
27 #include <asm/byteorder.h>
28 #include <linux/uaccess.h>
29 #include <asm/machdep.h>
33 unsigned long isa_io_base
= 0;
34 unsigned long pci_dram_offset
= 0;
35 int pcibios_assign_bus_offset
= 1;
36 EXPORT_SYMBOL(isa_io_base
);
37 EXPORT_SYMBOL(pci_dram_offset
);
39 static void fixup_cpc710_pci64(struct pci_dev
* dev
);
41 /* By default, we don't re-assign bus numbers. We do this only on
44 static int pci_assign_all_buses
;
46 /* This will remain NULL for now, until isa-bridge.c is made common
47 * to both 32-bit and 64-bit.
49 struct pci_dev
*isa_bridge_pcidev
;
50 EXPORT_SYMBOL_GPL(isa_bridge_pcidev
);
53 fixup_cpc710_pci64(struct pci_dev
* dev
)
55 /* Hide the PCI64 BARs from the kernel as their content doesn't
56 * fit well in the resource management
58 dev
->resource
[0].start
= dev
->resource
[0].end
= 0;
59 dev
->resource
[0].flags
= 0;
60 dev
->resource
[1].start
= dev
->resource
[1].end
= 0;
61 dev
->resource
[1].flags
= 0;
63 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CPC710_PCI64
, fixup_cpc710_pci64
);
65 #ifdef CONFIG_PPC_PCI_OF_BUS_MAP
67 static u8
* pci_to_OF_bus_map
;
68 static int pci_bus_count
;
71 * Functions below are used on OpenFirmware machines.
74 make_one_node_map(struct device_node
* node
, u8 pci_bus
)
79 if (pci_bus
>= pci_bus_count
)
81 bus_range
= of_get_property(node
, "bus-range", &len
);
82 if (bus_range
== NULL
|| len
< 2 * sizeof(int)) {
83 printk(KERN_WARNING
"Can't get bus-range for %pOF, "
84 "assuming it starts at 0\n", node
);
85 pci_to_OF_bus_map
[pci_bus
] = 0;
87 pci_to_OF_bus_map
[pci_bus
] = bus_range
[0];
89 for_each_child_of_node(node
, node
) {
91 const unsigned int *class_code
, *reg
;
93 class_code
= of_get_property(node
, "class-code", NULL
);
94 if (!class_code
|| ((*class_code
>> 8) != PCI_CLASS_BRIDGE_PCI
&&
95 (*class_code
>> 8) != PCI_CLASS_BRIDGE_CARDBUS
))
97 reg
= of_get_property(node
, "reg", NULL
);
100 dev
= pci_get_domain_bus_and_slot(0, pci_bus
,
101 ((reg
[0] >> 8) & 0xff));
102 if (!dev
|| !dev
->subordinate
) {
106 make_one_node_map(node
, dev
->subordinate
->number
);
112 pcibios_make_OF_bus_map(void)
115 struct pci_controller
*hose
, *tmp
;
116 struct property
*map_prop
;
117 struct device_node
*dn
;
119 pci_to_OF_bus_map
= kmalloc(pci_bus_count
, GFP_KERNEL
);
120 if (!pci_to_OF_bus_map
) {
121 printk(KERN_ERR
"Can't allocate OF bus map !\n");
125 /* We fill the bus map with invalid values, that helps
128 for (i
=0; i
<pci_bus_count
; i
++)
129 pci_to_OF_bus_map
[i
] = 0xff;
131 /* For each hose, we begin searching bridges */
132 list_for_each_entry_safe(hose
, tmp
, &hose_list
, list_node
) {
133 struct device_node
* node
= hose
->dn
;
137 make_one_node_map(node
, hose
->first_busno
);
139 dn
= of_find_node_by_path("/");
140 map_prop
= of_find_property(dn
, "pci-OF-bus-map", NULL
);
142 BUG_ON(pci_bus_count
> map_prop
->length
);
143 memcpy(map_prop
->value
, pci_to_OF_bus_map
, pci_bus_count
);
147 printk("PCI->OF bus map:\n");
148 for (i
=0; i
<pci_bus_count
; i
++) {
149 if (pci_to_OF_bus_map
[i
] == 0xff)
151 printk("%d -> %d\n", i
, pci_to_OF_bus_map
[i
]);
155 #endif // CONFIG_PPC_PCI_OF_BUS_MAP
158 #ifdef CONFIG_PPC_PMAC
160 * Returns the PCI device matching a given OF node
162 int pci_device_from_OF_node(struct device_node
*node
, u8
*bus
, u8
*devfn
)
164 #ifdef CONFIG_PPC_PCI_OF_BUS_MAP
165 struct pci_dev
*dev
= NULL
;
170 /* Check if it might have a chance to be a PCI device */
171 if (!pci_find_hose_for_OF_device(node
))
174 reg
= of_get_property(node
, "reg", &size
);
175 if (!reg
|| size
< 5 * sizeof(u32
))
178 *bus
= (be32_to_cpup(®
[0]) >> 16) & 0xff;
179 *devfn
= (be32_to_cpup(®
[0]) >> 8) & 0xff;
181 #ifndef CONFIG_PPC_PCI_OF_BUS_MAP
184 /* Ok, here we need some tweak. If we have already renumbered
185 * all busses, we can't rely on the OF bus number any more.
186 * the pci_to_OF_bus_map is not enough as several PCI busses
187 * may match the same OF bus number.
189 if (!pci_to_OF_bus_map
)
192 for_each_pci_dev(dev
)
193 if (pci_to_OF_bus_map
[dev
->bus
->number
] == *bus
&&
194 dev
->devfn
== *devfn
) {
195 *bus
= dev
->bus
->number
;
201 #endif // CONFIG_PPC_PCI_OF_BUS_MAP
203 EXPORT_SYMBOL(pci_device_from_OF_node
);
206 #ifdef CONFIG_PPC_PCI_OF_BUS_MAP
207 /* We create the "pci-OF-bus-map" property now so it appears in the
211 pci_create_OF_bus_map(void)
213 struct property
* of_prop
;
214 struct device_node
*dn
;
216 of_prop
= memblock_alloc(sizeof(struct property
) + 256,
219 panic("%s: Failed to allocate %zu bytes\n", __func__
,
220 sizeof(struct property
) + 256);
221 dn
= of_find_node_by_path("/");
223 memset(of_prop
, -1, sizeof(struct property
) + 256);
224 of_prop
->name
= "pci-OF-bus-map";
225 of_prop
->length
= 256;
226 of_prop
->value
= &of_prop
[1];
227 of_add_property(dn
, of_prop
);
231 #endif // CONFIG_PPC_PCI_OF_BUS_MAP
233 void pcibios_setup_phb_io_space(struct pci_controller
*hose
)
235 unsigned long io_offset
;
236 struct resource
*res
= &hose
->io_resource
;
238 /* Fixup IO space offset */
239 io_offset
= pcibios_io_space_offset(hose
);
240 res
->start
+= io_offset
;
241 res
->end
+= io_offset
;
244 static int __init
pcibios_init(void)
246 struct pci_controller
*hose
, *tmp
;
247 #ifndef CONFIG_PPC_PCI_BUS_NUM_DOMAIN_DEPENDENT
251 printk(KERN_INFO
"PCI: Probing PCI hardware\n");
253 #ifdef CONFIG_PPC_PCI_BUS_NUM_DOMAIN_DEPENDENT
255 * Enable PCI domains in /proc when PCI bus numbers are not unique
256 * across all PCI domains to prevent conflicts. And keep PCI domain 0
257 * backward compatible in /proc for video cards.
259 pci_add_flags(PCI_ENABLE_PROC_DOMAINS
| PCI_COMPAT_DOMAIN_0
);
262 if (pci_has_flag(PCI_REASSIGN_ALL_BUS
))
263 pci_assign_all_buses
= 1;
265 /* Scan all of the recorded PCI controllers. */
266 list_for_each_entry_safe(hose
, tmp
, &hose_list
, list_node
) {
267 #ifndef CONFIG_PPC_PCI_BUS_NUM_DOMAIN_DEPENDENT
268 if (pci_assign_all_buses
)
269 hose
->first_busno
= next_busno
;
271 hose
->last_busno
= 0xff;
272 pcibios_scan_phb(hose
);
273 pci_bus_add_devices(hose
->bus
);
274 #ifndef CONFIG_PPC_PCI_BUS_NUM_DOMAIN_DEPENDENT
275 if (pci_assign_all_buses
|| next_busno
<= hose
->last_busno
)
276 next_busno
= hose
->last_busno
+ pcibios_assign_bus_offset
;
280 #if defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_CHRP)
281 #ifdef CONFIG_PPC_PCI_OF_BUS_MAP
282 pci_bus_count
= next_busno
;
284 /* OpenFirmware based machines need a map of OF bus
285 * numbers vs. kernel bus numbers since we may have to
288 if (pci_assign_all_buses
)
289 pcibios_make_OF_bus_map();
293 /* Call common code to handle resource allocation */
294 pcibios_resource_survey();
296 /* Call machine dependent fixup */
297 if (ppc_md
.pcibios_fixup
)
298 ppc_md
.pcibios_fixup();
300 /* Call machine dependent post-init code */
301 if (ppc_md
.pcibios_after_init
)
302 ppc_md
.pcibios_after_init();
307 subsys_initcall(pcibios_init
);
309 static struct pci_controller
*
310 pci_bus_to_hose(int bus
)
312 struct pci_controller
*hose
, *tmp
;
314 list_for_each_entry_safe(hose
, tmp
, &hose_list
, list_node
)
315 if (bus
>= hose
->first_busno
&& bus
<= hose
->last_busno
)
320 /* Provide information on locations of various I/O regions in physical
321 * memory. Do this on a per-card basis so that we choose the right
323 * Note that the returned IO or memory base is a physical address
326 SYSCALL_DEFINE3(pciconfig_iobase
, long, which
,
327 unsigned long, bus
, unsigned long, devfn
)
329 struct pci_controller
* hose
;
330 long result
= -EOPNOTSUPP
;
332 hose
= pci_bus_to_hose(bus
);
337 case IOBASE_BRIDGE_NUMBER
:
338 return (long)hose
->first_busno
;
340 return (long)hose
->mem_offset
[0];
342 return (long)hose
->io_base_phys
;
344 return (long)isa_io_base
;
346 return (long)isa_mem_base
;