xref: /openbmc/linux/arch/powerpc/kernel/rtas_pci.c (revision d0914f503f7ba2cd078b123983562be8951296d3)
1d3d2176aSDavid Gibson /*
2d3d2176aSDavid Gibson  * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
3d3d2176aSDavid Gibson  * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
4d3d2176aSDavid Gibson  *
5d3d2176aSDavid Gibson  * RTAS specific routines for PCI.
6d3d2176aSDavid Gibson  *
7d3d2176aSDavid Gibson  * Based on code from pci.c, chrp_pci.c and pSeries_pci.c
8d3d2176aSDavid Gibson  *
9d3d2176aSDavid Gibson  * This program is free software; you can redistribute it and/or modify
10d3d2176aSDavid Gibson  * it under the terms of the GNU General Public License as published by
11d3d2176aSDavid Gibson  * the Free Software Foundation; either version 2 of the License, or
12d3d2176aSDavid Gibson  * (at your option) any later version.
13d3d2176aSDavid Gibson  *
14d3d2176aSDavid Gibson  * This program is distributed in the hope that it will be useful,
15d3d2176aSDavid Gibson  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16d3d2176aSDavid Gibson  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17d3d2176aSDavid Gibson  * GNU General Public License for more details.
18d3d2176aSDavid Gibson  *
19d3d2176aSDavid Gibson  * You should have received a copy of the GNU General Public License
20d3d2176aSDavid Gibson  * along with this program; if not, write to the Free Software
21d3d2176aSDavid Gibson  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22d3d2176aSDavid Gibson  */
23d3d2176aSDavid Gibson 
24d3d2176aSDavid Gibson #include <linux/kernel.h>
25d3d2176aSDavid Gibson #include <linux/threads.h>
26d3d2176aSDavid Gibson #include <linux/pci.h>
27d3d2176aSDavid Gibson #include <linux/string.h>
28d3d2176aSDavid Gibson #include <linux/init.h>
29d3d2176aSDavid Gibson #include <linux/bootmem.h>
30d3d2176aSDavid Gibson 
31d3d2176aSDavid Gibson #include <asm/io.h>
32d3d2176aSDavid Gibson #include <asm/pgtable.h>
33d3d2176aSDavid Gibson #include <asm/irq.h>
34d3d2176aSDavid Gibson #include <asm/prom.h>
35d3d2176aSDavid Gibson #include <asm/machdep.h>
36d3d2176aSDavid Gibson #include <asm/pci-bridge.h>
37d3d2176aSDavid Gibson #include <asm/iommu.h>
38d3d2176aSDavid Gibson #include <asm/rtas.h>
39d3d2176aSDavid Gibson #include <asm/mpic.h>
40d3d2176aSDavid Gibson #include <asm/ppc-pci.h>
4168a64357SBenjamin Herrenschmidt #include <asm/eeh.h>
42d3d2176aSDavid Gibson 
43d3d2176aSDavid Gibson /* RTAS tokens */
44d3d2176aSDavid Gibson static int read_pci_config;
45d3d2176aSDavid Gibson static int write_pci_config;
46d3d2176aSDavid Gibson static int ibm_read_pci_config;
47d3d2176aSDavid Gibson static int ibm_write_pci_config;
48d3d2176aSDavid Gibson 
49d3d2176aSDavid Gibson static inline int config_access_valid(struct pci_dn *dn, int where)
50d3d2176aSDavid Gibson {
51d3d2176aSDavid Gibson 	if (where < 256)
52d3d2176aSDavid Gibson 		return 1;
53d3d2176aSDavid Gibson 	if (where < 4096 && dn->pci_ext_config_space)
54d3d2176aSDavid Gibson 		return 1;
55d3d2176aSDavid Gibson 
56d3d2176aSDavid Gibson 	return 0;
57d3d2176aSDavid Gibson }
58d3d2176aSDavid Gibson 
597684b40cSLinas Vepstas int rtas_read_config(struct pci_dn *pdn, int where, int size, u32 *val)
60d3d2176aSDavid Gibson {
61d3d2176aSDavid Gibson 	int returnval = -1;
62d3d2176aSDavid Gibson 	unsigned long buid, addr;
63d3d2176aSDavid Gibson 	int ret;
64d3d2176aSDavid Gibson 
65d3d2176aSDavid Gibson 	if (!pdn)
66d3d2176aSDavid Gibson 		return PCIBIOS_DEVICE_NOT_FOUND;
67d3d2176aSDavid Gibson 	if (!config_access_valid(pdn, where))
68d3d2176aSDavid Gibson 		return PCIBIOS_BAD_REGISTER_NUMBER;
69d3d2176aSDavid Gibson 
706f3d5d3cSMichael Ellerman 	addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
71d3d2176aSDavid Gibson 	buid = pdn->phb->buid;
72d3d2176aSDavid Gibson 	if (buid) {
73d3d2176aSDavid Gibson 		ret = rtas_call(ibm_read_pci_config, 4, 2, &returnval,
74d3d2176aSDavid Gibson 				addr, BUID_HI(buid), BUID_LO(buid), size);
75d3d2176aSDavid Gibson 	} else {
76d3d2176aSDavid Gibson 		ret = rtas_call(read_pci_config, 2, 2, &returnval, addr, size);
77d3d2176aSDavid Gibson 	}
78d3d2176aSDavid Gibson 	*val = returnval;
79d3d2176aSDavid Gibson 
80d3d2176aSDavid Gibson 	if (ret)
81d3d2176aSDavid Gibson 		return PCIBIOS_DEVICE_NOT_FOUND;
82d3d2176aSDavid Gibson 
83d3d2176aSDavid Gibson 	return PCIBIOS_SUCCESSFUL;
84d3d2176aSDavid Gibson }
85d3d2176aSDavid Gibson 
86d3d2176aSDavid Gibson static int rtas_pci_read_config(struct pci_bus *bus,
87d3d2176aSDavid Gibson 				unsigned int devfn,
88d3d2176aSDavid Gibson 				int where, int size, u32 *val)
89d3d2176aSDavid Gibson {
90d3d2176aSDavid Gibson 	struct device_node *busdn, *dn;
91*d0914f50SGavin Shan 	struct pci_dn *pdn;
92*d0914f50SGavin Shan 	bool found = false;
93*d0914f50SGavin Shan #ifdef CONFIG_EEH
94*d0914f50SGavin Shan 	struct eeh_dev *edev;
95*d0914f50SGavin Shan #endif
96*d0914f50SGavin Shan 	int ret;
97d3d2176aSDavid Gibson 
98d3d2176aSDavid Gibson 	/* Search only direct children of the bus */
99*d0914f50SGavin Shan 	*val = 0xFFFFFFFF;
100*d0914f50SGavin Shan 	busdn = pci_bus_to_OF_node(bus);
101d3d2176aSDavid Gibson 	for (dn = busdn->child; dn; dn = dn->sibling) {
102*d0914f50SGavin Shan 		pdn = PCI_DN(dn);
103d3d2176aSDavid Gibson 		if (pdn && pdn->devfn == devfn
104*d0914f50SGavin Shan 		    && of_device_is_available(dn)) {
105*d0914f50SGavin Shan 			found = true;
106*d0914f50SGavin Shan 			break;
107*d0914f50SGavin Shan 		}
108d3d2176aSDavid Gibson 	}
109d3d2176aSDavid Gibson 
110*d0914f50SGavin Shan 	if (!found)
111d3d2176aSDavid Gibson 		return PCIBIOS_DEVICE_NOT_FOUND;
112*d0914f50SGavin Shan #ifdef CONFIG_EEH
113*d0914f50SGavin Shan 	edev = of_node_to_eeh_dev(dn);
114*d0914f50SGavin Shan 	if (edev && edev->pe && edev->pe->state & EEH_PE_RESET)
115*d0914f50SGavin Shan 		return PCIBIOS_DEVICE_NOT_FOUND;
116*d0914f50SGavin Shan #endif
117*d0914f50SGavin Shan 
118*d0914f50SGavin Shan 	ret = rtas_read_config(pdn, where, size, val);
119*d0914f50SGavin Shan 	if (*val == EEH_IO_ERROR_VALUE(size) &&
120*d0914f50SGavin Shan 	    eeh_dev_check_failure(of_node_to_eeh_dev(dn)))
121*d0914f50SGavin Shan 		return PCIBIOS_DEVICE_NOT_FOUND;
122*d0914f50SGavin Shan 
123*d0914f50SGavin Shan 	return ret;
124d3d2176aSDavid Gibson }
125d3d2176aSDavid Gibson 
126d3d2176aSDavid Gibson int rtas_write_config(struct pci_dn *pdn, int where, int size, u32 val)
127d3d2176aSDavid Gibson {
128d3d2176aSDavid Gibson 	unsigned long buid, addr;
129d3d2176aSDavid Gibson 	int ret;
130d3d2176aSDavid Gibson 
131d3d2176aSDavid Gibson 	if (!pdn)
132d3d2176aSDavid Gibson 		return PCIBIOS_DEVICE_NOT_FOUND;
133d3d2176aSDavid Gibson 	if (!config_access_valid(pdn, where))
134d3d2176aSDavid Gibson 		return PCIBIOS_BAD_REGISTER_NUMBER;
135d3d2176aSDavid Gibson 
1366f3d5d3cSMichael Ellerman 	addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
137d3d2176aSDavid Gibson 	buid = pdn->phb->buid;
138d3d2176aSDavid Gibson 	if (buid) {
139d3d2176aSDavid Gibson 		ret = rtas_call(ibm_write_pci_config, 5, 1, NULL, addr,
140d3d2176aSDavid Gibson 			BUID_HI(buid), BUID_LO(buid), size, (ulong) val);
141d3d2176aSDavid Gibson 	} else {
142d3d2176aSDavid Gibson 		ret = rtas_call(write_pci_config, 3, 1, NULL, addr, size, (ulong)val);
143d3d2176aSDavid Gibson 	}
144d3d2176aSDavid Gibson 
145d3d2176aSDavid Gibson 	if (ret)
146d3d2176aSDavid Gibson 		return PCIBIOS_DEVICE_NOT_FOUND;
147d3d2176aSDavid Gibson 
148d3d2176aSDavid Gibson 	return PCIBIOS_SUCCESSFUL;
149d3d2176aSDavid Gibson }
150d3d2176aSDavid Gibson 
151d3d2176aSDavid Gibson static int rtas_pci_write_config(struct pci_bus *bus,
152d3d2176aSDavid Gibson 				 unsigned int devfn,
153d3d2176aSDavid Gibson 				 int where, int size, u32 val)
154d3d2176aSDavid Gibson {
155d3d2176aSDavid Gibson 	struct device_node *busdn, *dn;
156*d0914f50SGavin Shan 	struct pci_dn *pdn;
157*d0914f50SGavin Shan 	bool found = false;
158*d0914f50SGavin Shan #ifdef CONFIG_EEH
159*d0914f50SGavin Shan 	struct eeh_dev *edev;
160*d0914f50SGavin Shan #endif
161*d0914f50SGavin Shan 	int ret;
162d3d2176aSDavid Gibson 
163d3d2176aSDavid Gibson 	/* Search only direct children of the bus */
164*d0914f50SGavin Shan 	busdn = pci_bus_to_OF_node(bus);
165d3d2176aSDavid Gibson 	for (dn = busdn->child; dn; dn = dn->sibling) {
166*d0914f50SGavin Shan 		pdn = PCI_DN(dn);
167d3d2176aSDavid Gibson 		if (pdn && pdn->devfn == devfn
168*d0914f50SGavin Shan 		    && of_device_is_available(dn)) {
169*d0914f50SGavin Shan 			found = true;
170*d0914f50SGavin Shan 			break;
171d3d2176aSDavid Gibson 		}
172*d0914f50SGavin Shan 	}
173*d0914f50SGavin Shan 
174*d0914f50SGavin Shan 	if (!found)
175d3d2176aSDavid Gibson 		return PCIBIOS_DEVICE_NOT_FOUND;
176*d0914f50SGavin Shan #ifdef CONFIG_EEH
177*d0914f50SGavin Shan 	edev = of_node_to_eeh_dev(dn);
178*d0914f50SGavin Shan 	if (edev && edev->pe && (edev->pe->state & EEH_PE_RESET))
179*d0914f50SGavin Shan 		return PCIBIOS_DEVICE_NOT_FOUND;
180*d0914f50SGavin Shan #endif
181*d0914f50SGavin Shan 	ret = rtas_write_config(pdn, where, size, val);
182*d0914f50SGavin Shan 
183*d0914f50SGavin Shan 	return ret;
184d3d2176aSDavid Gibson }
185d3d2176aSDavid Gibson 
1861c21a293SMichael Ellerman static struct pci_ops rtas_pci_ops = {
1878674e0c9SNathan Lynch 	.read = rtas_pci_read_config,
1888674e0c9SNathan Lynch 	.write = rtas_pci_write_config,
189d3d2176aSDavid Gibson };
190d3d2176aSDavid Gibson 
1911c21a293SMichael Ellerman static int is_python(struct device_node *dev)
192d3d2176aSDavid Gibson {
193e2eb6392SStephen Rothwell 	const char *model = of_get_property(dev, "model", NULL);
194d3d2176aSDavid Gibson 
195d3d2176aSDavid Gibson 	if (model && strstr(model, "Python"))
196d3d2176aSDavid Gibson 		return 1;
197d3d2176aSDavid Gibson 
198d3d2176aSDavid Gibson 	return 0;
199d3d2176aSDavid Gibson }
200d3d2176aSDavid Gibson 
201cc5d0189SBenjamin Herrenschmidt static void python_countermeasures(struct device_node *dev)
202d3d2176aSDavid Gibson {
203cc5d0189SBenjamin Herrenschmidt 	struct resource registers;
204d3d2176aSDavid Gibson 	void __iomem *chip_regs;
205d3d2176aSDavid Gibson 	volatile u32 val;
206d3d2176aSDavid Gibson 
207cc5d0189SBenjamin Herrenschmidt 	if (of_address_to_resource(dev, 0, &registers)) {
208cc5d0189SBenjamin Herrenschmidt 		printk(KERN_ERR "Can't get address for Python workarounds !\n");
209d3d2176aSDavid Gibson 		return;
210cc5d0189SBenjamin Herrenschmidt 	}
211d3d2176aSDavid Gibson 
212d3d2176aSDavid Gibson 	/* Python's register file is 1 MB in size. */
213cc5d0189SBenjamin Herrenschmidt 	chip_regs = ioremap(registers.start & ~(0xfffffUL), 0x100000);
214d3d2176aSDavid Gibson 
215d3d2176aSDavid Gibson 	/*
216d3d2176aSDavid Gibson 	 * Firmware doesn't always clear this bit which is critical
217d3d2176aSDavid Gibson 	 * for good performance - Anton
218d3d2176aSDavid Gibson 	 */
219d3d2176aSDavid Gibson 
220d3d2176aSDavid Gibson #define PRG_CL_RESET_VALID 0x00010000
221d3d2176aSDavid Gibson 
222d3d2176aSDavid Gibson 	val = in_be32(chip_regs + 0xf6030);
223d3d2176aSDavid Gibson 	if (val & PRG_CL_RESET_VALID) {
224d3d2176aSDavid Gibson 		printk(KERN_INFO "Python workaround: ");
225d3d2176aSDavid Gibson 		val &= ~PRG_CL_RESET_VALID;
226d3d2176aSDavid Gibson 		out_be32(chip_regs + 0xf6030, val);
227d3d2176aSDavid Gibson 		/*
228d3d2176aSDavid Gibson 		 * We must read it back for changes to
229d3d2176aSDavid Gibson 		 * take effect
230d3d2176aSDavid Gibson 		 */
231d3d2176aSDavid Gibson 		val = in_be32(chip_regs + 0xf6030);
232d3d2176aSDavid Gibson 		printk("reg0: %x\n", val);
233d3d2176aSDavid Gibson 	}
234d3d2176aSDavid Gibson 
235d3d2176aSDavid Gibson 	iounmap(chip_regs);
236d3d2176aSDavid Gibson }
237d3d2176aSDavid Gibson 
238d3d2176aSDavid Gibson void __init init_pci_config_tokens(void)
239d3d2176aSDavid Gibson {
240d3d2176aSDavid Gibson 	read_pci_config = rtas_token("read-pci-config");
241d3d2176aSDavid Gibson 	write_pci_config = rtas_token("write-pci-config");
242d3d2176aSDavid Gibson 	ibm_read_pci_config = rtas_token("ibm,read-pci-config");
243d3d2176aSDavid Gibson 	ibm_write_pci_config = rtas_token("ibm,write-pci-config");
244d3d2176aSDavid Gibson }
245d3d2176aSDavid Gibson 
246cad5cef6SGreg Kroah-Hartman unsigned long get_phb_buid(struct device_node *phb)
247d3d2176aSDavid Gibson {
2486506e710SBenjamin Herrenschmidt 	struct resource r;
249d3d2176aSDavid Gibson 
2506506e710SBenjamin Herrenschmidt 	if (ibm_read_pci_config == -1)
251d3d2176aSDavid Gibson 		return 0;
2526506e710SBenjamin Herrenschmidt 	if (of_address_to_resource(phb, 0, &r))
253d3d2176aSDavid Gibson 		return 0;
2546506e710SBenjamin Herrenschmidt 	return r.start;
255d3d2176aSDavid Gibson }
256d3d2176aSDavid Gibson 
257d3d2176aSDavid Gibson static int phb_set_bus_ranges(struct device_node *dev,
258d3d2176aSDavid Gibson 			      struct pci_controller *phb)
259d3d2176aSDavid Gibson {
260cf059965SCedric Le Goater 	const __be32 *bus_range;
261d3d2176aSDavid Gibson 	unsigned int len;
262d3d2176aSDavid Gibson 
263e2eb6392SStephen Rothwell 	bus_range = of_get_property(dev, "bus-range", &len);
264d3d2176aSDavid Gibson 	if (bus_range == NULL || len < 2 * sizeof(int)) {
265d3d2176aSDavid Gibson 		return 1;
266d3d2176aSDavid Gibson  	}
267d3d2176aSDavid Gibson 
268cf059965SCedric Le Goater 	phb->first_busno = be32_to_cpu(bus_range[0]);
269cf059965SCedric Le Goater 	phb->last_busno  = be32_to_cpu(bus_range[1]);
270d3d2176aSDavid Gibson 
271d3d2176aSDavid Gibson 	return 0;
272d3d2176aSDavid Gibson }
273d3d2176aSDavid Gibson 
274cad5cef6SGreg Kroah-Hartman int rtas_setup_phb(struct pci_controller *phb)
275d3d2176aSDavid Gibson {
27644ef3390SStephen Rothwell 	struct device_node *dev = phb->dn;
2774c9d2800SBenjamin Herrenschmidt 
278d3d2176aSDavid Gibson 	if (is_python(dev))
279cc5d0189SBenjamin Herrenschmidt 		python_countermeasures(dev);
280d3d2176aSDavid Gibson 
281d3d2176aSDavid Gibson 	if (phb_set_bus_ranges(dev, phb))
282d3d2176aSDavid Gibson 		return 1;
283d3d2176aSDavid Gibson 
284d3d2176aSDavid Gibson 	phb->ops = &rtas_pci_ops;
285d3d2176aSDavid Gibson 	phb->buid = get_phb_buid(dev);
286d3d2176aSDavid Gibson 
287d3d2176aSDavid Gibson 	return 0;
288d3d2176aSDavid Gibson }
289d3d2176aSDavid Gibson 
29036241ce6SStephen Rothwell void __init find_and_init_phbs(void)
291d3d2176aSDavid Gibson {
292d3d2176aSDavid Gibson 	struct device_node *node;
293d3d2176aSDavid Gibson 	struct pci_controller *phb;
294d3d2176aSDavid Gibson 	struct device_node *root = of_find_node_by_path("/");
295d3d2176aSDavid Gibson 
29685e99b9fSStephen Rothwell 	for_each_child_of_node(root, node) {
297bb53bb3dSJake Moilanen 		if (node->type == NULL || (strcmp(node->type, "pci") != 0 &&
298bb53bb3dSJake Moilanen 					   strcmp(node->type, "pciex") != 0))
299d3d2176aSDavid Gibson 			continue;
300d3d2176aSDavid Gibson 
301b5166cc2SBenjamin Herrenschmidt 		phb = pcibios_alloc_controller(node);
302d3d2176aSDavid Gibson 		if (!phb)
303d3d2176aSDavid Gibson 			continue;
3044c9d2800SBenjamin Herrenschmidt 		rtas_setup_phb(phb);
305d3d2176aSDavid Gibson 		pci_process_bridge_OF_ranges(phb, node, 0);
3063d5134eeSBenjamin Herrenschmidt 		isa_bridge_find_early(phb);
307d3d2176aSDavid Gibson 	}
308d3d2176aSDavid Gibson 
309d3d2176aSDavid Gibson 	of_node_put(root);
310d3d2176aSDavid Gibson 	pci_devs_phb_init();
311d3d2176aSDavid Gibson 
312d3d2176aSDavid Gibson 	/*
313673c9756SBjorn Helgaas 	 * PCI_PROBE_ONLY and PCI_REASSIGN_ALL_BUS can be set via properties
314d3d2176aSDavid Gibson 	 * in chosen.
315d3d2176aSDavid Gibson 	 */
316d3d2176aSDavid Gibson 	if (of_chosen) {
317a7f67bdfSJeremy Kerr 		const int *prop;
318d3d2176aSDavid Gibson 
319e2eb6392SStephen Rothwell 		prop = of_get_property(of_chosen,
320a7f67bdfSJeremy Kerr 				"linux,pci-probe-only", NULL);
321673c9756SBjorn Helgaas 		if (prop) {
322673c9756SBjorn Helgaas 			if (*prop)
323673c9756SBjorn Helgaas 				pci_add_flags(PCI_PROBE_ONLY);
324673c9756SBjorn Helgaas 			else
325673c9756SBjorn Helgaas 				pci_clear_flags(PCI_PROBE_ONLY);
326673c9756SBjorn Helgaas 		}
327d3d2176aSDavid Gibson 
328fc3fb71cSBenjamin Herrenschmidt #ifdef CONFIG_PPC32 /* Will be made generic soon */
329e2eb6392SStephen Rothwell 		prop = of_get_property(of_chosen,
330d3d2176aSDavid Gibson 				"linux,pci-assign-all-buses", NULL);
331fc3fb71cSBenjamin Herrenschmidt 		if (prop && *prop)
3320e47ff1cSRob Herring 			pci_add_flags(PCI_REASSIGN_ALL_BUS);
333fc3fb71cSBenjamin Herrenschmidt #endif /* CONFIG_PPC32 */
334d3d2176aSDavid Gibson 	}
335d3d2176aSDavid Gibson }
336