pci.c 37.6 KB
Newer Older
1 2 3
/*
 * Support for PCI bridges found on Power Macintoshes.
 *
4
 * Copyright (C) 2003-2005 Benjamin Herrenschmuidt (benh@kernel.crashing.org)
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 1997 Paul Mackerras (paulus@samba.org)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/pci.h>
#include <linux/delay.h>
#include <linux/string.h>
#include <linux/init.h>
#include <linux/bootmem.h>
19
#include <linux/irq.h>
20
#include <linux/of_pci.h>
21 22 23 24 25 26 27

#include <asm/sections.h>
#include <asm/io.h>
#include <asm/prom.h>
#include <asm/pci-bridge.h>
#include <asm/machdep.h>
#include <asm/pmac_feature.h>
28
#include <asm/grackle.h>
29
#include <asm/ppc-pci.h>
30 31 32 33 34 35 36 37 38 39 40 41

#undef DEBUG

#ifdef DEBUG
#define DBG(x...) printk(x)
#else
#define DBG(x...)
#endif

/* XXX Could be per-controller, but I don't think we risk anything by
 * assuming we won't have both UniNorth and Bandit */
static int has_uninorth;
42
#ifdef CONFIG_PPC64
43
static struct pci_controller *u3_agp;
44 45
#else
static int has_second_ohare;
46
#endif /* CONFIG_PPC64 */
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

extern int pcibios_assign_bus_offset;

struct device_node *k2_skiplist[2];

/*
 * Magic constants for enabling cache coherency in the bandit/PSX bridge.
 */
#define BANDIT_DEVID_2	8
#define BANDIT_REVID	3

#define BANDIT_DEVNUM	11
#define BANDIT_MAGIC	0x50
#define BANDIT_COHERENT	0x40

static int __init fixup_one_level_bus_range(struct device_node *node, int higher)
{
	for (; node != 0;node = node->sibling) {
65 66
		const int * bus_range;
		const unsigned int *class_code;
67 68 69
		int len;

		/* For PCI<->PCI bridges or CardBus bridges, we go down */
70
		class_code = of_get_property(node, "class-code", NULL);
71 72 73
		if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
			(*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
			continue;
74
		bus_range = of_get_property(node, "bus-range", &len);
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
		if (bus_range != NULL && len > 2 * sizeof(int)) {
			if (bus_range[1] > higher)
				higher = bus_range[1];
		}
		higher = fixup_one_level_bus_range(node->child, higher);
	}
	return higher;
}

/* This routine fixes the "bus-range" property of all bridges in the
 * system since they tend to have their "last" member wrong on macs
 *
 * Note that the bus numbers manipulated here are OF bus numbers, they
 * are not Linux bus numbers.
 */
static void __init fixup_bus_range(struct device_node *bridge)
{
92 93
	int *bus_range, len;
	struct property *prop;
94 95

	/* Lookup the "bus-range" property for the hose */
96 97
	prop = of_find_property(bridge, "bus-range", &len);
	if (prop == NULL || prop->length < 2 * sizeof(int))
98
		return;
99

100
	bus_range = prop->value;
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
	bus_range[1] = fixup_one_level_bus_range(bridge->child, bus_range[1]);
}

/*
 * Apple MacRISC (U3, UniNorth, Bandit, Chaos) PCI controllers.
 *
 * The "Bandit" version is present in all early PCI PowerMacs,
 * and up to the first ones using Grackle. Some machines may
 * have 2 bandit controllers (2 PCI busses).
 *
 * "Chaos" is used in some "Bandit"-type machines as a bridge
 * for the separate display bus. It is accessed the same
 * way as bandit, but cannot be probed for devices. It therefore
 * has its own config access functions.
 *
 * The "UniNorth" version is present in all Core99 machines
 * (iBook, G4, new IMacs, and all the recent Apple machines).
 * It contains 3 controllers in one ASIC.
 *
 * The U3 is the bridge used on G5 machines. It contains an
 * AGP bus which is dealt with the old UniNorth access routines
 * and a HyperTransport bus which uses its own set of access
 * functions.
 */

#define MACRISC_CFA0(devfn, off)	\
127 128 129
	((1 << (unsigned int)PCI_SLOT(dev_fn)) \
	| (((unsigned int)PCI_FUNC(dev_fn)) << 8) \
	| (((unsigned int)(off)) & 0xFCUL))
130 131

#define MACRISC_CFA1(bus, devfn, off)	\
132 133 134
	((((unsigned int)(bus)) << 16) \
	|(((unsigned int)(devfn)) << 8) \
	|(((unsigned int)(off)) & 0xFCUL) \
135 136
	|1UL)

A
Al Viro 已提交
137
static volatile void __iomem *macrisc_cfg_access(struct pci_controller* hose,
138 139 140 141 142 143
					       u8 bus, u8 dev_fn, u8 offset)
{
	unsigned int caddr;

	if (bus == hose->first_busno) {
		if (dev_fn < (11 << 3))
A
Al Viro 已提交
144
			return NULL;
145 146 147 148 149 150 151 152 153 154
		caddr = MACRISC_CFA0(dev_fn, offset);
	} else
		caddr = MACRISC_CFA1(bus, dev_fn, offset);

	/* Uninorth will return garbage if we don't read back the value ! */
	do {
		out_le32(hose->cfg_addr, caddr);
	} while (in_le32(hose->cfg_addr) != caddr);

	offset &= has_uninorth ? 0x07 : 0x03;
A
Al Viro 已提交
155
	return hose->cfg_data + offset;
156 157 158 159 160
}

static int macrisc_read_config(struct pci_bus *bus, unsigned int devfn,
				      int offset, int len, u32 *val)
{
161
	struct pci_controller *hose;
A
Al Viro 已提交
162
	volatile void __iomem *addr;
163

164 165 166
	hose = pci_bus_to_host(bus);
	if (hose == NULL)
		return PCIBIOS_DEVICE_NOT_FOUND;
167 168
	if (offset >= 0x100)
		return  PCIBIOS_BAD_REGISTER_NUMBER;
169 170 171 172 173 174 175 176 177
	addr = macrisc_cfg_access(hose, bus->number, devfn, offset);
	if (!addr)
		return PCIBIOS_DEVICE_NOT_FOUND;
	/*
	 * Note: the caller has already checked that offset is
	 * suitably aligned and that len is 1, 2 or 4.
	 */
	switch (len) {
	case 1:
A
Al Viro 已提交
178
		*val = in_8(addr);
179 180
		break;
	case 2:
A
Al Viro 已提交
181
		*val = in_le16(addr);
182 183
		break;
	default:
A
Al Viro 已提交
184
		*val = in_le32(addr);
185 186 187 188 189 190 191 192
		break;
	}
	return PCIBIOS_SUCCESSFUL;
}

static int macrisc_write_config(struct pci_bus *bus, unsigned int devfn,
				       int offset, int len, u32 val)
{
193
	struct pci_controller *hose;
A
Al Viro 已提交
194
	volatile void __iomem *addr;
195

196 197 198
	hose = pci_bus_to_host(bus);
	if (hose == NULL)
		return PCIBIOS_DEVICE_NOT_FOUND;
199 200
	if (offset >= 0x100)
		return  PCIBIOS_BAD_REGISTER_NUMBER;
201 202 203 204 205 206 207 208 209
	addr = macrisc_cfg_access(hose, bus->number, devfn, offset);
	if (!addr)
		return PCIBIOS_DEVICE_NOT_FOUND;
	/*
	 * Note: the caller has already checked that offset is
	 * suitably aligned and that len is 1, 2 or 4.
	 */
	switch (len) {
	case 1:
A
Al Viro 已提交
210
		out_8(addr, val);
211 212
		break;
	case 2:
A
Al Viro 已提交
213
		out_le16(addr, val);
214 215
		break;
	default:
A
Al Viro 已提交
216
		out_le32(addr, val);
217 218 219 220 221 222 223
		break;
	}
	return PCIBIOS_SUCCESSFUL;
}

static struct pci_ops macrisc_pci_ops =
{
224 225
	.read = macrisc_read_config,
	.write = macrisc_write_config,
226 227
};

228
#ifdef CONFIG_PPC32
229
/*
230
 * Verify that a specific (bus, dev_fn) exists on chaos
231
 */
232
static int chaos_validate_dev(struct pci_bus *bus, int devfn, int offset)
233 234
{
	struct device_node *np;
235
	const u32 *vendor, *device;
236

237 238
	if (offset >= 0x100)
		return  PCIBIOS_BAD_REGISTER_NUMBER;
239
	np = of_pci_find_child_device(bus->dev.of_node, devfn);
240 241 242
	if (np == NULL)
		return PCIBIOS_DEVICE_NOT_FOUND;

243 244
	vendor = of_get_property(np, "vendor-id", NULL);
	device = of_get_property(np, "device-id", NULL);
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
	if (vendor == NULL || device == NULL)
		return PCIBIOS_DEVICE_NOT_FOUND;

	if ((*vendor == 0x106b) && (*device == 3) && (offset >= 0x10)
	    && (offset != 0x14) && (offset != 0x18) && (offset <= 0x24))
		return PCIBIOS_BAD_REGISTER_NUMBER;

	return PCIBIOS_SUCCESSFUL;
}

static int
chaos_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
		  int len, u32 *val)
{
	int result = chaos_validate_dev(bus, devfn, offset);
	if (result == PCIBIOS_BAD_REGISTER_NUMBER)
		*val = ~0U;
	if (result != PCIBIOS_SUCCESSFUL)
		return result;
	return macrisc_read_config(bus, devfn, offset, len, val);
}

static int
chaos_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
		   int len, u32 val)
{
	int result = chaos_validate_dev(bus, devfn, offset);
	if (result != PCIBIOS_SUCCESSFUL)
		return result;
	return macrisc_write_config(bus, devfn, offset, len, val);
}

static struct pci_ops chaos_pci_ops =
{
279 280
	.read = chaos_read_config,
	.write = chaos_write_config,
281 282
};

283
static void __init setup_chaos(struct pci_controller *hose,
284
			       struct resource *addr)
285 286 287
{
	/* assume a `chaos' bridge */
	hose->ops = &chaos_pci_ops;
288 289
	hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
	hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
290 291 292 293
}
#endif /* CONFIG_PPC32 */

#ifdef CONFIG_PPC64
294 295 296 297 298 299 300 301 302
/*
 * These versions of U3 HyperTransport config space access ops do not
 * implement self-view of the HT host yet
 */

/*
 * This function deals with some "special cases" devices.
 *
 *  0 -> No special case
L
Lucas De Marchi 已提交
303
 *  1 -> Skip the device but act as if the access was successful
304 305
 *       (return 0xff's on reads, eventually, cache config space
 *       accesses in a later version)
306
 * -1 -> Hide the device (unsuccessful access)
307 308 309 310 311 312 313 314 315
 */
static int u3_ht_skip_device(struct pci_controller *hose,
			     struct pci_bus *bus, unsigned int devfn)
{
	struct device_node *busdn, *dn;
	int i;

	/* We only allow config cycles to devices that are in OF device-tree
	 * as we are apparently having some weird things going on with some
316 317
	 * revs of K2 on recent G5s, except for the host bridge itself, which
	 * is missing from the tree but we know we can probe.
318 319 320
	 */
	if (bus->self)
		busdn = pci_device_to_OF_node(bus->self);
321 322
	else if (devfn == 0)
		return 0;
323
	else
324
		busdn = hose->dn;
325
	for (dn = busdn->child; dn; dn = dn->sibling)
326
		if (PCI_DN(dn) && PCI_DN(dn)->devfn == devfn)
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
			break;
	if (dn == NULL)
		return -1;

	/*
	 * When a device in K2 is powered down, we die on config
	 * cycle accesses. Fix that here.
	 */
	for (i=0; i<2; i++)
		if (k2_skiplist[i] == dn)
			return 1;

	return 0;
}

#define U3_HT_CFA0(devfn, off)		\
343
		((((unsigned int)devfn) << 8) | offset)
344 345
#define U3_HT_CFA1(bus, devfn, off)	\
		(U3_HT_CFA0(devfn, off) \
346
		+ (((unsigned int)bus) << 16) \
347 348
		+ 0x01000000UL)

349 350
static void __iomem *u3_ht_cfg_access(struct pci_controller *hose, u8 bus,
				      u8 devfn, u8 offset, int *swap)
351
{
352
	*swap = 1;
353
	if (bus == hose->first_busno) {
354 355 356 357
		if (devfn != 0)
			return hose->cfg_data + U3_HT_CFA0(devfn, offset);
		*swap = 0;
		return ((void __iomem *)hose->cfg_addr) + (offset << 2);
358
	} else
A
Al Viro 已提交
359
		return hose->cfg_data + U3_HT_CFA1(bus, devfn, offset);
360 361 362 363 364
}

static int u3_ht_read_config(struct pci_bus *bus, unsigned int devfn,
				    int offset, int len, u32 *val)
{
365
	struct pci_controller *hose;
366 367
	void __iomem *addr;
	int swap;
368

369 370
	hose = pci_bus_to_host(bus);
	if (hose == NULL)
371
		return PCIBIOS_DEVICE_NOT_FOUND;
372 373
	if (offset >= 0x100)
		return  PCIBIOS_BAD_REGISTER_NUMBER;
374
	addr = u3_ht_cfg_access(hose, bus->number, devfn, offset, &swap);
375 376 377 378 379 380 381
	if (!addr)
		return PCIBIOS_DEVICE_NOT_FOUND;

	switch (u3_ht_skip_device(hose, bus, devfn)) {
	case 0:
		break;
	case 1:
382 383 384 385 386 387 388 389 390
		switch (len) {
		case 1:
			*val = 0xff; break;
		case 2:
			*val = 0xffff; break;
		default:
			*val = 0xfffffffful; break;
		}
		return PCIBIOS_SUCCESSFUL;
391 392
	default:
		return PCIBIOS_DEVICE_NOT_FOUND;
393 394
	}

395 396 397 398 399 400
	/*
	 * Note: the caller has already checked that offset is
	 * suitably aligned and that len is 1, 2 or 4.
	 */
	switch (len) {
	case 1:
A
Al Viro 已提交
401
		*val = in_8(addr);
402 403
		break;
	case 2:
404
		*val = swap ? in_le16(addr) : in_be16(addr);
405 406
		break;
	default:
407
		*val = swap ? in_le32(addr) : in_be32(addr);
408 409 410 411 412 413 414 415
		break;
	}
	return PCIBIOS_SUCCESSFUL;
}

static int u3_ht_write_config(struct pci_bus *bus, unsigned int devfn,
				     int offset, int len, u32 val)
{
416
	struct pci_controller *hose;
417 418
	void __iomem *addr;
	int swap;
419

420 421
	hose = pci_bus_to_host(bus);
	if (hose == NULL)
422
		return PCIBIOS_DEVICE_NOT_FOUND;
423 424
	if (offset >= 0x100)
		return  PCIBIOS_BAD_REGISTER_NUMBER;
425
	addr = u3_ht_cfg_access(hose, bus->number, devfn, offset, &swap);
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
	if (!addr)
		return PCIBIOS_DEVICE_NOT_FOUND;

	switch (u3_ht_skip_device(hose, bus, devfn)) {
	case 0:
		break;
	case 1:
		return PCIBIOS_SUCCESSFUL;
	default:
		return PCIBIOS_DEVICE_NOT_FOUND;
	}

	/*
	 * Note: the caller has already checked that offset is
	 * suitably aligned and that len is 1, 2 or 4.
	 */
	switch (len) {
	case 1:
A
Al Viro 已提交
444
		out_8(addr, val);
445 446
		break;
	case 2:
447
		swap ? out_le16(addr, val) : out_be16(addr, val);
448 449
		break;
	default:
450
		swap ? out_le32(addr, val) : out_be32(addr, val);
451 452 453 454 455 456 457
		break;
	}
	return PCIBIOS_SUCCESSFUL;
}

static struct pci_ops u3_ht_pci_ops =
{
458 459
	.read = u3_ht_read_config,
	.write = u3_ht_write_config,
460
};
461 462 463 464 465 466 467 468 469 470 471 472 473 474

#define U4_PCIE_CFA0(devfn, off)	\
	((1 << ((unsigned int)PCI_SLOT(dev_fn)))	\
	 | (((unsigned int)PCI_FUNC(dev_fn)) << 8)	\
	 | ((((unsigned int)(off)) >> 8) << 28) \
	 | (((unsigned int)(off)) & 0xfcU))

#define U4_PCIE_CFA1(bus, devfn, off)	\
	((((unsigned int)(bus)) << 16) \
	 |(((unsigned int)(devfn)) << 8)	\
	 | ((((unsigned int)(off)) >> 8) << 28) \
	 |(((unsigned int)(off)) & 0xfcU)	\
	 |1UL)

A
Al Viro 已提交
475
static volatile void __iomem *u4_pcie_cfg_access(struct pci_controller* hose,
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
					u8 bus, u8 dev_fn, int offset)
{
	unsigned int caddr;

	if (bus == hose->first_busno) {
		caddr = U4_PCIE_CFA0(dev_fn, offset);
	} else
		caddr = U4_PCIE_CFA1(bus, dev_fn, offset);

	/* Uninorth will return garbage if we don't read back the value ! */
	do {
		out_le32(hose->cfg_addr, caddr);
	} while (in_le32(hose->cfg_addr) != caddr);

	offset &= 0x03;
A
Al Viro 已提交
491
	return hose->cfg_data + offset;
492 493 494 495 496 497
}

static int u4_pcie_read_config(struct pci_bus *bus, unsigned int devfn,
			       int offset, int len, u32 *val)
{
	struct pci_controller *hose;
A
Al Viro 已提交
498
	volatile void __iomem *addr;
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513

	hose = pci_bus_to_host(bus);
	if (hose == NULL)
		return PCIBIOS_DEVICE_NOT_FOUND;
	if (offset >= 0x1000)
		return  PCIBIOS_BAD_REGISTER_NUMBER;
	addr = u4_pcie_cfg_access(hose, bus->number, devfn, offset);
	if (!addr)
		return PCIBIOS_DEVICE_NOT_FOUND;
	/*
	 * Note: the caller has already checked that offset is
	 * suitably aligned and that len is 1, 2 or 4.
	 */
	switch (len) {
	case 1:
A
Al Viro 已提交
514
		*val = in_8(addr);
515 516
		break;
	case 2:
A
Al Viro 已提交
517
		*val = in_le16(addr);
518 519
		break;
	default:
A
Al Viro 已提交
520
		*val = in_le32(addr);
521 522 523 524 525 526 527 528 529
		break;
	}
	return PCIBIOS_SUCCESSFUL;
}

static int u4_pcie_write_config(struct pci_bus *bus, unsigned int devfn,
				int offset, int len, u32 val)
{
	struct pci_controller *hose;
A
Al Viro 已提交
530
	volatile void __iomem *addr;
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545

	hose = pci_bus_to_host(bus);
	if (hose == NULL)
		return PCIBIOS_DEVICE_NOT_FOUND;
	if (offset >= 0x1000)
		return  PCIBIOS_BAD_REGISTER_NUMBER;
	addr = u4_pcie_cfg_access(hose, bus->number, devfn, offset);
	if (!addr)
		return PCIBIOS_DEVICE_NOT_FOUND;
	/*
	 * Note: the caller has already checked that offset is
	 * suitably aligned and that len is 1, 2 or 4.
	 */
	switch (len) {
	case 1:
A
Al Viro 已提交
546
		out_8(addr, val);
547 548
		break;
	case 2:
A
Al Viro 已提交
549
		out_le16(addr, val);
550 551
		break;
	default:
A
Al Viro 已提交
552
		out_le32(addr, val);
553 554 555 556 557 558 559
		break;
	}
	return PCIBIOS_SUCCESSFUL;
}

static struct pci_ops u4_pcie_pci_ops =
{
560 561
	.read = u4_pcie_read_config,
	.write = u4_pcie_write_config,
562 563
};

564
static void pmac_pci_fixup_u4_of_node(struct pci_dev *dev)
565 566 567 568 569 570 571 572 573 574 575 576 577
{
	/* Apple's device-tree "hides" the root complex virtual P2P bridge
	 * on U4. However, Linux sees it, causing the PCI <-> OF matching
	 * code to fail to properly match devices below it. This works around
	 * it by setting the node of the bridge to point to the PHB node,
	 * which is not entirely correct but fixes the matching code and
	 * doesn't break anything else. It's also the simplest possible fix.
	 */
	if (dev->dev.of_node == NULL)
		dev->dev.of_node = pcibios_get_phb_of_node(dev->bus);
}
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_APPLE, 0x5b, pmac_pci_fixup_u4_of_node);

578
#endif /* CONFIG_PPC64 */
579

580
#ifdef CONFIG_PPC32
581 582 583 584
/*
 * For a bandit bridge, turn on cache coherency if necessary.
 * N.B. we could clean this up using the hose ops directly.
 */
585
static void __init init_bandit(struct pci_controller *bp)
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
{
	unsigned int vendev, magic;
	int rev;

	/* read the word at offset 0 in config space for device 11 */
	out_le32(bp->cfg_addr, (1UL << BANDIT_DEVNUM) + PCI_VENDOR_ID);
	udelay(2);
	vendev = in_le32(bp->cfg_data);
	if (vendev == (PCI_DEVICE_ID_APPLE_BANDIT << 16) +
			PCI_VENDOR_ID_APPLE) {
		/* read the revision id */
		out_le32(bp->cfg_addr,
			 (1UL << BANDIT_DEVNUM) + PCI_REVISION_ID);
		udelay(2);
		rev = in_8(bp->cfg_data);
		if (rev != BANDIT_REVID)
			printk(KERN_WARNING
			       "Unknown revision %d for bandit\n", rev);
	} else if (vendev != (BANDIT_DEVID_2 << 16) + PCI_VENDOR_ID_APPLE) {
		printk(KERN_WARNING "bandit isn't? (%x)\n", vendev);
		return;
	}

	/* read the word at offset 0x50 */
	out_le32(bp->cfg_addr, (1UL << BANDIT_DEVNUM) + BANDIT_MAGIC);
	udelay(2);
	magic = in_le32(bp->cfg_data);
	if ((magic & BANDIT_COHERENT) != 0)
		return;
	magic |= BANDIT_COHERENT;
	udelay(2);
	out_le32(bp->cfg_data, magic);
	printk(KERN_INFO "Cache coherency enabled for bandit/PSX\n");
}

/*
 * Tweak the PCI-PCI bridge chip on the blue & white G3s.
 */
624
static void __init init_p2pbridge(void)
625 626 627 628 629 630 631 632
{
	struct device_node *p2pbridge;
	struct pci_controller* hose;
	u8 bus, devfn;
	u16 val;

	/* XXX it would be better here to identify the specific
	   PCI-PCI bridge chip we have. */
633 634
	p2pbridge = of_find_node_by_name(NULL, "pci-bridge");
	if (p2pbridge == NULL
635 636
	    || p2pbridge->parent == NULL
	    || strcmp(p2pbridge->parent->name, "pci") != 0)
637
		goto done;
638 639
	if (pci_device_from_OF_node(p2pbridge, &bus, &devfn) < 0) {
		DBG("Can't find PCI infos for PCI<->PCI bridge\n");
640
		goto done;
641 642 643 644 645 646 647
	}
	/* Warning: At this point, we have not yet renumbered all busses.
	 * So we must use OF walking to find out hose
	 */
	hose = pci_find_hose_for_OF_device(p2pbridge);
	if (!hose) {
		DBG("Can't find hose for PCI<->PCI bridge\n");
648
		goto done;
649 650 651
	}
	if (early_read_config_word(hose, bus, devfn,
				   PCI_BRIDGE_CONTROL, &val) < 0) {
652 653
		printk(KERN_ERR "init_p2pbridge: couldn't read bridge"
		       " control\n");
654
		goto done;
655 656 657
	}
	val &= ~PCI_BRIDGE_CTL_MASTER_ABORT;
	early_write_config_word(hose, bus, devfn, PCI_BRIDGE_CONTROL, val);
658 659
done:
	of_node_put(p2pbridge);
660 661
}

662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
static void __init init_second_ohare(void)
{
	struct device_node *np = of_find_node_by_name(NULL, "pci106b,7");
	unsigned char bus, devfn;
	unsigned short cmd;

	if (np == NULL)
		return;

	/* This must run before we initialize the PICs since the second
	 * ohare hosts a PIC that will be accessed there.
	 */
	if (pci_device_from_OF_node(np, &bus, &devfn) == 0) {
		struct pci_controller* hose =
			pci_find_hose_for_OF_device(np);
		if (!hose) {
			printk(KERN_ERR "Can't find PCI hose for OHare2 !\n");
679
			of_node_put(np);
680 681 682 683 684 685 686 687
			return;
		}
		early_read_config_word(hose, bus, devfn, PCI_COMMAND, &cmd);
		cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
		cmd &= ~PCI_COMMAND_IO;
		early_write_config_word(hose, bus, devfn, PCI_COMMAND, cmd);
	}
	has_second_ohare = 1;
688
	of_node_put(np);
689 690
}

691 692 693 694 695 696
/*
 * Some Apple desktop machines have a NEC PD720100A USB2 controller
 * on the motherboard. Open Firmware, on these, will disable the
 * EHCI part of it so it behaves like a pair of OHCI's. This fixup
 * code re-enables it ;)
 */
697
static void __init fixup_nec_usb2(void)
698 699 700 701 702
{
	struct device_node *nec;

	for (nec = NULL; (nec = of_find_node_by_name(nec, "usb")) != NULL;) {
		struct pci_controller *hose;
703 704
		u32 data;
		const u32 *prop;
705
		u8 bus, devfn;
706

707
		prop = of_get_property(nec, "vendor-id", NULL);
708 709 710 711
		if (prop == NULL)
			continue;
		if (0x1033 != *prop)
			continue;
712
		prop = of_get_property(nec, "device-id", NULL);
713 714 715 716
		if (prop == NULL)
			continue;
		if (0x0035 != *prop)
			continue;
717
		prop = of_get_property(nec, "reg", NULL);
718 719 720 721 722 723 724 725 726 727 728
		if (prop == NULL)
			continue;
		devfn = (prop[0] >> 8) & 0xff;
		bus = (prop[0] >> 16) & 0xff;
		if (PCI_FUNC(devfn) != 0)
			continue;
		hose = pci_find_hose_for_OF_device(nec);
		if (!hose)
			continue;
		early_read_config_dword(hose, bus, devfn, 0xe4, &data);
		if (data & 1UL) {
729 730
			printk("Found NEC PD720100A USB2 chip with disabled"
			       " EHCI, fixing up...\n");
731 732 733 734 735 736
			data &= ~1UL;
			early_write_config_dword(hose, bus, devfn, 0xe4, data);
		}
	}
}

737
static void __init setup_bandit(struct pci_controller *hose,
738
				struct resource *addr)
739 740
{
	hose->ops = &macrisc_pci_ops;
741 742
	hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
	hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
743 744 745
	init_bandit(hose);
}

746
static int __init setup_uninorth(struct pci_controller *hose,
747
				 struct resource *addr)
748
{
749
	pci_add_flags(PCI_REASSIGN_ALL_BUS);
750 751
	has_uninorth = 1;
	hose->ops = &macrisc_pci_ops;
752 753
	hose->cfg_addr = ioremap(addr->start + 0x800000, 0x1000);
	hose->cfg_data = ioremap(addr->start + 0xc00000, 0x1000);
754
	/* We "know" that the bridge at f2000000 has the PCI slots. */
755
	return addr->start == 0xf2000000;
756
}
757
#endif /* CONFIG_PPC32 */
758

759
#ifdef CONFIG_PPC64
760 761 762 763
static void __init setup_u3_agp(struct pci_controller* hose)
{
	/* On G5, we move AGP up to high bus number so we don't need
	 * to reassign bus numbers for HT. If we ever have P2P bridges
764
	 * on AGP, we'll have to move pci_assign_all_busses to the
765 766 767 768 769 770
	 * pci_controller structure so we enable it for AGP and not for
	 * HT childs.
	 * We hard code the address because of the different size of
	 * the reg address cell, we shall fix that by killing struct
	 * reg_property and using some accessor functions instead
	 */
771
	hose->first_busno = 0xf0;
772 773 774 775 776 777 778 779
	hose->last_busno = 0xff;
	has_uninorth = 1;
	hose->ops = &macrisc_pci_ops;
	hose->cfg_addr = ioremap(0xf0000000 + 0x800000, 0x1000);
	hose->cfg_data = ioremap(0xf0000000 + 0xc00000, 0x1000);
	u3_agp = hose;
}

780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
static void __init setup_u4_pcie(struct pci_controller* hose)
{
	/* We currently only implement the "non-atomic" config space, to
	 * be optimised later.
	 */
	hose->ops = &u4_pcie_pci_ops;
	hose->cfg_addr = ioremap(0xf0000000 + 0x800000, 0x1000);
	hose->cfg_data = ioremap(0xf0000000 + 0xc00000, 0x1000);

	/* The bus contains a bridge from root -> device, we need to
	 * make it visible on bus 0 so that we pick the right type
	 * of config cycles. If we didn't, we would have to force all
	 * config cycles to be type 1. So we override the "bus-range"
	 * property here
	 */
	hose->first_busno = 0x00;
	hose->last_busno = 0xff;
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
}

static void __init parse_region_decode(struct pci_controller *hose,
				       u32 decode)
{
	unsigned long base, end, next = -1;
	int i, cur = -1;

	/* Iterate through all bits. We ignore the last bit as this region is
	 * reserved for the ROM among other niceties
	 */
	for (i = 0; i < 31; i++) {
		if ((decode & (0x80000000 >> i)) == 0)
			continue;
		if (i < 16) {
			base = 0xf0000000 | (((u32)i) << 24);
			end = base + 0x00ffffff;
		} else {
			base = ((u32)i-16) << 28;
			end = base + 0x0fffffff;
		}
		if (base != next) {
			if (++cur >= 3) {
				printk(KERN_WARNING "PCI: Too many ranges !\n");
				break;
			}
			hose->mem_resources[cur].flags = IORESOURCE_MEM;
			hose->mem_resources[cur].name = hose->dn->full_name;
			hose->mem_resources[cur].start = base;
			hose->mem_resources[cur].end = end;
827
			hose->mem_offset[cur] = 0;
828 829 830 831 832 833 834
			DBG("  %d: 0x%08lx-0x%08lx\n", cur, base, end);
		} else {
			DBG("   :           -0x%08lx\n", end);
			hose->mem_resources[cur].end = end;
		}
		next = end + 1;
	}
835 836
}

837 838
static void __init setup_u3_ht(struct pci_controller* hose)
{
839
	struct device_node *np = hose->dn;
840
	struct resource cfg_res, self_res;
841
	u32 decode;
842

843 844
	hose->ops = &u3_ht_pci_ops;

845 846 847 848 849 850 851 852 853 854
	/* Get base addresses from OF tree
	 */
	if (of_address_to_resource(np, 0, &cfg_res) ||
	    of_address_to_resource(np, 1, &self_res)) {
		printk(KERN_ERR "PCI: Failed to get U3/U4 HT resources !\n");
		return;
	}

	/* Map external cfg space access into cfg_data and self registers
	 * into cfg_addr
855
	 */
856
	hose->cfg_data = ioremap(cfg_res.start, 0x02000000);
857
	hose->cfg_addr = ioremap(self_res.start, resource_size(&self_res));
858 859

	/*
860 861 862
	 * /ht node doesn't expose a "ranges" property, we read the register
	 * that controls the decoding logic and use that for memory regions.
	 * The IO region is hard coded since it is fixed in HW as well.
863 864
	 */
	hose->io_base_phys = 0xf4000000;
865
	hose->pci_io_size = 0x00400000;
866 867 868 869 870 871 872
	hose->io_resource.name = np->full_name;
	hose->io_resource.start = 0;
	hose->io_resource.end = 0x003fffff;
	hose->io_resource.flags = IORESOURCE_IO;
	hose->first_busno = 0;
	hose->last_busno = 0xef;

873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
	/* Note: fix offset when cfg_addr becomes a void * */
	decode = in_be32(hose->cfg_addr + 0x80);

	DBG("PCI: Apple HT bridge decode register: 0x%08x\n", decode);

	/* NOTE: The decode register setup is a bit weird... region
	 * 0xf8000000 for example is marked as enabled in there while it's
	 & actually the memory controller registers.
	 * That means that we are incorrectly attributing it to HT.
	 *
	 * In a similar vein, region 0xf4000000 is actually the HT IO space but
	 * also marked as enabled in here and 0xf9000000 is used by some other
	 * internal bits of the northbridge.
	 *
	 * Unfortunately, we can't just mask out those bit as we would end
	 * up with more regions than we can cope (linux can only cope with
	 * 3 memory regions for a PHB at this stage).
	 *
	 * So for now, we just do a little hack. We happen to -know- that
	 * Apple firmware doesn't assign things below 0xfa000000 for that
	 * bridge anyway so we mask out all bits we don't want.
894
	 */
895 896 897 898
	decode &= 0x003fffff;

	/* Now parse the resulting bits and build resources */
	parse_region_decode(hose, decode);
899
}
900
#endif /* CONFIG_PPC64 */
901 902 903 904 905 906

/*
 * We assume that if we have a G3 powermac, we have one bridge called
 * "pci" (a MPC106) and no bandit or chaos bridges, and contrariwise,
 * if we have one or more bandit or chaos bridges, we don't have a MPC106.
 */
907
static int __init pmac_add_bridge(struct device_node *dev)
908 909 910
{
	int len;
	struct pci_controller *hose;
911
	struct resource rsrc;
912
	char *disp_name;
913
	const int *bus_range;
914
	int primary = 1, has_address = 0;
915 916 917

	DBG("Adding PCI host bridge %s\n", dev->full_name);

918 919 920 921
	/* Fetch host bridge registers address */
	has_address = (of_address_to_resource(dev, 0, &rsrc) == 0);

	/* Get bus range if any */
922
	bus_range = of_get_property(dev, "bus-range", &len);
923
	if (bus_range == NULL || len < 2 * sizeof(int)) {
924 925
		printk(KERN_WARNING "Can't get bus-range for %s, assume"
		       " bus 0\n", dev->full_name);
926 927
	}

928
	hose = pcibios_alloc_controller(dev);
929 930 931 932
	if (!hose)
		return -ENOMEM;
	hose->first_busno = bus_range ? bus_range[0] : 0;
	hose->last_busno = bus_range ? bus_range[1] : 0xff;
933 934

	disp_name = NULL;
935 936

	/* 64 bits only bridges */
937
#ifdef CONFIG_PPC64
938
	if (of_device_is_compatible(dev, "u3-agp")) {
939 940 941
		setup_u3_agp(hose);
		disp_name = "U3-AGP";
		primary = 0;
942
	} else if (of_device_is_compatible(dev, "u3-ht")) {
943 944 945
		setup_u3_ht(hose);
		disp_name = "U3-HT";
		primary = 1;
946
	} else if (of_device_is_compatible(dev, "u4-pcie")) {
947 948 949
		setup_u4_pcie(hose);
		disp_name = "U4-PCIE";
		primary = 0;
950
	}
951 952
	printk(KERN_INFO "Found %s PCI host bridge.  Firmware bus number:"
	       " %d->%d\n", disp_name, hose->first_busno, hose->last_busno);
953 954 955 956
#endif /* CONFIG_PPC64 */

	/* 32 bits only bridges */
#ifdef CONFIG_PPC32
957
	if (of_device_is_compatible(dev, "uni-north")) {
958
		primary = setup_uninorth(hose, &rsrc);
959
		disp_name = "UniNorth";
960
	} else if (strcmp(dev->name, "pci") == 0) {
961 962 963 964
		/* XXX assume this is a mpc106 (grackle) */
		setup_grackle(hose);
		disp_name = "Grackle (MPC106)";
	} else if (strcmp(dev->name, "bandit") == 0) {
965
		setup_bandit(hose, &rsrc);
966 967
		disp_name = "Bandit";
	} else if (strcmp(dev->name, "chaos") == 0) {
968
		setup_chaos(hose, &rsrc);
969 970 971
		disp_name = "Chaos";
		primary = 0;
	}
972
	printk(KERN_INFO "Found %s PCI host bridge at 0x%016llx. "
973
	       "Firmware bus number: %d->%d\n",
974 975
		disp_name, (unsigned long long)rsrc.start, hose->first_busno,
		hose->last_busno);
976 977
#endif /* CONFIG_PPC32 */

978 979 980 981 982 983 984 985 986
	DBG(" ->Hose at 0x%p, cfg_addr=0x%p,cfg_data=0x%p\n",
		hose, hose->cfg_addr, hose->cfg_data);

	/* Interpret the "ranges" property */
	/* This also maps the I/O region and sets isa_io/mem_base */
	pci_process_bridge_OF_ranges(hose, dev, primary);

	/* Fixup "bus-range" OF property */
	fixup_bus_range(dev);
987 988 989 990

	return 0;
}

991
void pmac_pci_irq_fixup(struct pci_dev *dev)
992
{
993
#ifdef CONFIG_PPC32
994 995 996 997 998 999 1000 1001 1002 1003 1004
	/* Fixup interrupt for the modem/ethernet combo controller.
	 * on machines with a second ohare chip.
	 * The number in the device tree (27) is bogus (correct for
	 * the ethernet-only board but not the combo ethernet/modem
	 * board). The real interrupt is 28 on the second controller
	 * -> 28+32 = 60.
	 */
	if (has_second_ohare &&
	    dev->vendor == PCI_VENDOR_ID_DEC &&
	    dev->device == PCI_DEVICE_ID_DEC_TULIP_PLUS) {
		dev->irq = irq_create_mapping(NULL, 60);
1005
		irq_set_irq_type(dev->irq, IRQ_TYPE_LEVEL_LOW);
1006
	}
1007
#endif /* CONFIG_PPC32 */
1008 1009
}

1010
void __init pmac_pci_init(void)
1011 1012 1013 1014
{
	struct device_node *np, *root;
	struct device_node *ht = NULL;

1015
	pci_set_flags(PCI_CAN_SKIP_ISA_ALIGN);
1016

1017 1018
	root = of_find_node_by_path("/");
	if (root == NULL) {
1019 1020
		printk(KERN_CRIT "pmac_pci_init: can't find root "
		       "of device tree\n");
1021 1022 1023 1024 1025 1026 1027 1028
		return;
	}
	for (np = NULL; (np = of_get_next_child(root, np)) != NULL;) {
		if (np->name == NULL)
			continue;
		if (strcmp(np->name, "bandit") == 0
		    || strcmp(np->name, "chaos") == 0
		    || strcmp(np->name, "pci") == 0) {
1029
			if (pmac_add_bridge(np) == 0)
1030 1031 1032 1033 1034 1035 1036 1037 1038
				of_node_get(np);
		}
		if (strcmp(np->name, "ht") == 0) {
			of_node_get(np);
			ht = np;
		}
	}
	of_node_put(root);

1039
#ifdef CONFIG_PPC64
1040 1041 1042
	/* Probe HT last as it relies on the agp resources to be already
	 * setup
	 */
1043
	if (ht && pmac_add_bridge(ht) != 0)
1044 1045
		of_node_put(ht);

1046 1047 1048 1049 1050
	/* Setup the linkage between OF nodes and PHBs */
	pci_devs_phb_init();

	/* Fixup the PCI<->OF mapping for U3 AGP due to bus renumbering. We
	 * assume there is no P2P bridge on the AGP bus, which should be a
1051 1052
	 * safe assumptions for now. We should do something better in the
	 * future though
1053 1054
	 */
	if (u3_agp) {
1055
		struct device_node *np = u3_agp->dn;
1056 1057 1058 1059 1060 1061 1062
		PCI_DN(np)->busno = 0xf0;
		for (np = np->child; np; np = np->sibling)
			PCI_DN(np)->busno = 0xf0;
	}
	/* pmac_check_ht_link(); */

#else /* CONFIG_PPC64 */
1063
	init_p2pbridge();
1064
	init_second_ohare();
1065
	fixup_nec_usb2();
1066

1067 1068 1069 1070
	/* We are still having some issues with the Xserve G4, enabling
	 * some offset between bus number and domains for now when we
	 * assign all busses should help for now
	 */
1071
	if (pci_has_flag(PCI_REASSIGN_ALL_BUS))
1072
		pcibios_assign_bus_offset = 0x10;
1073
#endif
1074 1075
}

1076
#ifdef CONFIG_PPC32
1077
int pmac_pci_enable_device_hook(struct pci_dev *dev)
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
{
	struct device_node* node;
	int updatecfg = 0;
	int uninorth_child;

	node = pci_device_to_OF_node(dev);

	/* We don't want to enable USB controllers absent from the OF tree
	 * (iBook second controller)
	 */
	if (dev->vendor == PCI_VENDOR_ID_APPLE
1089
	    && dev->class == PCI_CLASS_SERIAL_USB_OHCI
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
	    && !node) {
		printk(KERN_INFO "Apple USB OHCI %s disabled by firmware\n",
		       pci_name(dev));
		return -EINVAL;
	}

	if (!node)
		return 0;

	uninorth_child = node->parent &&
1100
		of_device_is_compatible(node->parent, "uni-north");
1101

1102 1103 1104 1105
	/* Firewire & GMAC were disabled after PCI probe, the driver is
	 * claiming them, we must re-enable them now.
	 */
	if (uninorth_child && !strcmp(node->name, "firewire") &&
1106 1107 1108
	    (of_device_is_compatible(node, "pci106b,18") ||
	     of_device_is_compatible(node, "pci106b,30") ||
	     of_device_is_compatible(node, "pci11c1,5811"))) {
1109 1110 1111 1112 1113
		pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, node, 0, 1);
		pmac_call_feature(PMAC_FTR_1394_ENABLE, node, 0, 1);
		updatecfg = 1;
	}
	if (uninorth_child && !strcmp(node->name, "ethernet") &&
1114
	    of_device_is_compatible(node, "gmac")) {
1115 1116 1117 1118
		pmac_call_feature(PMAC_FTR_GMAC_ENABLE, node, 0, 1);
		updatecfg = 1;
	}

1119 1120 1121 1122 1123 1124
	/*
	 * Fixup various header fields on 32 bits. We don't do that on
	 * 64 bits as some of these have strange values behind the HT
	 * bridge and we must not, for example, enable MWI or set the
	 * cache line size on them.
	 */
1125 1126
	if (updatecfg) {
		u16 cmd;
1127

1128
		pci_read_config_word(dev, PCI_COMMAND, &cmd);
1129 1130 1131 1132
		cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER
			| PCI_COMMAND_INVALIDATE;
		pci_write_config_word(dev, PCI_COMMAND, cmd);
		pci_write_config_byte(dev, PCI_LATENCY_TIMER, 16);
1133

1134 1135
		pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE,
				      L1_CACHE_BYTES >> 2);
1136 1137 1138 1139 1140
	}

	return 0;
}

1141
void pmac_pci_fixup_ohci(struct pci_dev *dev)
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
{
	struct device_node *node = pci_device_to_OF_node(dev);

	/* We don't want to assign resources to USB controllers
	 * absent from the OF tree (iBook second controller)
	 */
	if (dev->class == PCI_CLASS_SERIAL_USB_OHCI && !node)
		dev->resource[0].flags = 0;
}
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_APPLE, PCI_ANY_ID, pmac_pci_fixup_ohci);

1153 1154 1155
/* We power down some devices after they have been probed. They'll
 * be powered back on later on
 */
1156
void __init pmac_pcibios_after_init(void)
1157 1158 1159
{
	struct device_node* nd;

1160
	for_each_node_by_name(nd, "firewire") {
1161 1162 1163 1164
		if (nd->parent && (of_device_is_compatible(nd, "pci106b,18") ||
				   of_device_is_compatible(nd, "pci106b,30") ||
				   of_device_is_compatible(nd, "pci11c1,5811"))
		    && of_device_is_compatible(nd->parent, "uni-north")) {
1165 1166 1167 1168
			pmac_call_feature(PMAC_FTR_1394_ENABLE, nd, 0, 0);
			pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, nd, 0, 0);
		}
	}
1169
	for_each_node_by_name(nd, "ethernet") {
1170 1171
		if (nd->parent && of_device_is_compatible(nd, "gmac")
		    && of_device_is_compatible(nd->parent, "uni-north"))
1172 1173 1174 1175 1176 1177
			pmac_call_feature(PMAC_FTR_GMAC_ENABLE, nd, 0, 0);
	}
}

void pmac_pci_fixup_cardbus(struct pci_dev* dev)
{
1178
	if (!machine_is(powermac))
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
		return;
	/*
	 * Fix the interrupt routing on the various cardbus bridges
	 * used on powerbooks
	 */
	if (dev->vendor != PCI_VENDOR_ID_TI)
		return;
	if (dev->device == PCI_DEVICE_ID_TI_1130 ||
	    dev->device == PCI_DEVICE_ID_TI_1131) {
		u8 val;
1189
		/* Enable PCI interrupt */
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
		if (pci_read_config_byte(dev, 0x91, &val) == 0)
			pci_write_config_byte(dev, 0x91, val | 0x30);
		/* Disable ISA interrupt mode */
		if (pci_read_config_byte(dev, 0x92, &val) == 0)
			pci_write_config_byte(dev, 0x92, val & ~0x06);
	}
	if (dev->device == PCI_DEVICE_ID_TI_1210 ||
	    dev->device == PCI_DEVICE_ID_TI_1211 ||
	    dev->device == PCI_DEVICE_ID_TI_1410 ||
	    dev->device == PCI_DEVICE_ID_TI_1510) {
		u8 val;
		/* 0x8c == TI122X_IRQMUX, 2 says to route the INTA
		   signal out the MFUNC0 pin */
		if (pci_read_config_byte(dev, 0x8c, &val) == 0)
			pci_write_config_byte(dev, 0x8c, (val & ~0x0f) | 2);
		/* Disable ISA interrupt mode */
		if (pci_read_config_byte(dev, 0x92, &val) == 0)
			pci_write_config_byte(dev, 0x92, val & ~0x06);
	}
}

DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_TI, PCI_ANY_ID, pmac_pci_fixup_cardbus);

void pmac_pci_fixup_pciata(struct pci_dev* dev)
{
       u8 progif = 0;

       /*
        * On PowerMacs, we try to switch any PCI ATA controller to
	* fully native mode
        */
1221
	if (!machine_is(powermac))
1222
		return;
1223

1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
	/* Some controllers don't have the class IDE */
	if (dev->vendor == PCI_VENDOR_ID_PROMISE)
		switch(dev->device) {
		case PCI_DEVICE_ID_PROMISE_20246:
		case PCI_DEVICE_ID_PROMISE_20262:
		case PCI_DEVICE_ID_PROMISE_20263:
		case PCI_DEVICE_ID_PROMISE_20265:
		case PCI_DEVICE_ID_PROMISE_20267:
		case PCI_DEVICE_ID_PROMISE_20268:
		case PCI_DEVICE_ID_PROMISE_20269:
		case PCI_DEVICE_ID_PROMISE_20270:
		case PCI_DEVICE_ID_PROMISE_20271:
		case PCI_DEVICE_ID_PROMISE_20275:
		case PCI_DEVICE_ID_PROMISE_20276:
		case PCI_DEVICE_ID_PROMISE_20277:
			goto good;
		}
	/* Others, check PCI class */
	if ((dev->class >> 8) != PCI_CLASS_STORAGE_IDE)
		return;
 good:
	pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
	if ((progif & 5) != 5) {
1247
		printk(KERN_INFO "PCI: %s Forcing PCI IDE into native mode\n",
1248
		       pci_name(dev));
1249 1250 1251 1252
		(void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
		if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
		    (progif & 5) != 5)
			printk(KERN_ERR "Rewrite of PROGIF failed !\n");
1253 1254 1255 1256 1257 1258 1259
		else {
			/* Clear IO BARs, they will be reassigned */
			pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, 0);
			pci_write_config_dword(dev, PCI_BASE_ADDRESS_1, 0);
			pci_write_config_dword(dev, PCI_BASE_ADDRESS_2, 0);
			pci_write_config_dword(dev, PCI_BASE_ADDRESS_3, 0);
		}
1260 1261
	}
}
1262
DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, pmac_pci_fixup_pciata);
1263
#endif /* CONFIG_PPC32 */
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280

/*
 * Disable second function on K2-SATA, it's broken
 * and disable IO BARs on first one
 */
static void fixup_k2_sata(struct pci_dev* dev)
{
	int i;
	u16 cmd;

	if (PCI_FUNC(dev->devfn) > 0) {
		pci_read_config_word(dev, PCI_COMMAND, &cmd);
		cmd &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
		pci_write_config_word(dev, PCI_COMMAND, cmd);
		for (i = 0; i < 6; i++) {
			dev->resource[i].start = dev->resource[i].end = 0;
			dev->resource[i].flags = 0;
1281 1282
			pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i,
					       0);
1283 1284 1285 1286 1287 1288 1289 1290
		}
	} else {
		pci_read_config_word(dev, PCI_COMMAND, &cmd);
		cmd &= ~PCI_COMMAND_IO;
		pci_write_config_word(dev, PCI_COMMAND, cmd);
		for (i = 0; i < 5; i++) {
			dev->resource[i].start = dev->resource[i].end = 0;
			dev->resource[i].flags = 0;
1291 1292
			pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i,
					       0);
1293 1294 1295 1296 1297
		}
	}
}
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SERVERWORKS, 0x0240, fixup_k2_sata);

1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
/*
 * On U4 (aka CPC945) the PCIe root complex "P2P" bridge resource ranges aren't
 * configured by the firmware. The bridge itself seems to ignore them but it
 * causes problems with Linux which then re-assigns devices below the bridge,
 * thus changing addresses of those devices from what was in the device-tree,
 * which sucks when those are video cards using offb
 *
 * We could just mark it transparent but I prefer fixing up the resources to
 * properly show what's going on here, as I have some doubts about having them
 * badly configured potentially being an issue for DMA.
 *
 * We leave PIO alone, it seems to be fine
 *
 * Oh and there's another funny bug. The OF properties advertize the region
 * 0xf1000000..0xf1ffffff as being forwarded as memory space. But that's
 * actually not true, this region is the memory mapped config space. So we
 * also need to filter it out or we'll map things in the wrong place.
 */
static void fixup_u4_pcie(struct pci_dev* dev)
{
	struct pci_controller *host = pci_bus_to_host(dev->bus);
	struct resource *region = NULL;
	u32 reg;
	int i;

	/* Only do that on PowerMac */
	if (!machine_is(powermac))
		return;

	/* Find the largest MMIO region */
	for (i = 0; i < 3; i++) {
		struct resource *r = &host->mem_resources[i];
		if (!(r->flags & IORESOURCE_MEM))
			continue;
		/* Skip the 0xf0xxxxxx..f2xxxxxx regions, we know they
		 * are reserved by HW for other things
		 */
		if (r->start >= 0xf0000000 && r->start < 0xf3000000)
			continue;
1337
		if (!region || resource_size(r) > resource_size(region))
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
			region = r;
	}
	/* Nothing found, bail */
	if (region == 0)
		return;

	/* Print things out */
	printk(KERN_INFO "PCI: Fixup U4 PCIe bridge range: %pR\n", region);

	/* Fixup bridge config space. We know it's a Mac, resource aren't
	 * offset so let's just blast them as-is. We also know that they
	 * fit in 32 bits
	 */
	reg = ((region->start >> 16) & 0xfff0) | (region->end & 0xfff00000);
	pci_write_config_dword(dev, PCI_MEMORY_BASE, reg);
	pci_write_config_dword(dev, PCI_PREF_BASE_UPPER32, 0);
	pci_write_config_dword(dev, PCI_PREF_LIMIT_UPPER32, 0);
	pci_write_config_dword(dev, PCI_PREF_MEMORY_BASE, 0);
}
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_U4_PCIE, fixup_u4_pcie);