blob: 03cacc25a0aeb6e08d9680472bbb2b60fcb8cb75 [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>
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100041
42/* RTAS tokens */
43static int read_pci_config;
44static int write_pci_config;
45static int ibm_read_pci_config;
46static int ibm_write_pci_config;
47
linasae65a392005-11-03 18:42:26 -060048static inline int config_access_valid(struct pci_dn *dn, int where)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100049{
50 if (where < 256)
51 return 1;
52 if (where < 4096 && dn->pci_ext_config_space)
53 return 1;
54
55 return 0;
56}
57
Jake Moilanen293da762005-06-09 09:31:12 -050058static int of_device_available(struct device_node * dn)
59{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100060 const char *status;
Jake Moilanen293da762005-06-09 09:31:12 -050061
62 status = get_property(dn, "status", NULL);
63
64 if (!status)
65 return 1;
66
67 if (!strcmp(status, "okay"))
68 return 1;
69
70 return 0;
71}
72
Linas Vepstas7684b402005-11-03 18:55:19 -060073int rtas_read_config(struct pci_dn *pdn, int where, int size, u32 *val)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100074{
75 int returnval = -1;
76 unsigned long buid, addr;
77 int ret;
78
linasae65a392005-11-03 18:42:26 -060079 if (!pdn)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100080 return PCIBIOS_DEVICE_NOT_FOUND;
Paul Mackerras16353172005-09-06 13:17:54 +100081 if (!config_access_valid(pdn, where))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100082 return PCIBIOS_BAD_REGISTER_NUMBER;
83
Michael Ellerman6f3d5d32006-08-16 22:04:14 +100084 addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
Paul Mackerras16353172005-09-06 13:17:54 +100085 buid = pdn->phb->buid;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100086 if (buid) {
87 ret = rtas_call(ibm_read_pci_config, 4, 2, &returnval,
linasae65a392005-11-03 18:42:26 -060088 addr, BUID_HI(buid), BUID_LO(buid), size);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100089 } else {
90 ret = rtas_call(read_pci_config, 2, 2, &returnval, addr, size);
91 }
92 *val = returnval;
93
94 if (ret)
95 return PCIBIOS_DEVICE_NOT_FOUND;
96
Paul Mackerras16353172005-09-06 13:17:54 +100097 if (returnval == EEH_IO_ERROR_VALUE(size) &&
linasae65a392005-11-03 18:42:26 -060098 eeh_dn_check_failure (pdn->node, NULL))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +100099 return PCIBIOS_DEVICE_NOT_FOUND;
100
101 return PCIBIOS_SUCCESSFUL;
102}
103
104static int rtas_pci_read_config(struct pci_bus *bus,
105 unsigned int devfn,
106 int where, int size, u32 *val)
107{
108 struct device_node *busdn, *dn;
109
110 if (bus->self)
111 busdn = pci_device_to_OF_node(bus->self);
112 else
113 busdn = bus->sysdata; /* must be a phb */
114
115 /* Search only direct children of the bus */
linasae65a392005-11-03 18:42:26 -0600116 for (dn = busdn->child; dn; dn = dn->sibling) {
117 struct pci_dn *pdn = PCI_DN(dn);
118 if (pdn && pdn->devfn == devfn
Paul Mackerras16353172005-09-06 13:17:54 +1000119 && of_device_available(dn))
linasae65a392005-11-03 18:42:26 -0600120 return rtas_read_config(pdn, where, size, val);
121 }
Paul Mackerras16353172005-09-06 13:17:54 +1000122
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000123 return PCIBIOS_DEVICE_NOT_FOUND;
124}
125
linasae65a392005-11-03 18:42:26 -0600126int rtas_write_config(struct pci_dn *pdn, int where, int size, u32 val)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000127{
128 unsigned long buid, addr;
129 int ret;
130
linasae65a392005-11-03 18:42:26 -0600131 if (!pdn)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000132 return PCIBIOS_DEVICE_NOT_FOUND;
Paul Mackerras16353172005-09-06 13:17:54 +1000133 if (!config_access_valid(pdn, where))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000134 return PCIBIOS_BAD_REGISTER_NUMBER;
135
Michael Ellerman6f3d5d32006-08-16 22:04:14 +1000136 addr = rtas_config_addr(pdn->busno, pdn->devfn, where);
Paul Mackerras16353172005-09-06 13:17:54 +1000137 buid = pdn->phb->buid;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000138 if (buid) {
linasae65a392005-11-03 18:42:26 -0600139 ret = rtas_call(ibm_write_pci_config, 5, 1, NULL, addr,
140 BUID_HI(buid), BUID_LO(buid), size, (ulong) val);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000141 } else {
142 ret = rtas_call(write_pci_config, 3, 1, NULL, addr, size, (ulong)val);
143 }
144
145 if (ret)
146 return PCIBIOS_DEVICE_NOT_FOUND;
147
148 return PCIBIOS_SUCCESSFUL;
149}
150
151static int rtas_pci_write_config(struct pci_bus *bus,
152 unsigned int devfn,
153 int where, int size, u32 val)
154{
155 struct device_node *busdn, *dn;
156
157 if (bus->self)
158 busdn = pci_device_to_OF_node(bus->self);
159 else
160 busdn = bus->sysdata; /* must be a phb */
161
162 /* Search only direct children of the bus */
linasae65a392005-11-03 18:42:26 -0600163 for (dn = busdn->child; dn; dn = dn->sibling) {
164 struct pci_dn *pdn = PCI_DN(dn);
165 if (pdn && pdn->devfn == devfn
Paul Mackerras16353172005-09-06 13:17:54 +1000166 && of_device_available(dn))
linasae65a392005-11-03 18:42:26 -0600167 return rtas_write_config(pdn, where, size, val);
168 }
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000169 return PCIBIOS_DEVICE_NOT_FOUND;
170}
171
172struct pci_ops rtas_pci_ops = {
173 rtas_pci_read_config,
174 rtas_pci_write_config
175};
176
177int is_python(struct device_node *dev)
178{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000179 const char *model = get_property(dev, "model", NULL);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000180
181 if (model && strstr(model, "Python"))
182 return 1;
183
184 return 0;
185}
186
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100187static void python_countermeasures(struct device_node *dev)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000188{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100189 struct resource registers;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000190 void __iomem *chip_regs;
191 volatile u32 val;
192
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100193 if (of_address_to_resource(dev, 0, &registers)) {
194 printk(KERN_ERR "Can't get address for Python workarounds !\n");
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000195 return;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100196 }
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000197
198 /* Python's register file is 1 MB in size. */
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100199 chip_regs = ioremap(registers.start & ~(0xfffffUL), 0x100000);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000200
linasae65a392005-11-03 18:42:26 -0600201 /*
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000202 * Firmware doesn't always clear this bit which is critical
203 * for good performance - Anton
204 */
205
206#define PRG_CL_RESET_VALID 0x00010000
207
208 val = in_be32(chip_regs + 0xf6030);
209 if (val & PRG_CL_RESET_VALID) {
210 printk(KERN_INFO "Python workaround: ");
211 val &= ~PRG_CL_RESET_VALID;
212 out_be32(chip_regs + 0xf6030, val);
213 /*
214 * We must read it back for changes to
215 * take effect
216 */
217 val = in_be32(chip_regs + 0xf6030);
218 printk("reg0: %x\n", val);
219 }
220
221 iounmap(chip_regs);
222}
223
224void __init init_pci_config_tokens (void)
225{
226 read_pci_config = rtas_token("read-pci-config");
227 write_pci_config = rtas_token("write-pci-config");
228 ibm_read_pci_config = rtas_token("ibm,read-pci-config");
229 ibm_write_pci_config = rtas_token("ibm,write-pci-config");
230}
231
232unsigned long __devinit get_phb_buid (struct device_node *phb)
233{
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100234 struct resource r;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000235
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100236 if (ibm_read_pci_config == -1)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000237 return 0;
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100238 if (of_address_to_resource(phb, 0, &r))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000239 return 0;
Benjamin Herrenschmidt6506e712006-11-11 17:25:06 +1100240 return r.start;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000241}
242
243static int phb_set_bus_ranges(struct device_node *dev,
244 struct pci_controller *phb)
245{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000246 const int *bus_range;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000247 unsigned int len;
248
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000249 bus_range = get_property(dev, "bus-range", &len);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000250 if (bus_range == NULL || len < 2 * sizeof(int)) {
251 return 1;
252 }
linasae65a392005-11-03 18:42:26 -0600253
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000254 phb->first_busno = bus_range[0];
255 phb->last_busno = bus_range[1];
256
257 return 0;
258}
259
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100260int __devinit rtas_setup_phb(struct pci_controller *phb)
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000261{
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100262 struct device_node *dev = phb->arch_data;
263
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000264 if (is_python(dev))
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100265 python_countermeasures(dev);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000266
267 if (phb_set_bus_ranges(dev, phb))
268 return 1;
269
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000270 phb->ops = &rtas_pci_ops;
271 phb->buid = get_phb_buid(dev);
272
273 return 0;
274}
275
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000276unsigned long __init find_and_init_phbs(void)
277{
278 struct device_node *node;
279 struct pci_controller *phb;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000280 unsigned int index;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000281 struct device_node *root = of_find_node_by_path("/");
282
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000283 index = 0;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000284 for (node = of_get_next_child(root, NULL);
285 node != NULL;
286 node = of_get_next_child(root, node)) {
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500287
288 if (node->type == NULL || (strcmp(node->type, "pci") != 0 &&
289 strcmp(node->type, "pciex") != 0))
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000290 continue;
291
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100292 phb = pcibios_alloc_controller(node);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000293 if (!phb)
294 continue;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100295 rtas_setup_phb(phb);
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000296 pci_process_bridge_OF_ranges(phb, node, 0);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000297 pci_setup_phb_io(phb, index == 0);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000298 index++;
299 }
300
301 of_node_put(root);
302 pci_devs_phb_init();
303
304 /*
305 * pci_probe_only and pci_assign_all_buses can be set via properties
306 * in chosen.
307 */
308 if (of_chosen) {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000309 const int *prop;
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000310
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000311 prop = get_property(of_chosen,
312 "linux,pci-probe-only", NULL);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000313 if (prop)
314 pci_probe_only = *prop;
315
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000316 prop = get_property(of_chosen,
317 "linux,pci-assign-all-buses", NULL);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000318 if (prop)
319 pci_assign_all_buses = *prop;
320 }
321
322 return 0;
323}
324
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000325/* RPA-specific bits for removing PHBs */
326int pcibios_remove_root_bus(struct pci_controller *phb)
327{
328 struct pci_bus *b = phb->bus;
329 struct resource *res;
330 int rc, i;
331
332 res = b->resource[0];
333 if (!res->flags) {
334 printk(KERN_ERR "%s: no IO resource for PHB %s\n", __FUNCTION__,
335 b->name);
336 return 1;
337 }
338
339 rc = unmap_bus_range(b);
340 if (rc) {
341 printk(KERN_ERR "%s: failed to unmap IO on bus %s\n",
342 __FUNCTION__, b->name);
343 return 1;
344 }
345
346 if (release_resource(res)) {
347 printk(KERN_ERR "%s: failed to release IO on bus %s\n",
348 __FUNCTION__, b->name);
349 return 1;
350 }
351
352 for (i = 1; i < 3; ++i) {
353 res = b->resource[i];
354 if (!res->flags && i == 0) {
355 printk(KERN_ERR "%s: no MEM resource for PHB %s\n",
356 __FUNCTION__, b->name);
357 return 1;
358 }
359 if (res->flags && release_resource(res)) {
360 printk(KERN_ERR
361 "%s: failed to release IO %d on bus %s\n",
362 __FUNCTION__, i, b->name);
363 return 1;
364 }
365 }
366
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100367 pcibios_free_controller(phb);
Arnd Bergmannc5a3c2e2005-06-23 09:43:23 +1000368
369 return 0;
370}
371EXPORT_SYMBOL(pcibios_remove_root_bus);