blob: 5aab261075de5c9bf0d105e6705f639496c77fe5 [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 *
4 * Copyright (C) 2003 Benjamin Herrenschmuidt (benh@kernel.crashing.org)
5 * 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>
19
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/pmac_feature.h>
Paul Mackerras830825d2005-10-26 17:16:38 +100026#include <asm/grackle.h>
Paul Mackerras3c3f42d2005-10-10 22:58:41 +100027#ifdef CONFIG_PPC64
28#include <asm/iommu.h>
29#include <asm/ppc-pci.h>
30#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031
32#undef DEBUG
33
34#ifdef DEBUG
35#define DBG(x...) printk(x)
36#else
37#define DBG(x...)
38#endif
39
40static int add_bridge(struct device_node *dev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100041
42/* XXX Could be per-controller, but I don't think we risk anything by
43 * assuming we won't have both UniNorth and Bandit */
44static int has_uninorth;
Paul Mackerras35499c02005-10-22 16:02:39 +100045#ifdef CONFIG_PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +100046static struct pci_controller *u3_agp;
Paul Mackerras35499c02005-10-22 16:02:39 +100047static struct pci_controller *u3_ht;
48#endif /* CONFIG_PPC64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100049
50extern u8 pci_cache_line_size;
51extern int pcibios_assign_bus_offset;
52
53struct device_node *k2_skiplist[2];
54
55/*
56 * Magic constants for enabling cache coherency in the bandit/PSX bridge.
57 */
58#define BANDIT_DEVID_2 8
59#define BANDIT_REVID 3
60
61#define BANDIT_DEVNUM 11
62#define BANDIT_MAGIC 0x50
63#define BANDIT_COHERENT 0x40
64
65static int __init fixup_one_level_bus_range(struct device_node *node, int higher)
66{
67 for (; node != 0;node = node->sibling) {
68 int * bus_range;
69 unsigned int *class_code;
70 int len;
71
72 /* For PCI<->PCI bridges or CardBus bridges, we go down */
73 class_code = (unsigned int *) get_property(node, "class-code", NULL);
74 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
75 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
76 continue;
77 bus_range = (int *) get_property(node, "bus-range", &len);
78 if (bus_range != NULL && len > 2 * sizeof(int)) {
79 if (bus_range[1] > higher)
80 higher = bus_range[1];
81 }
82 higher = fixup_one_level_bus_range(node->child, higher);
83 }
84 return higher;
85}
86
87/* This routine fixes the "bus-range" property of all bridges in the
88 * system since they tend to have their "last" member wrong on macs
89 *
90 * Note that the bus numbers manipulated here are OF bus numbers, they
91 * are not Linux bus numbers.
92 */
93static void __init fixup_bus_range(struct device_node *bridge)
94{
95 int * bus_range;
96 int len;
97
98 /* Lookup the "bus-range" property for the hose */
99 bus_range = (int *) get_property(bridge, "bus-range", &len);
100 if (bus_range == NULL || len < 2 * sizeof(int)) {
101 printk(KERN_WARNING "Can't get bus-range for %s\n",
102 bridge->full_name);
103 return;
104 }
105 bus_range[1] = fixup_one_level_bus_range(bridge->child, bus_range[1]);
106}
107
108/*
109 * Apple MacRISC (U3, UniNorth, Bandit, Chaos) PCI controllers.
110 *
111 * The "Bandit" version is present in all early PCI PowerMacs,
112 * and up to the first ones using Grackle. Some machines may
113 * have 2 bandit controllers (2 PCI busses).
114 *
115 * "Chaos" is used in some "Bandit"-type machines as a bridge
116 * for the separate display bus. It is accessed the same
117 * way as bandit, but cannot be probed for devices. It therefore
118 * has its own config access functions.
119 *
120 * The "UniNorth" version is present in all Core99 machines
121 * (iBook, G4, new IMacs, and all the recent Apple machines).
122 * It contains 3 controllers in one ASIC.
123 *
124 * The U3 is the bridge used on G5 machines. It contains an
125 * AGP bus which is dealt with the old UniNorth access routines
126 * and a HyperTransport bus which uses its own set of access
127 * functions.
128 */
129
130#define MACRISC_CFA0(devfn, off) \
131 ((1 << (unsigned long)PCI_SLOT(dev_fn)) \
132 | (((unsigned long)PCI_FUNC(dev_fn)) << 8) \
133 | (((unsigned long)(off)) & 0xFCUL))
134
135#define MACRISC_CFA1(bus, devfn, off) \
136 ((((unsigned long)(bus)) << 16) \
137 |(((unsigned long)(devfn)) << 8) \
138 |(((unsigned long)(off)) & 0xFCUL) \
139 |1UL)
140
141static unsigned long macrisc_cfg_access(struct pci_controller* hose,
142 u8 bus, u8 dev_fn, u8 offset)
143{
144 unsigned int caddr;
145
146 if (bus == hose->first_busno) {
147 if (dev_fn < (11 << 3))
148 return 0;
149 caddr = MACRISC_CFA0(dev_fn, offset);
150 } else
151 caddr = MACRISC_CFA1(bus, dev_fn, offset);
152
153 /* Uninorth will return garbage if we don't read back the value ! */
154 do {
155 out_le32(hose->cfg_addr, caddr);
156 } while (in_le32(hose->cfg_addr) != caddr);
157
158 offset &= has_uninorth ? 0x07 : 0x03;
159 return ((unsigned long)hose->cfg_data) + offset;
160}
161
162static int macrisc_read_config(struct pci_bus *bus, unsigned int devfn,
163 int offset, int len, u32 *val)
164{
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000165 struct pci_controller *hose;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000166 unsigned long addr;
167
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000168 hose = pci_bus_to_host(bus);
169 if (hose == NULL)
170 return PCIBIOS_DEVICE_NOT_FOUND;
171
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000172 addr = macrisc_cfg_access(hose, bus->number, devfn, offset);
173 if (!addr)
174 return PCIBIOS_DEVICE_NOT_FOUND;
175 /*
176 * Note: the caller has already checked that offset is
177 * suitably aligned and that len is 1, 2 or 4.
178 */
179 switch (len) {
180 case 1:
181 *val = in_8((u8 *)addr);
182 break;
183 case 2:
184 *val = in_le16((u16 *)addr);
185 break;
186 default:
187 *val = in_le32((u32 *)addr);
188 break;
189 }
190 return PCIBIOS_SUCCESSFUL;
191}
192
193static int macrisc_write_config(struct pci_bus *bus, unsigned int devfn,
194 int offset, int len, u32 val)
195{
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000196 struct pci_controller *hose;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000197 unsigned long addr;
198
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000199 hose = pci_bus_to_host(bus);
200 if (hose == NULL)
201 return PCIBIOS_DEVICE_NOT_FOUND;
202
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:
212 out_8((u8 *)addr, val);
213 (void) in_8((u8 *)addr);
214 break;
215 case 2:
216 out_le16((u16 *)addr, val);
217 (void) in_le16((u16 *)addr);
218 break;
219 default:
220 out_le32((u32 *)addr, val);
221 (void) in_le32((u32 *)addr);
222 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 */
237static int
238chaos_validate_dev(struct pci_bus *bus, int devfn, int offset)
239{
240 struct device_node *np;
241 u32 *vendor, *device;
242
243 np = pci_busdev_to_OF_node(bus, devfn);
244 if (np == NULL)
245 return PCIBIOS_DEVICE_NOT_FOUND;
246
247 vendor = (u32 *)get_property(np, "vendor-id", NULL);
248 device = (u32 *)get_property(np, "device-id", NULL);
249 if (vendor == NULL || device == NULL)
250 return PCIBIOS_DEVICE_NOT_FOUND;
251
252 if ((*vendor == 0x106b) && (*device == 3) && (offset >= 0x10)
253 && (offset != 0x14) && (offset != 0x18) && (offset <= 0x24))
254 return PCIBIOS_BAD_REGISTER_NUMBER;
255
256 return PCIBIOS_SUCCESSFUL;
257}
258
259static int
260chaos_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
261 int len, u32 *val)
262{
263 int result = chaos_validate_dev(bus, devfn, offset);
264 if (result == PCIBIOS_BAD_REGISTER_NUMBER)
265 *val = ~0U;
266 if (result != PCIBIOS_SUCCESSFUL)
267 return result;
268 return macrisc_read_config(bus, devfn, offset, len, val);
269}
270
271static int
272chaos_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
273 int len, u32 val)
274{
275 int result = chaos_validate_dev(bus, devfn, offset);
276 if (result != PCIBIOS_SUCCESSFUL)
277 return result;
278 return macrisc_write_config(bus, devfn, offset, len, val);
279}
280
281static struct pci_ops chaos_pci_ops =
282{
283 chaos_read_config,
284 chaos_write_config
285};
286
Paul Mackerras35499c02005-10-22 16:02:39 +1000287static void __init setup_chaos(struct pci_controller *hose,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100288 struct resource *addr)
Paul Mackerras35499c02005-10-22 16:02:39 +1000289{
290 /* assume a `chaos' bridge */
291 hose->ops = &chaos_pci_ops;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100292 hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
293 hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
Paul Mackerras35499c02005-10-22 16:02:39 +1000294}
Paul Mackerras35499c02005-10-22 16:02:39 +1000295#endif /* CONFIG_PPC32 */
296
297#ifdef CONFIG_PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000298/*
299 * These versions of U3 HyperTransport config space access ops do not
300 * implement self-view of the HT host yet
301 */
302
303/*
304 * This function deals with some "special cases" devices.
305 *
306 * 0 -> No special case
307 * 1 -> Skip the device but act as if the access was successfull
308 * (return 0xff's on reads, eventually, cache config space
309 * accesses in a later version)
310 * -1 -> Hide the device (unsuccessful acess)
311 */
312static int u3_ht_skip_device(struct pci_controller *hose,
313 struct pci_bus *bus, unsigned int devfn)
314{
315 struct device_node *busdn, *dn;
316 int i;
317
318 /* We only allow config cycles to devices that are in OF device-tree
319 * as we are apparently having some weird things going on with some
320 * revs of K2 on recent G5s
321 */
322 if (bus->self)
323 busdn = pci_device_to_OF_node(bus->self);
324 else
325 busdn = hose->arch_data;
326 for (dn = busdn->child; dn; dn = dn->sibling)
linase07102d2005-12-05 19:37:35 -0600327 if (PCI_DN(dn) && PCI_DN(dn)->devfn == devfn)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000328 break;
329 if (dn == NULL)
330 return -1;
331
332 /*
333 * When a device in K2 is powered down, we die on config
334 * cycle accesses. Fix that here.
335 */
336 for (i=0; i<2; i++)
337 if (k2_skiplist[i] == dn)
338 return 1;
339
340 return 0;
341}
342
343#define U3_HT_CFA0(devfn, off) \
344 ((((unsigned long)devfn) << 8) | offset)
345#define U3_HT_CFA1(bus, devfn, off) \
346 (U3_HT_CFA0(devfn, off) \
347 + (((unsigned long)bus) << 16) \
348 + 0x01000000UL)
349
350static unsigned long u3_ht_cfg_access(struct pci_controller* hose,
351 u8 bus, u8 devfn, u8 offset)
352{
353 if (bus == hose->first_busno) {
354 /* For now, we don't self probe U3 HT bridge */
355 if (PCI_SLOT(devfn) == 0)
356 return 0;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100357 return ((unsigned long)hose->cfg_data) +
358 U3_HT_CFA0(devfn, offset);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000359 } else
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100360 return ((unsigned long)hose->cfg_data) +
361 U3_HT_CFA1(bus, devfn, offset);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000362}
363
364static int u3_ht_read_config(struct pci_bus *bus, unsigned int devfn,
365 int offset, int len, u32 *val)
366{
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000367 struct pci_controller *hose;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000368 unsigned long addr;
369
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000370 hose = pci_bus_to_host(bus);
371 if (hose == NULL)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000372 return PCIBIOS_DEVICE_NOT_FOUND;
373
374 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:
401 *val = in_8((u8 *)addr);
402 break;
403 case 2:
404 *val = in_le16((u16 *)addr);
405 break;
406 default:
407 *val = in_le32((u32 *)addr);
408 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;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000417 unsigned long addr;
418
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;
422
423 addr = u3_ht_cfg_access(hose, bus->number, devfn, offset);
424 if (!addr)
425 return PCIBIOS_DEVICE_NOT_FOUND;
426
427 switch (u3_ht_skip_device(hose, bus, devfn)) {
428 case 0:
429 break;
430 case 1:
431 return PCIBIOS_SUCCESSFUL;
432 default:
433 return PCIBIOS_DEVICE_NOT_FOUND;
434 }
435
436 /*
437 * Note: the caller has already checked that offset is
438 * suitably aligned and that len is 1, 2 or 4.
439 */
440 switch (len) {
441 case 1:
442 out_8((u8 *)addr, val);
443 (void) in_8((u8 *)addr);
444 break;
445 case 2:
446 out_le16((u16 *)addr, val);
447 (void) in_le16((u16 *)addr);
448 break;
449 default:
450 out_le32((u32 *)addr, val);
451 (void) in_le32((u32 *)addr);
452 break;
453 }
454 return PCIBIOS_SUCCESSFUL;
455}
456
457static struct pci_ops u3_ht_pci_ops =
458{
459 u3_ht_read_config,
460 u3_ht_write_config
461};
Paul Mackerras35499c02005-10-22 16:02:39 +1000462#endif /* CONFIG_PPC64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000463
Paul Mackerras35499c02005-10-22 16:02:39 +1000464#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000465/*
466 * For a bandit bridge, turn on cache coherency if necessary.
467 * N.B. we could clean this up using the hose ops directly.
468 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000469static void __init init_bandit(struct pci_controller *bp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000470{
471 unsigned int vendev, magic;
472 int rev;
473
474 /* read the word at offset 0 in config space for device 11 */
475 out_le32(bp->cfg_addr, (1UL << BANDIT_DEVNUM) + PCI_VENDOR_ID);
476 udelay(2);
477 vendev = in_le32(bp->cfg_data);
478 if (vendev == (PCI_DEVICE_ID_APPLE_BANDIT << 16) +
479 PCI_VENDOR_ID_APPLE) {
480 /* read the revision id */
481 out_le32(bp->cfg_addr,
482 (1UL << BANDIT_DEVNUM) + PCI_REVISION_ID);
483 udelay(2);
484 rev = in_8(bp->cfg_data);
485 if (rev != BANDIT_REVID)
486 printk(KERN_WARNING
487 "Unknown revision %d for bandit\n", rev);
488 } else if (vendev != (BANDIT_DEVID_2 << 16) + PCI_VENDOR_ID_APPLE) {
489 printk(KERN_WARNING "bandit isn't? (%x)\n", vendev);
490 return;
491 }
492
493 /* read the word at offset 0x50 */
494 out_le32(bp->cfg_addr, (1UL << BANDIT_DEVNUM) + BANDIT_MAGIC);
495 udelay(2);
496 magic = in_le32(bp->cfg_data);
497 if ((magic & BANDIT_COHERENT) != 0)
498 return;
499 magic |= BANDIT_COHERENT;
500 udelay(2);
501 out_le32(bp->cfg_data, magic);
502 printk(KERN_INFO "Cache coherency enabled for bandit/PSX\n");
503}
504
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000505/*
506 * Tweak the PCI-PCI bridge chip on the blue & white G3s.
507 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000508static void __init init_p2pbridge(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000509{
510 struct device_node *p2pbridge;
511 struct pci_controller* hose;
512 u8 bus, devfn;
513 u16 val;
514
515 /* XXX it would be better here to identify the specific
516 PCI-PCI bridge chip we have. */
517 if ((p2pbridge = find_devices("pci-bridge")) == 0
518 || p2pbridge->parent == NULL
519 || strcmp(p2pbridge->parent->name, "pci") != 0)
520 return;
521 if (pci_device_from_OF_node(p2pbridge, &bus, &devfn) < 0) {
522 DBG("Can't find PCI infos for PCI<->PCI bridge\n");
523 return;
524 }
525 /* Warning: At this point, we have not yet renumbered all busses.
526 * So we must use OF walking to find out hose
527 */
528 hose = pci_find_hose_for_OF_device(p2pbridge);
529 if (!hose) {
530 DBG("Can't find hose for PCI<->PCI bridge\n");
531 return;
532 }
533 if (early_read_config_word(hose, bus, devfn,
534 PCI_BRIDGE_CONTROL, &val) < 0) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100535 printk(KERN_ERR "init_p2pbridge: couldn't read bridge"
536 " control\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000537 return;
538 }
539 val &= ~PCI_BRIDGE_CTL_MASTER_ABORT;
540 early_write_config_word(hose, bus, devfn, PCI_BRIDGE_CONTROL, val);
541}
542
543/*
544 * Some Apple desktop machines have a NEC PD720100A USB2 controller
545 * on the motherboard. Open Firmware, on these, will disable the
546 * EHCI part of it so it behaves like a pair of OHCI's. This fixup
547 * code re-enables it ;)
548 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000549static void __init fixup_nec_usb2(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000550{
551 struct device_node *nec;
552
553 for (nec = NULL; (nec = of_find_node_by_name(nec, "usb")) != NULL;) {
554 struct pci_controller *hose;
555 u32 data, *prop;
556 u8 bus, devfn;
Paul Mackerras35499c02005-10-22 16:02:39 +1000557
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000558 prop = (u32 *)get_property(nec, "vendor-id", NULL);
559 if (prop == NULL)
560 continue;
561 if (0x1033 != *prop)
562 continue;
563 prop = (u32 *)get_property(nec, "device-id", NULL);
564 if (prop == NULL)
565 continue;
566 if (0x0035 != *prop)
567 continue;
568 prop = (u32 *)get_property(nec, "reg", NULL);
569 if (prop == NULL)
570 continue;
571 devfn = (prop[0] >> 8) & 0xff;
572 bus = (prop[0] >> 16) & 0xff;
573 if (PCI_FUNC(devfn) != 0)
574 continue;
575 hose = pci_find_hose_for_OF_device(nec);
576 if (!hose)
577 continue;
578 early_read_config_dword(hose, bus, devfn, 0xe4, &data);
579 if (data & 1UL) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100580 printk("Found NEC PD720100A USB2 chip with disabled"
581 " EHCI, fixing up...\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000582 data &= ~1UL;
583 early_write_config_dword(hose, bus, devfn, 0xe4, data);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100584 early_write_config_byte(hose, bus,
585 devfn | 2, PCI_INTERRUPT_LINE,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000586 nec->intrs[0].line);
587 }
588 }
589}
590
Paul Mackerras35499c02005-10-22 16:02:39 +1000591static void __init setup_bandit(struct pci_controller *hose,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100592 struct resource *addr)
Paul Mackerras35499c02005-10-22 16:02:39 +1000593{
594 hose->ops = &macrisc_pci_ops;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100595 hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
596 hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
Paul Mackerras35499c02005-10-22 16:02:39 +1000597 init_bandit(hose);
598}
599
600static int __init setup_uninorth(struct pci_controller *hose,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100601 struct resource *addr)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000602{
Paul Mackerras399fe2b2005-10-20 20:57:05 +1000603 pci_assign_all_buses = 1;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000604 has_uninorth = 1;
605 hose->ops = &macrisc_pci_ops;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100606 hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
607 hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000608 /* We "know" that the bridge at f2000000 has the PCI slots. */
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100609 return addr->start == 0xf2000000;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000610}
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100611#endif /* CONFIG_PPC32 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000612
Paul Mackerras35499c02005-10-22 16:02:39 +1000613#ifdef CONFIG_PPC64
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000614static void __init setup_u3_agp(struct pci_controller* hose)
615{
616 /* On G5, we move AGP up to high bus number so we don't need
617 * to reassign bus numbers for HT. If we ever have P2P bridges
Paul Mackerras35499c02005-10-22 16:02:39 +1000618 * on AGP, we'll have to move pci_assign_all_busses to the
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000619 * pci_controller structure so we enable it for AGP and not for
620 * HT childs.
621 * We hard code the address because of the different size of
622 * the reg address cell, we shall fix that by killing struct
623 * reg_property and using some accessor functions instead
624 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000625 hose->first_busno = 0xf0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000626 hose->last_busno = 0xff;
627 has_uninorth = 1;
628 hose->ops = &macrisc_pci_ops;
629 hose->cfg_addr = ioremap(0xf0000000 + 0x800000, 0x1000);
630 hose->cfg_data = ioremap(0xf0000000 + 0xc00000, 0x1000);
631
632 u3_agp = hose;
633}
634
635static void __init setup_u3_ht(struct pci_controller* hose)
636{
637 struct device_node *np = (struct device_node *)hose->arch_data;
638 int i, cur;
639
640 hose->ops = &u3_ht_pci_ops;
641
642 /* We hard code the address because of the different size of
643 * the reg address cell, we shall fix that by killing struct
644 * reg_property and using some accessor functions instead
645 */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100646 hose->cfg_data = (volatile unsigned char *)ioremap(0xf2000000,
647 0x02000000);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000648
649 /*
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100650 * /ht node doesn't expose a "ranges" property, so we "remove"
651 * regions that have been allocated to AGP. So far, this version of
652 * the code doesn't assign any of the 0xfxxxxxxx "fine" memory regions
653 * to /ht. We need to fix that sooner or later by either parsing all
654 * child "ranges" properties or figuring out the U3 address space
655 * decoding logic and then read its configuration register (if any).
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000656 */
657 hose->io_base_phys = 0xf4000000;
Paul Mackerras35499c02005-10-22 16:02:39 +1000658 hose->pci_io_size = 0x00400000;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000659 hose->io_resource.name = np->full_name;
660 hose->io_resource.start = 0;
661 hose->io_resource.end = 0x003fffff;
662 hose->io_resource.flags = IORESOURCE_IO;
663 hose->pci_mem_offset = 0;
664 hose->first_busno = 0;
665 hose->last_busno = 0xef;
666 hose->mem_resources[0].name = np->full_name;
667 hose->mem_resources[0].start = 0x80000000;
668 hose->mem_resources[0].end = 0xefffffff;
669 hose->mem_resources[0].flags = IORESOURCE_MEM;
670
Paul Mackerras35499c02005-10-22 16:02:39 +1000671 u3_ht = hose;
672
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000673 if (u3_agp == NULL) {
674 DBG("U3 has no AGP, using full resource range\n");
675 return;
676 }
677
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100678 /* We "remove" the AGP resources from the resources allocated to HT,
679 * that is we create "holes". However, that code does assumptions
680 * that so far happen to be true (cross fingers...), typically that
681 * resources in the AGP node are properly ordered
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000682 */
683 cur = 0;
684 for (i=0; i<3; i++) {
685 struct resource *res = &u3_agp->mem_resources[i];
686 if (res->flags != IORESOURCE_MEM)
687 continue;
688 /* We don't care about "fine" resources */
689 if (res->start >= 0xf0000000)
690 continue;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100691 /* Check if it's just a matter of "shrinking" us in one
692 * direction
693 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000694 if (hose->mem_resources[cur].start == res->start) {
695 DBG("U3/HT: shrink start of %d, %08lx -> %08lx\n",
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100696 cur, hose->mem_resources[cur].start,
697 res->end + 1);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000698 hose->mem_resources[cur].start = res->end + 1;
699 continue;
700 }
701 if (hose->mem_resources[cur].end == res->end) {
702 DBG("U3/HT: shrink end of %d, %08lx -> %08lx\n",
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100703 cur, hose->mem_resources[cur].end,
704 res->start - 1);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000705 hose->mem_resources[cur].end = res->start - 1;
706 continue;
707 }
708 /* No, it's not the case, we need a hole */
709 if (cur == 2) {
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100710 /* not enough resources for a hole, we drop part
711 * of the range
712 */
713 printk(KERN_WARNING "Running out of resources"
714 " for /ht host !\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000715 hose->mem_resources[cur].end = res->start - 1;
716 continue;
Paul Mackerras35499c02005-10-22 16:02:39 +1000717 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000718 cur++;
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000719 DBG("U3/HT: hole, %d end at %08lx, %d start at %08lx\n",
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000720 cur-1, res->start - 1, cur, res->end + 1);
721 hose->mem_resources[cur].name = np->full_name;
722 hose->mem_resources[cur].flags = IORESOURCE_MEM;
723 hose->mem_resources[cur].start = res->end + 1;
724 hose->mem_resources[cur].end = hose->mem_resources[cur-1].end;
725 hose->mem_resources[cur-1].end = res->start - 1;
726 }
727}
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100728#endif /* CONFIG_PPC64 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000729
730/*
731 * We assume that if we have a G3 powermac, we have one bridge called
732 * "pci" (a MPC106) and no bandit or chaos bridges, and contrariwise,
733 * if we have one or more bandit or chaos bridges, we don't have a MPC106.
734 */
735static int __init add_bridge(struct device_node *dev)
736{
737 int len;
738 struct pci_controller *hose;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100739 struct resource rsrc;
Paul Mackerras35499c02005-10-22 16:02:39 +1000740 char *disp_name;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000741 int *bus_range;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100742 int primary = 1, has_address = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000743
744 DBG("Adding PCI host bridge %s\n", dev->full_name);
745
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100746 /* Fetch host bridge registers address */
747 has_address = (of_address_to_resource(dev, 0, &rsrc) == 0);
748
749 /* Get bus range if any */
Paul Mackerras35499c02005-10-22 16:02:39 +1000750 bus_range = (int *) get_property(dev, "bus-range", &len);
751 if (bus_range == NULL || len < 2 * sizeof(int)) {
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100752 printk(KERN_WARNING "Can't get bus-range for %s, assume"
753 " bus 0\n", dev->full_name);
Paul Mackerras35499c02005-10-22 16:02:39 +1000754 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000755
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100756 /* XXX Different prototypes, to be merged */
757#ifdef CONFIG_PPC64
758 hose = pcibios_alloc_controller(dev);
759#else
Paul Mackerras35499c02005-10-22 16:02:39 +1000760 hose = pcibios_alloc_controller();
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100761#endif
Paul Mackerras35499c02005-10-22 16:02:39 +1000762 if (!hose)
763 return -ENOMEM;
764 hose->arch_data = dev;
765 hose->first_busno = bus_range ? bus_range[0] : 0;
766 hose->last_busno = bus_range ? bus_range[1] : 0xff;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000767
768 disp_name = NULL;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100769
770 /* 64 bits only bridges */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100771#ifdef CONFIG_PPC64
Paul Mackerras35499c02005-10-22 16:02:39 +1000772 if (device_is_compatible(dev, "u3-agp")) {
773 setup_u3_agp(hose);
774 disp_name = "U3-AGP";
775 primary = 0;
776 } else if (device_is_compatible(dev, "u3-ht")) {
777 setup_u3_ht(hose);
778 disp_name = "U3-HT";
779 primary = 1;
780 }
781 printk(KERN_INFO "Found %s PCI host bridge. Firmware bus number: %d->%d\n",
782 disp_name, hose->first_busno, hose->last_busno);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100783#endif /* CONFIG_PPC64 */
784
785 /* 32 bits only bridges */
786#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000787 if (device_is_compatible(dev, "uni-north")) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100788 primary = setup_uninorth(hose, &rsrc);
Paul Mackerras35499c02005-10-22 16:02:39 +1000789 disp_name = "UniNorth";
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000790 } else if (strcmp(dev->name, "pci") == 0) {
Paul Mackerras35499c02005-10-22 16:02:39 +1000791 /* XXX assume this is a mpc106 (grackle) */
792 setup_grackle(hose);
793 disp_name = "Grackle (MPC106)";
794 } else if (strcmp(dev->name, "bandit") == 0) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100795 setup_bandit(hose, &rsrc);
Paul Mackerras35499c02005-10-22 16:02:39 +1000796 disp_name = "Bandit";
797 } else if (strcmp(dev->name, "chaos") == 0) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100798 setup_chaos(hose, &rsrc);
Paul Mackerras35499c02005-10-22 16:02:39 +1000799 disp_name = "Chaos";
800 primary = 0;
801 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100802 printk(KERN_INFO "Found %s PCI host bridge at 0x%08lx. "
803 "Firmware bus number: %d->%d\n",
804 disp_name, rsrc.start, hose->first_busno, hose->last_busno);
805#endif /* CONFIG_PPC32 */
806
Paul Mackerras35499c02005-10-22 16:02:39 +1000807 DBG(" ->Hose at 0x%p, cfg_addr=0x%p,cfg_data=0x%p\n",
808 hose, hose->cfg_addr, hose->cfg_data);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000809
Paul Mackerras35499c02005-10-22 16:02:39 +1000810 /* Interpret the "ranges" property */
811 /* This also maps the I/O region and sets isa_io/mem_base */
812 pci_process_bridge_OF_ranges(hose, dev, primary);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000813
Paul Mackerras35499c02005-10-22 16:02:39 +1000814 /* Fixup "bus-range" OF property */
815 fixup_bus_range(dev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000816
817 return 0;
818}
819
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100820static void __init pcibios_fixup_OF_interrupts(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000821{
822 struct pci_dev* dev = NULL;
823
824 /*
825 * Open Firmware often doesn't initialize the
826 * PCI_INTERRUPT_LINE config register properly, so we
827 * should find the device node and apply the interrupt
828 * obtained from the OF device-tree
829 */
830 for_each_pci_dev(dev) {
831 struct device_node *node;
832 node = pci_device_to_OF_node(dev);
833 /* this is the node, see if it has interrupts */
834 if (node && node->n_intrs > 0)
835 dev->irq = node->intrs[0].line;
836 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
837 }
838}
839
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100840void __init pmac_pcibios_fixup(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000841{
842 /* Fixup interrupts according to OF tree */
843 pcibios_fixup_OF_interrupts();
844}
845
Paul Mackerras35499c02005-10-22 16:02:39 +1000846#ifdef CONFIG_PPC64
847static void __init pmac_fixup_phb_resources(void)
848{
849 struct pci_controller *hose, *tmp;
850
851 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
852 printk(KERN_INFO "PCI Host %d, io start: %lx; io end: %lx\n",
853 hose->global_number,
854 hose->io_resource.start, hose->io_resource.end);
855 }
856}
857#endif
858
859void __init pmac_pci_init(void)
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000860{
861 struct device_node *np, *root;
862 struct device_node *ht = NULL;
863
864 root = of_find_node_by_path("/");
865 if (root == NULL) {
Paul Mackerras35499c02005-10-22 16:02:39 +1000866 printk(KERN_CRIT "pmac_pci_init: can't find root "
867 "of device tree\n");
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000868 return;
869 }
870 for (np = NULL; (np = of_get_next_child(root, np)) != NULL;) {
871 if (np->name == NULL)
872 continue;
873 if (strcmp(np->name, "bandit") == 0
874 || strcmp(np->name, "chaos") == 0
875 || strcmp(np->name, "pci") == 0) {
876 if (add_bridge(np) == 0)
877 of_node_get(np);
878 }
879 if (strcmp(np->name, "ht") == 0) {
880 of_node_get(np);
881 ht = np;
882 }
883 }
884 of_node_put(root);
885
Paul Mackerras35499c02005-10-22 16:02:39 +1000886#ifdef CONFIG_PPC64
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000887 /* Probe HT last as it relies on the agp resources to be already
888 * setup
889 */
890 if (ht && add_bridge(ht) != 0)
891 of_node_put(ht);
892
Paul Mackerras35499c02005-10-22 16:02:39 +1000893 /*
894 * We need to call pci_setup_phb_io for the HT bridge first
895 * so it gets the I/O port numbers starting at 0, and we
896 * need to call it for the AGP bridge after that so it gets
897 * small positive I/O port numbers.
898 */
899 if (u3_ht)
900 pci_setup_phb_io(u3_ht, 1);
901 if (u3_agp)
902 pci_setup_phb_io(u3_agp, 0);
903
904 /*
905 * On ppc64, fixup the IO resources on our host bridges as
906 * the common code does it only for children of the host bridges
907 */
908 pmac_fixup_phb_resources();
909
910 /* Setup the linkage between OF nodes and PHBs */
911 pci_devs_phb_init();
912
913 /* Fixup the PCI<->OF mapping for U3 AGP due to bus renumbering. We
914 * assume there is no P2P bridge on the AGP bus, which should be a
915 * safe assumptions hopefully.
916 */
917 if (u3_agp) {
918 struct device_node *np = u3_agp->arch_data;
919 PCI_DN(np)->busno = 0xf0;
920 for (np = np->child; np; np = np->sibling)
921 PCI_DN(np)->busno = 0xf0;
922 }
923
Paul Mackerras35499c02005-10-22 16:02:39 +1000924 /* pmac_check_ht_link(); */
925
926 /* Tell pci.c to not use the common resource allocation mechanism */
927 pci_probe_only = 1;
928
929 /* Allow all IO */
930 io_page_mask = -1;
931
932#else /* CONFIG_PPC64 */
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000933 init_p2pbridge();
934 fixup_nec_usb2();
Paul Mackerras35499c02005-10-22 16:02:39 +1000935
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000936 /* We are still having some issues with the Xserve G4, enabling
937 * some offset between bus number and domains for now when we
938 * assign all busses should help for now
939 */
Paul Mackerras399fe2b2005-10-20 20:57:05 +1000940 if (pci_assign_all_buses)
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000941 pcibios_assign_bus_offset = 0x10;
Paul Mackerras35499c02005-10-22 16:02:39 +1000942#endif
Paul Mackerras3c3f42d2005-10-10 22:58:41 +1000943}
944
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000945int
946pmac_pci_enable_device_hook(struct pci_dev *dev, int initial)
947{
948 struct device_node* node;
949 int updatecfg = 0;
950 int uninorth_child;
951
952 node = pci_device_to_OF_node(dev);
953
954 /* We don't want to enable USB controllers absent from the OF tree
955 * (iBook second controller)
956 */
957 if (dev->vendor == PCI_VENDOR_ID_APPLE
958 && (dev->class == ((PCI_CLASS_SERIAL_USB << 8) | 0x10))
959 && !node) {
960 printk(KERN_INFO "Apple USB OHCI %s disabled by firmware\n",
961 pci_name(dev));
962 return -EINVAL;
963 }
964
965 if (!node)
966 return 0;
967
968 uninorth_child = node->parent &&
969 device_is_compatible(node->parent, "uni-north");
Paul Mackerras35499c02005-10-22 16:02:39 +1000970
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000971 /* Firewire & GMAC were disabled after PCI probe, the driver is
972 * claiming them, we must re-enable them now.
973 */
974 if (uninorth_child && !strcmp(node->name, "firewire") &&
975 (device_is_compatible(node, "pci106b,18") ||
976 device_is_compatible(node, "pci106b,30") ||
977 device_is_compatible(node, "pci11c1,5811"))) {
978 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, node, 0, 1);
979 pmac_call_feature(PMAC_FTR_1394_ENABLE, node, 0, 1);
980 updatecfg = 1;
981 }
982 if (uninorth_child && !strcmp(node->name, "ethernet") &&
983 device_is_compatible(node, "gmac")) {
984 pmac_call_feature(PMAC_FTR_GMAC_ENABLE, node, 0, 1);
985 updatecfg = 1;
986 }
987
988 if (updatecfg) {
989 u16 cmd;
Paul Mackerras35499c02005-10-22 16:02:39 +1000990
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000991 /*
992 * Make sure PCI is correctly configured
993 *
994 * We use old pci_bios versions of the function since, by
995 * default, gmac is not powered up, and so will be absent
996 * from the kernel initial PCI lookup.
997 *
998 * Should be replaced by 2.4 new PCI mechanisms and really
999 * register the device.
1000 */
1001 pci_read_config_word(dev, PCI_COMMAND, &cmd);
Paul Mackerras35499c02005-10-22 16:02:39 +10001002 cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER
1003 | PCI_COMMAND_INVALIDATE;
1004 pci_write_config_word(dev, PCI_COMMAND, cmd);
1005 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 16);
1006 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE,
1007 L1_CACHE_BYTES >> 2);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001008 }
1009
1010 return 0;
1011}
1012
1013/* We power down some devices after they have been probed. They'll
1014 * be powered back on later on
1015 */
Paul Mackerras35499c02005-10-22 16:02:39 +10001016void __init pmac_pcibios_after_init(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001017{
1018 struct device_node* nd;
1019
1020#ifdef CONFIG_BLK_DEV_IDE
1021 struct pci_dev *dev = NULL;
1022
1023 /* OF fails to initialize IDE controllers on macs
1024 * (and maybe other machines)
1025 *
1026 * Ideally, this should be moved to the IDE layer, but we need
1027 * to check specifically with Andre Hedrick how to do it cleanly
1028 * since the common IDE code seem to care about the fact that the
1029 * BIOS may have disabled a controller.
1030 *
1031 * -- BenH
1032 */
1033 for_each_pci_dev(dev) {
1034 if ((dev->class >> 16) == PCI_BASE_CLASS_STORAGE)
1035 pci_enable_device(dev);
1036 }
1037#endif /* CONFIG_BLK_DEV_IDE */
1038
1039 nd = find_devices("firewire");
1040 while (nd) {
1041 if (nd->parent && (device_is_compatible(nd, "pci106b,18") ||
1042 device_is_compatible(nd, "pci106b,30") ||
1043 device_is_compatible(nd, "pci11c1,5811"))
1044 && device_is_compatible(nd->parent, "uni-north")) {
1045 pmac_call_feature(PMAC_FTR_1394_ENABLE, nd, 0, 0);
1046 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, nd, 0, 0);
1047 }
1048 nd = nd->next;
1049 }
1050 nd = find_devices("ethernet");
1051 while (nd) {
1052 if (nd->parent && device_is_compatible(nd, "gmac")
1053 && device_is_compatible(nd->parent, "uni-north"))
1054 pmac_call_feature(PMAC_FTR_GMAC_ENABLE, nd, 0, 0);
1055 nd = nd->next;
1056 }
1057}
1058
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001059#ifdef CONFIG_PPC32
1060void pmac_pci_fixup_cardbus(struct pci_dev* dev)
1061{
1062 if (_machine != _MACH_Pmac)
1063 return;
1064 /*
1065 * Fix the interrupt routing on the various cardbus bridges
1066 * used on powerbooks
1067 */
1068 if (dev->vendor != PCI_VENDOR_ID_TI)
1069 return;
1070 if (dev->device == PCI_DEVICE_ID_TI_1130 ||
1071 dev->device == PCI_DEVICE_ID_TI_1131) {
1072 u8 val;
Paul Mackerras35499c02005-10-22 16:02:39 +10001073 /* Enable PCI interrupt */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001074 if (pci_read_config_byte(dev, 0x91, &val) == 0)
1075 pci_write_config_byte(dev, 0x91, val | 0x30);
1076 /* Disable ISA interrupt mode */
1077 if (pci_read_config_byte(dev, 0x92, &val) == 0)
1078 pci_write_config_byte(dev, 0x92, val & ~0x06);
1079 }
1080 if (dev->device == PCI_DEVICE_ID_TI_1210 ||
1081 dev->device == PCI_DEVICE_ID_TI_1211 ||
1082 dev->device == PCI_DEVICE_ID_TI_1410 ||
1083 dev->device == PCI_DEVICE_ID_TI_1510) {
1084 u8 val;
1085 /* 0x8c == TI122X_IRQMUX, 2 says to route the INTA
1086 signal out the MFUNC0 pin */
1087 if (pci_read_config_byte(dev, 0x8c, &val) == 0)
1088 pci_write_config_byte(dev, 0x8c, (val & ~0x0f) | 2);
1089 /* Disable ISA interrupt mode */
1090 if (pci_read_config_byte(dev, 0x92, &val) == 0)
1091 pci_write_config_byte(dev, 0x92, val & ~0x06);
1092 }
1093}
1094
1095DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_TI, PCI_ANY_ID, pmac_pci_fixup_cardbus);
1096
1097void pmac_pci_fixup_pciata(struct pci_dev* dev)
1098{
1099 u8 progif = 0;
1100
1101 /*
1102 * On PowerMacs, we try to switch any PCI ATA controller to
1103 * fully native mode
1104 */
1105 if (_machine != _MACH_Pmac)
1106 return;
1107 /* Some controllers don't have the class IDE */
1108 if (dev->vendor == PCI_VENDOR_ID_PROMISE)
1109 switch(dev->device) {
1110 case PCI_DEVICE_ID_PROMISE_20246:
1111 case PCI_DEVICE_ID_PROMISE_20262:
1112 case PCI_DEVICE_ID_PROMISE_20263:
1113 case PCI_DEVICE_ID_PROMISE_20265:
1114 case PCI_DEVICE_ID_PROMISE_20267:
1115 case PCI_DEVICE_ID_PROMISE_20268:
1116 case PCI_DEVICE_ID_PROMISE_20269:
1117 case PCI_DEVICE_ID_PROMISE_20270:
1118 case PCI_DEVICE_ID_PROMISE_20271:
1119 case PCI_DEVICE_ID_PROMISE_20275:
1120 case PCI_DEVICE_ID_PROMISE_20276:
1121 case PCI_DEVICE_ID_PROMISE_20277:
1122 goto good;
1123 }
1124 /* Others, check PCI class */
1125 if ((dev->class >> 8) != PCI_CLASS_STORAGE_IDE)
1126 return;
1127 good:
1128 pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
1129 if ((progif & 5) != 5) {
1130 printk(KERN_INFO "Forcing PCI IDE into native mode: %s\n", pci_name(dev));
1131 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
1132 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
1133 (progif & 5) != 5)
1134 printk(KERN_ERR "Rewrite of PROGIF failed !\n");
1135 }
1136}
1137DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, pmac_pci_fixup_pciata);
1138#endif
1139
1140/*
1141 * Disable second function on K2-SATA, it's broken
1142 * and disable IO BARs on first one
1143 */
1144static void fixup_k2_sata(struct pci_dev* dev)
1145{
1146 int i;
1147 u16 cmd;
1148
1149 if (PCI_FUNC(dev->devfn) > 0) {
1150 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1151 cmd &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
1152 pci_write_config_word(dev, PCI_COMMAND, cmd);
1153 for (i = 0; i < 6; i++) {
1154 dev->resource[i].start = dev->resource[i].end = 0;
1155 dev->resource[i].flags = 0;
1156 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i, 0);
1157 }
1158 } else {
1159 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1160 cmd &= ~PCI_COMMAND_IO;
1161 pci_write_config_word(dev, PCI_COMMAND, cmd);
1162 for (i = 0; i < 5; i++) {
1163 dev->resource[i].start = dev->resource[i].end = 0;
1164 dev->resource[i].flags = 0;
1165 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i, 0);
1166 }
1167 }
1168}
1169DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SERVERWORKS, 0x0240, fixup_k2_sata);
1170