blob: 205d04471161eba2709af1a821c6c5d0ea9aac4b [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
2 * Support for PCI bridges found on Power Macintoshes.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10003 *
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11004 * Copyright (C) 2003-2005 Benjamin Herrenschmuidt (benh@kernel.crashing.org)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10005 * Copyright (C) 1997 Paul Mackerras (paulus@samba.org)
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
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>
18#include <linux/bootmem.h>
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -070019#include <linux/irq.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100020
21#include <asm/sections.h>
22#include <asm/io.h>
23#include <asm/prom.h>
24#include <asm/pci-bridge.h>
25#include <asm/machdep.h>
26#include <asm/pmac_feature.h>
Paul Mackerras830825d2005-10-26 17:16:38 +100027#include <asm/grackle.h>
Paul Mackerras3c3f42d2005-10-10 22:58:41 +100028#include <asm/ppc-pci.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100029
30#undef DEBUG
31
32#ifdef DEBUG
33#define DBG(x...) printk(x)
34#else
35#define DBG(x...)
36#endif
37
38static int add_bridge(struct device_node *dev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100039
40/* XXX Could be per-controller, but I don't think we risk anything by
41 * assuming we won't have both UniNorth and Bandit */
42static int has_uninorth;
Paul Mackerras35499c02005-10-22 16:02:39 +100043#ifdef CONFIG_PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +100044static struct pci_controller *u3_agp;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +110045static struct pci_controller *u4_pcie;
Paul Mackerras35499c02005-10-22 16:02:39 +100046static struct pci_controller *u3_ht;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100047#else
48static int has_second_ohare;
Paul Mackerras35499c02005-10-22 16:02:39 +100049#endif /* CONFIG_PPC64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100050
51extern u8 pci_cache_line_size;
52extern int pcibios_assign_bus_offset;
53
54struct device_node *k2_skiplist[2];
55
56/*
57 * Magic constants for enabling cache coherency in the bandit/PSX bridge.
58 */
59#define BANDIT_DEVID_2 8
60#define BANDIT_REVID 3
61
62#define BANDIT_DEVNUM 11
63#define BANDIT_MAGIC 0x50
64#define BANDIT_COHERENT 0x40
65
66static int __init fixup_one_level_bus_range(struct device_node *node, int higher)
67{
68 for (; node != 0;node = node->sibling) {
69 int * bus_range;
70 unsigned int *class_code;
71 int len;
72
73 /* For PCI<->PCI bridges or CardBus bridges, we go down */
74 class_code = (unsigned int *) get_property(node, "class-code", NULL);
75 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
76 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
77 continue;
78 bus_range = (int *) get_property(node, "bus-range", &len);
79 if (bus_range != NULL && len > 2 * sizeof(int)) {
80 if (bus_range[1] > higher)
81 higher = bus_range[1];
82 }
83 higher = fixup_one_level_bus_range(node->child, higher);
84 }
85 return higher;
86}
87
88/* This routine fixes the "bus-range" property of all bridges in the
89 * system since they tend to have their "last" member wrong on macs
90 *
91 * Note that the bus numbers manipulated here are OF bus numbers, they
92 * are not Linux bus numbers.
93 */
94static void __init fixup_bus_range(struct device_node *bridge)
95{
96 int * bus_range;
97 int len;
98
99 /* Lookup the "bus-range" property for the hose */
100 bus_range = (int *) get_property(bridge, "bus-range", &len);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100101 if (bus_range == NULL || len < 2 * sizeof(int))
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000102 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000103 bus_range[1] = fixup_one_level_bus_range(bridge->child, bus_range[1]);
104}
105
106/*
107 * Apple MacRISC (U3, UniNorth, Bandit, Chaos) PCI controllers.
108 *
109 * The "Bandit" version is present in all early PCI PowerMacs,
110 * and up to the first ones using Grackle. Some machines may
111 * have 2 bandit controllers (2 PCI busses).
112 *
113 * "Chaos" is used in some "Bandit"-type machines as a bridge
114 * for the separate display bus. It is accessed the same
115 * way as bandit, but cannot be probed for devices. It therefore
116 * has its own config access functions.
117 *
118 * The "UniNorth" version is present in all Core99 machines
119 * (iBook, G4, new IMacs, and all the recent Apple machines).
120 * It contains 3 controllers in one ASIC.
121 *
122 * The U3 is the bridge used on G5 machines. It contains an
123 * AGP bus which is dealt with the old UniNorth access routines
124 * and a HyperTransport bus which uses its own set of access
125 * functions.
126 */
127
128#define MACRISC_CFA0(devfn, off) \
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100129 ((1 << (unsigned int)PCI_SLOT(dev_fn)) \
130 | (((unsigned int)PCI_FUNC(dev_fn)) << 8) \
131 | (((unsigned int)(off)) & 0xFCUL))
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000132
133#define MACRISC_CFA1(bus, devfn, off) \
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100134 ((((unsigned int)(bus)) << 16) \
135 |(((unsigned int)(devfn)) << 8) \
136 |(((unsigned int)(off)) & 0xFCUL) \
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000137 |1UL)
138
Al Virode125bf2006-02-01 05:18:43 -0500139static volatile void __iomem *macrisc_cfg_access(struct pci_controller* hose,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000140 u8 bus, u8 dev_fn, u8 offset)
141{
142 unsigned int caddr;
143
144 if (bus == hose->first_busno) {
145 if (dev_fn < (11 << 3))
Al Virode125bf2006-02-01 05:18:43 -0500146 return NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000147 caddr = MACRISC_CFA0(dev_fn, offset);
148 } else
149 caddr = MACRISC_CFA1(bus, dev_fn, offset);
150
151 /* Uninorth will return garbage if we don't read back the value ! */
152 do {
153 out_le32(hose->cfg_addr, caddr);
154 } while (in_le32(hose->cfg_addr) != caddr);
155
156 offset &= has_uninorth ? 0x07 : 0x03;
Al Virode125bf2006-02-01 05:18:43 -0500157 return hose->cfg_data + offset;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000158}
159
160static int macrisc_read_config(struct pci_bus *bus, unsigned int devfn,
161 int offset, int len, u32 *val)
162{
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000163 struct pci_controller *hose;
Al Virode125bf2006-02-01 05:18:43 -0500164 volatile void __iomem *addr;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000165
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000166 hose = pci_bus_to_host(bus);
167 if (hose == NULL)
168 return PCIBIOS_DEVICE_NOT_FOUND;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100169 if (offset >= 0x100)
170 return PCIBIOS_BAD_REGISTER_NUMBER;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000171 addr = macrisc_cfg_access(hose, bus->number, devfn, offset);
172 if (!addr)
173 return PCIBIOS_DEVICE_NOT_FOUND;
174 /*
175 * Note: the caller has already checked that offset is
176 * suitably aligned and that len is 1, 2 or 4.
177 */
178 switch (len) {
179 case 1:
Al Virode125bf2006-02-01 05:18:43 -0500180 *val = in_8(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000181 break;
182 case 2:
Al Virode125bf2006-02-01 05:18:43 -0500183 *val = in_le16(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000184 break;
185 default:
Al Virode125bf2006-02-01 05:18:43 -0500186 *val = in_le32(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000187 break;
188 }
189 return PCIBIOS_SUCCESSFUL;
190}
191
192static int macrisc_write_config(struct pci_bus *bus, unsigned int devfn,
193 int offset, int len, u32 val)
194{
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000195 struct pci_controller *hose;
Al Virode125bf2006-02-01 05:18:43 -0500196 volatile void __iomem *addr;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000197
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000198 hose = pci_bus_to_host(bus);
199 if (hose == NULL)
200 return PCIBIOS_DEVICE_NOT_FOUND;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100201 if (offset >= 0x100)
202 return PCIBIOS_BAD_REGISTER_NUMBER;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000203 addr = macrisc_cfg_access(hose, bus->number, devfn, offset);
204 if (!addr)
205 return PCIBIOS_DEVICE_NOT_FOUND;
206 /*
207 * Note: the caller has already checked that offset is
208 * suitably aligned and that len is 1, 2 or 4.
209 */
210 switch (len) {
211 case 1:
Al Virode125bf2006-02-01 05:18:43 -0500212 out_8(addr, val);
213 (void) in_8(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000214 break;
215 case 2:
Al Virode125bf2006-02-01 05:18:43 -0500216 out_le16(addr, val);
217 (void) in_le16(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000218 break;
219 default:
Al Virode125bf2006-02-01 05:18:43 -0500220 out_le32(addr, val);
221 (void) in_le32(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000222 break;
223 }
224 return PCIBIOS_SUCCESSFUL;
225}
226
227static struct pci_ops macrisc_pci_ops =
228{
229 macrisc_read_config,
230 macrisc_write_config
231};
232
Paul Mackerras35499c02005-10-22 16:02:39 +1000233#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000234/*
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000235 * Verify that a specific (bus, dev_fn) exists on chaos
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000236 */
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100237static int chaos_validate_dev(struct pci_bus *bus, int devfn, int offset)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000238{
239 struct device_node *np;
240 u32 *vendor, *device;
241
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100242 if (offset >= 0x100)
243 return PCIBIOS_BAD_REGISTER_NUMBER;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000244 np = pci_busdev_to_OF_node(bus, devfn);
245 if (np == NULL)
246 return PCIBIOS_DEVICE_NOT_FOUND;
247
248 vendor = (u32 *)get_property(np, "vendor-id", NULL);
249 device = (u32 *)get_property(np, "device-id", NULL);
250 if (vendor == NULL || device == NULL)
251 return PCIBIOS_DEVICE_NOT_FOUND;
252
253 if ((*vendor == 0x106b) && (*device == 3) && (offset >= 0x10)
254 && (offset != 0x14) && (offset != 0x18) && (offset <= 0x24))
255 return PCIBIOS_BAD_REGISTER_NUMBER;
256
257 return PCIBIOS_SUCCESSFUL;
258}
259
260static int
261chaos_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
262 int len, u32 *val)
263{
264 int result = chaos_validate_dev(bus, devfn, offset);
265 if (result == PCIBIOS_BAD_REGISTER_NUMBER)
266 *val = ~0U;
267 if (result != PCIBIOS_SUCCESSFUL)
268 return result;
269 return macrisc_read_config(bus, devfn, offset, len, val);
270}
271
272static int
273chaos_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
274 int len, u32 val)
275{
276 int result = chaos_validate_dev(bus, devfn, offset);
277 if (result != PCIBIOS_SUCCESSFUL)
278 return result;
279 return macrisc_write_config(bus, devfn, offset, len, val);
280}
281
282static struct pci_ops chaos_pci_ops =
283{
284 chaos_read_config,
285 chaos_write_config
286};
287
Paul Mackerras35499c02005-10-22 16:02:39 +1000288static void __init setup_chaos(struct pci_controller *hose,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100289 struct resource *addr)
Paul Mackerras35499c02005-10-22 16:02:39 +1000290{
291 /* assume a `chaos' bridge */
292 hose->ops = &chaos_pci_ops;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100293 hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
294 hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
Paul Mackerras35499c02005-10-22 16:02:39 +1000295}
Paul Mackerras35499c02005-10-22 16:02:39 +1000296#endif /* CONFIG_PPC32 */
297
298#ifdef CONFIG_PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000299/*
300 * These versions of U3 HyperTransport config space access ops do not
301 * implement self-view of the HT host yet
302 */
303
304/*
305 * This function deals with some "special cases" devices.
306 *
307 * 0 -> No special case
308 * 1 -> Skip the device but act as if the access was successfull
309 * (return 0xff's on reads, eventually, cache config space
310 * accesses in a later version)
311 * -1 -> Hide the device (unsuccessful acess)
312 */
313static int u3_ht_skip_device(struct pci_controller *hose,
314 struct pci_bus *bus, unsigned int devfn)
315{
316 struct device_node *busdn, *dn;
317 int i;
318
319 /* We only allow config cycles to devices that are in OF device-tree
320 * as we are apparently having some weird things going on with some
321 * revs of K2 on recent G5s
322 */
323 if (bus->self)
324 busdn = pci_device_to_OF_node(bus->self);
325 else
326 busdn = hose->arch_data;
327 for (dn = busdn->child; dn; dn = dn->sibling)
linase07102d2005-12-05 19:37:35 -0600328 if (PCI_DN(dn) && PCI_DN(dn)->devfn == devfn)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000329 break;
330 if (dn == NULL)
331 return -1;
332
333 /*
334 * When a device in K2 is powered down, we die on config
335 * cycle accesses. Fix that here.
336 */
337 for (i=0; i<2; i++)
338 if (k2_skiplist[i] == dn)
339 return 1;
340
341 return 0;
342}
343
344#define U3_HT_CFA0(devfn, off) \
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100345 ((((unsigned int)devfn) << 8) | offset)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000346#define U3_HT_CFA1(bus, devfn, off) \
347 (U3_HT_CFA0(devfn, off) \
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100348 + (((unsigned int)bus) << 16) \
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000349 + 0x01000000UL)
350
Al Virode125bf2006-02-01 05:18:43 -0500351static volatile void __iomem *u3_ht_cfg_access(struct pci_controller* hose,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000352 u8 bus, u8 devfn, u8 offset)
353{
354 if (bus == hose->first_busno) {
355 /* For now, we don't self probe U3 HT bridge */
356 if (PCI_SLOT(devfn) == 0)
Al Virode125bf2006-02-01 05:18:43 -0500357 return NULL;
358 return hose->cfg_data + U3_HT_CFA0(devfn, offset);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000359 } else
Al Virode125bf2006-02-01 05:18:43 -0500360 return hose->cfg_data + U3_HT_CFA1(bus, devfn, offset);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000361}
362
363static int u3_ht_read_config(struct pci_bus *bus, unsigned int devfn,
364 int offset, int len, u32 *val)
365{
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000366 struct pci_controller *hose;
Al Virode125bf2006-02-01 05:18:43 -0500367 volatile void __iomem *addr;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000368
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000369 hose = pci_bus_to_host(bus);
370 if (hose == NULL)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000371 return PCIBIOS_DEVICE_NOT_FOUND;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100372 if (offset >= 0x100)
373 return PCIBIOS_BAD_REGISTER_NUMBER;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000374 addr = u3_ht_cfg_access(hose, bus->number, devfn, offset);
375 if (!addr)
376 return PCIBIOS_DEVICE_NOT_FOUND;
377
378 switch (u3_ht_skip_device(hose, bus, devfn)) {
379 case 0:
380 break;
381 case 1:
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000382 switch (len) {
383 case 1:
384 *val = 0xff; break;
385 case 2:
386 *val = 0xffff; break;
387 default:
388 *val = 0xfffffffful; break;
389 }
390 return PCIBIOS_SUCCESSFUL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000391 default:
392 return PCIBIOS_DEVICE_NOT_FOUND;
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000393 }
394
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000395 /*
396 * Note: the caller has already checked that offset is
397 * suitably aligned and that len is 1, 2 or 4.
398 */
399 switch (len) {
400 case 1:
Al Virode125bf2006-02-01 05:18:43 -0500401 *val = in_8(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000402 break;
403 case 2:
Al Virode125bf2006-02-01 05:18:43 -0500404 *val = in_le16(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000405 break;
406 default:
Al Virode125bf2006-02-01 05:18:43 -0500407 *val = in_le32(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000408 break;
409 }
410 return PCIBIOS_SUCCESSFUL;
411}
412
413static int u3_ht_write_config(struct pci_bus *bus, unsigned int devfn,
414 int offset, int len, u32 val)
415{
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000416 struct pci_controller *hose;
Al Virode125bf2006-02-01 05:18:43 -0500417 volatile void __iomem *addr;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000418
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000419 hose = pci_bus_to_host(bus);
420 if (hose == NULL)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000421 return PCIBIOS_DEVICE_NOT_FOUND;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100422 if (offset >= 0x100)
423 return PCIBIOS_BAD_REGISTER_NUMBER;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000424 addr = u3_ht_cfg_access(hose, bus->number, devfn, offset);
425 if (!addr)
426 return PCIBIOS_DEVICE_NOT_FOUND;
427
428 switch (u3_ht_skip_device(hose, bus, devfn)) {
429 case 0:
430 break;
431 case 1:
432 return PCIBIOS_SUCCESSFUL;
433 default:
434 return PCIBIOS_DEVICE_NOT_FOUND;
435 }
436
437 /*
438 * Note: the caller has already checked that offset is
439 * suitably aligned and that len is 1, 2 or 4.
440 */
441 switch (len) {
442 case 1:
Al Virode125bf2006-02-01 05:18:43 -0500443 out_8(addr, val);
444 (void) in_8(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000445 break;
446 case 2:
Al Virode125bf2006-02-01 05:18:43 -0500447 out_le16(addr, val);
448 (void) in_le16(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000449 break;
450 default:
Al Virode125bf2006-02-01 05:18:43 -0500451 out_le32((u32 __iomem *)addr, val);
452 (void) in_le32(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000453 break;
454 }
455 return PCIBIOS_SUCCESSFUL;
456}
457
458static struct pci_ops u3_ht_pci_ops =
459{
460 u3_ht_read_config,
461 u3_ht_write_config
462};
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100463
464#define U4_PCIE_CFA0(devfn, off) \
465 ((1 << ((unsigned int)PCI_SLOT(dev_fn))) \
466 | (((unsigned int)PCI_FUNC(dev_fn)) << 8) \
467 | ((((unsigned int)(off)) >> 8) << 28) \
468 | (((unsigned int)(off)) & 0xfcU))
469
470#define U4_PCIE_CFA1(bus, devfn, off) \
471 ((((unsigned int)(bus)) << 16) \
472 |(((unsigned int)(devfn)) << 8) \
473 | ((((unsigned int)(off)) >> 8) << 28) \
474 |(((unsigned int)(off)) & 0xfcU) \
475 |1UL)
476
Al Virode125bf2006-02-01 05:18:43 -0500477static volatile void __iomem *u4_pcie_cfg_access(struct pci_controller* hose,
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100478 u8 bus, u8 dev_fn, int offset)
479{
480 unsigned int caddr;
481
482 if (bus == hose->first_busno) {
483 caddr = U4_PCIE_CFA0(dev_fn, offset);
484 } else
485 caddr = U4_PCIE_CFA1(bus, dev_fn, offset);
486
487 /* Uninorth will return garbage if we don't read back the value ! */
488 do {
489 out_le32(hose->cfg_addr, caddr);
490 } while (in_le32(hose->cfg_addr) != caddr);
491
492 offset &= 0x03;
Al Virode125bf2006-02-01 05:18:43 -0500493 return hose->cfg_data + offset;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100494}
495
496static int u4_pcie_read_config(struct pci_bus *bus, unsigned int devfn,
497 int offset, int len, u32 *val)
498{
499 struct pci_controller *hose;
Al Virode125bf2006-02-01 05:18:43 -0500500 volatile void __iomem *addr;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100501
502 hose = pci_bus_to_host(bus);
503 if (hose == NULL)
504 return PCIBIOS_DEVICE_NOT_FOUND;
505 if (offset >= 0x1000)
506 return PCIBIOS_BAD_REGISTER_NUMBER;
507 addr = u4_pcie_cfg_access(hose, bus->number, devfn, offset);
508 if (!addr)
509 return PCIBIOS_DEVICE_NOT_FOUND;
510 /*
511 * Note: the caller has already checked that offset is
512 * suitably aligned and that len is 1, 2 or 4.
513 */
514 switch (len) {
515 case 1:
Al Virode125bf2006-02-01 05:18:43 -0500516 *val = in_8(addr);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100517 break;
518 case 2:
Al Virode125bf2006-02-01 05:18:43 -0500519 *val = in_le16(addr);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100520 break;
521 default:
Al Virode125bf2006-02-01 05:18:43 -0500522 *val = in_le32(addr);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100523 break;
524 }
525 return PCIBIOS_SUCCESSFUL;
526}
527
528static int u4_pcie_write_config(struct pci_bus *bus, unsigned int devfn,
529 int offset, int len, u32 val)
530{
531 struct pci_controller *hose;
Al Virode125bf2006-02-01 05:18:43 -0500532 volatile void __iomem *addr;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100533
534 hose = pci_bus_to_host(bus);
535 if (hose == NULL)
536 return PCIBIOS_DEVICE_NOT_FOUND;
537 if (offset >= 0x1000)
538 return PCIBIOS_BAD_REGISTER_NUMBER;
539 addr = u4_pcie_cfg_access(hose, bus->number, devfn, offset);
540 if (!addr)
541 return PCIBIOS_DEVICE_NOT_FOUND;
542 /*
543 * Note: the caller has already checked that offset is
544 * suitably aligned and that len is 1, 2 or 4.
545 */
546 switch (len) {
547 case 1:
Al Virode125bf2006-02-01 05:18:43 -0500548 out_8(addr, val);
549 (void) in_8(addr);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100550 break;
551 case 2:
Al Virode125bf2006-02-01 05:18:43 -0500552 out_le16(addr, val);
553 (void) in_le16(addr);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100554 break;
555 default:
Al Virode125bf2006-02-01 05:18:43 -0500556 out_le32(addr, val);
557 (void) in_le32(addr);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100558 break;
559 }
560 return PCIBIOS_SUCCESSFUL;
561}
562
563static struct pci_ops u4_pcie_pci_ops =
564{
565 u4_pcie_read_config,
566 u4_pcie_write_config
567};
568
Paul Mackerras35499c02005-10-22 16:02:39 +1000569#endif /* CONFIG_PPC64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000570
Paul Mackerras35499c02005-10-22 16:02:39 +1000571#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000572/*
573 * For a bandit bridge, turn on cache coherency if necessary.
574 * N.B. we could clean this up using the hose ops directly.
575 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000576static void __init init_bandit(struct pci_controller *bp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000577{
578 unsigned int vendev, magic;
579 int rev;
580
581 /* read the word at offset 0 in config space for device 11 */
582 out_le32(bp->cfg_addr, (1UL << BANDIT_DEVNUM) + PCI_VENDOR_ID);
583 udelay(2);
584 vendev = in_le32(bp->cfg_data);
585 if (vendev == (PCI_DEVICE_ID_APPLE_BANDIT << 16) +
586 PCI_VENDOR_ID_APPLE) {
587 /* read the revision id */
588 out_le32(bp->cfg_addr,
589 (1UL << BANDIT_DEVNUM) + PCI_REVISION_ID);
590 udelay(2);
591 rev = in_8(bp->cfg_data);
592 if (rev != BANDIT_REVID)
593 printk(KERN_WARNING
594 "Unknown revision %d for bandit\n", rev);
595 } else if (vendev != (BANDIT_DEVID_2 << 16) + PCI_VENDOR_ID_APPLE) {
596 printk(KERN_WARNING "bandit isn't? (%x)\n", vendev);
597 return;
598 }
599
600 /* read the word at offset 0x50 */
601 out_le32(bp->cfg_addr, (1UL << BANDIT_DEVNUM) + BANDIT_MAGIC);
602 udelay(2);
603 magic = in_le32(bp->cfg_data);
604 if ((magic & BANDIT_COHERENT) != 0)
605 return;
606 magic |= BANDIT_COHERENT;
607 udelay(2);
608 out_le32(bp->cfg_data, magic);
609 printk(KERN_INFO "Cache coherency enabled for bandit/PSX\n");
610}
611
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000612/*
613 * Tweak the PCI-PCI bridge chip on the blue & white G3s.
614 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000615static void __init init_p2pbridge(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000616{
617 struct device_node *p2pbridge;
618 struct pci_controller* hose;
619 u8 bus, devfn;
620 u16 val;
621
622 /* XXX it would be better here to identify the specific
623 PCI-PCI bridge chip we have. */
624 if ((p2pbridge = find_devices("pci-bridge")) == 0
625 || p2pbridge->parent == NULL
626 || strcmp(p2pbridge->parent->name, "pci") != 0)
627 return;
628 if (pci_device_from_OF_node(p2pbridge, &bus, &devfn) < 0) {
629 DBG("Can't find PCI infos for PCI<->PCI bridge\n");
630 return;
631 }
632 /* Warning: At this point, we have not yet renumbered all busses.
633 * So we must use OF walking to find out hose
634 */
635 hose = pci_find_hose_for_OF_device(p2pbridge);
636 if (!hose) {
637 DBG("Can't find hose for PCI<->PCI bridge\n");
638 return;
639 }
640 if (early_read_config_word(hose, bus, devfn,
641 PCI_BRIDGE_CONTROL, &val) < 0) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100642 printk(KERN_ERR "init_p2pbridge: couldn't read bridge"
643 " control\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000644 return;
645 }
646 val &= ~PCI_BRIDGE_CTL_MASTER_ABORT;
647 early_write_config_word(hose, bus, devfn, PCI_BRIDGE_CONTROL, val);
648}
649
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000650static void __init init_second_ohare(void)
651{
652 struct device_node *np = of_find_node_by_name(NULL, "pci106b,7");
653 unsigned char bus, devfn;
654 unsigned short cmd;
655
656 if (np == NULL)
657 return;
658
659 /* This must run before we initialize the PICs since the second
660 * ohare hosts a PIC that will be accessed there.
661 */
662 if (pci_device_from_OF_node(np, &bus, &devfn) == 0) {
663 struct pci_controller* hose =
664 pci_find_hose_for_OF_device(np);
665 if (!hose) {
666 printk(KERN_ERR "Can't find PCI hose for OHare2 !\n");
667 return;
668 }
669 early_read_config_word(hose, bus, devfn, PCI_COMMAND, &cmd);
670 cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
671 cmd &= ~PCI_COMMAND_IO;
672 early_write_config_word(hose, bus, devfn, PCI_COMMAND, cmd);
673 }
674 has_second_ohare = 1;
675}
676
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000677/*
678 * Some Apple desktop machines have a NEC PD720100A USB2 controller
679 * on the motherboard. Open Firmware, on these, will disable the
680 * EHCI part of it so it behaves like a pair of OHCI's. This fixup
681 * code re-enables it ;)
682 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000683static void __init fixup_nec_usb2(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000684{
685 struct device_node *nec;
686
687 for (nec = NULL; (nec = of_find_node_by_name(nec, "usb")) != NULL;) {
688 struct pci_controller *hose;
689 u32 data, *prop;
690 u8 bus, devfn;
Paul Mackerras35499c02005-10-22 16:02:39 +1000691
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000692 prop = (u32 *)get_property(nec, "vendor-id", NULL);
693 if (prop == NULL)
694 continue;
695 if (0x1033 != *prop)
696 continue;
697 prop = (u32 *)get_property(nec, "device-id", NULL);
698 if (prop == NULL)
699 continue;
700 if (0x0035 != *prop)
701 continue;
702 prop = (u32 *)get_property(nec, "reg", NULL);
703 if (prop == NULL)
704 continue;
705 devfn = (prop[0] >> 8) & 0xff;
706 bus = (prop[0] >> 16) & 0xff;
707 if (PCI_FUNC(devfn) != 0)
708 continue;
709 hose = pci_find_hose_for_OF_device(nec);
710 if (!hose)
711 continue;
712 early_read_config_dword(hose, bus, devfn, 0xe4, &data);
713 if (data & 1UL) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100714 printk("Found NEC PD720100A USB2 chip with disabled"
715 " EHCI, fixing up...\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000716 data &= ~1UL;
717 early_write_config_dword(hose, bus, devfn, 0xe4, data);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000718 }
719 }
720}
721
Paul Mackerras35499c02005-10-22 16:02:39 +1000722static void __init setup_bandit(struct pci_controller *hose,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100723 struct resource *addr)
Paul Mackerras35499c02005-10-22 16:02:39 +1000724{
725 hose->ops = &macrisc_pci_ops;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100726 hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
727 hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
Paul Mackerras35499c02005-10-22 16:02:39 +1000728 init_bandit(hose);
729}
730
731static int __init setup_uninorth(struct pci_controller *hose,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100732 struct resource *addr)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000733{
Paul Mackerras399fe2b2005-10-20 20:57:05 +1000734 pci_assign_all_buses = 1;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000735 has_uninorth = 1;
736 hose->ops = &macrisc_pci_ops;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100737 hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
738 hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000739 /* We "know" that the bridge at f2000000 has the PCI slots. */
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100740 return addr->start == 0xf2000000;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000741}
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100742#endif /* CONFIG_PPC32 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000743
Paul Mackerras35499c02005-10-22 16:02:39 +1000744#ifdef CONFIG_PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000745static void __init setup_u3_agp(struct pci_controller* hose)
746{
747 /* On G5, we move AGP up to high bus number so we don't need
748 * to reassign bus numbers for HT. If we ever have P2P bridges
Paul Mackerras35499c02005-10-22 16:02:39 +1000749 * on AGP, we'll have to move pci_assign_all_busses to the
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000750 * pci_controller structure so we enable it for AGP and not for
751 * HT childs.
752 * We hard code the address because of the different size of
753 * the reg address cell, we shall fix that by killing struct
754 * reg_property and using some accessor functions instead
755 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000756 hose->first_busno = 0xf0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000757 hose->last_busno = 0xff;
758 has_uninorth = 1;
759 hose->ops = &macrisc_pci_ops;
760 hose->cfg_addr = ioremap(0xf0000000 + 0x800000, 0x1000);
761 hose->cfg_data = ioremap(0xf0000000 + 0xc00000, 0x1000);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000762 u3_agp = hose;
763}
764
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100765static void __init setup_u4_pcie(struct pci_controller* hose)
766{
767 /* We currently only implement the "non-atomic" config space, to
768 * be optimised later.
769 */
770 hose->ops = &u4_pcie_pci_ops;
771 hose->cfg_addr = ioremap(0xf0000000 + 0x800000, 0x1000);
772 hose->cfg_data = ioremap(0xf0000000 + 0xc00000, 0x1000);
773
774 /* The bus contains a bridge from root -> device, we need to
775 * make it visible on bus 0 so that we pick the right type
776 * of config cycles. If we didn't, we would have to force all
777 * config cycles to be type 1. So we override the "bus-range"
778 * property here
779 */
780 hose->first_busno = 0x00;
781 hose->last_busno = 0xff;
782 u4_pcie = hose;
783}
784
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000785static void __init setup_u3_ht(struct pci_controller* hose)
786{
787 struct device_node *np = (struct device_node *)hose->arch_data;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100788 struct pci_controller *other = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000789 int i, cur;
790
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100791
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000792 hose->ops = &u3_ht_pci_ops;
793
794 /* We hard code the address because of the different size of
795 * the reg address cell, we shall fix that by killing struct
796 * reg_property and using some accessor functions instead
797 */
Al Virode125bf2006-02-01 05:18:43 -0500798 hose->cfg_data = ioremap(0xf2000000, 0x02000000);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000799
800 /*
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100801 * /ht node doesn't expose a "ranges" property, so we "remove"
802 * regions that have been allocated to AGP. So far, this version of
803 * the code doesn't assign any of the 0xfxxxxxxx "fine" memory regions
804 * to /ht. We need to fix that sooner or later by either parsing all
805 * child "ranges" properties or figuring out the U3 address space
806 * decoding logic and then read its configuration register (if any).
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000807 */
808 hose->io_base_phys = 0xf4000000;
Paul Mackerras35499c02005-10-22 16:02:39 +1000809 hose->pci_io_size = 0x00400000;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000810 hose->io_resource.name = np->full_name;
811 hose->io_resource.start = 0;
812 hose->io_resource.end = 0x003fffff;
813 hose->io_resource.flags = IORESOURCE_IO;
814 hose->pci_mem_offset = 0;
815 hose->first_busno = 0;
816 hose->last_busno = 0xef;
817 hose->mem_resources[0].name = np->full_name;
818 hose->mem_resources[0].start = 0x80000000;
819 hose->mem_resources[0].end = 0xefffffff;
820 hose->mem_resources[0].flags = IORESOURCE_MEM;
821
Paul Mackerras35499c02005-10-22 16:02:39 +1000822 u3_ht = hose;
823
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100824 if (u3_agp != NULL)
825 other = u3_agp;
826 else if (u4_pcie != NULL)
827 other = u4_pcie;
828
829 if (other == NULL) {
830 DBG("U3/4 has no AGP/PCIE, using full resource range\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000831 return;
832 }
833
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100834 /* Fixup bus range vs. PCIE */
835 if (u4_pcie)
836 hose->last_busno = u4_pcie->first_busno - 1;
837
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100838 /* We "remove" the AGP resources from the resources allocated to HT,
839 * that is we create "holes". However, that code does assumptions
840 * that so far happen to be true (cross fingers...), typically that
841 * resources in the AGP node are properly ordered
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000842 */
843 cur = 0;
844 for (i=0; i<3; i++) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100845 struct resource *res = &other->mem_resources[i];
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000846 if (res->flags != IORESOURCE_MEM)
847 continue;
848 /* We don't care about "fine" resources */
849 if (res->start >= 0xf0000000)
850 continue;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100851 /* Check if it's just a matter of "shrinking" us in one
852 * direction
853 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000854 if (hose->mem_resources[cur].start == res->start) {
855 DBG("U3/HT: shrink start of %d, %08lx -> %08lx\n",
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100856 cur, hose->mem_resources[cur].start,
857 res->end + 1);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000858 hose->mem_resources[cur].start = res->end + 1;
859 continue;
860 }
861 if (hose->mem_resources[cur].end == res->end) {
862 DBG("U3/HT: shrink end of %d, %08lx -> %08lx\n",
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100863 cur, hose->mem_resources[cur].end,
864 res->start - 1);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000865 hose->mem_resources[cur].end = res->start - 1;
866 continue;
867 }
868 /* No, it's not the case, we need a hole */
869 if (cur == 2) {
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100870 /* not enough resources for a hole, we drop part
871 * of the range
872 */
873 printk(KERN_WARNING "Running out of resources"
874 " for /ht host !\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000875 hose->mem_resources[cur].end = res->start - 1;
876 continue;
Paul Mackerras35499c02005-10-22 16:02:39 +1000877 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000878 cur++;
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000879 DBG("U3/HT: hole, %d end at %08lx, %d start at %08lx\n",
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000880 cur-1, res->start - 1, cur, res->end + 1);
881 hose->mem_resources[cur].name = np->full_name;
882 hose->mem_resources[cur].flags = IORESOURCE_MEM;
883 hose->mem_resources[cur].start = res->end + 1;
884 hose->mem_resources[cur].end = hose->mem_resources[cur-1].end;
885 hose->mem_resources[cur-1].end = res->start - 1;
886 }
887}
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100888#endif /* CONFIG_PPC64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000889
890/*
891 * We assume that if we have a G3 powermac, we have one bridge called
892 * "pci" (a MPC106) and no bandit or chaos bridges, and contrariwise,
893 * if we have one or more bandit or chaos bridges, we don't have a MPC106.
894 */
895static int __init add_bridge(struct device_node *dev)
896{
897 int len;
898 struct pci_controller *hose;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100899 struct resource rsrc;
Paul Mackerras35499c02005-10-22 16:02:39 +1000900 char *disp_name;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000901 int *bus_range;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100902 int primary = 1, has_address = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000903
904 DBG("Adding PCI host bridge %s\n", dev->full_name);
905
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100906 /* Fetch host bridge registers address */
907 has_address = (of_address_to_resource(dev, 0, &rsrc) == 0);
908
909 /* Get bus range if any */
Paul Mackerras35499c02005-10-22 16:02:39 +1000910 bus_range = (int *) get_property(dev, "bus-range", &len);
911 if (bus_range == NULL || len < 2 * sizeof(int)) {
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100912 printk(KERN_WARNING "Can't get bus-range for %s, assume"
913 " bus 0\n", dev->full_name);
Paul Mackerras35499c02005-10-22 16:02:39 +1000914 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000915
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100916 /* XXX Different prototypes, to be merged */
917#ifdef CONFIG_PPC64
918 hose = pcibios_alloc_controller(dev);
919#else
Paul Mackerras35499c02005-10-22 16:02:39 +1000920 hose = pcibios_alloc_controller();
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100921#endif
Paul Mackerras35499c02005-10-22 16:02:39 +1000922 if (!hose)
923 return -ENOMEM;
924 hose->arch_data = dev;
925 hose->first_busno = bus_range ? bus_range[0] : 0;
926 hose->last_busno = bus_range ? bus_range[1] : 0xff;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000927
928 disp_name = NULL;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100929
930 /* 64 bits only bridges */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100931#ifdef CONFIG_PPC64
Paul Mackerras35499c02005-10-22 16:02:39 +1000932 if (device_is_compatible(dev, "u3-agp")) {
933 setup_u3_agp(hose);
934 disp_name = "U3-AGP";
935 primary = 0;
936 } else if (device_is_compatible(dev, "u3-ht")) {
937 setup_u3_ht(hose);
938 disp_name = "U3-HT";
939 primary = 1;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100940 } else if (device_is_compatible(dev, "u4-pcie")) {
941 setup_u4_pcie(hose);
942 disp_name = "U4-PCIE";
943 primary = 0;
Paul Mackerras35499c02005-10-22 16:02:39 +1000944 }
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100945 printk(KERN_INFO "Found %s PCI host bridge. Firmware bus number:"
946 " %d->%d\n", disp_name, hose->first_busno, hose->last_busno);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100947#endif /* CONFIG_PPC64 */
948
949 /* 32 bits only bridges */
950#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000951 if (device_is_compatible(dev, "uni-north")) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100952 primary = setup_uninorth(hose, &rsrc);
Paul Mackerras35499c02005-10-22 16:02:39 +1000953 disp_name = "UniNorth";
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000954 } else if (strcmp(dev->name, "pci") == 0) {
Paul Mackerras35499c02005-10-22 16:02:39 +1000955 /* XXX assume this is a mpc106 (grackle) */
956 setup_grackle(hose);
957 disp_name = "Grackle (MPC106)";
958 } else if (strcmp(dev->name, "bandit") == 0) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100959 setup_bandit(hose, &rsrc);
Paul Mackerras35499c02005-10-22 16:02:39 +1000960 disp_name = "Bandit";
961 } else if (strcmp(dev->name, "chaos") == 0) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100962 setup_chaos(hose, &rsrc);
Paul Mackerras35499c02005-10-22 16:02:39 +1000963 disp_name = "Chaos";
964 primary = 0;
965 }
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700966 printk(KERN_INFO "Found %s PCI host bridge at 0x%016llx. "
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100967 "Firmware bus number: %d->%d\n",
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700968 disp_name, (unsigned long long)rsrc.start, hose->first_busno,
969 hose->last_busno);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100970#endif /* CONFIG_PPC32 */
971
Paul Mackerras35499c02005-10-22 16:02:39 +1000972 DBG(" ->Hose at 0x%p, cfg_addr=0x%p,cfg_data=0x%p\n",
973 hose, hose->cfg_addr, hose->cfg_data);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000974
Paul Mackerras35499c02005-10-22 16:02:39 +1000975 /* Interpret the "ranges" property */
976 /* This also maps the I/O region and sets isa_io/mem_base */
977 pci_process_bridge_OF_ranges(hose, dev, primary);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000978
Paul Mackerras35499c02005-10-22 16:02:39 +1000979 /* Fixup "bus-range" OF property */
980 fixup_bus_range(dev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000981
982 return 0;
983}
984
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000985void __init pmac_pcibios_fixup(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000986{
987 struct pci_dev* dev = NULL;
988
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000989 for_each_pci_dev(dev) {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000990 /* Read interrupt from the device-tree */
991 pci_read_irq_line(dev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000992
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -0700993#ifdef CONFIG_PPC32
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000994 /* Fixup interrupt for the modem/ethernet combo controller.
995 * on machines with a second ohare chip.
996 * The number in the device tree (27) is bogus (correct for
997 * the ethernet-only board but not the combo ethernet/modem
998 * board). The real interrupt is 28 on the second controller
999 * -> 28+32 = 60.
1000 */
1001 if (has_second_ohare &&
1002 dev->vendor == PCI_VENDOR_ID_DEC &&
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001003 dev->device == PCI_DEVICE_ID_DEC_TULIP_PLUS) {
1004 dev->irq = irq_create_mapping(NULL, 60);
1005 set_irq_type(dev->irq, IRQ_TYPE_LEVEL_LOW);
1006 }
1007#endif /* CONFIG_PPC32 */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001008 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001009}
1010
Paul Mackerras35499c02005-10-22 16:02:39 +10001011#ifdef CONFIG_PPC64
1012static void __init pmac_fixup_phb_resources(void)
1013{
1014 struct pci_controller *hose, *tmp;
1015
1016 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1017 printk(KERN_INFO "PCI Host %d, io start: %lx; io end: %lx\n",
1018 hose->global_number,
1019 hose->io_resource.start, hose->io_resource.end);
1020 }
1021}
1022#endif
1023
1024void __init pmac_pci_init(void)
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001025{
1026 struct device_node *np, *root;
1027 struct device_node *ht = NULL;
1028
1029 root = of_find_node_by_path("/");
1030 if (root == NULL) {
Paul Mackerras35499c02005-10-22 16:02:39 +10001031 printk(KERN_CRIT "pmac_pci_init: can't find root "
1032 "of device tree\n");
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001033 return;
1034 }
1035 for (np = NULL; (np = of_get_next_child(root, np)) != NULL;) {
1036 if (np->name == NULL)
1037 continue;
1038 if (strcmp(np->name, "bandit") == 0
1039 || strcmp(np->name, "chaos") == 0
1040 || strcmp(np->name, "pci") == 0) {
1041 if (add_bridge(np) == 0)
1042 of_node_get(np);
1043 }
1044 if (strcmp(np->name, "ht") == 0) {
1045 of_node_get(np);
1046 ht = np;
1047 }
1048 }
1049 of_node_put(root);
1050
Paul Mackerras35499c02005-10-22 16:02:39 +10001051#ifdef CONFIG_PPC64
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001052 /* Probe HT last as it relies on the agp resources to be already
1053 * setup
1054 */
1055 if (ht && add_bridge(ht) != 0)
1056 of_node_put(ht);
1057
Paul Mackerras35499c02005-10-22 16:02:39 +10001058 /*
1059 * We need to call pci_setup_phb_io for the HT bridge first
1060 * so it gets the I/O port numbers starting at 0, and we
1061 * need to call it for the AGP bridge after that so it gets
1062 * small positive I/O port numbers.
1063 */
1064 if (u3_ht)
1065 pci_setup_phb_io(u3_ht, 1);
1066 if (u3_agp)
1067 pci_setup_phb_io(u3_agp, 0);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11001068 if (u4_pcie)
1069 pci_setup_phb_io(u4_pcie, 0);
Paul Mackerras35499c02005-10-22 16:02:39 +10001070
1071 /*
1072 * On ppc64, fixup the IO resources on our host bridges as
1073 * the common code does it only for children of the host bridges
1074 */
1075 pmac_fixup_phb_resources();
1076
1077 /* Setup the linkage between OF nodes and PHBs */
1078 pci_devs_phb_init();
1079
1080 /* Fixup the PCI<->OF mapping for U3 AGP due to bus renumbering. We
1081 * assume there is no P2P bridge on the AGP bus, which should be a
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11001082 * safe assumptions for now. We should do something better in the
1083 * future though
Paul Mackerras35499c02005-10-22 16:02:39 +10001084 */
1085 if (u3_agp) {
1086 struct device_node *np = u3_agp->arch_data;
1087 PCI_DN(np)->busno = 0xf0;
1088 for (np = np->child; np; np = np->sibling)
1089 PCI_DN(np)->busno = 0xf0;
1090 }
Paul Mackerras35499c02005-10-22 16:02:39 +10001091 /* pmac_check_ht_link(); */
1092
1093 /* Tell pci.c to not use the common resource allocation mechanism */
1094 pci_probe_only = 1;
1095
Paul Mackerras35499c02005-10-22 16:02:39 +10001096#else /* CONFIG_PPC64 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001097 init_p2pbridge();
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001098 init_second_ohare();
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001099 fixup_nec_usb2();
Paul Mackerras35499c02005-10-22 16:02:39 +10001100
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001101 /* We are still having some issues with the Xserve G4, enabling
1102 * some offset between bus number and domains for now when we
1103 * assign all busses should help for now
1104 */
Paul Mackerras399fe2b2005-10-20 20:57:05 +10001105 if (pci_assign_all_buses)
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001106 pcibios_assign_bus_offset = 0x10;
Paul Mackerras35499c02005-10-22 16:02:39 +10001107#endif
Paul Mackerras3c3f42d2005-10-10 22:58:41 +10001108}
1109
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001110int
1111pmac_pci_enable_device_hook(struct pci_dev *dev, int initial)
1112{
1113 struct device_node* node;
1114 int updatecfg = 0;
1115 int uninorth_child;
1116
1117 node = pci_device_to_OF_node(dev);
1118
1119 /* We don't want to enable USB controllers absent from the OF tree
1120 * (iBook second controller)
1121 */
1122 if (dev->vendor == PCI_VENDOR_ID_APPLE
Jean Delvarec67808e2006-04-09 20:07:35 +02001123 && dev->class == PCI_CLASS_SERIAL_USB_OHCI
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001124 && !node) {
1125 printk(KERN_INFO "Apple USB OHCI %s disabled by firmware\n",
1126 pci_name(dev));
1127 return -EINVAL;
1128 }
1129
1130 if (!node)
1131 return 0;
1132
1133 uninorth_child = node->parent &&
1134 device_is_compatible(node->parent, "uni-north");
Paul Mackerras35499c02005-10-22 16:02:39 +10001135
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001136 /* Firewire & GMAC were disabled after PCI probe, the driver is
1137 * claiming them, we must re-enable them now.
1138 */
1139 if (uninorth_child && !strcmp(node->name, "firewire") &&
1140 (device_is_compatible(node, "pci106b,18") ||
1141 device_is_compatible(node, "pci106b,30") ||
1142 device_is_compatible(node, "pci11c1,5811"))) {
1143 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, node, 0, 1);
1144 pmac_call_feature(PMAC_FTR_1394_ENABLE, node, 0, 1);
1145 updatecfg = 1;
1146 }
1147 if (uninorth_child && !strcmp(node->name, "ethernet") &&
1148 device_is_compatible(node, "gmac")) {
1149 pmac_call_feature(PMAC_FTR_GMAC_ENABLE, node, 0, 1);
1150 updatecfg = 1;
1151 }
1152
1153 if (updatecfg) {
1154 u16 cmd;
Paul Mackerras35499c02005-10-22 16:02:39 +10001155
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001156 /*
1157 * Make sure PCI is correctly configured
1158 *
1159 * We use old pci_bios versions of the function since, by
1160 * default, gmac is not powered up, and so will be absent
1161 * from the kernel initial PCI lookup.
1162 *
1163 * Should be replaced by 2.4 new PCI mechanisms and really
1164 * register the device.
1165 */
1166 pci_read_config_word(dev, PCI_COMMAND, &cmd);
Paul Mackerras35499c02005-10-22 16:02:39 +10001167 cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER
1168 | PCI_COMMAND_INVALIDATE;
1169 pci_write_config_word(dev, PCI_COMMAND, cmd);
1170 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 16);
1171 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE,
1172 L1_CACHE_BYTES >> 2);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001173 }
1174
1175 return 0;
1176}
1177
1178/* We power down some devices after they have been probed. They'll
1179 * be powered back on later on
1180 */
Paul Mackerras35499c02005-10-22 16:02:39 +10001181void __init pmac_pcibios_after_init(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001182{
1183 struct device_node* nd;
1184
1185#ifdef CONFIG_BLK_DEV_IDE
1186 struct pci_dev *dev = NULL;
1187
1188 /* OF fails to initialize IDE controllers on macs
1189 * (and maybe other machines)
1190 *
1191 * Ideally, this should be moved to the IDE layer, but we need
1192 * to check specifically with Andre Hedrick how to do it cleanly
1193 * since the common IDE code seem to care about the fact that the
1194 * BIOS may have disabled a controller.
1195 *
1196 * -- BenH
1197 */
1198 for_each_pci_dev(dev) {
1199 if ((dev->class >> 16) == PCI_BASE_CLASS_STORAGE)
1200 pci_enable_device(dev);
1201 }
1202#endif /* CONFIG_BLK_DEV_IDE */
1203
1204 nd = find_devices("firewire");
1205 while (nd) {
1206 if (nd->parent && (device_is_compatible(nd, "pci106b,18") ||
1207 device_is_compatible(nd, "pci106b,30") ||
1208 device_is_compatible(nd, "pci11c1,5811"))
1209 && device_is_compatible(nd->parent, "uni-north")) {
1210 pmac_call_feature(PMAC_FTR_1394_ENABLE, nd, 0, 0);
1211 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, nd, 0, 0);
1212 }
1213 nd = nd->next;
1214 }
1215 nd = find_devices("ethernet");
1216 while (nd) {
1217 if (nd->parent && device_is_compatible(nd, "gmac")
1218 && device_is_compatible(nd->parent, "uni-north"))
1219 pmac_call_feature(PMAC_FTR_GMAC_ENABLE, nd, 0, 0);
1220 nd = nd->next;
1221 }
1222}
1223
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001224#ifdef CONFIG_PPC32
1225void pmac_pci_fixup_cardbus(struct pci_dev* dev)
1226{
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001227 if (!machine_is(powermac))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001228 return;
1229 /*
1230 * Fix the interrupt routing on the various cardbus bridges
1231 * used on powerbooks
1232 */
1233 if (dev->vendor != PCI_VENDOR_ID_TI)
1234 return;
1235 if (dev->device == PCI_DEVICE_ID_TI_1130 ||
1236 dev->device == PCI_DEVICE_ID_TI_1131) {
1237 u8 val;
Paul Mackerras35499c02005-10-22 16:02:39 +10001238 /* Enable PCI interrupt */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001239 if (pci_read_config_byte(dev, 0x91, &val) == 0)
1240 pci_write_config_byte(dev, 0x91, val | 0x30);
1241 /* Disable ISA interrupt mode */
1242 if (pci_read_config_byte(dev, 0x92, &val) == 0)
1243 pci_write_config_byte(dev, 0x92, val & ~0x06);
1244 }
1245 if (dev->device == PCI_DEVICE_ID_TI_1210 ||
1246 dev->device == PCI_DEVICE_ID_TI_1211 ||
1247 dev->device == PCI_DEVICE_ID_TI_1410 ||
1248 dev->device == PCI_DEVICE_ID_TI_1510) {
1249 u8 val;
1250 /* 0x8c == TI122X_IRQMUX, 2 says to route the INTA
1251 signal out the MFUNC0 pin */
1252 if (pci_read_config_byte(dev, 0x8c, &val) == 0)
1253 pci_write_config_byte(dev, 0x8c, (val & ~0x0f) | 2);
1254 /* Disable ISA interrupt mode */
1255 if (pci_read_config_byte(dev, 0x92, &val) == 0)
1256 pci_write_config_byte(dev, 0x92, val & ~0x06);
1257 }
1258}
1259
1260DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_TI, PCI_ANY_ID, pmac_pci_fixup_cardbus);
1261
1262void pmac_pci_fixup_pciata(struct pci_dev* dev)
1263{
1264 u8 progif = 0;
1265
1266 /*
1267 * On PowerMacs, we try to switch any PCI ATA controller to
1268 * fully native mode
1269 */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001270 if (!machine_is(powermac))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001271 return;
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001272
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001273 /* Some controllers don't have the class IDE */
1274 if (dev->vendor == PCI_VENDOR_ID_PROMISE)
1275 switch(dev->device) {
1276 case PCI_DEVICE_ID_PROMISE_20246:
1277 case PCI_DEVICE_ID_PROMISE_20262:
1278 case PCI_DEVICE_ID_PROMISE_20263:
1279 case PCI_DEVICE_ID_PROMISE_20265:
1280 case PCI_DEVICE_ID_PROMISE_20267:
1281 case PCI_DEVICE_ID_PROMISE_20268:
1282 case PCI_DEVICE_ID_PROMISE_20269:
1283 case PCI_DEVICE_ID_PROMISE_20270:
1284 case PCI_DEVICE_ID_PROMISE_20271:
1285 case PCI_DEVICE_ID_PROMISE_20275:
1286 case PCI_DEVICE_ID_PROMISE_20276:
1287 case PCI_DEVICE_ID_PROMISE_20277:
1288 goto good;
1289 }
1290 /* Others, check PCI class */
1291 if ((dev->class >> 8) != PCI_CLASS_STORAGE_IDE)
1292 return;
1293 good:
1294 pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
1295 if ((progif & 5) != 5) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11001296 printk(KERN_INFO "Forcing PCI IDE into native mode: %s\n",
1297 pci_name(dev));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001298 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
1299 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
1300 (progif & 5) != 5)
1301 printk(KERN_ERR "Rewrite of PROGIF failed !\n");
1302 }
1303}
1304DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, pmac_pci_fixup_pciata);
1305#endif
1306
1307/*
1308 * Disable second function on K2-SATA, it's broken
1309 * and disable IO BARs on first one
1310 */
1311static void fixup_k2_sata(struct pci_dev* dev)
1312{
1313 int i;
1314 u16 cmd;
1315
1316 if (PCI_FUNC(dev->devfn) > 0) {
1317 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1318 cmd &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
1319 pci_write_config_word(dev, PCI_COMMAND, cmd);
1320 for (i = 0; i < 6; i++) {
1321 dev->resource[i].start = dev->resource[i].end = 0;
1322 dev->resource[i].flags = 0;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11001323 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i,
1324 0);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001325 }
1326 } else {
1327 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1328 cmd &= ~PCI_COMMAND_IO;
1329 pci_write_config_word(dev, PCI_COMMAND, cmd);
1330 for (i = 0; i < 5; i++) {
1331 dev->resource[i].start = dev->resource[i].end = 0;
1332 dev->resource[i].flags = 0;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11001333 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i,
1334 0);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001335 }
1336 }
1337}
1338DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SERVERWORKS, 0x0240, fixup_k2_sata);
1339