blob: 8869001ab5d7691baae77296e6ca4bdd7aec010d [file] [log] [blame]
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +10001/*
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +10002 * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
3 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
4 *
5 * RTAS specific routines for PCI.
linasae65a392005-11-03 18:42:26 -06006 *
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +10007 * Based on code from pci.c, chrp_pci.c and pSeries_pci.c
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
linasae65a392005-11-03 18:42:26 -060013 *
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100014 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
linasae65a392005-11-03 18:42:26 -060018 *
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100019 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#include <linux/kernel.h>
25#include <linux/threads.h>
26#include <linux/pci.h>
27#include <linux/string.h>
28#include <linux/init.h>
29#include <linux/bootmem.h>
30
31#include <asm/io.h>
32#include <asm/pgtable.h>
33#include <asm/irq.h>
34#include <asm/prom.h>
35#include <asm/machdep.h>
36#include <asm/pci-bridge.h>
37#include <asm/iommu.h>
38#include <asm/rtas.h>
Stephen Rothwellbbeb3f42005-09-27 13:51:59 +100039#include <asm/mpic.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100040#include <asm/ppc-pci.h>
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +110041#include <asm/eeh.h>
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100042
43/* RTAS tokens */
44static int read_pci_config;
45static int write_pci_config;
46static int ibm_read_pci_config;
47static int ibm_write_pci_config;
48
linasae65a392005-11-03 18:42:26 -060049static inline int config_access_valid(struct pci_dn *dn, int where)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100050{
51 if (where < 256)
52 return 1;
53 if (where < 4096 && dn->pci_ext_config_space)
54 return 1;
55
56 return 0;
57}
58
Linas Vepstas7684b402005-11-03 18:55:19 -060059int rtas_read_config(struct pci_dn *pdn, int where, int size, u32 *val)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100060{
61 int returnval = -1;
62 unsigned long buid, addr;
63 int ret;
64
linasae65a392005-11-03 18:42:26 -060065 if (!pdn)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100066 return PCIBIOS_DEVICE_NOT_FOUND;
Paul Mackerras16353172005-09-06 13:17:54 +100067 if (!config_access_valid(pdn, where))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100068 return PCIBIOS_BAD_REGISTER_NUMBER;
69
Michael Ellerman6f3d5d32006-08-16 22:04:14 +100070 addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
Paul Mackerras16353172005-09-06 13:17:54 +100071 buid = pdn->phb->buid;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100072 if (buid) {
73 ret = rtas_call(ibm_read_pci_config, 4, 2, &returnval,
linasae65a392005-11-03 18:42:26 -060074 addr, BUID_HI(buid), BUID_LO(buid), size);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100075 } else {
76 ret = rtas_call(read_pci_config, 2, 2, &returnval, addr, size);
77 }
78 *val = returnval;
79
80 if (ret)
81 return PCIBIOS_DEVICE_NOT_FOUND;
82
Paul Mackerras16353172005-09-06 13:17:54 +100083 if (returnval == EEH_IO_ERROR_VALUE(size) &&
linasae65a392005-11-03 18:42:26 -060084 eeh_dn_check_failure (pdn->node, NULL))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100085 return PCIBIOS_DEVICE_NOT_FOUND;
86
87 return PCIBIOS_SUCCESSFUL;
88}
89
90static int rtas_pci_read_config(struct pci_bus *bus,
91 unsigned int devfn,
92 int where, int size, u32 *val)
93{
94 struct device_node *busdn, *dn;
95
96 if (bus->self)
97 busdn = pci_device_to_OF_node(bus->self);
98 else
99 busdn = bus->sysdata; /* must be a phb */
100
101 /* Search only direct children of the bus */
linasae65a392005-11-03 18:42:26 -0600102 for (dn = busdn->child; dn; dn = dn->sibling) {
103 struct pci_dn *pdn = PCI_DN(dn);
104 if (pdn && pdn->devfn == devfn
Nathan Lynchc6d4d5a2008-03-14 06:52:10 +1100105 && of_device_is_available(dn))
linasae65a392005-11-03 18:42:26 -0600106 return rtas_read_config(pdn, where, size, val);
107 }
Paul Mackerras16353172005-09-06 13:17:54 +1000108
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000109 return PCIBIOS_DEVICE_NOT_FOUND;
110}
111
linasae65a392005-11-03 18:42:26 -0600112int rtas_write_config(struct pci_dn *pdn, int where, int size, u32 val)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000113{
114 unsigned long buid, addr;
115 int ret;
116
linasae65a392005-11-03 18:42:26 -0600117 if (!pdn)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000118 return PCIBIOS_DEVICE_NOT_FOUND;
Paul Mackerras16353172005-09-06 13:17:54 +1000119 if (!config_access_valid(pdn, where))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000120 return PCIBIOS_BAD_REGISTER_NUMBER;
121
Michael Ellerman6f3d5d32006-08-16 22:04:14 +1000122 addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
Paul Mackerras16353172005-09-06 13:17:54 +1000123 buid = pdn->phb->buid;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000124 if (buid) {
linasae65a392005-11-03 18:42:26 -0600125 ret = rtas_call(ibm_write_pci_config, 5, 1, NULL, addr,
126 BUID_HI(buid), BUID_LO(buid), size, (ulong) val);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000127 } else {
128 ret = rtas_call(write_pci_config, 3, 1, NULL, addr, size, (ulong)val);
129 }
130
131 if (ret)
132 return PCIBIOS_DEVICE_NOT_FOUND;
133
134 return PCIBIOS_SUCCESSFUL;
135}
136
137static int rtas_pci_write_config(struct pci_bus *bus,
138 unsigned int devfn,
139 int where, int size, u32 val)
140{
141 struct device_node *busdn, *dn;
142
143 if (bus->self)
144 busdn = pci_device_to_OF_node(bus->self);
145 else
146 busdn = bus->sysdata; /* must be a phb */
147
148 /* Search only direct children of the bus */
linasae65a392005-11-03 18:42:26 -0600149 for (dn = busdn->child; dn; dn = dn->sibling) {
150 struct pci_dn *pdn = PCI_DN(dn);
151 if (pdn && pdn->devfn == devfn
Nathan Lynchc6d4d5a2008-03-14 06:52:10 +1100152 && of_device_is_available(dn))
linasae65a392005-11-03 18:42:26 -0600153 return rtas_write_config(pdn, where, size, val);
154 }
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000155 return PCIBIOS_DEVICE_NOT_FOUND;
156}
157
Michael Ellerman1c21a292008-05-08 14:27:19 +1000158static struct pci_ops rtas_pci_ops = {
Nathan Lynch8674e0c2007-08-10 05:18:36 +1000159 .read = rtas_pci_read_config,
160 .write = rtas_pci_write_config,
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000161};
162
Michael Ellerman1c21a292008-05-08 14:27:19 +1000163static int is_python(struct device_node *dev)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000164{
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000165 const char *model = of_get_property(dev, "model", NULL);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000166
167 if (model && strstr(model, "Python"))
168 return 1;
169
170 return 0;
171}
172
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100173static void python_countermeasures(struct device_node *dev)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000174{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100175 struct resource registers;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000176 void __iomem *chip_regs;
177 volatile u32 val;
178
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100179 if (of_address_to_resource(dev, 0, &registers)) {
180 printk(KERN_ERR "Can't get address for Python workarounds !\n");
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000181 return;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100182 }
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000183
184 /* Python's register file is 1 MB in size. */
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100185 chip_regs = ioremap(registers.start & ~(0xfffffUL), 0x100000);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000186
linasae65a392005-11-03 18:42:26 -0600187 /*
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000188 * Firmware doesn't always clear this bit which is critical
189 * for good performance - Anton
190 */
191
192#define PRG_CL_RESET_VALID 0x00010000
193
194 val = in_be32(chip_regs + 0xf6030);
195 if (val & PRG_CL_RESET_VALID) {
196 printk(KERN_INFO "Python workaround: ");
197 val &= ~PRG_CL_RESET_VALID;
198 out_be32(chip_regs + 0xf6030, val);
199 /*
200 * We must read it back for changes to
201 * take effect
202 */
203 val = in_be32(chip_regs + 0xf6030);
204 printk("reg0: %x\n", val);
205 }
206
207 iounmap(chip_regs);
208}
209
210void __init init_pci_config_tokens (void)
211{
212 read_pci_config = rtas_token("read-pci-config");
213 write_pci_config = rtas_token("write-pci-config");
214 ibm_read_pci_config = rtas_token("ibm,read-pci-config");
215 ibm_write_pci_config = rtas_token("ibm,write-pci-config");
216}
217
218unsigned long __devinit get_phb_buid (struct device_node *phb)
219{
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100220 struct resource r;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000221
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100222 if (ibm_read_pci_config == -1)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000223 return 0;
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100224 if (of_address_to_resource(phb, 0, &r))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000225 return 0;
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100226 return r.start;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000227}
228
229static int phb_set_bus_ranges(struct device_node *dev,
230 struct pci_controller *phb)
231{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000232 const int *bus_range;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000233 unsigned int len;
234
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000235 bus_range = of_get_property(dev, "bus-range", &len);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000236 if (bus_range == NULL || len < 2 * sizeof(int)) {
237 return 1;
238 }
linasae65a392005-11-03 18:42:26 -0600239
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000240 phb->first_busno = bus_range[0];
241 phb->last_busno = bus_range[1];
242
243 return 0;
244}
245
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100246int __devinit rtas_setup_phb(struct pci_controller *phb)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000247{
Stephen Rothwell44ef3392007-12-10 14:33:21 +1100248 struct device_node *dev = phb->dn;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100249
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000250 if (is_python(dev))
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100251 python_countermeasures(dev);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000252
253 if (phb_set_bus_ranges(dev, phb))
254 return 1;
255
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000256 phb->ops = &rtas_pci_ops;
257 phb->buid = get_phb_buid(dev);
258
259 return 0;
260}
261
Stephen Rothwell36241ce2007-03-04 17:07:38 +1100262void __init find_and_init_phbs(void)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000263{
264 struct device_node *node;
265 struct pci_controller *phb;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000266 struct device_node *root = of_find_node_by_path("/");
267
Stephen Rothwell85e99b92008-01-03 15:13:37 +1100268 for_each_child_of_node(root, node) {
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500269 if (node->type == NULL || (strcmp(node->type, "pci") != 0 &&
270 strcmp(node->type, "pciex") != 0))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000271 continue;
272
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100273 phb = pcibios_alloc_controller(node);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000274 if (!phb)
275 continue;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100276 rtas_setup_phb(phb);
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000277 pci_process_bridge_OF_ranges(phb, node, 0);
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000278 isa_bridge_find_early(phb);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000279 }
280
281 of_node_put(root);
282 pci_devs_phb_init();
283
284 /*
285 * pci_probe_only and pci_assign_all_buses can be set via properties
286 * in chosen.
287 */
288 if (of_chosen) {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000289 const int *prop;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000290
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000291 prop = of_get_property(of_chosen,
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000292 "linux,pci-probe-only", NULL);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000293 if (prop)
294 pci_probe_only = *prop;
295
Benjamin Herrenschmidtfc3fb712007-12-20 14:54:46 +1100296#ifdef CONFIG_PPC32 /* Will be made generic soon */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000297 prop = of_get_property(of_chosen,
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000298 "linux,pci-assign-all-buses", NULL);
Benjamin Herrenschmidtfc3fb712007-12-20 14:54:46 +1100299 if (prop && *prop)
300 ppc_pci_flags |= PPC_PCI_REASSIGN_ALL_BUS;
301#endif /* CONFIG_PPC32 */
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000302 }
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000303}