blob: a0589aac4163e6741de4c01b48fd0ba08d6cdbfa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 Benjamin Herrenschmuidt (benh@kernel.crashing.org),
3 * IBM Corp.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 */
10
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +100011#undef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include <linux/kernel.h>
14#include <linux/pci.h>
15#include <linux/delay.h>
16#include <linux/string.h>
17#include <linux/init.h>
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +100018#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/sections.h>
21#include <asm/io.h>
22#include <asm/prom.h>
23#include <asm/pci-bridge.h>
24#include <asm/machdep.h>
25#include <asm/iommu.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100026#include <asm/ppc-pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Paul Mackerras0cb7b2a2005-10-29 22:07:56 +100028#include "maple.h"
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#ifdef DEBUG
31#define DBG(x...) printk(x)
32#else
33#define DBG(x...)
34#endif
35
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +100036static struct pci_controller *u3_agp, *u3_ht, *u4_pcie;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38static int __init fixup_one_level_bus_range(struct device_node *node, int higher)
39{
40 for (; node != 0;node = node->sibling) {
Jeremy Kerreeb2b722006-07-12 15:40:17 +100041 const int *bus_range;
42 const unsigned int *class_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 int len;
44
45 /* For PCI<->PCI bridges or CardBus bridges, we go down */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100046 class_code = of_get_property(node, "class-code", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
48 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
49 continue;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100050 bus_range = of_get_property(node, "bus-range", &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 if (bus_range != NULL && len > 2 * sizeof(int)) {
52 if (bus_range[1] > higher)
53 higher = bus_range[1];
54 }
55 higher = fixup_one_level_bus_range(node->child, higher);
56 }
57 return higher;
58}
59
60/* This routine fixes the "bus-range" property of all bridges in the
61 * system since they tend to have their "last" member wrong on macs
62 *
63 * Note that the bus numbers manipulated here are OF bus numbers, they
64 * are not Linux bus numbers.
65 */
66static void __init fixup_bus_range(struct device_node *bridge)
67{
Jeremy Kerreeb2b722006-07-12 15:40:17 +100068 int *bus_range;
69 struct property *prop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 int len;
71
72 /* Lookup the "bus-range" property for the hose */
Jeremy Kerreeb2b722006-07-12 15:40:17 +100073 prop = of_find_property(bridge, "bus-range", &len);
74 if (prop == NULL || prop->value == NULL || len < 2 * sizeof(int)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 printk(KERN_WARNING "Can't get bus-range for %s\n",
76 bridge->full_name);
77 return;
78 }
Stephen Rothwell1a381472007-04-03 10:58:52 +100079 bus_range = prop->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 bus_range[1] = fixup_one_level_bus_range(bridge->child, bus_range[1]);
81}
82
83
Nathan Lynchcc9881c2006-09-21 14:31:13 -050084static unsigned long u3_agp_cfa0(u8 devfn, u8 off)
85{
86 return (1 << (unsigned long)PCI_SLOT(devfn)) |
87 ((unsigned long)PCI_FUNC(devfn) << 8) |
88 ((unsigned long)off & 0xFCUL);
89}
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Nathan Lynchcc9881c2006-09-21 14:31:13 -050091static unsigned long u3_agp_cfa1(u8 bus, u8 devfn, u8 off)
92{
93 return ((unsigned long)bus << 16) |
94 ((unsigned long)devfn << 8) |
95 ((unsigned long)off & 0xFCUL) |
96 1UL;
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Al Viro8c42ec22006-09-23 01:37:41 +010099static volatile void __iomem *u3_agp_cfg_access(struct pci_controller* hose,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 u8 bus, u8 dev_fn, u8 offset)
101{
102 unsigned int caddr;
103
104 if (bus == hose->first_busno) {
105 if (dev_fn < (11 << 3))
Al Viro8c42ec22006-09-23 01:37:41 +0100106 return NULL;
Nathan Lynchcc9881c2006-09-21 14:31:13 -0500107 caddr = u3_agp_cfa0(dev_fn, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 } else
Nathan Lynchcc9881c2006-09-21 14:31:13 -0500109 caddr = u3_agp_cfa1(bus, dev_fn, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /* Uninorth will return garbage if we don't read back the value ! */
112 do {
113 out_le32(hose->cfg_addr, caddr);
114 } while (in_le32(hose->cfg_addr) != caddr);
115
116 offset &= 0x07;
Al Viro8c42ec22006-09-23 01:37:41 +0100117 return hose->cfg_data + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
120static int u3_agp_read_config(struct pci_bus *bus, unsigned int devfn,
121 int offset, int len, u32 *val)
122{
123 struct pci_controller *hose;
Al Viro8c42ec22006-09-23 01:37:41 +0100124 volatile void __iomem *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 hose = pci_bus_to_host(bus);
127 if (hose == NULL)
128 return PCIBIOS_DEVICE_NOT_FOUND;
129
130 addr = u3_agp_cfg_access(hose, bus->number, devfn, offset);
131 if (!addr)
132 return PCIBIOS_DEVICE_NOT_FOUND;
133 /*
134 * Note: the caller has already checked that offset is
135 * suitably aligned and that len is 1, 2 or 4.
136 */
137 switch (len) {
138 case 1:
Al Viro8c42ec22006-09-23 01:37:41 +0100139 *val = in_8(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 break;
141 case 2:
Al Viro8c42ec22006-09-23 01:37:41 +0100142 *val = in_le16(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 break;
144 default:
Al Viro8c42ec22006-09-23 01:37:41 +0100145 *val = in_le32(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 break;
147 }
148 return PCIBIOS_SUCCESSFUL;
149}
150
151static int u3_agp_write_config(struct pci_bus *bus, unsigned int devfn,
152 int offset, int len, u32 val)
153{
154 struct pci_controller *hose;
Al Viro8c42ec22006-09-23 01:37:41 +0100155 volatile void __iomem *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 hose = pci_bus_to_host(bus);
158 if (hose == NULL)
159 return PCIBIOS_DEVICE_NOT_FOUND;
160
161 addr = u3_agp_cfg_access(hose, bus->number, devfn, offset);
162 if (!addr)
163 return PCIBIOS_DEVICE_NOT_FOUND;
164 /*
165 * Note: the caller has already checked that offset is
166 * suitably aligned and that len is 1, 2 or 4.
167 */
168 switch (len) {
169 case 1:
Al Viro8c42ec22006-09-23 01:37:41 +0100170 out_8(addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
172 case 2:
Al Viro8c42ec22006-09-23 01:37:41 +0100173 out_le16(addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 break;
175 default:
Al Viro8c42ec22006-09-23 01:37:41 +0100176 out_le32(addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 break;
178 }
179 return PCIBIOS_SUCCESSFUL;
180}
181
182static struct pci_ops u3_agp_pci_ops =
183{
Nathan Lynch2e67d402007-08-10 05:18:39 +1000184 .read = u3_agp_read_config,
185 .write = u3_agp_write_config,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186};
187
Nathan Lynchcc9881c2006-09-21 14:31:13 -0500188static unsigned long u3_ht_cfa0(u8 devfn, u8 off)
189{
190 return (devfn << 8) | off;
191}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Nathan Lynchcc9881c2006-09-21 14:31:13 -0500193static unsigned long u3_ht_cfa1(u8 bus, u8 devfn, u8 off)
194{
195 return u3_ht_cfa0(devfn, off) + (bus << 16) + 0x01000000UL;
196}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Al Viro8c42ec22006-09-23 01:37:41 +0100198static volatile void __iomem *u3_ht_cfg_access(struct pci_controller* hose,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 u8 bus, u8 devfn, u8 offset)
200{
201 if (bus == hose->first_busno) {
202 if (PCI_SLOT(devfn) == 0)
Al Viro8c42ec22006-09-23 01:37:41 +0100203 return NULL;
204 return hose->cfg_data + u3_ht_cfa0(devfn, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 } else
Al Viro8c42ec22006-09-23 01:37:41 +0100206 return hose->cfg_data + u3_ht_cfa1(bus, devfn, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Dmitry Eremin-Solenikovf49a0c92011-06-29 04:17:40 +0000209static int u3_ht_root_read_config(struct pci_controller *hose, u8 offset,
210 int len, u32 *val)
211{
212 volatile void __iomem *addr;
213
214 addr = hose->cfg_addr;
215 addr += ((offset & ~3) << 2) + (4 - len - (offset & 3));
216
217 switch (len) {
218 case 1:
219 *val = in_8(addr);
220 break;
221 case 2:
222 *val = in_be16(addr);
223 break;
224 default:
225 *val = in_be32(addr);
226 break;
227 }
228
229 return PCIBIOS_SUCCESSFUL;
230}
231
232static int u3_ht_root_write_config(struct pci_controller *hose, u8 offset,
233 int len, u32 val)
234{
235 volatile void __iomem *addr;
236
237 addr = hose->cfg_addr + ((offset & ~3) << 2) + (4 - len - (offset & 3));
238
239 if (offset >= PCI_BASE_ADDRESS_0 && offset < PCI_CAPABILITY_LIST)
240 return PCIBIOS_SUCCESSFUL;
241
242 switch (len) {
243 case 1:
244 out_8(addr, val);
245 break;
246 case 2:
247 out_be16(addr, val);
248 break;
249 default:
250 out_be32(addr, val);
251 break;
252 }
253
254 return PCIBIOS_SUCCESSFUL;
255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257static int u3_ht_read_config(struct pci_bus *bus, unsigned int devfn,
258 int offset, int len, u32 *val)
259{
260 struct pci_controller *hose;
Al Viro8c42ec22006-09-23 01:37:41 +0100261 volatile void __iomem *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 hose = pci_bus_to_host(bus);
264 if (hose == NULL)
265 return PCIBIOS_DEVICE_NOT_FOUND;
266
Dmitry Eremin-Solenikovf49a0c92011-06-29 04:17:40 +0000267 if (bus->number == hose->first_busno && devfn == PCI_DEVFN(0, 0))
268 return u3_ht_root_read_config(hose, offset, len, val);
269
Nathan Lynchd608df52006-09-21 14:25:34 -0500270 if (offset > 0xff)
271 return PCIBIOS_BAD_REGISTER_NUMBER;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 addr = u3_ht_cfg_access(hose, bus->number, devfn, offset);
274 if (!addr)
275 return PCIBIOS_DEVICE_NOT_FOUND;
276
277 /*
278 * Note: the caller has already checked that offset is
279 * suitably aligned and that len is 1, 2 or 4.
280 */
281 switch (len) {
282 case 1:
Al Viro8c42ec22006-09-23 01:37:41 +0100283 *val = in_8(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 break;
285 case 2:
Al Viro8c42ec22006-09-23 01:37:41 +0100286 *val = in_le16(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 break;
288 default:
Al Viro8c42ec22006-09-23 01:37:41 +0100289 *val = in_le32(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291 }
292 return PCIBIOS_SUCCESSFUL;
293}
294
295static int u3_ht_write_config(struct pci_bus *bus, unsigned int devfn,
296 int offset, int len, u32 val)
297{
298 struct pci_controller *hose;
Al Viro8c42ec22006-09-23 01:37:41 +0100299 volatile void __iomem *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 hose = pci_bus_to_host(bus);
302 if (hose == NULL)
303 return PCIBIOS_DEVICE_NOT_FOUND;
304
Dmitry Eremin-Solenikovf49a0c92011-06-29 04:17:40 +0000305 if (bus->number == hose->first_busno && devfn == PCI_DEVFN(0, 0))
306 return u3_ht_root_write_config(hose, offset, len, val);
307
Nathan Lynchd608df52006-09-21 14:25:34 -0500308 if (offset > 0xff)
309 return PCIBIOS_BAD_REGISTER_NUMBER;
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 addr = u3_ht_cfg_access(hose, bus->number, devfn, offset);
312 if (!addr)
313 return PCIBIOS_DEVICE_NOT_FOUND;
314 /*
315 * Note: the caller has already checked that offset is
316 * suitably aligned and that len is 1, 2 or 4.
317 */
318 switch (len) {
319 case 1:
Al Viro8c42ec22006-09-23 01:37:41 +0100320 out_8(addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 break;
322 case 2:
Al Viro8c42ec22006-09-23 01:37:41 +0100323 out_le16(addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 break;
325 default:
Al Viro8c42ec22006-09-23 01:37:41 +0100326 out_le32(addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 break;
328 }
329 return PCIBIOS_SUCCESSFUL;
330}
331
332static struct pci_ops u3_ht_pci_ops =
333{
Nathan Lynch2e67d402007-08-10 05:18:39 +1000334 .read = u3_ht_read_config,
335 .write = u3_ht_write_config,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336};
337
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000338static unsigned int u4_pcie_cfa0(unsigned int devfn, unsigned int off)
339{
340 return (1 << PCI_SLOT(devfn)) |
341 (PCI_FUNC(devfn) << 8) |
342 ((off >> 8) << 28) |
343 (off & 0xfcu);
344}
345
346static unsigned int u4_pcie_cfa1(unsigned int bus, unsigned int devfn,
347 unsigned int off)
348{
349 return (bus << 16) |
350 (devfn << 8) |
351 ((off >> 8) << 28) |
352 (off & 0xfcu) | 1u;
353}
354
355static volatile void __iomem *u4_pcie_cfg_access(struct pci_controller* hose,
356 u8 bus, u8 dev_fn, int offset)
357{
358 unsigned int caddr;
359
360 if (bus == hose->first_busno)
361 caddr = u4_pcie_cfa0(dev_fn, offset);
362 else
363 caddr = u4_pcie_cfa1(bus, dev_fn, offset);
364
365 /* Uninorth will return garbage if we don't read back the value ! */
366 do {
367 out_le32(hose->cfg_addr, caddr);
368 } while (in_le32(hose->cfg_addr) != caddr);
369
370 offset &= 0x03;
371 return hose->cfg_data + offset;
372}
373
374static int u4_pcie_read_config(struct pci_bus *bus, unsigned int devfn,
375 int offset, int len, u32 *val)
376{
377 struct pci_controller *hose;
378 volatile void __iomem *addr;
379
380 hose = pci_bus_to_host(bus);
381 if (hose == NULL)
382 return PCIBIOS_DEVICE_NOT_FOUND;
383 if (offset >= 0x1000)
384 return PCIBIOS_BAD_REGISTER_NUMBER;
385 addr = u4_pcie_cfg_access(hose, bus->number, devfn, offset);
386 if (!addr)
387 return PCIBIOS_DEVICE_NOT_FOUND;
388 /*
389 * Note: the caller has already checked that offset is
390 * suitably aligned and that len is 1, 2 or 4.
391 */
392 switch (len) {
393 case 1:
394 *val = in_8(addr);
395 break;
396 case 2:
397 *val = in_le16(addr);
398 break;
399 default:
400 *val = in_le32(addr);
401 break;
402 }
403 return PCIBIOS_SUCCESSFUL;
404}
405static int u4_pcie_write_config(struct pci_bus *bus, unsigned int devfn,
406 int offset, int len, u32 val)
407{
408 struct pci_controller *hose;
409 volatile void __iomem *addr;
410
411 hose = pci_bus_to_host(bus);
412 if (hose == NULL)
413 return PCIBIOS_DEVICE_NOT_FOUND;
414 if (offset >= 0x1000)
415 return PCIBIOS_BAD_REGISTER_NUMBER;
416 addr = u4_pcie_cfg_access(hose, bus->number, devfn, offset);
417 if (!addr)
418 return PCIBIOS_DEVICE_NOT_FOUND;
419 /*
420 * Note: the caller has already checked that offset is
421 * suitably aligned and that len is 1, 2 or 4.
422 */
423 switch (len) {
424 case 1:
425 out_8(addr, val);
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000426 break;
427 case 2:
428 out_le16(addr, val);
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000429 break;
430 default:
431 out_le32(addr, val);
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000432 break;
433 }
434 return PCIBIOS_SUCCESSFUL;
435}
436
437static struct pci_ops u4_pcie_pci_ops =
438{
Nathan Lynch2e67d402007-08-10 05:18:39 +1000439 .read = u4_pcie_read_config,
440 .write = u4_pcie_write_config,
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000441};
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443static void __init setup_u3_agp(struct pci_controller* hose)
444{
445 /* On G5, we move AGP up to high bus number so we don't need
446 * to reassign bus numbers for HT. If we ever have P2P bridges
Paul Mackerras399fe2b2005-10-20 20:57:05 +1000447 * on AGP, we'll have to move pci_assign_all_buses to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 * pci_controller structure so we enable it for AGP and not for
449 * HT childs.
450 * We hard code the address because of the different size of
451 * the reg address cell, we shall fix that by killing struct
452 * reg_property and using some accessor functions instead
453 */
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000454 hose->first_busno = 0xf0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 hose->last_busno = 0xff;
456 hose->ops = &u3_agp_pci_ops;
457 hose->cfg_addr = ioremap(0xf0000000 + 0x800000, 0x1000);
458 hose->cfg_data = ioremap(0xf0000000 + 0xc00000, 0x1000);
459
460 u3_agp = hose;
461}
462
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000463static void __init setup_u4_pcie(struct pci_controller* hose)
464{
465 /* We currently only implement the "non-atomic" config space, to
466 * be optimised later.
467 */
468 hose->ops = &u4_pcie_pci_ops;
469 hose->cfg_addr = ioremap(0xf0000000 + 0x800000, 0x1000);
470 hose->cfg_data = ioremap(0xf0000000 + 0xc00000, 0x1000);
471
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000472 u4_pcie = hose;
473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static void __init setup_u3_ht(struct pci_controller* hose)
476{
477 hose->ops = &u3_ht_pci_ops;
478
479 /* We hard code the address because of the different size of
480 * the reg address cell, we shall fix that by killing struct
481 * reg_property and using some accessor functions instead
482 */
Al Viro8c42ec22006-09-23 01:37:41 +0100483 hose->cfg_data = ioremap(0xf2000000, 0x02000000);
Dmitry Eremin-Solenikovf49a0c92011-06-29 04:17:40 +0000484 hose->cfg_addr = ioremap(0xf8070000, 0x1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 hose->first_busno = 0;
487 hose->last_busno = 0xef;
488
489 u3_ht = hose;
490}
491
Arnd Bergmann09b55f72007-06-18 01:06:54 +0200492static int __init maple_add_bridge(struct device_node *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 int len;
495 struct pci_controller *hose;
496 char* disp_name;
Jeremy Kerreeb2b722006-07-12 15:40:17 +1000497 const int *bus_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 int primary = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 DBG("Adding PCI host bridge %s\n", dev->full_name);
501
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000502 bus_range = of_get_property(dev, "bus-range", &len);
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000503 if (bus_range == NULL || len < 2 * sizeof(int)) {
504 printk(KERN_WARNING "Can't get bus-range for %s, assume bus 0\n",
505 dev->full_name);
506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100508 hose = pcibios_alloc_controller(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (hose == NULL)
510 return -ENOMEM;
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000511 hose->first_busno = bus_range ? bus_range[0] : 0;
512 hose->last_busno = bus_range ? bus_range[1] : 0xff;
Daniel Axtens19124d62015-03-31 16:00:53 +1100513 hose->controller_ops = maple_pci_controller_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 disp_name = NULL;
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000516 if (of_device_is_compatible(dev, "u3-agp")) {
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000517 setup_u3_agp(hose);
518 disp_name = "U3-AGP";
519 primary = 0;
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000520 } else if (of_device_is_compatible(dev, "u3-ht")) {
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000521 setup_u3_ht(hose);
522 disp_name = "U3-HT";
523 primary = 1;
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000524 } else if (of_device_is_compatible(dev, "u4-pcie")) {
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000525 setup_u4_pcie(hose);
526 disp_name = "U4-PCIE";
527 primary = 0;
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000528 }
529 printk(KERN_INFO "Found %s PCI host bridge. Firmware bus number: %d->%d\n",
530 disp_name, hose->first_busno, hose->last_busno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000532 /* Interpret the "ranges" property */
533 /* This also maps the I/O region and sets isa_io/mem_base */
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000534 pci_process_bridge_OF_ranges(hose, dev, primary);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Anton Blanchard3238e9c2005-09-12 13:14:26 +1000536 /* Fixup "bus-range" OF property */
537 fixup_bus_range(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Benjamin Herrenschmidt17cd87c2007-07-26 14:07:14 +1000539 /* Check for legacy IOs */
540 isa_bridge_find_early(hose);
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return 0;
543}
544
545
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800546void maple_pci_irq_fixup(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +1100548 DBG(" -> maple_pci_irq_fixup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +1100550 /* Fixup IRQ for PCIe host */
551 if (u4_pcie != NULL && dev->bus->number == 0 &&
552 pci_bus_to_host(dev->bus) == u4_pcie) {
553 printk(KERN_DEBUG "Fixup U4 PCIe IRQ\n");
554 dev->irq = irq_create_mapping(NULL, 1);
Michael Ellermanef24ba72016-09-06 21:53:24 +1000555 if (dev->irq)
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100556 irq_set_irq_type(dev->irq, IRQ_TYPE_LEVEL_LOW);
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +1100559 /* Hide AMD8111 IDE interrupt when in legacy mode so
560 * the driver calls pci_get_legacy_ide_irq()
561 */
562 if (dev->vendor == PCI_VENDOR_ID_AMD &&
563 dev->device == PCI_DEVICE_ID_AMD_8111_IDE &&
564 (dev->class & 5) != 5) {
Michael Ellermanef24ba72016-09-06 21:53:24 +1000565 dev->irq = 0;
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +1100566 }
567
568 DBG(" <- maple_pci_irq_fixup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Gavin Shan8cc75812016-05-20 16:41:37 +1000571static int maple_pci_root_bridge_prepare(struct pci_host_bridge *bridge)
572{
573 struct pci_controller *hose = pci_bus_to_host(bridge->bus);
574 struct device_node *np, *child;
575
576 if (hose != u3_agp)
577 return 0;
578
579 /* Fixup the PCI<->OF mapping for U3 AGP due to bus renumbering. We
580 * assume there is no P2P bridge on the AGP bus, which should be a
581 * safe assumptions hopefully.
582 */
583 np = hose->dn;
584 PCI_DN(np)->busno = 0xf0;
585 for_each_child_of_node(np, child)
586 PCI_DN(child)->busno = 0xf0;
587
588 return 0;
589}
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591void __init maple_pci_init(void)
592{
593 struct device_node *np, *root;
594 struct device_node *ht = NULL;
595
596 /* Probe root PCI hosts, that is on U3 the AGP host and the
597 * HyperTransport host. That one is actually "kept" around
598 * and actually added last as it's resource management relies
599 * on the AGP resources to have been setup first
600 */
601 root = of_find_node_by_path("/");
602 if (root == NULL) {
603 printk(KERN_CRIT "maple_find_bridges: can't find root of device tree\n");
604 return;
605 }
606 for (np = NULL; (np = of_get_next_child(root, np)) != NULL;) {
Nathan Lynchf1f00332007-01-03 12:56:28 -0600607 if (!np->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 continue;
Nathan Lynchf1f00332007-01-03 12:56:28 -0600609 if (strcmp(np->type, "pci") && strcmp(np->type, "ht"))
610 continue;
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000611 if ((of_device_is_compatible(np, "u4-pcie") ||
612 of_device_is_compatible(np, "u3-agp")) &&
Arnd Bergmann09b55f72007-06-18 01:06:54 +0200613 maple_add_bridge(np) == 0)
Nathan Lynchf1f00332007-01-03 12:56:28 -0600614 of_node_get(np);
615
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000616 if (of_device_is_compatible(np, "u3-ht")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 of_node_get(np);
618 ht = np;
619 }
620 }
621 of_node_put(root);
622
623 /* Now setup the HyperTransport host if we found any
624 */
Arnd Bergmann09b55f72007-06-18 01:06:54 +0200625 if (ht && maple_add_bridge(ht) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 of_node_put(ht);
627
Gavin Shan8cc75812016-05-20 16:41:37 +1000628 ppc_md.pcibios_root_bridge_prepare = maple_pci_root_bridge_prepare;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Segher Boessenkool4558f412006-02-17 11:30:30 +0100630 /* Tell pci.c to not change any resource allocations. */
Bjorn Helgaas673c9752012-02-23 20:18:58 -0700631 pci_add_flags(PCI_PROBE_ONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634int maple_pci_get_legacy_ide_irq(struct pci_dev *pdev, int channel)
635{
636 struct device_node *np;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000637 unsigned int defirq = channel ? 15 : 14;
638 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 if (pdev->vendor != PCI_VENDOR_ID_AMD ||
641 pdev->device != PCI_DEVICE_ID_AMD_8111_IDE)
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000642 return defirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 np = pci_device_to_OF_node(pdev);
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000645 if (np == NULL) {
646 printk("Failed to locate OF node for IDE %s\n",
647 pci_name(pdev));
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000648 return defirq;
Benjamin Herrenschmidtc10af8c2006-10-09 13:25:15 +1000649 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000650 irq = irq_of_parse_and_map(np, channel & 0x1);
Michael Ellermanef24ba72016-09-06 21:53:24 +1000651 if (!irq) {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000652 printk("Failed to map onboard IDE interrupt for channel %d\n",
653 channel);
654 return defirq;
655 }
656 return irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
Michael Ellerman6eb0ac02009-05-21 19:10:23 +0000658
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800659static void quirk_ipr_msi(struct pci_dev *dev)
Michael Ellerman6eb0ac02009-05-21 19:10:23 +0000660{
661 /* Something prevents MSIs from the IPR from working on Bimini,
662 * and the driver has no smarts to recover. So disable MSI
663 * on it for now. */
664
665 if (machine_is(maple)) {
666 dev->no_msi = 1;
667 dev_info(&dev->dev, "Quirk disabled MSI\n");
668 }
669}
670DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
671 quirk_ipr_msi);
Daniel Axtens19124d62015-03-31 16:00:53 +1100672
673struct pci_controller_ops maple_pci_controller_ops = {
674};