Linux Audio

Check our new training course

Loading...
v4.17
   1/*
   2 * Contains common pci routines for ALL ppc platform
   3 * (based on pci_32.c and pci_64.c)
   4 *
   5 * Port for PPC64 David Engebretsen, IBM Corp.
   6 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
   7 *
   8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
   9 *   Rework, based on alpha PCI code.
  10 *
  11 * Common pmac/prep/chrp pci routines. -- Cort
  12 *
  13 * This program is free software; you can redistribute it and/or
  14 * modify it under the terms of the GNU General Public License
  15 * as published by the Free Software Foundation; either version
  16 * 2 of the License, or (at your option) any later version.
  17 */
  18
  19#include <linux/kernel.h>
  20#include <linux/pci.h>
  21#include <linux/string.h>
  22#include <linux/init.h>
  23#include <linux/delay.h>
  24#include <linux/export.h>
  25#include <linux/of_address.h>
  26#include <linux/of_pci.h>
  27#include <linux/mm.h>
  28#include <linux/shmem_fs.h>
  29#include <linux/list.h>
  30#include <linux/syscalls.h>
  31#include <linux/irq.h>
  32#include <linux/vmalloc.h>
  33#include <linux/slab.h>
  34#include <linux/vgaarb.h>
  35
  36#include <asm/processor.h>
  37#include <asm/io.h>
  38#include <asm/prom.h>
  39#include <asm/pci-bridge.h>
  40#include <asm/byteorder.h>
  41#include <asm/machdep.h>
  42#include <asm/ppc-pci.h>
 
  43#include <asm/eeh.h>
  44
  45/* hose_spinlock protects accesses to the the phb_bitmap. */
  46static DEFINE_SPINLOCK(hose_spinlock);
  47LIST_HEAD(hose_list);
  48
  49/* For dynamic PHB numbering on get_phb_number(): max number of PHBs. */
  50#define MAX_PHBS 0x10000
  51
  52/*
  53 * For dynamic PHB numbering: used/free PHBs tracking bitmap.
  54 * Accesses to this bitmap should be protected by hose_spinlock.
  55 */
  56static DECLARE_BITMAP(phb_bitmap, MAX_PHBS);
  57
  58/* ISA Memory physical address */
  59resource_size_t isa_mem_base;
  60EXPORT_SYMBOL(isa_mem_base);
  61
 
 
  62
  63static const struct dma_map_ops *pci_dma_ops = &dma_nommu_ops;
  64
  65void set_pci_dma_ops(const struct dma_map_ops *dma_ops)
 
 
  66{
  67	pci_dma_ops = dma_ops;
  68}
  69
  70const struct dma_map_ops *get_pci_dma_ops(void)
  71{
  72	return pci_dma_ops;
  73}
  74EXPORT_SYMBOL(get_pci_dma_ops);
  75
  76/*
  77 * This function should run under locking protection, specifically
  78 * hose_spinlock.
  79 */
  80static int get_phb_number(struct device_node *dn)
  81{
  82	int ret, phb_id = -1;
  83	u32 prop_32;
  84	u64 prop;
  85
  86	/*
  87	 * Try fixed PHB numbering first, by checking archs and reading
  88	 * the respective device-tree properties. Firstly, try powernv by
  89	 * reading "ibm,opal-phbid", only present in OPAL environment.
  90	 */
  91	ret = of_property_read_u64(dn, "ibm,opal-phbid", &prop);
  92	if (ret) {
  93		ret = of_property_read_u32_index(dn, "reg", 1, &prop_32);
  94		prop = prop_32;
  95	}
  96
  97	if (!ret)
  98		phb_id = (int)(prop & (MAX_PHBS - 1));
  99
 100	/* We need to be sure to not use the same PHB number twice. */
 101	if ((phb_id >= 0) && !test_and_set_bit(phb_id, phb_bitmap))
 102		return phb_id;
 103
 104	/*
 105	 * If not pseries nor powernv, or if fixed PHB numbering tried to add
 106	 * the same PHB number twice, then fallback to dynamic PHB numbering.
 107	 */
 108	phb_id = find_first_zero_bit(phb_bitmap, MAX_PHBS);
 109	BUG_ON(phb_id >= MAX_PHBS);
 110	set_bit(phb_id, phb_bitmap);
 111
 112	return phb_id;
 113}
 114
 115struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
 116{
 117	struct pci_controller *phb;
 118
 119	phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
 120	if (phb == NULL)
 121		return NULL;
 122	spin_lock(&hose_spinlock);
 123	phb->global_number = get_phb_number(dev);
 124	list_add_tail(&phb->list_node, &hose_list);
 125	spin_unlock(&hose_spinlock);
 126	phb->dn = dev;
 127	phb->is_dynamic = slab_is_available();
 128#ifdef CONFIG_PPC64
 129	if (dev) {
 130		int nid = of_node_to_nid(dev);
 131
 132		if (nid < 0 || !node_online(nid))
 133			nid = -1;
 134
 135		PHB_SET_NODE(phb, nid);
 136	}
 137#endif
 138	return phb;
 139}
 140EXPORT_SYMBOL_GPL(pcibios_alloc_controller);
 141
 142void pcibios_free_controller(struct pci_controller *phb)
 143{
 144	spin_lock(&hose_spinlock);
 145
 146	/* Clear bit of phb_bitmap to allow reuse of this PHB number. */
 147	if (phb->global_number < MAX_PHBS)
 148		clear_bit(phb->global_number, phb_bitmap);
 149
 150	list_del(&phb->list_node);
 151	spin_unlock(&hose_spinlock);
 152
 153	if (phb->is_dynamic)
 154		kfree(phb);
 155}
 156EXPORT_SYMBOL_GPL(pcibios_free_controller);
 157
 158/*
 159 * This function is used to call pcibios_free_controller()
 160 * in a deferred manner: a callback from the PCI subsystem.
 161 *
 162 * _*DO NOT*_ call pcibios_free_controller() explicitly if
 163 * this is used (or it may access an invalid *phb pointer).
 164 *
 165 * The callback occurs when all references to the root bus
 166 * are dropped (e.g., child buses/devices and their users).
 167 *
 168 * It's called as .release_fn() of 'struct pci_host_bridge'
 169 * which is associated with the 'struct pci_controller.bus'
 170 * (root bus) - it expects .release_data to hold a pointer
 171 * to 'struct pci_controller'.
 172 *
 173 * In order to use it, register .release_fn()/release_data
 174 * like this:
 175 *
 176 * pci_set_host_bridge_release(bridge,
 177 *                             pcibios_free_controller_deferred
 178 *                             (void *) phb);
 179 *
 180 * e.g. in the pcibios_root_bridge_prepare() callback from
 181 * pci_create_root_bus().
 182 */
 183void pcibios_free_controller_deferred(struct pci_host_bridge *bridge)
 184{
 185	struct pci_controller *phb = (struct pci_controller *)
 186					 bridge->release_data;
 187
 188	pr_debug("domain %d, dynamic %d\n", phb->global_number, phb->is_dynamic);
 189
 190	pcibios_free_controller(phb);
 191}
 192EXPORT_SYMBOL_GPL(pcibios_free_controller_deferred);
 193
 194/*
 195 * The function is used to return the minimal alignment
 196 * for memory or I/O windows of the associated P2P bridge.
 197 * By default, 4KiB alignment for I/O windows and 1MiB for
 198 * memory windows.
 199 */
 200resource_size_t pcibios_window_alignment(struct pci_bus *bus,
 201					 unsigned long type)
 202{
 203	struct pci_controller *phb = pci_bus_to_host(bus);
 204
 205	if (phb->controller_ops.window_alignment)
 206		return phb->controller_ops.window_alignment(bus, type);
 207
 208	/*
 209	 * PCI core will figure out the default
 210	 * alignment: 4KiB for I/O and 1MiB for
 211	 * memory window.
 212	 */
 213	return 1;
 214}
 215
 216void pcibios_setup_bridge(struct pci_bus *bus, unsigned long type)
 217{
 218	struct pci_controller *hose = pci_bus_to_host(bus);
 219
 220	if (hose->controller_ops.setup_bridge)
 221		hose->controller_ops.setup_bridge(bus, type);
 222}
 223
 224void pcibios_reset_secondary_bus(struct pci_dev *dev)
 225{
 226	struct pci_controller *phb = pci_bus_to_host(dev->bus);
 227
 228	if (phb->controller_ops.reset_secondary_bus) {
 229		phb->controller_ops.reset_secondary_bus(dev);
 230		return;
 231	}
 232
 233	pci_reset_secondary_bus(dev);
 234}
 235
 236resource_size_t pcibios_default_alignment(void)
 237{
 238	if (ppc_md.pcibios_default_alignment)
 239		return ppc_md.pcibios_default_alignment();
 240
 241	return 0;
 242}
 243
 244#ifdef CONFIG_PCI_IOV
 245resource_size_t pcibios_iov_resource_alignment(struct pci_dev *pdev, int resno)
 246{
 247	if (ppc_md.pcibios_iov_resource_alignment)
 248		return ppc_md.pcibios_iov_resource_alignment(pdev, resno);
 249
 250	return pci_iov_resource_size(pdev, resno);
 251}
 252
 253int pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
 254{
 255	if (ppc_md.pcibios_sriov_enable)
 256		return ppc_md.pcibios_sriov_enable(pdev, num_vfs);
 257
 258	return 0;
 259}
 260
 261int pcibios_sriov_disable(struct pci_dev *pdev)
 262{
 263	if (ppc_md.pcibios_sriov_disable)
 264		return ppc_md.pcibios_sriov_disable(pdev);
 265
 266	return 0;
 267}
 268
 269#endif /* CONFIG_PCI_IOV */
 270
 271void pcibios_bus_add_device(struct pci_dev *pdev)
 272{
 273	if (ppc_md.pcibios_bus_add_device)
 274		ppc_md.pcibios_bus_add_device(pdev);
 275}
 276
 277static resource_size_t pcibios_io_size(const struct pci_controller *hose)
 278{
 279#ifdef CONFIG_PPC64
 280	return hose->pci_io_size;
 281#else
 282	return resource_size(&hose->io_resource);
 283#endif
 284}
 285
 286int pcibios_vaddr_is_ioport(void __iomem *address)
 287{
 288	int ret = 0;
 289	struct pci_controller *hose;
 290	resource_size_t size;
 291
 292	spin_lock(&hose_spinlock);
 293	list_for_each_entry(hose, &hose_list, list_node) {
 294		size = pcibios_io_size(hose);
 295		if (address >= hose->io_base_virt &&
 296		    address < (hose->io_base_virt + size)) {
 297			ret = 1;
 298			break;
 299		}
 300	}
 301	spin_unlock(&hose_spinlock);
 302	return ret;
 303}
 304
 305unsigned long pci_address_to_pio(phys_addr_t address)
 306{
 307	struct pci_controller *hose;
 308	resource_size_t size;
 309	unsigned long ret = ~0;
 310
 311	spin_lock(&hose_spinlock);
 312	list_for_each_entry(hose, &hose_list, list_node) {
 313		size = pcibios_io_size(hose);
 314		if (address >= hose->io_base_phys &&
 315		    address < (hose->io_base_phys + size)) {
 316			unsigned long base =
 317				(unsigned long)hose->io_base_virt - _IO_BASE;
 318			ret = base + (address - hose->io_base_phys);
 319			break;
 320		}
 321	}
 322	spin_unlock(&hose_spinlock);
 323
 324	return ret;
 325}
 326EXPORT_SYMBOL_GPL(pci_address_to_pio);
 327
 328/*
 329 * Return the domain number for this bus.
 330 */
 331int pci_domain_nr(struct pci_bus *bus)
 332{
 333	struct pci_controller *hose = pci_bus_to_host(bus);
 334
 335	return hose->global_number;
 336}
 337EXPORT_SYMBOL(pci_domain_nr);
 338
 339/* This routine is meant to be used early during boot, when the
 340 * PCI bus numbers have not yet been assigned, and you need to
 341 * issue PCI config cycles to an OF device.
 342 * It could also be used to "fix" RTAS config cycles if you want
 343 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
 344 * config cycles.
 345 */
 346struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
 347{
 348	while(node) {
 349		struct pci_controller *hose, *tmp;
 350		list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
 351			if (hose->dn == node)
 352				return hose;
 353		node = node->parent;
 354	}
 355	return NULL;
 356}
 357
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 358/*
 359 * Reads the interrupt pin to determine if interrupt is use by card.
 360 * If the interrupt is used, then gets the interrupt line from the
 361 * openfirmware and sets it in the pci_dev and pci_config line.
 362 */
 363static int pci_read_irq_line(struct pci_dev *pci_dev)
 364{
 365	int virq;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 366
 367	pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));
 368
 369#ifdef DEBUG
 370	memset(&oirq, 0xff, sizeof(oirq));
 371#endif
 372	/* Try to get a mapping from the device-tree */
 373	virq = of_irq_parse_and_map_pci(pci_dev, 0, 0);
 374	if (virq <= 0) {
 375		u8 line, pin;
 376
 377		/* If that fails, lets fallback to what is in the config
 378		 * space and map that through the default controller. We
 379		 * also set the type to level low since that's what PCI
 380		 * interrupts are. If your platform does differently, then
 381		 * either provide a proper interrupt tree or don't use this
 382		 * function.
 383		 */
 384		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
 385			return -1;
 386		if (pin == 0)
 387			return -1;
 388		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
 389		    line == 0xff || line == 0) {
 390			return -1;
 391		}
 392		pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
 393			 line, pin);
 394
 395		virq = irq_create_mapping(NULL, line);
 396		if (virq)
 397			irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
 398	}
 
 
 
 
 399
 400	if (!virq) {
 
 
 
 401		pr_debug(" Failed to map !\n");
 402		return -1;
 403	}
 404
 405	pr_debug(" Mapped to linux irq %d\n", virq);
 406
 407	pci_dev->irq = virq;
 408
 409	return 0;
 410}
 
 411
 412/*
 413 * Platform support for /proc/bus/pci/X/Y mmap()s.
 
 414 *  -- paulus.
 415 */
 416int pci_iobar_pfn(struct pci_dev *pdev, int bar, struct vm_area_struct *vma)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 417{
 418	struct pci_controller *hose = pci_bus_to_host(pdev->bus);
 419	resource_size_t ioaddr = pci_resource_start(pdev, bar);
 
 420
 421	if (!hose)
 422		return -EINVAL;
 423
 424	/* Convert to an offset within this PCI controller */
 425	ioaddr -= (unsigned long)hose->io_base_virt - _IO_BASE;
 
 
 
 
 
 
 
 
 
 426
 427	vma->vm_pgoff += (ioaddr + hose->io_base_phys) >> PAGE_SHIFT;
 428	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 429}
 430
 431/*
 432 * This one is used by /dev/mem and fbdev who have no clue about the
 433 * PCI device, it tries to find the PCI device first and calls the
 434 * above routine
 435 */
 436pgprot_t pci_phys_mem_access_prot(struct file *file,
 437				  unsigned long pfn,
 438				  unsigned long size,
 439				  pgprot_t prot)
 440{
 441	struct pci_dev *pdev = NULL;
 442	struct resource *found = NULL;
 443	resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
 444	int i;
 445
 446	if (page_is_ram(pfn))
 447		return prot;
 448
 449	prot = pgprot_noncached(prot);
 450	for_each_pci_dev(pdev) {
 451		for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
 452			struct resource *rp = &pdev->resource[i];
 453			int flags = rp->flags;
 454
 455			/* Active and same type? */
 456			if ((flags & IORESOURCE_MEM) == 0)
 457				continue;
 458			/* In the range of this resource? */
 459			if (offset < (rp->start & PAGE_MASK) ||
 460			    offset > rp->end)
 461				continue;
 462			found = rp;
 463			break;
 464		}
 465		if (found)
 466			break;
 467	}
 468	if (found) {
 469		if (found->flags & IORESOURCE_PREFETCH)
 470			prot = pgprot_noncached_wc(prot);
 471		pci_dev_put(pdev);
 472	}
 473
 474	pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
 475		 (unsigned long long)offset, pgprot_val(prot));
 476
 477	return prot;
 478}
 479
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 480/* This provides legacy IO read access on a bus */
 481int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
 482{
 483	unsigned long offset;
 484	struct pci_controller *hose = pci_bus_to_host(bus);
 485	struct resource *rp = &hose->io_resource;
 486	void __iomem *addr;
 487
 488	/* Check if port can be supported by that bus. We only check
 489	 * the ranges of the PHB though, not the bus itself as the rules
 490	 * for forwarding legacy cycles down bridges are not our problem
 491	 * here. So if the host bridge supports it, we do it.
 492	 */
 493	offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 494	offset += port;
 495
 496	if (!(rp->flags & IORESOURCE_IO))
 497		return -ENXIO;
 498	if (offset < rp->start || (offset + size) > rp->end)
 499		return -ENXIO;
 500	addr = hose->io_base_virt + port;
 501
 502	switch(size) {
 503	case 1:
 504		*((u8 *)val) = in_8(addr);
 505		return 1;
 506	case 2:
 507		if (port & 1)
 508			return -EINVAL;
 509		*((u16 *)val) = in_le16(addr);
 510		return 2;
 511	case 4:
 512		if (port & 3)
 513			return -EINVAL;
 514		*((u32 *)val) = in_le32(addr);
 515		return 4;
 516	}
 517	return -EINVAL;
 518}
 519
 520/* This provides legacy IO write access on a bus */
 521int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
 522{
 523	unsigned long offset;
 524	struct pci_controller *hose = pci_bus_to_host(bus);
 525	struct resource *rp = &hose->io_resource;
 526	void __iomem *addr;
 527
 528	/* Check if port can be supported by that bus. We only check
 529	 * the ranges of the PHB though, not the bus itself as the rules
 530	 * for forwarding legacy cycles down bridges are not our problem
 531	 * here. So if the host bridge supports it, we do it.
 532	 */
 533	offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 534	offset += port;
 535
 536	if (!(rp->flags & IORESOURCE_IO))
 537		return -ENXIO;
 538	if (offset < rp->start || (offset + size) > rp->end)
 539		return -ENXIO;
 540	addr = hose->io_base_virt + port;
 541
 542	/* WARNING: The generic code is idiotic. It gets passed a pointer
 543	 * to what can be a 1, 2 or 4 byte quantity and always reads that
 544	 * as a u32, which means that we have to correct the location of
 545	 * the data read within those 32 bits for size 1 and 2
 546	 */
 547	switch(size) {
 548	case 1:
 549		out_8(addr, val >> 24);
 550		return 1;
 551	case 2:
 552		if (port & 1)
 553			return -EINVAL;
 554		out_le16(addr, val >> 16);
 555		return 2;
 556	case 4:
 557		if (port & 3)
 558			return -EINVAL;
 559		out_le32(addr, val);
 560		return 4;
 561	}
 562	return -EINVAL;
 563}
 564
 565/* This provides legacy IO or memory mmap access on a bus */
 566int pci_mmap_legacy_page_range(struct pci_bus *bus,
 567			       struct vm_area_struct *vma,
 568			       enum pci_mmap_state mmap_state)
 569{
 570	struct pci_controller *hose = pci_bus_to_host(bus);
 571	resource_size_t offset =
 572		((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
 573	resource_size_t size = vma->vm_end - vma->vm_start;
 574	struct resource *rp;
 575
 576	pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
 577		 pci_domain_nr(bus), bus->number,
 578		 mmap_state == pci_mmap_mem ? "MEM" : "IO",
 579		 (unsigned long long)offset,
 580		 (unsigned long long)(offset + size - 1));
 581
 582	if (mmap_state == pci_mmap_mem) {
 583		/* Hack alert !
 584		 *
 585		 * Because X is lame and can fail starting if it gets an error trying
 586		 * to mmap legacy_mem (instead of just moving on without legacy memory
 587		 * access) we fake it here by giving it anonymous memory, effectively
 588		 * behaving just like /dev/zero
 589		 */
 590		if ((offset + size) > hose->isa_mem_size) {
 591			printk(KERN_DEBUG
 592			       "Process %s (pid:%d) mapped non-existing PCI legacy memory for 0%04x:%02x\n",
 593			       current->comm, current->pid, pci_domain_nr(bus), bus->number);
 594			if (vma->vm_flags & VM_SHARED)
 595				return shmem_zero_setup(vma);
 596			return 0;
 597		}
 598		offset += hose->isa_mem_phys;
 599	} else {
 600		unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 601		unsigned long roffset = offset + io_offset;
 602		rp = &hose->io_resource;
 603		if (!(rp->flags & IORESOURCE_IO))
 604			return -ENXIO;
 605		if (roffset < rp->start || (roffset + size) > rp->end)
 606			return -ENXIO;
 607		offset += hose->io_base_phys;
 608	}
 609	pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
 610
 611	vma->vm_pgoff = offset >> PAGE_SHIFT;
 612	vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
 613	return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
 614			       vma->vm_end - vma->vm_start,
 615			       vma->vm_page_prot);
 616}
 617
 618void pci_resource_to_user(const struct pci_dev *dev, int bar,
 619			  const struct resource *rsrc,
 620			  resource_size_t *start, resource_size_t *end)
 621{
 622	struct pci_bus_region region;
 
 623
 624	if (rsrc->flags & IORESOURCE_IO) {
 625		pcibios_resource_to_bus(dev->bus, &region,
 626					(struct resource *) rsrc);
 627		*start = region.start;
 628		*end = region.end;
 629		return;
 630	}
 631
 632	/* We pass a CPU physical address to userland for MMIO instead of a
 633	 * BAR value because X is lame and expects to be able to use that
 634	 * to pass to /dev/mem!
 
 
 
 635	 *
 636	 * That means we may have 64-bit values where some apps only expect
 637	 * 32 (like X itself since it thinks only Sparc has 64-bit MMIO).
 
 
 
 
 
 
 
 
 
 
 638	 */
 639	*start = rsrc->start;
 640	*end = rsrc->end;
 
 
 
 
 
 641}
 642
 643/**
 644 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
 645 * @hose: newly allocated pci_controller to be setup
 646 * @dev: device node of the host bridge
 647 * @primary: set if primary bus (32 bits only, soon to be deprecated)
 648 *
 649 * This function will parse the "ranges" property of a PCI host bridge device
 650 * node and setup the resource mapping of a pci controller based on its
 651 * content.
 652 *
 653 * Life would be boring if it wasn't for a few issues that we have to deal
 654 * with here:
 655 *
 656 *   - We can only cope with one IO space range and up to 3 Memory space
 657 *     ranges. However, some machines (thanks Apple !) tend to split their
 658 *     space into lots of small contiguous ranges. So we have to coalesce.
 659 *
 
 
 
 
 
 
 
 
 
 660 *   - Some busses have IO space not starting at 0, which causes trouble with
 661 *     the way we do our IO resource renumbering. The code somewhat deals with
 662 *     it for 64 bits but I would expect problems on 32 bits.
 663 *
 664 *   - Some 32 bits platforms such as 4xx can have physical space larger than
 665 *     32 bits so we need to use 64 bits values for the parsing
 666 */
 667void pci_process_bridge_OF_ranges(struct pci_controller *hose,
 668				  struct device_node *dev, int primary)
 669{
 670	int memno = 0;
 
 
 
 
 
 
 
 
 671	struct resource *res;
 672	struct of_pci_range range;
 673	struct of_pci_range_parser parser;
 674
 675	printk(KERN_INFO "PCI host bridge %pOF %s ranges:\n",
 676	       dev, primary ? "(primary)" : "");
 677
 678	/* Check for ranges property */
 679	if (of_pci_range_parser_init(&parser, dev))
 
 680		return;
 681
 682	/* Parse it */
 683	for_each_of_pci_range(&parser, &range) {
 
 
 
 
 
 
 
 684		/* If we failed translation or got a zero-sized region
 685		 * (some FW try to feed us with non sensical zero sized regions
 686		 * such as power3 which look like some kind of attempt at exposing
 687		 * the VGA memory hole)
 688		 */
 689		if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
 690			continue;
 691
 
 
 
 
 
 
 
 
 
 
 
 
 
 692		/* Act based on address space type */
 693		res = NULL;
 694		switch (range.flags & IORESOURCE_TYPE_BITS) {
 695		case IORESOURCE_IO:
 696			printk(KERN_INFO
 697			       "  IO 0x%016llx..0x%016llx -> 0x%016llx\n",
 698			       range.cpu_addr, range.cpu_addr + range.size - 1,
 699			       range.pci_addr);
 700
 701			/* We support only one IO range */
 702			if (hose->pci_io_size) {
 703				printk(KERN_INFO
 704				       " \\--> Skipped (too many) !\n");
 705				continue;
 706			}
 707#ifdef CONFIG_PPC32
 708			/* On 32 bits, limit I/O space to 16MB */
 709			if (range.size > 0x01000000)
 710				range.size = 0x01000000;
 711
 712			/* 32 bits needs to map IOs here */
 713			hose->io_base_virt = ioremap(range.cpu_addr,
 714						range.size);
 715
 716			/* Expect trouble if pci_addr is not 0 */
 717			if (primary)
 718				isa_io_base =
 719					(unsigned long)hose->io_base_virt;
 720#endif /* CONFIG_PPC32 */
 721			/* pci_io_size and io_base_phys always represent IO
 722			 * space starting at 0 so we factor in pci_addr
 723			 */
 724			hose->pci_io_size = range.pci_addr + range.size;
 725			hose->io_base_phys = range.cpu_addr - range.pci_addr;
 726
 727			/* Build resource */
 728			res = &hose->io_resource;
 729			range.cpu_addr = range.pci_addr;
 
 730			break;
 731		case IORESOURCE_MEM:
 
 732			printk(KERN_INFO
 733			       " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
 734			       range.cpu_addr, range.cpu_addr + range.size - 1,
 735			       range.pci_addr,
 736			       (range.pci_space & 0x40000000) ?
 737			       "Prefetch" : "");
 738
 739			/* We support only 3 memory ranges */
 740			if (memno >= 3) {
 741				printk(KERN_INFO
 742				       " \\--> Skipped (too many) !\n");
 743				continue;
 744			}
 745			/* Handles ISA memory hole space here */
 746			if (range.pci_addr == 0) {
 
 
 747				if (primary || isa_mem_base == 0)
 748					isa_mem_base = range.cpu_addr;
 749				hose->isa_mem_phys = range.cpu_addr;
 750				hose->isa_mem_size = range.size;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 751			}
 752
 753			/* Build resource */
 754			hose->mem_offset[memno] = range.cpu_addr -
 755							range.pci_addr;
 756			res = &hose->mem_resources[memno++];
 
 
 
 
 757			break;
 758		}
 759		if (res != NULL) {
 760			res->name = dev->full_name;
 761			res->flags = range.flags;
 762			res->start = range.cpu_addr;
 763			res->end = range.cpu_addr + range.size - 1;
 764			res->parent = res->child = res->sibling = NULL;
 765		}
 766	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 767}
 768
 769/* Decide whether to display the domain number in /proc */
 770int pci_proc_domain(struct pci_bus *bus)
 771{
 772	struct pci_controller *hose = pci_bus_to_host(bus);
 773
 774	if (!pci_has_flag(PCI_ENABLE_PROC_DOMAINS))
 775		return 0;
 776	if (pci_has_flag(PCI_COMPAT_DOMAIN_0))
 777		return hose->global_number != 0;
 778	return 1;
 779}
 780
 781int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge)
 
 782{
 783	if (ppc_md.pcibios_root_bridge_prepare)
 784		return ppc_md.pcibios_root_bridge_prepare(bridge);
 785
 786	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 787}
 788
 
 789/* This header fixup will do the resource fixup for all devices as they are
 790 * probed, but not for bridge ranges
 791 */
 792static void pcibios_fixup_resources(struct pci_dev *dev)
 793{
 794	struct pci_controller *hose = pci_bus_to_host(dev->bus);
 795	int i;
 796
 797	if (!hose) {
 798		printk(KERN_ERR "No host bridge for PCI dev %s !\n",
 799		       pci_name(dev));
 800		return;
 801	}
 802
 803	if (dev->is_virtfn)
 804		return;
 805
 806	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
 807		struct resource *res = dev->resource + i;
 808		struct pci_bus_region reg;
 809		if (!res->flags)
 810			continue;
 811
 812		/* If we're going to re-assign everything, we mark all resources
 813		 * as unset (and 0-base them). In addition, we mark BARs starting
 814		 * at 0 as unset as well, except if PCI_PROBE_ONLY is also set
 815		 * since in that case, we don't want to re-assign anything
 816		 */
 817		pcibios_resource_to_bus(dev->bus, &reg, res);
 818		if (pci_has_flag(PCI_REASSIGN_ALL_RSRC) ||
 819		    (reg.start == 0 && !pci_has_flag(PCI_PROBE_ONLY))) {
 820			/* Only print message if not re-assigning */
 821			if (!pci_has_flag(PCI_REASSIGN_ALL_RSRC))
 822				pr_debug("PCI:%s Resource %d %pR is unassigned\n",
 823					 pci_name(dev), i, res);
 824			res->end -= res->start;
 825			res->start = 0;
 826			res->flags |= IORESOURCE_UNSET;
 827			continue;
 828		}
 829
 830		pr_debug("PCI:%s Resource %d %pR\n", pci_name(dev), i, res);
 
 
 
 
 
 
 
 
 
 
 
 831	}
 832
 833	/* Call machine specific resource fixup */
 834	if (ppc_md.pcibios_fixup_resources)
 835		ppc_md.pcibios_fixup_resources(dev);
 836}
 837DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
 838
 839/* This function tries to figure out if a bridge resource has been initialized
 840 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
 841 * things go more smoothly when it gets it right. It should covers cases such
 842 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
 843 */
 844static int pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
 845						 struct resource *res)
 846{
 847	struct pci_controller *hose = pci_bus_to_host(bus);
 848	struct pci_dev *dev = bus->self;
 849	resource_size_t offset;
 850	struct pci_bus_region region;
 851	u16 command;
 852	int i;
 853
 854	/* We don't do anything if PCI_PROBE_ONLY is set */
 855	if (pci_has_flag(PCI_PROBE_ONLY))
 856		return 0;
 857
 858	/* Job is a bit different between memory and IO */
 859	if (res->flags & IORESOURCE_MEM) {
 860		pcibios_resource_to_bus(dev->bus, &region, res);
 861
 862		/* If the BAR is non-0 then it's probably been initialized */
 863		if (region.start != 0)
 864			return 0;
 865
 866		/* The BAR is 0, let's check if memory decoding is enabled on
 867		 * the bridge. If not, we consider it unassigned
 868		 */
 869		pci_read_config_word(dev, PCI_COMMAND, &command);
 870		if ((command & PCI_COMMAND_MEMORY) == 0)
 871			return 1;
 872
 873		/* Memory decoding is enabled and the BAR is 0. If any of the bridge
 874		 * resources covers that starting address (0 then it's good enough for
 875		 * us for memory space)
 876		 */
 877		for (i = 0; i < 3; i++) {
 878			if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
 879			    hose->mem_resources[i].start == hose->mem_offset[i])
 880				return 0;
 881		}
 882
 883		/* Well, it starts at 0 and we know it will collide so we may as
 884		 * well consider it as unassigned. That covers the Apple case.
 885		 */
 886		return 1;
 887	} else {
 888		/* If the BAR is non-0, then we consider it assigned */
 889		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 890		if (((res->start - offset) & 0xfffffffful) != 0)
 891			return 0;
 892
 893		/* Here, we are a bit different than memory as typically IO space
 894		 * starting at low addresses -is- valid. What we do instead if that
 895		 * we consider as unassigned anything that doesn't have IO enabled
 896		 * in the PCI command register, and that's it.
 897		 */
 898		pci_read_config_word(dev, PCI_COMMAND, &command);
 899		if (command & PCI_COMMAND_IO)
 900			return 0;
 901
 902		/* It's starting at 0 and IO is disabled in the bridge, consider
 903		 * it unassigned
 904		 */
 905		return 1;
 906	}
 907}
 908
 909/* Fixup resources of a PCI<->PCI bridge */
 910static void pcibios_fixup_bridge(struct pci_bus *bus)
 911{
 912	struct resource *res;
 913	int i;
 914
 915	struct pci_dev *dev = bus->self;
 916
 917	pci_bus_for_each_resource(bus, res, i) {
 918		if (!res || !res->flags)
 919			continue;
 920		if (i >= 3 && bus->self->transparent)
 921			continue;
 922
 923		/* If we're going to reassign everything, we can
 924		 * shrink the P2P resource to have size as being
 925		 * of 0 in order to save space.
 926		 */
 927		if (pci_has_flag(PCI_REASSIGN_ALL_RSRC)) {
 928			res->flags |= IORESOURCE_UNSET;
 929			res->start = 0;
 930			res->end = -1;
 931			continue;
 932		}
 933
 934		pr_debug("PCI:%s Bus rsrc %d %pR\n", pci_name(dev), i, res);
 
 935
 936		/* Try to detect uninitialized P2P bridge resources,
 937		 * and clear them out so they get re-assigned later
 938		 */
 939		if (pcibios_uninitialized_bridge_resource(bus, res)) {
 940			res->flags = 0;
 941			pr_debug("PCI:%s            (unassigned)\n", pci_name(dev));
 
 
 
 
 
 
 942		}
 943	}
 944}
 945
 946void pcibios_setup_bus_self(struct pci_bus *bus)
 947{
 948	struct pci_controller *phb;
 949
 950	/* Fix up the bus resources for P2P bridges */
 951	if (bus->self != NULL)
 952		pcibios_fixup_bridge(bus);
 953
 954	/* Platform specific bus fixups. This is currently only used
 955	 * by fsl_pci and I'm hoping to get rid of it at some point
 956	 */
 957	if (ppc_md.pcibios_fixup_bus)
 958		ppc_md.pcibios_fixup_bus(bus);
 959
 960	/* Setup bus DMA mappings */
 961	phb = pci_bus_to_host(bus);
 962	if (phb->controller_ops.dma_bus_setup)
 963		phb->controller_ops.dma_bus_setup(bus);
 964}
 965
 966static void pcibios_setup_device(struct pci_dev *dev)
 967{
 968	struct pci_controller *phb;
 969	/* Fixup NUMA node as it may not be setup yet by the generic
 970	 * code and is needed by the DMA init
 971	 */
 972	set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
 973
 974	/* Hook up default DMA ops */
 975	set_dma_ops(&dev->dev, pci_dma_ops);
 976	set_dma_offset(&dev->dev, PCI_DRAM_OFFSET);
 977
 978	/* Additional platform DMA/iommu setup */
 979	phb = pci_bus_to_host(dev->bus);
 980	if (phb->controller_ops.dma_dev_setup)
 981		phb->controller_ops.dma_dev_setup(dev);
 982
 983	/* Read default IRQs and fixup if necessary */
 984	pci_read_irq_line(dev);
 985	if (ppc_md.pci_irq_fixup)
 986		ppc_md.pci_irq_fixup(dev);
 987}
 988
 989int pcibios_add_device(struct pci_dev *dev)
 990{
 991	/*
 992	 * We can only call pcibios_setup_device() after bus setup is complete,
 993	 * since some of the platform specific DMA setup code depends on it.
 994	 */
 995	if (dev->bus->is_added)
 996		pcibios_setup_device(dev);
 997
 998#ifdef CONFIG_PCI_IOV
 999	if (ppc_md.pcibios_fixup_sriov)
1000		ppc_md.pcibios_fixup_sriov(dev);
1001#endif /* CONFIG_PCI_IOV */
1002
1003	return 0;
1004}
1005
1006void pcibios_setup_bus_devices(struct pci_bus *bus)
1007{
1008	struct pci_dev *dev;
1009
1010	pr_debug("PCI: Fixup bus devices %d (%s)\n",
1011		 bus->number, bus->self ? pci_name(bus->self) : "PHB");
1012
1013	list_for_each_entry(dev, &bus->devices, bus_list) {
1014		/* Cardbus can call us to add new devices to a bus, so ignore
1015		 * those who are already fully discovered
1016		 */
1017		if (dev->is_added)
1018			continue;
1019
1020		pcibios_setup_device(dev);
1021	}
1022}
 
1023
1024void pcibios_set_master(struct pci_dev *dev)
1025{
1026	/* No special bus mastering setup handling */
 
 
 
 
 
 
 
 
 
 
1027}
1028
1029void pcibios_fixup_bus(struct pci_bus *bus)
1030{
1031	/* When called from the generic PCI probe, read PCI<->PCI bridge
1032	 * bases. This is -not- called when generating the PCI tree from
1033	 * the OF device-tree.
1034	 */
1035	pci_read_bridge_bases(bus);
 
1036
1037	/* Now fixup the bus bus */
1038	pcibios_setup_bus_self(bus);
1039
1040	/* Now fixup devices on that bus */
1041	pcibios_setup_bus_devices(bus);
1042}
1043EXPORT_SYMBOL(pcibios_fixup_bus);
1044
1045void pci_fixup_cardbus(struct pci_bus *bus)
1046{
1047	/* Now fixup devices on that bus */
1048	pcibios_setup_bus_devices(bus);
1049}
1050
1051
1052static int skip_isa_ioresource_align(struct pci_dev *dev)
1053{
1054	if (pci_has_flag(PCI_CAN_SKIP_ISA_ALIGN) &&
1055	    !(dev->bus->bridge_ctl & PCI_BRIDGE_CTL_ISA))
1056		return 1;
1057	return 0;
1058}
1059
1060/*
1061 * We need to avoid collisions with `mirrored' VGA ports
1062 * and other strange ISA hardware, so we always want the
1063 * addresses to be allocated in the 0x000-0x0ff region
1064 * modulo 0x400.
1065 *
1066 * Why? Because some silly external IO cards only decode
1067 * the low 10 bits of the IO address. The 0x00-0xff region
1068 * is reserved for motherboard devices that decode all 16
1069 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1070 * but we want to try to avoid allocating at 0x2900-0x2bff
1071 * which might have be mirrored at 0x0100-0x03ff..
1072 */
1073resource_size_t pcibios_align_resource(void *data, const struct resource *res,
1074				resource_size_t size, resource_size_t align)
1075{
1076	struct pci_dev *dev = data;
1077	resource_size_t start = res->start;
1078
1079	if (res->flags & IORESOURCE_IO) {
1080		if (skip_isa_ioresource_align(dev))
1081			return start;
1082		if (start & 0x300)
1083			start = (start + 0x3ff) & ~0x3ff;
1084	}
1085
1086	return start;
1087}
1088EXPORT_SYMBOL(pcibios_align_resource);
1089
1090/*
1091 * Reparent resource children of pr that conflict with res
1092 * under res, and make res replace those children.
1093 */
1094static int reparent_resources(struct resource *parent,
1095				     struct resource *res)
1096{
1097	struct resource *p, **pp;
1098	struct resource **firstpp = NULL;
1099
1100	for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
1101		if (p->end < res->start)
1102			continue;
1103		if (res->end < p->start)
1104			break;
1105		if (p->start < res->start || p->end > res->end)
1106			return -1;	/* not completely contained */
1107		if (firstpp == NULL)
1108			firstpp = pp;
1109	}
1110	if (firstpp == NULL)
1111		return -1;	/* didn't find any conflicting entries? */
1112	res->parent = parent;
1113	res->child = *firstpp;
1114	res->sibling = *pp;
1115	*firstpp = res;
1116	*pp = NULL;
1117	for (p = res->child; p != NULL; p = p->sibling) {
1118		p->parent = res;
1119		pr_debug("PCI: Reparented %s %pR under %s\n",
1120			 p->name, p, res->name);
 
 
1121	}
1122	return 0;
1123}
1124
1125/*
1126 *  Handle resources of PCI devices.  If the world were perfect, we could
1127 *  just allocate all the resource regions and do nothing more.  It isn't.
1128 *  On the other hand, we cannot just re-allocate all devices, as it would
1129 *  require us to know lots of host bridge internals.  So we attempt to
1130 *  keep as much of the original configuration as possible, but tweak it
1131 *  when it's found to be wrong.
1132 *
1133 *  Known BIOS problems we have to work around:
1134 *	- I/O or memory regions not configured
1135 *	- regions configured, but not enabled in the command register
1136 *	- bogus I/O addresses above 64K used
1137 *	- expansion ROMs left enabled (this may sound harmless, but given
1138 *	  the fact the PCI specs explicitly allow address decoders to be
1139 *	  shared between expansion ROMs and other resource regions, it's
1140 *	  at least dangerous)
1141 *
1142 *  Our solution:
1143 *	(1) Allocate resources for all buses behind PCI-to-PCI bridges.
1144 *	    This gives us fixed barriers on where we can allocate.
1145 *	(2) Allocate resources for all enabled devices.  If there is
1146 *	    a collision, just mark the resource as unallocated. Also
1147 *	    disable expansion ROMs during this step.
1148 *	(3) Try to allocate resources for disabled devices.  If the
1149 *	    resources were assigned correctly, everything goes well,
1150 *	    if they weren't, they won't disturb allocation of other
1151 *	    resources.
1152 *	(4) Assign new addresses to resources which were either
1153 *	    not configured at all or misconfigured.  If explicitly
1154 *	    requested by the user, configure expansion ROM address
1155 *	    as well.
1156 */
1157
1158static void pcibios_allocate_bus_resources(struct pci_bus *bus)
1159{
1160	struct pci_bus *b;
1161	int i;
1162	struct resource *res, *pr;
1163
1164	pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1165		 pci_domain_nr(bus), bus->number);
1166
1167	pci_bus_for_each_resource(bus, res, i) {
1168		if (!res || !res->flags || res->start > res->end || res->parent)
1169			continue;
1170
1171		/* If the resource was left unset at this point, we clear it */
1172		if (res->flags & IORESOURCE_UNSET)
1173			goto clear_resource;
1174
1175		if (bus->parent == NULL)
1176			pr = (res->flags & IORESOURCE_IO) ?
1177				&ioport_resource : &iomem_resource;
1178		else {
 
 
 
 
 
 
 
 
1179			pr = pci_find_parent_resource(bus->self, res);
1180			if (pr == res) {
1181				/* this happens when the generic PCI
1182				 * code (wrongly) decides that this
1183				 * bridge is transparent  -- paulus
1184				 */
1185				continue;
1186			}
1187		}
1188
1189		pr_debug("PCI: %s (bus %d) bridge rsrc %d: %pR, parent %p (%s)\n",
1190			 bus->self ? pci_name(bus->self) : "PHB", bus->number,
1191			 i, res, pr, (pr && pr->name) ? pr->name : "nil");
 
 
 
 
 
1192
1193		if (pr && !(pr->flags & IORESOURCE_UNSET)) {
1194			struct pci_dev *dev = bus->self;
1195
1196			if (request_resource(pr, res) == 0)
1197				continue;
1198			/*
1199			 * Must be a conflict with an existing entry.
1200			 * Move that entry (or entries) under the
1201			 * bridge resource and try again.
1202			 */
1203			if (reparent_resources(pr, res) == 0)
1204				continue;
1205
1206			if (dev && i < PCI_BRIDGE_RESOURCE_NUM &&
1207			    pci_claim_bridge_resource(dev,
1208						i + PCI_BRIDGE_RESOURCES) == 0)
1209				continue;
1210		}
1211		pr_warn("PCI: Cannot allocate resource region %d of PCI bridge %d, will remap\n",
1212			i, bus->number);
1213	clear_resource:
1214		/* The resource might be figured out when doing
1215		 * reassignment based on the resources required
1216		 * by the downstream PCI devices. Here we set
1217		 * the size of the resource to be 0 in order to
1218		 * save more space.
1219		 */
1220		res->start = 0;
1221		res->end = -1;
1222		res->flags = 0;
1223	}
1224
1225	list_for_each_entry(b, &bus->children, node)
1226		pcibios_allocate_bus_resources(b);
1227}
1228
1229static inline void alloc_resource(struct pci_dev *dev, int idx)
1230{
1231	struct resource *pr, *r = &dev->resource[idx];
1232
1233	pr_debug("PCI: Allocating %s: Resource %d: %pR\n",
1234		 pci_name(dev), idx, r);
 
 
 
1235
1236	pr = pci_find_parent_resource(dev, r);
1237	if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1238	    request_resource(pr, r) < 0) {
1239		printk(KERN_WARNING "PCI: Cannot allocate resource region %d"
1240		       " of device %s, will remap\n", idx, pci_name(dev));
1241		if (pr)
1242			pr_debug("PCI:  parent is %p: %pR\n", pr, pr);
 
 
 
 
1243		/* We'll assign a new address later */
1244		r->flags |= IORESOURCE_UNSET;
1245		r->end -= r->start;
1246		r->start = 0;
1247	}
1248}
1249
1250static void __init pcibios_allocate_resources(int pass)
1251{
1252	struct pci_dev *dev = NULL;
1253	int idx, disabled;
1254	u16 command;
1255	struct resource *r;
1256
1257	for_each_pci_dev(dev) {
1258		pci_read_config_word(dev, PCI_COMMAND, &command);
1259		for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1260			r = &dev->resource[idx];
1261			if (r->parent)		/* Already allocated */
1262				continue;
1263			if (!r->flags || (r->flags & IORESOURCE_UNSET))
1264				continue;	/* Not assigned at all */
1265			/* We only allocate ROMs on pass 1 just in case they
1266			 * have been screwed up by firmware
1267			 */
1268			if (idx == PCI_ROM_RESOURCE )
1269				disabled = 1;
1270			if (r->flags & IORESOURCE_IO)
1271				disabled = !(command & PCI_COMMAND_IO);
1272			else
1273				disabled = !(command & PCI_COMMAND_MEMORY);
1274			if (pass == disabled)
1275				alloc_resource(dev, idx);
1276		}
1277		if (pass)
1278			continue;
1279		r = &dev->resource[PCI_ROM_RESOURCE];
1280		if (r->flags) {
1281			/* Turn the ROM off, leave the resource region,
1282			 * but keep it unregistered.
1283			 */
1284			u32 reg;
1285			pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1286			if (reg & PCI_ROM_ADDRESS_ENABLE) {
1287				pr_debug("PCI: Switching off ROM of %s\n",
1288					 pci_name(dev));
1289				r->flags &= ~IORESOURCE_ROM_ENABLE;
1290				pci_write_config_dword(dev, dev->rom_base_reg,
1291						       reg & ~PCI_ROM_ADDRESS_ENABLE);
1292			}
1293		}
1294	}
1295}
1296
1297static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1298{
1299	struct pci_controller *hose = pci_bus_to_host(bus);
1300	resource_size_t	offset;
1301	struct resource *res, *pres;
1302	int i;
1303
1304	pr_debug("Reserving legacy ranges for domain %04x\n", pci_domain_nr(bus));
1305
1306	/* Check for IO */
1307	if (!(hose->io_resource.flags & IORESOURCE_IO))
1308		goto no_io;
1309	offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1310	res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1311	BUG_ON(res == NULL);
1312	res->name = "Legacy IO";
1313	res->flags = IORESOURCE_IO;
1314	res->start = offset;
1315	res->end = (offset + 0xfff) & 0xfffffffful;
1316	pr_debug("Candidate legacy IO: %pR\n", res);
1317	if (request_resource(&hose->io_resource, res)) {
1318		printk(KERN_DEBUG
1319		       "PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
1320		       pci_domain_nr(bus), bus->number, res);
1321		kfree(res);
1322	}
1323
1324 no_io:
1325	/* Check for memory */
 
 
1326	for (i = 0; i < 3; i++) {
1327		pres = &hose->mem_resources[i];
1328		offset = hose->mem_offset[i];
1329		if (!(pres->flags & IORESOURCE_MEM))
1330			continue;
1331		pr_debug("hose mem res: %pR\n", pres);
1332		if ((pres->start - offset) <= 0xa0000 &&
1333		    (pres->end - offset) >= 0xbffff)
1334			break;
1335	}
1336	if (i >= 3)
1337		return;
1338	res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1339	BUG_ON(res == NULL);
1340	res->name = "Legacy VGA memory";
1341	res->flags = IORESOURCE_MEM;
1342	res->start = 0xa0000 + offset;
1343	res->end = 0xbffff + offset;
1344	pr_debug("Candidate VGA memory: %pR\n", res);
1345	if (request_resource(pres, res)) {
1346		printk(KERN_DEBUG
1347		       "PCI %04x:%02x Cannot reserve VGA memory %pR\n",
1348		       pci_domain_nr(bus), bus->number, res);
1349		kfree(res);
1350	}
1351}
1352
1353void __init pcibios_resource_survey(void)
1354{
1355	struct pci_bus *b;
1356
1357	/* Allocate and assign resources */
 
 
1358	list_for_each_entry(b, &pci_root_buses, node)
1359		pcibios_allocate_bus_resources(b);
 
1360	if (!pci_has_flag(PCI_REASSIGN_ALL_RSRC)) {
1361		pcibios_allocate_resources(0);
1362		pcibios_allocate_resources(1);
1363	}
1364
1365	/* Before we start assigning unassigned resource, we try to reserve
1366	 * the low IO area and the VGA memory area if they intersect the
1367	 * bus available resources to avoid allocating things on top of them
1368	 */
1369	if (!pci_has_flag(PCI_PROBE_ONLY)) {
1370		list_for_each_entry(b, &pci_root_buses, node)
1371			pcibios_reserve_legacy_regions(b);
1372	}
1373
1374	/* Now, if the platform didn't decide to blindly trust the firmware,
1375	 * we proceed to assigning things that were left unassigned
1376	 */
1377	if (!pci_has_flag(PCI_PROBE_ONLY)) {
1378		pr_debug("PCI: Assigning unassigned resources...\n");
1379		pci_assign_unassigned_resources();
1380	}
1381
1382	/* Call machine dependent fixup */
1383	if (ppc_md.pcibios_fixup)
1384		ppc_md.pcibios_fixup();
1385}
1386
 
 
1387/* This is used by the PCI hotplug driver to allocate resource
1388 * of newly plugged busses. We can try to consolidate with the
1389 * rest of the code later, for now, keep it as-is as our main
1390 * resource allocation function doesn't deal with sub-trees yet.
1391 */
1392void pcibios_claim_one_bus(struct pci_bus *bus)
1393{
1394	struct pci_dev *dev;
1395	struct pci_bus *child_bus;
1396
1397	list_for_each_entry(dev, &bus->devices, bus_list) {
1398		int i;
1399
1400		for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1401			struct resource *r = &dev->resource[i];
1402
1403			if (r->parent || !r->start || !r->flags)
1404				continue;
1405
1406			pr_debug("PCI: Claiming %s: Resource %d: %pR\n",
1407				 pci_name(dev), i, r);
 
 
 
 
1408
1409			if (pci_claim_resource(dev, i) == 0)
1410				continue;
1411
1412			pci_claim_bridge_resource(dev, i);
1413		}
1414	}
1415
1416	list_for_each_entry(child_bus, &bus->children, node)
1417		pcibios_claim_one_bus(child_bus);
1418}
1419EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1420
1421
1422/* pcibios_finish_adding_to_bus
1423 *
1424 * This is to be called by the hotplug code after devices have been
1425 * added to a bus, this include calling it for a PHB that is just
1426 * being added
1427 */
1428void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1429{
1430	pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1431		 pci_domain_nr(bus), bus->number);
1432
1433	/* Allocate bus and devices resources */
1434	pcibios_allocate_bus_resources(bus);
1435	pcibios_claim_one_bus(bus);
1436	if (!pci_has_flag(PCI_PROBE_ONLY)) {
1437		if (bus->self)
1438			pci_assign_unassigned_bridge_resources(bus->self);
1439		else
1440			pci_assign_unassigned_bus_resources(bus);
1441	}
1442
1443	/* Fixup EEH */
1444	eeh_add_device_tree_late(bus);
1445
1446	/* Add new devices to global lists.  Register in proc, sysfs. */
1447	pci_bus_add_devices(bus);
1448
1449	/* sysfs files should only be added after devices are added */
1450	eeh_add_sysfs_files(bus);
1451}
1452EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1453
 
 
1454int pcibios_enable_device(struct pci_dev *dev, int mask)
1455{
1456	struct pci_controller *phb = pci_bus_to_host(dev->bus);
1457
1458	if (phb->controller_ops.enable_device_hook)
1459		if (!phb->controller_ops.enable_device_hook(dev))
1460			return -EINVAL;
1461
1462	return pci_enable_resources(dev, mask);
1463}
1464
1465void pcibios_disable_device(struct pci_dev *dev)
1466{
1467	struct pci_controller *phb = pci_bus_to_host(dev->bus);
1468
1469	if (phb->controller_ops.disable_device)
1470		phb->controller_ops.disable_device(dev);
1471}
1472
1473resource_size_t pcibios_io_space_offset(struct pci_controller *hose)
1474{
1475	return (unsigned long) hose->io_base_virt - _IO_BASE;
1476}
1477
1478static void pcibios_setup_phb_resources(struct pci_controller *hose,
1479					struct list_head *resources)
1480{
 
1481	struct resource *res;
1482	resource_size_t offset;
1483	int i;
1484
1485	/* Hookup PHB IO resource */
1486	res = &hose->io_resource;
1487
1488	if (!res->flags) {
1489		pr_debug("PCI: I/O resource not set for host"
1490			 " bridge %pOF (domain %d)\n",
1491			 hose->dn, hose->global_number);
1492	} else {
1493		offset = pcibios_io_space_offset(hose);
1494
1495		pr_debug("PCI: PHB IO resource    = %pR off 0x%08llx\n",
1496			 res, (unsigned long long)offset);
1497		pci_add_resource_offset(resources, res, offset);
1498	}
1499
 
 
 
 
 
1500	/* Hookup PHB Memory resources */
1501	for (i = 0; i < 3; ++i) {
1502		res = &hose->mem_resources[i];
1503		if (!res->flags)
1504			continue;
1505
1506		offset = hose->mem_offset[i];
1507		pr_debug("PCI: PHB MEM resource %d = %pR off 0x%08llx\n", i,
1508			 res, (unsigned long long)offset);
 
 
 
 
 
 
 
 
1509
1510		pci_add_resource_offset(resources, res, offset);
 
 
 
1511	}
 
 
 
 
 
 
1512}
1513
1514/*
1515 * Null PCI config access functions, for the case when we can't
1516 * find a hose.
1517 */
1518#define NULL_PCI_OP(rw, size, type)					\
1519static int								\
1520null_##rw##_config_##size(struct pci_dev *dev, int offset, type val)	\
1521{									\
1522	return PCIBIOS_DEVICE_NOT_FOUND;    				\
1523}
1524
1525static int
1526null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1527		 int len, u32 *val)
1528{
1529	return PCIBIOS_DEVICE_NOT_FOUND;
1530}
1531
1532static int
1533null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1534		  int len, u32 val)
1535{
1536	return PCIBIOS_DEVICE_NOT_FOUND;
1537}
1538
1539static struct pci_ops null_pci_ops =
1540{
1541	.read = null_read_config,
1542	.write = null_write_config,
1543};
1544
1545/*
1546 * These functions are used early on before PCI scanning is done
1547 * and all of the pci_dev and pci_bus structures have been created.
1548 */
1549static struct pci_bus *
1550fake_pci_bus(struct pci_controller *hose, int busnr)
1551{
1552	static struct pci_bus bus;
1553
1554	if (hose == NULL) {
1555		printk(KERN_ERR "Can't find hose for PCI bus %d!\n", busnr);
1556	}
1557	bus.number = busnr;
1558	bus.sysdata = hose;
1559	bus.ops = hose? hose->ops: &null_pci_ops;
1560	return &bus;
1561}
1562
1563#define EARLY_PCI_OP(rw, size, type)					\
1564int early_##rw##_config_##size(struct pci_controller *hose, int bus,	\
1565			       int devfn, int offset, type value)	\
1566{									\
1567	return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus),	\
1568					    devfn, offset, value);	\
1569}
1570
1571EARLY_PCI_OP(read, byte, u8 *)
1572EARLY_PCI_OP(read, word, u16 *)
1573EARLY_PCI_OP(read, dword, u32 *)
1574EARLY_PCI_OP(write, byte, u8)
1575EARLY_PCI_OP(write, word, u16)
1576EARLY_PCI_OP(write, dword, u32)
1577
 
1578int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1579			  int cap)
1580{
1581	return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1582}
1583
1584struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
1585{
1586	struct pci_controller *hose = bus->sysdata;
1587
1588	return of_node_get(hose->dn);
1589}
1590
1591/**
1592 * pci_scan_phb - Given a pci_controller, setup and scan the PCI bus
1593 * @hose: Pointer to the PCI host controller instance structure
1594 */
1595void pcibios_scan_phb(struct pci_controller *hose)
1596{
1597	LIST_HEAD(resources);
1598	struct pci_bus *bus;
1599	struct device_node *node = hose->dn;
1600	int mode;
1601
1602	pr_debug("PCI: Scanning PHB %pOF\n", node);
1603
1604	/* Get some IO space for the new PHB */
1605	pcibios_setup_phb_io_space(hose);
1606
1607	/* Wire up PHB bus resources */
1608	pcibios_setup_phb_resources(hose, &resources);
1609
1610	hose->busn.start = hose->first_busno;
1611	hose->busn.end	 = hose->last_busno;
1612	hose->busn.flags = IORESOURCE_BUS;
1613	pci_add_resource(&resources, &hose->busn);
1614
1615	/* Create an empty bus for the toplevel */
1616	bus = pci_create_root_bus(hose->parent, hose->first_busno,
1617				  hose->ops, hose, &resources);
1618	if (bus == NULL) {
1619		pr_err("Failed to create bus for PCI domain %04x\n",
1620			hose->global_number);
1621		pci_free_resource_list(&resources);
1622		return;
1623	}
 
1624	hose->bus = bus;
1625
 
 
 
 
 
 
1626	/* Get probe mode and perform scan */
1627	mode = PCI_PROBE_NORMAL;
1628	if (node && hose->controller_ops.probe_mode)
1629		mode = hose->controller_ops.probe_mode(bus);
1630	pr_debug("    probe mode: %d\n", mode);
1631	if (mode == PCI_PROBE_DEVTREE)
 
1632		of_scan_bus(node, bus);
1633
1634	if (mode == PCI_PROBE_NORMAL) {
1635		pci_bus_update_busn_res_end(bus, 255);
1636		hose->last_busno = pci_scan_child_bus(bus);
1637		pci_bus_update_busn_res_end(bus, hose->last_busno);
1638	}
1639
1640	/* Platform gets a chance to do some global fixups before
1641	 * we proceed to resource allocation
1642	 */
1643	if (ppc_md.pcibios_fixup_phb)
1644		ppc_md.pcibios_fixup_phb(hose);
1645
1646	/* Configure PCI Express settings */
1647	if (bus && !pci_has_flag(PCI_PROBE_ONLY)) {
1648		struct pci_bus *child;
1649		list_for_each_entry(child, &bus->children, node)
1650			pcie_bus_configure_settings(child);
1651	}
1652}
1653EXPORT_SYMBOL_GPL(pcibios_scan_phb);
1654
1655static void fixup_hide_host_resource_fsl(struct pci_dev *dev)
1656{
1657	int i, class = dev->class >> 8;
1658	/* When configured as agent, programing interface = 1 */
1659	int prog_if = dev->class & 0xf;
1660
1661	if ((class == PCI_CLASS_PROCESSOR_POWERPC ||
1662	     class == PCI_CLASS_BRIDGE_OTHER) &&
1663		(dev->hdr_type == PCI_HEADER_TYPE_NORMAL) &&
1664		(prog_if == 0) &&
1665		(dev->bus->parent == NULL)) {
1666		for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1667			dev->resource[i].start = 0;
1668			dev->resource[i].end = 0;
1669			dev->resource[i].flags = 0;
1670		}
1671	}
1672}
1673DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MOTOROLA, PCI_ANY_ID, fixup_hide_host_resource_fsl);
1674DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_FREESCALE, PCI_ANY_ID, fixup_hide_host_resource_fsl);
v3.1
   1/*
   2 * Contains common pci routines for ALL ppc platform
   3 * (based on pci_32.c and pci_64.c)
   4 *
   5 * Port for PPC64 David Engebretsen, IBM Corp.
   6 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
   7 *
   8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
   9 *   Rework, based on alpha PCI code.
  10 *
  11 * Common pmac/prep/chrp pci routines. -- Cort
  12 *
  13 * This program is free software; you can redistribute it and/or
  14 * modify it under the terms of the GNU General Public License
  15 * as published by the Free Software Foundation; either version
  16 * 2 of the License, or (at your option) any later version.
  17 */
  18
  19#include <linux/kernel.h>
  20#include <linux/pci.h>
  21#include <linux/string.h>
  22#include <linux/init.h>
  23#include <linux/bootmem.h>
 
  24#include <linux/of_address.h>
  25#include <linux/of_pci.h>
  26#include <linux/mm.h>
 
  27#include <linux/list.h>
  28#include <linux/syscalls.h>
  29#include <linux/irq.h>
  30#include <linux/vmalloc.h>
  31#include <linux/slab.h>
 
  32
  33#include <asm/processor.h>
  34#include <asm/io.h>
  35#include <asm/prom.h>
  36#include <asm/pci-bridge.h>
  37#include <asm/byteorder.h>
  38#include <asm/machdep.h>
  39#include <asm/ppc-pci.h>
  40#include <asm/firmware.h>
  41#include <asm/eeh.h>
  42
 
  43static DEFINE_SPINLOCK(hose_spinlock);
  44LIST_HEAD(hose_list);
  45
  46/* XXX kill that some day ... */
  47static int global_phb_number;		/* Global phb counter */
 
 
 
 
 
 
  48
  49/* ISA Memory physical address */
  50resource_size_t isa_mem_base;
 
  51
  52/* Default PCI flags is 0 on ppc32, modified at boot on ppc64 */
  53unsigned int pci_flags = 0;
  54
 
  55
  56static struct dma_map_ops *pci_dma_ops = &dma_direct_ops;
  57
  58void set_pci_dma_ops(struct dma_map_ops *dma_ops)
  59{
  60	pci_dma_ops = dma_ops;
  61}
  62
  63struct dma_map_ops *get_pci_dma_ops(void)
  64{
  65	return pci_dma_ops;
  66}
  67EXPORT_SYMBOL(get_pci_dma_ops);
  68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  69struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
  70{
  71	struct pci_controller *phb;
  72
  73	phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
  74	if (phb == NULL)
  75		return NULL;
  76	spin_lock(&hose_spinlock);
  77	phb->global_number = global_phb_number++;
  78	list_add_tail(&phb->list_node, &hose_list);
  79	spin_unlock(&hose_spinlock);
  80	phb->dn = dev;
  81	phb->is_dynamic = mem_init_done;
  82#ifdef CONFIG_PPC64
  83	if (dev) {
  84		int nid = of_node_to_nid(dev);
  85
  86		if (nid < 0 || !node_online(nid))
  87			nid = -1;
  88
  89		PHB_SET_NODE(phb, nid);
  90	}
  91#endif
  92	return phb;
  93}
 
  94
  95void pcibios_free_controller(struct pci_controller *phb)
  96{
  97	spin_lock(&hose_spinlock);
 
 
 
 
 
  98	list_del(&phb->list_node);
  99	spin_unlock(&hose_spinlock);
 100
 101	if (phb->is_dynamic)
 102		kfree(phb);
 103}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 104
 105static resource_size_t pcibios_io_size(const struct pci_controller *hose)
 106{
 107#ifdef CONFIG_PPC64
 108	return hose->pci_io_size;
 109#else
 110	return resource_size(&hose->io_resource);
 111#endif
 112}
 113
 114int pcibios_vaddr_is_ioport(void __iomem *address)
 115{
 116	int ret = 0;
 117	struct pci_controller *hose;
 118	resource_size_t size;
 119
 120	spin_lock(&hose_spinlock);
 121	list_for_each_entry(hose, &hose_list, list_node) {
 122		size = pcibios_io_size(hose);
 123		if (address >= hose->io_base_virt &&
 124		    address < (hose->io_base_virt + size)) {
 125			ret = 1;
 126			break;
 127		}
 128	}
 129	spin_unlock(&hose_spinlock);
 130	return ret;
 131}
 132
 133unsigned long pci_address_to_pio(phys_addr_t address)
 134{
 135	struct pci_controller *hose;
 136	resource_size_t size;
 137	unsigned long ret = ~0;
 138
 139	spin_lock(&hose_spinlock);
 140	list_for_each_entry(hose, &hose_list, list_node) {
 141		size = pcibios_io_size(hose);
 142		if (address >= hose->io_base_phys &&
 143		    address < (hose->io_base_phys + size)) {
 144			unsigned long base =
 145				(unsigned long)hose->io_base_virt - _IO_BASE;
 146			ret = base + (address - hose->io_base_phys);
 147			break;
 148		}
 149	}
 150	spin_unlock(&hose_spinlock);
 151
 152	return ret;
 153}
 154EXPORT_SYMBOL_GPL(pci_address_to_pio);
 155
 156/*
 157 * Return the domain number for this bus.
 158 */
 159int pci_domain_nr(struct pci_bus *bus)
 160{
 161	struct pci_controller *hose = pci_bus_to_host(bus);
 162
 163	return hose->global_number;
 164}
 165EXPORT_SYMBOL(pci_domain_nr);
 166
 167/* This routine is meant to be used early during boot, when the
 168 * PCI bus numbers have not yet been assigned, and you need to
 169 * issue PCI config cycles to an OF device.
 170 * It could also be used to "fix" RTAS config cycles if you want
 171 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
 172 * config cycles.
 173 */
 174struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
 175{
 176	while(node) {
 177		struct pci_controller *hose, *tmp;
 178		list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
 179			if (hose->dn == node)
 180				return hose;
 181		node = node->parent;
 182	}
 183	return NULL;
 184}
 185
 186static ssize_t pci_show_devspec(struct device *dev,
 187		struct device_attribute *attr, char *buf)
 188{
 189	struct pci_dev *pdev;
 190	struct device_node *np;
 191
 192	pdev = to_pci_dev (dev);
 193	np = pci_device_to_OF_node(pdev);
 194	if (np == NULL || np->full_name == NULL)
 195		return 0;
 196	return sprintf(buf, "%s", np->full_name);
 197}
 198static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
 199
 200/* Add sysfs properties */
 201int pcibios_add_platform_entries(struct pci_dev *pdev)
 202{
 203	return device_create_file(&pdev->dev, &dev_attr_devspec);
 204}
 205
 206char __devinit *pcibios_setup(char *str)
 207{
 208	return str;
 209}
 210
 211/*
 212 * Reads the interrupt pin to determine if interrupt is use by card.
 213 * If the interrupt is used, then gets the interrupt line from the
 214 * openfirmware and sets it in the pci_dev and pci_config line.
 215 */
 216int pci_read_irq_line(struct pci_dev *pci_dev)
 217{
 218	struct of_irq oirq;
 219	unsigned int virq;
 220
 221	/* The current device-tree that iSeries generates from the HV
 222	 * PCI informations doesn't contain proper interrupt routing,
 223	 * and all the fallback would do is print out crap, so we
 224	 * don't attempt to resolve the interrupts here at all, some
 225	 * iSeries specific fixup does it.
 226	 *
 227	 * In the long run, we will hopefully fix the generated device-tree
 228	 * instead.
 229	 */
 230#ifdef CONFIG_PPC_ISERIES
 231	if (firmware_has_feature(FW_FEATURE_ISERIES))
 232		return -1;
 233#endif
 234
 235	pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));
 236
 237#ifdef DEBUG
 238	memset(&oirq, 0xff, sizeof(oirq));
 239#endif
 240	/* Try to get a mapping from the device-tree */
 241	if (of_irq_map_pci(pci_dev, &oirq)) {
 
 242		u8 line, pin;
 243
 244		/* If that fails, lets fallback to what is in the config
 245		 * space and map that through the default controller. We
 246		 * also set the type to level low since that's what PCI
 247		 * interrupts are. If your platform does differently, then
 248		 * either provide a proper interrupt tree or don't use this
 249		 * function.
 250		 */
 251		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
 252			return -1;
 253		if (pin == 0)
 254			return -1;
 255		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
 256		    line == 0xff || line == 0) {
 257			return -1;
 258		}
 259		pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
 260			 line, pin);
 261
 262		virq = irq_create_mapping(NULL, line);
 263		if (virq != NO_IRQ)
 264			irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
 265	} else {
 266		pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
 267			 oirq.size, oirq.specifier[0], oirq.specifier[1],
 268			 oirq.controller ? oirq.controller->full_name :
 269			 "<default>");
 270
 271		virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
 272					     oirq.size);
 273	}
 274	if(virq == NO_IRQ) {
 275		pr_debug(" Failed to map !\n");
 276		return -1;
 277	}
 278
 279	pr_debug(" Mapped to linux irq %d\n", virq);
 280
 281	pci_dev->irq = virq;
 282
 283	return 0;
 284}
 285EXPORT_SYMBOL(pci_read_irq_line);
 286
 287/*
 288 * Platform support for /proc/bus/pci/X/Y mmap()s,
 289 * modelled on the sparc64 implementation by Dave Miller.
 290 *  -- paulus.
 291 */
 292
 293/*
 294 * Adjust vm_pgoff of VMA such that it is the physical page offset
 295 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
 296 *
 297 * Basically, the user finds the base address for his device which he wishes
 298 * to mmap.  They read the 32-bit value from the config space base register,
 299 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
 300 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
 301 *
 302 * Returns negative error code on failure, zero on success.
 303 */
 304static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
 305					       resource_size_t *offset,
 306					       enum pci_mmap_state mmap_state)
 307{
 308	struct pci_controller *hose = pci_bus_to_host(dev->bus);
 309	unsigned long io_offset = 0;
 310	int i, res_bit;
 311
 312	if (hose == 0)
 313		return NULL;		/* should never happen */
 314
 315	/* If memory, add on the PCI bridge address offset */
 316	if (mmap_state == pci_mmap_mem) {
 317#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
 318		*offset += hose->pci_mem_offset;
 319#endif
 320		res_bit = IORESOURCE_MEM;
 321	} else {
 322		io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 323		*offset += io_offset;
 324		res_bit = IORESOURCE_IO;
 325	}
 326
 327	/*
 328	 * Check that the offset requested corresponds to one of the
 329	 * resources of the device.
 330	 */
 331	for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
 332		struct resource *rp = &dev->resource[i];
 333		int flags = rp->flags;
 334
 335		/* treat ROM as memory (should be already) */
 336		if (i == PCI_ROM_RESOURCE)
 337			flags |= IORESOURCE_MEM;
 338
 339		/* Active and same type? */
 340		if ((flags & res_bit) == 0)
 341			continue;
 342
 343		/* In the range of this resource? */
 344		if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
 345			continue;
 346
 347		/* found it! construct the final physical address */
 348		if (mmap_state == pci_mmap_io)
 349			*offset += hose->io_base_phys - io_offset;
 350		return rp;
 351	}
 352
 353	return NULL;
 354}
 355
 356/*
 357 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
 358 * device mapping.
 359 */
 360static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
 361				      pgprot_t protection,
 362				      enum pci_mmap_state mmap_state,
 363				      int write_combine)
 364{
 365	unsigned long prot = pgprot_val(protection);
 366
 367	/* Write combine is always 0 on non-memory space mappings. On
 368	 * memory space, if the user didn't pass 1, we check for a
 369	 * "prefetchable" resource. This is a bit hackish, but we use
 370	 * this to workaround the inability of /sysfs to provide a write
 371	 * combine bit
 372	 */
 373	if (mmap_state != pci_mmap_mem)
 374		write_combine = 0;
 375	else if (write_combine == 0) {
 376		if (rp->flags & IORESOURCE_PREFETCH)
 377			write_combine = 1;
 378	}
 379
 380	/* XXX would be nice to have a way to ask for write-through */
 381	if (write_combine)
 382		return pgprot_noncached_wc(prot);
 383	else
 384		return pgprot_noncached(prot);
 385}
 386
 387/*
 388 * This one is used by /dev/mem and fbdev who have no clue about the
 389 * PCI device, it tries to find the PCI device first and calls the
 390 * above routine
 391 */
 392pgprot_t pci_phys_mem_access_prot(struct file *file,
 393				  unsigned long pfn,
 394				  unsigned long size,
 395				  pgprot_t prot)
 396{
 397	struct pci_dev *pdev = NULL;
 398	struct resource *found = NULL;
 399	resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
 400	int i;
 401
 402	if (page_is_ram(pfn))
 403		return prot;
 404
 405	prot = pgprot_noncached(prot);
 406	for_each_pci_dev(pdev) {
 407		for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
 408			struct resource *rp = &pdev->resource[i];
 409			int flags = rp->flags;
 410
 411			/* Active and same type? */
 412			if ((flags & IORESOURCE_MEM) == 0)
 413				continue;
 414			/* In the range of this resource? */
 415			if (offset < (rp->start & PAGE_MASK) ||
 416			    offset > rp->end)
 417				continue;
 418			found = rp;
 419			break;
 420		}
 421		if (found)
 422			break;
 423	}
 424	if (found) {
 425		if (found->flags & IORESOURCE_PREFETCH)
 426			prot = pgprot_noncached_wc(prot);
 427		pci_dev_put(pdev);
 428	}
 429
 430	pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
 431		 (unsigned long long)offset, pgprot_val(prot));
 432
 433	return prot;
 434}
 435
 436
 437/*
 438 * Perform the actual remap of the pages for a PCI device mapping, as
 439 * appropriate for this architecture.  The region in the process to map
 440 * is described by vm_start and vm_end members of VMA, the base physical
 441 * address is found in vm_pgoff.
 442 * The pci device structure is provided so that architectures may make mapping
 443 * decisions on a per-device or per-bus basis.
 444 *
 445 * Returns a negative error code on failure, zero on success.
 446 */
 447int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
 448			enum pci_mmap_state mmap_state, int write_combine)
 449{
 450	resource_size_t offset =
 451		((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
 452	struct resource *rp;
 453	int ret;
 454
 455	rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
 456	if (rp == NULL)
 457		return -EINVAL;
 458
 459	vma->vm_pgoff = offset >> PAGE_SHIFT;
 460	vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
 461						  vma->vm_page_prot,
 462						  mmap_state, write_combine);
 463
 464	ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
 465			       vma->vm_end - vma->vm_start, vma->vm_page_prot);
 466
 467	return ret;
 468}
 469
 470/* This provides legacy IO read access on a bus */
 471int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
 472{
 473	unsigned long offset;
 474	struct pci_controller *hose = pci_bus_to_host(bus);
 475	struct resource *rp = &hose->io_resource;
 476	void __iomem *addr;
 477
 478	/* Check if port can be supported by that bus. We only check
 479	 * the ranges of the PHB though, not the bus itself as the rules
 480	 * for forwarding legacy cycles down bridges are not our problem
 481	 * here. So if the host bridge supports it, we do it.
 482	 */
 483	offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 484	offset += port;
 485
 486	if (!(rp->flags & IORESOURCE_IO))
 487		return -ENXIO;
 488	if (offset < rp->start || (offset + size) > rp->end)
 489		return -ENXIO;
 490	addr = hose->io_base_virt + port;
 491
 492	switch(size) {
 493	case 1:
 494		*((u8 *)val) = in_8(addr);
 495		return 1;
 496	case 2:
 497		if (port & 1)
 498			return -EINVAL;
 499		*((u16 *)val) = in_le16(addr);
 500		return 2;
 501	case 4:
 502		if (port & 3)
 503			return -EINVAL;
 504		*((u32 *)val) = in_le32(addr);
 505		return 4;
 506	}
 507	return -EINVAL;
 508}
 509
 510/* This provides legacy IO write access on a bus */
 511int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
 512{
 513	unsigned long offset;
 514	struct pci_controller *hose = pci_bus_to_host(bus);
 515	struct resource *rp = &hose->io_resource;
 516	void __iomem *addr;
 517
 518	/* Check if port can be supported by that bus. We only check
 519	 * the ranges of the PHB though, not the bus itself as the rules
 520	 * for forwarding legacy cycles down bridges are not our problem
 521	 * here. So if the host bridge supports it, we do it.
 522	 */
 523	offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 524	offset += port;
 525
 526	if (!(rp->flags & IORESOURCE_IO))
 527		return -ENXIO;
 528	if (offset < rp->start || (offset + size) > rp->end)
 529		return -ENXIO;
 530	addr = hose->io_base_virt + port;
 531
 532	/* WARNING: The generic code is idiotic. It gets passed a pointer
 533	 * to what can be a 1, 2 or 4 byte quantity and always reads that
 534	 * as a u32, which means that we have to correct the location of
 535	 * the data read within those 32 bits for size 1 and 2
 536	 */
 537	switch(size) {
 538	case 1:
 539		out_8(addr, val >> 24);
 540		return 1;
 541	case 2:
 542		if (port & 1)
 543			return -EINVAL;
 544		out_le16(addr, val >> 16);
 545		return 2;
 546	case 4:
 547		if (port & 3)
 548			return -EINVAL;
 549		out_le32(addr, val);
 550		return 4;
 551	}
 552	return -EINVAL;
 553}
 554
 555/* This provides legacy IO or memory mmap access on a bus */
 556int pci_mmap_legacy_page_range(struct pci_bus *bus,
 557			       struct vm_area_struct *vma,
 558			       enum pci_mmap_state mmap_state)
 559{
 560	struct pci_controller *hose = pci_bus_to_host(bus);
 561	resource_size_t offset =
 562		((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
 563	resource_size_t size = vma->vm_end - vma->vm_start;
 564	struct resource *rp;
 565
 566	pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
 567		 pci_domain_nr(bus), bus->number,
 568		 mmap_state == pci_mmap_mem ? "MEM" : "IO",
 569		 (unsigned long long)offset,
 570		 (unsigned long long)(offset + size - 1));
 571
 572	if (mmap_state == pci_mmap_mem) {
 573		/* Hack alert !
 574		 *
 575		 * Because X is lame and can fail starting if it gets an error trying
 576		 * to mmap legacy_mem (instead of just moving on without legacy memory
 577		 * access) we fake it here by giving it anonymous memory, effectively
 578		 * behaving just like /dev/zero
 579		 */
 580		if ((offset + size) > hose->isa_mem_size) {
 581			printk(KERN_DEBUG
 582			       "Process %s (pid:%d) mapped non-existing PCI legacy memory for 0%04x:%02x\n",
 583			       current->comm, current->pid, pci_domain_nr(bus), bus->number);
 584			if (vma->vm_flags & VM_SHARED)
 585				return shmem_zero_setup(vma);
 586			return 0;
 587		}
 588		offset += hose->isa_mem_phys;
 589	} else {
 590		unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 591		unsigned long roffset = offset + io_offset;
 592		rp = &hose->io_resource;
 593		if (!(rp->flags & IORESOURCE_IO))
 594			return -ENXIO;
 595		if (roffset < rp->start || (roffset + size) > rp->end)
 596			return -ENXIO;
 597		offset += hose->io_base_phys;
 598	}
 599	pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
 600
 601	vma->vm_pgoff = offset >> PAGE_SHIFT;
 602	vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
 603	return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
 604			       vma->vm_end - vma->vm_start,
 605			       vma->vm_page_prot);
 606}
 607
 608void pci_resource_to_user(const struct pci_dev *dev, int bar,
 609			  const struct resource *rsrc,
 610			  resource_size_t *start, resource_size_t *end)
 611{
 612	struct pci_controller *hose = pci_bus_to_host(dev->bus);
 613	resource_size_t offset = 0;
 614
 615	if (hose == NULL)
 
 
 
 
 616		return;
 
 617
 618	if (rsrc->flags & IORESOURCE_IO)
 619		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 620
 621	/* We pass a fully fixed up address to userland for MMIO instead of
 622	 * a BAR value because X is lame and expects to be able to use that
 623	 * to pass to /dev/mem !
 624	 *
 625	 * That means that we'll have potentially 64 bits values where some
 626	 * userland apps only expect 32 (like X itself since it thinks only
 627	 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
 628	 * 32 bits CHRPs :-(
 629	 *
 630	 * Hopefully, the sysfs insterface is immune to that gunk. Once X
 631	 * has been fixed (and the fix spread enough), we can re-enable the
 632	 * 2 lines below and pass down a BAR value to userland. In that case
 633	 * we'll also have to re-enable the matching code in
 634	 * __pci_mmap_make_offset().
 635	 *
 636	 * BenH.
 637	 */
 638#if 0
 639	else if (rsrc->flags & IORESOURCE_MEM)
 640		offset = hose->pci_mem_offset;
 641#endif
 642
 643	*start = rsrc->start - offset;
 644	*end = rsrc->end - offset;
 645}
 646
 647/**
 648 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
 649 * @hose: newly allocated pci_controller to be setup
 650 * @dev: device node of the host bridge
 651 * @primary: set if primary bus (32 bits only, soon to be deprecated)
 652 *
 653 * This function will parse the "ranges" property of a PCI host bridge device
 654 * node and setup the resource mapping of a pci controller based on its
 655 * content.
 656 *
 657 * Life would be boring if it wasn't for a few issues that we have to deal
 658 * with here:
 659 *
 660 *   - We can only cope with one IO space range and up to 3 Memory space
 661 *     ranges. However, some machines (thanks Apple !) tend to split their
 662 *     space into lots of small contiguous ranges. So we have to coalesce.
 663 *
 664 *   - We can only cope with all memory ranges having the same offset
 665 *     between CPU addresses and PCI addresses. Unfortunately, some bridges
 666 *     are setup for a large 1:1 mapping along with a small "window" which
 667 *     maps PCI address 0 to some arbitrary high address of the CPU space in
 668 *     order to give access to the ISA memory hole.
 669 *     The way out of here that I've chosen for now is to always set the
 670 *     offset based on the first resource found, then override it if we
 671 *     have a different offset and the previous was set by an ISA hole.
 672 *
 673 *   - Some busses have IO space not starting at 0, which causes trouble with
 674 *     the way we do our IO resource renumbering. The code somewhat deals with
 675 *     it for 64 bits but I would expect problems on 32 bits.
 676 *
 677 *   - Some 32 bits platforms such as 4xx can have physical space larger than
 678 *     32 bits so we need to use 64 bits values for the parsing
 679 */
 680void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
 681					    struct device_node *dev,
 682					    int primary)
 683{
 684	const u32 *ranges;
 685	int rlen;
 686	int pna = of_n_addr_cells(dev);
 687	int np = pna + 5;
 688	int memno = 0, isa_hole = -1;
 689	u32 pci_space;
 690	unsigned long long pci_addr, cpu_addr, pci_next, cpu_next, size;
 691	unsigned long long isa_mb = 0;
 692	struct resource *res;
 
 
 693
 694	printk(KERN_INFO "PCI host bridge %s %s ranges:\n",
 695	       dev->full_name, primary ? "(primary)" : "");
 696
 697	/* Get ranges property */
 698	ranges = of_get_property(dev, "ranges", &rlen);
 699	if (ranges == NULL)
 700		return;
 701
 702	/* Parse it */
 703	while ((rlen -= np * 4) >= 0) {
 704		/* Read next ranges element */
 705		pci_space = ranges[0];
 706		pci_addr = of_read_number(ranges + 1, 2);
 707		cpu_addr = of_translate_address(dev, ranges + 3);
 708		size = of_read_number(ranges + pna + 3, 2);
 709		ranges += np;
 710
 711		/* If we failed translation or got a zero-sized region
 712		 * (some FW try to feed us with non sensical zero sized regions
 713		 * such as power3 which look like some kind of attempt at exposing
 714		 * the VGA memory hole)
 715		 */
 716		if (cpu_addr == OF_BAD_ADDR || size == 0)
 717			continue;
 718
 719		/* Now consume following elements while they are contiguous */
 720		for (; rlen >= np * sizeof(u32);
 721		     ranges += np, rlen -= np * 4) {
 722			if (ranges[0] != pci_space)
 723				break;
 724			pci_next = of_read_number(ranges + 1, 2);
 725			cpu_next = of_translate_address(dev, ranges + 3);
 726			if (pci_next != pci_addr + size ||
 727			    cpu_next != cpu_addr + size)
 728				break;
 729			size += of_read_number(ranges + pna + 3, 2);
 730		}
 731
 732		/* Act based on address space type */
 733		res = NULL;
 734		switch ((pci_space >> 24) & 0x3) {
 735		case 1:		/* PCI IO space */
 736			printk(KERN_INFO
 737			       "  IO 0x%016llx..0x%016llx -> 0x%016llx\n",
 738			       cpu_addr, cpu_addr + size - 1, pci_addr);
 
 739
 740			/* We support only one IO range */
 741			if (hose->pci_io_size) {
 742				printk(KERN_INFO
 743				       " \\--> Skipped (too many) !\n");
 744				continue;
 745			}
 746#ifdef CONFIG_PPC32
 747			/* On 32 bits, limit I/O space to 16MB */
 748			if (size > 0x01000000)
 749				size = 0x01000000;
 750
 751			/* 32 bits needs to map IOs here */
 752			hose->io_base_virt = ioremap(cpu_addr, size);
 
 753
 754			/* Expect trouble if pci_addr is not 0 */
 755			if (primary)
 756				isa_io_base =
 757					(unsigned long)hose->io_base_virt;
 758#endif /* CONFIG_PPC32 */
 759			/* pci_io_size and io_base_phys always represent IO
 760			 * space starting at 0 so we factor in pci_addr
 761			 */
 762			hose->pci_io_size = pci_addr + size;
 763			hose->io_base_phys = cpu_addr - pci_addr;
 764
 765			/* Build resource */
 766			res = &hose->io_resource;
 767			res->flags = IORESOURCE_IO;
 768			res->start = pci_addr;
 769			break;
 770		case 2:		/* PCI Memory space */
 771		case 3:		/* PCI 64 bits Memory space */
 772			printk(KERN_INFO
 773			       " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
 774			       cpu_addr, cpu_addr + size - 1, pci_addr,
 775			       (pci_space & 0x40000000) ? "Prefetch" : "");
 
 
 776
 777			/* We support only 3 memory ranges */
 778			if (memno >= 3) {
 779				printk(KERN_INFO
 780				       " \\--> Skipped (too many) !\n");
 781				continue;
 782			}
 783			/* Handles ISA memory hole space here */
 784			if (pci_addr == 0) {
 785				isa_mb = cpu_addr;
 786				isa_hole = memno;
 787				if (primary || isa_mem_base == 0)
 788					isa_mem_base = cpu_addr;
 789				hose->isa_mem_phys = cpu_addr;
 790				hose->isa_mem_size = size;
 791			}
 792
 793			/* We get the PCI/Mem offset from the first range or
 794			 * the, current one if the offset came from an ISA
 795			 * hole. If they don't match, bugger.
 796			 */
 797			if (memno == 0 ||
 798			    (isa_hole >= 0 && pci_addr != 0 &&
 799			     hose->pci_mem_offset == isa_mb))
 800				hose->pci_mem_offset = cpu_addr - pci_addr;
 801			else if (pci_addr != 0 &&
 802				 hose->pci_mem_offset != cpu_addr - pci_addr) {
 803				printk(KERN_INFO
 804				       " \\--> Skipped (offset mismatch) !\n");
 805				continue;
 806			}
 807
 808			/* Build resource */
 
 
 809			res = &hose->mem_resources[memno++];
 810			res->flags = IORESOURCE_MEM;
 811			if (pci_space & 0x40000000)
 812				res->flags |= IORESOURCE_PREFETCH;
 813			res->start = cpu_addr;
 814			break;
 815		}
 816		if (res != NULL) {
 817			res->name = dev->full_name;
 818			res->end = res->start + size - 1;
 819			res->parent = NULL;
 820			res->sibling = NULL;
 821			res->child = NULL;
 822		}
 823	}
 824
 825	/* If there's an ISA hole and the pci_mem_offset is -not- matching
 826	 * the ISA hole offset, then we need to remove the ISA hole from
 827	 * the resource list for that brige
 828	 */
 829	if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
 830		unsigned int next = isa_hole + 1;
 831		printk(KERN_INFO " Removing ISA hole at 0x%016llx\n", isa_mb);
 832		if (next < memno)
 833			memmove(&hose->mem_resources[isa_hole],
 834				&hose->mem_resources[next],
 835				sizeof(struct resource) * (memno - next));
 836		hose->mem_resources[--memno].flags = 0;
 837	}
 838}
 839
 840/* Decide whether to display the domain number in /proc */
 841int pci_proc_domain(struct pci_bus *bus)
 842{
 843	struct pci_controller *hose = pci_bus_to_host(bus);
 844
 845	if (!pci_has_flag(PCI_ENABLE_PROC_DOMAINS))
 846		return 0;
 847	if (pci_has_flag(PCI_COMPAT_DOMAIN_0))
 848		return hose->global_number != 0;
 849	return 1;
 850}
 851
 852void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
 853			     struct resource *res)
 854{
 855	resource_size_t offset = 0, mask = (resource_size_t)-1;
 856	struct pci_controller *hose = pci_bus_to_host(dev->bus);
 857
 858	if (!hose)
 859		return;
 860	if (res->flags & IORESOURCE_IO) {
 861		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 862		mask = 0xffffffffu;
 863	} else if (res->flags & IORESOURCE_MEM)
 864		offset = hose->pci_mem_offset;
 865
 866	region->start = (res->start - offset) & mask;
 867	region->end = (res->end - offset) & mask;
 868}
 869EXPORT_SYMBOL(pcibios_resource_to_bus);
 870
 871void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
 872			     struct pci_bus_region *region)
 873{
 874	resource_size_t offset = 0, mask = (resource_size_t)-1;
 875	struct pci_controller *hose = pci_bus_to_host(dev->bus);
 876
 877	if (!hose)
 878		return;
 879	if (res->flags & IORESOURCE_IO) {
 880		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 881		mask = 0xffffffffu;
 882	} else if (res->flags & IORESOURCE_MEM)
 883		offset = hose->pci_mem_offset;
 884	res->start = (region->start + offset) & mask;
 885	res->end = (region->end + offset) & mask;
 886}
 887EXPORT_SYMBOL(pcibios_bus_to_resource);
 888
 889/* Fixup a bus resource into a linux resource */
 890static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
 891{
 892	struct pci_controller *hose = pci_bus_to_host(dev->bus);
 893	resource_size_t offset = 0, mask = (resource_size_t)-1;
 894
 895	if (res->flags & IORESOURCE_IO) {
 896		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
 897		mask = 0xffffffffu;
 898	} else if (res->flags & IORESOURCE_MEM)
 899		offset = hose->pci_mem_offset;
 900
 901	res->start = (res->start + offset) & mask;
 902	res->end = (res->end + offset) & mask;
 903}
 904
 905
 906/* This header fixup will do the resource fixup for all devices as they are
 907 * probed, but not for bridge ranges
 908 */
 909static void __devinit pcibios_fixup_resources(struct pci_dev *dev)
 910{
 911	struct pci_controller *hose = pci_bus_to_host(dev->bus);
 912	int i;
 913
 914	if (!hose) {
 915		printk(KERN_ERR "No host bridge for PCI dev %s !\n",
 916		       pci_name(dev));
 917		return;
 918	}
 
 
 
 
 919	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
 920		struct resource *res = dev->resource + i;
 
 921		if (!res->flags)
 922			continue;
 923		/* On platforms that have PCI_PROBE_ONLY set, we don't
 924		 * consider 0 as an unassigned BAR value. It's technically
 925		 * a valid value, but linux doesn't like it... so when we can
 926		 * re-assign things, we do so, but if we can't, we keep it
 927		 * around and hope for the best...
 928		 */
 929		if (res->start == 0 && !pci_has_flag(PCI_PROBE_ONLY)) {
 930			pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] is unassigned\n",
 931				 pci_name(dev), i,
 932				 (unsigned long long)res->start,
 933				 (unsigned long long)res->end,
 934				 (unsigned int)res->flags);
 
 935			res->end -= res->start;
 936			res->start = 0;
 937			res->flags |= IORESOURCE_UNSET;
 938			continue;
 939		}
 940
 941		pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] fixup...\n",
 942			 pci_name(dev), i,
 943			 (unsigned long long)res->start,\
 944			 (unsigned long long)res->end,
 945			 (unsigned int)res->flags);
 946
 947		fixup_resource(res, dev);
 948
 949		pr_debug("PCI:%s            %016llx-%016llx\n",
 950			 pci_name(dev),
 951			 (unsigned long long)res->start,
 952			 (unsigned long long)res->end);
 953	}
 954
 955	/* Call machine specific resource fixup */
 956	if (ppc_md.pcibios_fixup_resources)
 957		ppc_md.pcibios_fixup_resources(dev);
 958}
 959DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
 960
 961/* This function tries to figure out if a bridge resource has been initialized
 962 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
 963 * things go more smoothly when it gets it right. It should covers cases such
 964 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
 965 */
 966static int __devinit pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
 967							   struct resource *res)
 968{
 969	struct pci_controller *hose = pci_bus_to_host(bus);
 970	struct pci_dev *dev = bus->self;
 971	resource_size_t offset;
 
 972	u16 command;
 973	int i;
 974
 975	/* We don't do anything if PCI_PROBE_ONLY is set */
 976	if (pci_has_flag(PCI_PROBE_ONLY))
 977		return 0;
 978
 979	/* Job is a bit different between memory and IO */
 980	if (res->flags & IORESOURCE_MEM) {
 981		/* If the BAR is non-0 (res != pci_mem_offset) then it's probably been
 982		 * initialized by somebody
 983		 */
 984		if (res->start != hose->pci_mem_offset)
 985			return 0;
 986
 987		/* The BAR is 0, let's check if memory decoding is enabled on
 988		 * the bridge. If not, we consider it unassigned
 989		 */
 990		pci_read_config_word(dev, PCI_COMMAND, &command);
 991		if ((command & PCI_COMMAND_MEMORY) == 0)
 992			return 1;
 993
 994		/* Memory decoding is enabled and the BAR is 0. If any of the bridge
 995		 * resources covers that starting address (0 then it's good enough for
 996		 * us for memory
 997		 */
 998		for (i = 0; i < 3; i++) {
 999			if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
1000			    hose->mem_resources[i].start == hose->pci_mem_offset)
1001				return 0;
1002		}
1003
1004		/* Well, it starts at 0 and we know it will collide so we may as
1005		 * well consider it as unassigned. That covers the Apple case.
1006		 */
1007		return 1;
1008	} else {
1009		/* If the BAR is non-0, then we consider it assigned */
1010		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1011		if (((res->start - offset) & 0xfffffffful) != 0)
1012			return 0;
1013
1014		/* Here, we are a bit different than memory as typically IO space
1015		 * starting at low addresses -is- valid. What we do instead if that
1016		 * we consider as unassigned anything that doesn't have IO enabled
1017		 * in the PCI command register, and that's it.
1018		 */
1019		pci_read_config_word(dev, PCI_COMMAND, &command);
1020		if (command & PCI_COMMAND_IO)
1021			return 0;
1022
1023		/* It's starting at 0 and IO is disabled in the bridge, consider
1024		 * it unassigned
1025		 */
1026		return 1;
1027	}
1028}
1029
1030/* Fixup resources of a PCI<->PCI bridge */
1031static void __devinit pcibios_fixup_bridge(struct pci_bus *bus)
1032{
1033	struct resource *res;
1034	int i;
1035
1036	struct pci_dev *dev = bus->self;
1037
1038	pci_bus_for_each_resource(bus, res, i) {
1039		if (!res || !res->flags)
1040			continue;
1041		if (i >= 3 && bus->self->transparent)
1042			continue;
1043
1044		pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
1045			 pci_name(dev), i,
1046			 (unsigned long long)res->start,\
1047			 (unsigned long long)res->end,
1048			 (unsigned int)res->flags);
 
 
 
 
 
1049
1050		/* Perform fixup */
1051		fixup_resource(res, dev);
1052
1053		/* Try to detect uninitialized P2P bridge resources,
1054		 * and clear them out so they get re-assigned later
1055		 */
1056		if (pcibios_uninitialized_bridge_resource(bus, res)) {
1057			res->flags = 0;
1058			pr_debug("PCI:%s            (unassigned)\n", pci_name(dev));
1059		} else {
1060
1061			pr_debug("PCI:%s            %016llx-%016llx\n",
1062				 pci_name(dev),
1063				 (unsigned long long)res->start,
1064				 (unsigned long long)res->end);
1065		}
1066	}
1067}
1068
1069void __devinit pcibios_setup_bus_self(struct pci_bus *bus)
1070{
 
 
1071	/* Fix up the bus resources for P2P bridges */
1072	if (bus->self != NULL)
1073		pcibios_fixup_bridge(bus);
1074
1075	/* Platform specific bus fixups. This is currently only used
1076	 * by fsl_pci and I'm hoping to get rid of it at some point
1077	 */
1078	if (ppc_md.pcibios_fixup_bus)
1079		ppc_md.pcibios_fixup_bus(bus);
1080
1081	/* Setup bus DMA mappings */
1082	if (ppc_md.pci_dma_bus_setup)
1083		ppc_md.pci_dma_bus_setup(bus);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1084}
1085
1086void __devinit pcibios_setup_bus_devices(struct pci_bus *bus)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1087{
1088	struct pci_dev *dev;
1089
1090	pr_debug("PCI: Fixup bus devices %d (%s)\n",
1091		 bus->number, bus->self ? pci_name(bus->self) : "PHB");
1092
1093	list_for_each_entry(dev, &bus->devices, bus_list) {
1094		/* Cardbus can call us to add new devices to a bus, so ignore
1095		 * those who are already fully discovered
1096		 */
1097		if (dev->is_added)
1098			continue;
1099
1100		/* Fixup NUMA node as it may not be setup yet by the generic
1101		 * code and is needed by the DMA init
1102		 */
1103		set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
1104
1105		/* Hook up default DMA ops */
1106		set_dma_ops(&dev->dev, pci_dma_ops);
1107		set_dma_offset(&dev->dev, PCI_DRAM_OFFSET);
1108
1109		/* Additional platform DMA/iommu setup */
1110		if (ppc_md.pci_dma_dev_setup)
1111			ppc_md.pci_dma_dev_setup(dev);
1112
1113		/* Read default IRQs and fixup if necessary */
1114		pci_read_irq_line(dev);
1115		if (ppc_md.pci_irq_fixup)
1116			ppc_md.pci_irq_fixup(dev);
1117	}
1118}
1119
1120void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1121{
1122	/* When called from the generic PCI probe, read PCI<->PCI bridge
1123	 * bases. This is -not- called when generating the PCI tree from
1124	 * the OF device-tree.
1125	 */
1126	if (bus->self != NULL)
1127		pci_read_bridge_bases(bus);
1128
1129	/* Now fixup the bus bus */
1130	pcibios_setup_bus_self(bus);
1131
1132	/* Now fixup devices on that bus */
1133	pcibios_setup_bus_devices(bus);
1134}
1135EXPORT_SYMBOL(pcibios_fixup_bus);
1136
1137void __devinit pci_fixup_cardbus(struct pci_bus *bus)
1138{
1139	/* Now fixup devices on that bus */
1140	pcibios_setup_bus_devices(bus);
1141}
1142
1143
1144static int skip_isa_ioresource_align(struct pci_dev *dev)
1145{
1146	if (pci_has_flag(PCI_CAN_SKIP_ISA_ALIGN) &&
1147	    !(dev->bus->bridge_ctl & PCI_BRIDGE_CTL_ISA))
1148		return 1;
1149	return 0;
1150}
1151
1152/*
1153 * We need to avoid collisions with `mirrored' VGA ports
1154 * and other strange ISA hardware, so we always want the
1155 * addresses to be allocated in the 0x000-0x0ff region
1156 * modulo 0x400.
1157 *
1158 * Why? Because some silly external IO cards only decode
1159 * the low 10 bits of the IO address. The 0x00-0xff region
1160 * is reserved for motherboard devices that decode all 16
1161 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1162 * but we want to try to avoid allocating at 0x2900-0x2bff
1163 * which might have be mirrored at 0x0100-0x03ff..
1164 */
1165resource_size_t pcibios_align_resource(void *data, const struct resource *res,
1166				resource_size_t size, resource_size_t align)
1167{
1168	struct pci_dev *dev = data;
1169	resource_size_t start = res->start;
1170
1171	if (res->flags & IORESOURCE_IO) {
1172		if (skip_isa_ioresource_align(dev))
1173			return start;
1174		if (start & 0x300)
1175			start = (start + 0x3ff) & ~0x3ff;
1176	}
1177
1178	return start;
1179}
1180EXPORT_SYMBOL(pcibios_align_resource);
1181
1182/*
1183 * Reparent resource children of pr that conflict with res
1184 * under res, and make res replace those children.
1185 */
1186static int reparent_resources(struct resource *parent,
1187				     struct resource *res)
1188{
1189	struct resource *p, **pp;
1190	struct resource **firstpp = NULL;
1191
1192	for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
1193		if (p->end < res->start)
1194			continue;
1195		if (res->end < p->start)
1196			break;
1197		if (p->start < res->start || p->end > res->end)
1198			return -1;	/* not completely contained */
1199		if (firstpp == NULL)
1200			firstpp = pp;
1201	}
1202	if (firstpp == NULL)
1203		return -1;	/* didn't find any conflicting entries? */
1204	res->parent = parent;
1205	res->child = *firstpp;
1206	res->sibling = *pp;
1207	*firstpp = res;
1208	*pp = NULL;
1209	for (p = res->child; p != NULL; p = p->sibling) {
1210		p->parent = res;
1211		pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
1212			 p->name,
1213			 (unsigned long long)p->start,
1214			 (unsigned long long)p->end, res->name);
1215	}
1216	return 0;
1217}
1218
1219/*
1220 *  Handle resources of PCI devices.  If the world were perfect, we could
1221 *  just allocate all the resource regions and do nothing more.  It isn't.
1222 *  On the other hand, we cannot just re-allocate all devices, as it would
1223 *  require us to know lots of host bridge internals.  So we attempt to
1224 *  keep as much of the original configuration as possible, but tweak it
1225 *  when it's found to be wrong.
1226 *
1227 *  Known BIOS problems we have to work around:
1228 *	- I/O or memory regions not configured
1229 *	- regions configured, but not enabled in the command register
1230 *	- bogus I/O addresses above 64K used
1231 *	- expansion ROMs left enabled (this may sound harmless, but given
1232 *	  the fact the PCI specs explicitly allow address decoders to be
1233 *	  shared between expansion ROMs and other resource regions, it's
1234 *	  at least dangerous)
1235 *
1236 *  Our solution:
1237 *	(1) Allocate resources for all buses behind PCI-to-PCI bridges.
1238 *	    This gives us fixed barriers on where we can allocate.
1239 *	(2) Allocate resources for all enabled devices.  If there is
1240 *	    a collision, just mark the resource as unallocated. Also
1241 *	    disable expansion ROMs during this step.
1242 *	(3) Try to allocate resources for disabled devices.  If the
1243 *	    resources were assigned correctly, everything goes well,
1244 *	    if they weren't, they won't disturb allocation of other
1245 *	    resources.
1246 *	(4) Assign new addresses to resources which were either
1247 *	    not configured at all or misconfigured.  If explicitly
1248 *	    requested by the user, configure expansion ROM address
1249 *	    as well.
1250 */
1251
1252void pcibios_allocate_bus_resources(struct pci_bus *bus)
1253{
1254	struct pci_bus *b;
1255	int i;
1256	struct resource *res, *pr;
1257
1258	pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1259		 pci_domain_nr(bus), bus->number);
1260
1261	pci_bus_for_each_resource(bus, res, i) {
1262		if (!res || !res->flags || res->start > res->end || res->parent)
1263			continue;
 
 
 
 
 
1264		if (bus->parent == NULL)
1265			pr = (res->flags & IORESOURCE_IO) ?
1266				&ioport_resource : &iomem_resource;
1267		else {
1268			/* Don't bother with non-root busses when
1269			 * re-assigning all resources. We clear the
1270			 * resource flags as if they were colliding
1271			 * and as such ensure proper re-allocation
1272			 * later.
1273			 */
1274			if (pci_has_flag(PCI_REASSIGN_ALL_RSRC))
1275				goto clear_resource;
1276			pr = pci_find_parent_resource(bus->self, res);
1277			if (pr == res) {
1278				/* this happens when the generic PCI
1279				 * code (wrongly) decides that this
1280				 * bridge is transparent  -- paulus
1281				 */
1282				continue;
1283			}
1284		}
1285
1286		pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx "
1287			 "[0x%x], parent %p (%s)\n",
1288			 bus->self ? pci_name(bus->self) : "PHB",
1289			 bus->number, i,
1290			 (unsigned long long)res->start,
1291			 (unsigned long long)res->end,
1292			 (unsigned int)res->flags,
1293			 pr, (pr && pr->name) ? pr->name : "nil");
1294
1295		if (pr && !(pr->flags & IORESOURCE_UNSET)) {
 
 
1296			if (request_resource(pr, res) == 0)
1297				continue;
1298			/*
1299			 * Must be a conflict with an existing entry.
1300			 * Move that entry (or entries) under the
1301			 * bridge resource and try again.
1302			 */
1303			if (reparent_resources(pr, res) == 0)
1304				continue;
 
 
 
 
 
1305		}
1306		printk(KERN_WARNING "PCI: Cannot allocate resource region "
1307		       "%d of PCI bridge %d, will remap\n", i, bus->number);
1308clear_resource:
1309		res->start = res->end = 0;
 
 
 
 
 
 
 
1310		res->flags = 0;
1311	}
1312
1313	list_for_each_entry(b, &bus->children, node)
1314		pcibios_allocate_bus_resources(b);
1315}
1316
1317static inline void __devinit alloc_resource(struct pci_dev *dev, int idx)
1318{
1319	struct resource *pr, *r = &dev->resource[idx];
1320
1321	pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1322		 pci_name(dev), idx,
1323		 (unsigned long long)r->start,
1324		 (unsigned long long)r->end,
1325		 (unsigned int)r->flags);
1326
1327	pr = pci_find_parent_resource(dev, r);
1328	if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1329	    request_resource(pr, r) < 0) {
1330		printk(KERN_WARNING "PCI: Cannot allocate resource region %d"
1331		       " of device %s, will remap\n", idx, pci_name(dev));
1332		if (pr)
1333			pr_debug("PCI:  parent is %p: %016llx-%016llx [%x]\n",
1334				 pr,
1335				 (unsigned long long)pr->start,
1336				 (unsigned long long)pr->end,
1337				 (unsigned int)pr->flags);
1338		/* We'll assign a new address later */
1339		r->flags |= IORESOURCE_UNSET;
1340		r->end -= r->start;
1341		r->start = 0;
1342	}
1343}
1344
1345static void __init pcibios_allocate_resources(int pass)
1346{
1347	struct pci_dev *dev = NULL;
1348	int idx, disabled;
1349	u16 command;
1350	struct resource *r;
1351
1352	for_each_pci_dev(dev) {
1353		pci_read_config_word(dev, PCI_COMMAND, &command);
1354		for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1355			r = &dev->resource[idx];
1356			if (r->parent)		/* Already allocated */
1357				continue;
1358			if (!r->flags || (r->flags & IORESOURCE_UNSET))
1359				continue;	/* Not assigned at all */
1360			/* We only allocate ROMs on pass 1 just in case they
1361			 * have been screwed up by firmware
1362			 */
1363			if (idx == PCI_ROM_RESOURCE )
1364				disabled = 1;
1365			if (r->flags & IORESOURCE_IO)
1366				disabled = !(command & PCI_COMMAND_IO);
1367			else
1368				disabled = !(command & PCI_COMMAND_MEMORY);
1369			if (pass == disabled)
1370				alloc_resource(dev, idx);
1371		}
1372		if (pass)
1373			continue;
1374		r = &dev->resource[PCI_ROM_RESOURCE];
1375		if (r->flags) {
1376			/* Turn the ROM off, leave the resource region,
1377			 * but keep it unregistered.
1378			 */
1379			u32 reg;
1380			pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1381			if (reg & PCI_ROM_ADDRESS_ENABLE) {
1382				pr_debug("PCI: Switching off ROM of %s\n",
1383					 pci_name(dev));
1384				r->flags &= ~IORESOURCE_ROM_ENABLE;
1385				pci_write_config_dword(dev, dev->rom_base_reg,
1386						       reg & ~PCI_ROM_ADDRESS_ENABLE);
1387			}
1388		}
1389	}
1390}
1391
1392static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1393{
1394	struct pci_controller *hose = pci_bus_to_host(bus);
1395	resource_size_t	offset;
1396	struct resource *res, *pres;
1397	int i;
1398
1399	pr_debug("Reserving legacy ranges for domain %04x\n", pci_domain_nr(bus));
1400
1401	/* Check for IO */
1402	if (!(hose->io_resource.flags & IORESOURCE_IO))
1403		goto no_io;
1404	offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1405	res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1406	BUG_ON(res == NULL);
1407	res->name = "Legacy IO";
1408	res->flags = IORESOURCE_IO;
1409	res->start = offset;
1410	res->end = (offset + 0xfff) & 0xfffffffful;
1411	pr_debug("Candidate legacy IO: %pR\n", res);
1412	if (request_resource(&hose->io_resource, res)) {
1413		printk(KERN_DEBUG
1414		       "PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
1415		       pci_domain_nr(bus), bus->number, res);
1416		kfree(res);
1417	}
1418
1419 no_io:
1420	/* Check for memory */
1421	offset = hose->pci_mem_offset;
1422	pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
1423	for (i = 0; i < 3; i++) {
1424		pres = &hose->mem_resources[i];
 
1425		if (!(pres->flags & IORESOURCE_MEM))
1426			continue;
1427		pr_debug("hose mem res: %pR\n", pres);
1428		if ((pres->start - offset) <= 0xa0000 &&
1429		    (pres->end - offset) >= 0xbffff)
1430			break;
1431	}
1432	if (i >= 3)
1433		return;
1434	res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1435	BUG_ON(res == NULL);
1436	res->name = "Legacy VGA memory";
1437	res->flags = IORESOURCE_MEM;
1438	res->start = 0xa0000 + offset;
1439	res->end = 0xbffff + offset;
1440	pr_debug("Candidate VGA memory: %pR\n", res);
1441	if (request_resource(pres, res)) {
1442		printk(KERN_DEBUG
1443		       "PCI %04x:%02x Cannot reserve VGA memory %pR\n",
1444		       pci_domain_nr(bus), bus->number, res);
1445		kfree(res);
1446	}
1447}
1448
1449void __init pcibios_resource_survey(void)
1450{
1451	struct pci_bus *b;
1452
1453	/* Allocate and assign resources. If we re-assign everything, then
1454	 * we skip the allocate phase
1455	 */
1456	list_for_each_entry(b, &pci_root_buses, node)
1457		pcibios_allocate_bus_resources(b);
1458
1459	if (!pci_has_flag(PCI_REASSIGN_ALL_RSRC)) {
1460		pcibios_allocate_resources(0);
1461		pcibios_allocate_resources(1);
1462	}
1463
1464	/* Before we start assigning unassigned resource, we try to reserve
1465	 * the low IO area and the VGA memory area if they intersect the
1466	 * bus available resources to avoid allocating things on top of them
1467	 */
1468	if (!pci_has_flag(PCI_PROBE_ONLY)) {
1469		list_for_each_entry(b, &pci_root_buses, node)
1470			pcibios_reserve_legacy_regions(b);
1471	}
1472
1473	/* Now, if the platform didn't decide to blindly trust the firmware,
1474	 * we proceed to assigning things that were left unassigned
1475	 */
1476	if (!pci_has_flag(PCI_PROBE_ONLY)) {
1477		pr_debug("PCI: Assigning unassigned resources...\n");
1478		pci_assign_unassigned_resources();
1479	}
1480
1481	/* Call machine dependent fixup */
1482	if (ppc_md.pcibios_fixup)
1483		ppc_md.pcibios_fixup();
1484}
1485
1486#ifdef CONFIG_HOTPLUG
1487
1488/* This is used by the PCI hotplug driver to allocate resource
1489 * of newly plugged busses. We can try to consolidate with the
1490 * rest of the code later, for now, keep it as-is as our main
1491 * resource allocation function doesn't deal with sub-trees yet.
1492 */
1493void pcibios_claim_one_bus(struct pci_bus *bus)
1494{
1495	struct pci_dev *dev;
1496	struct pci_bus *child_bus;
1497
1498	list_for_each_entry(dev, &bus->devices, bus_list) {
1499		int i;
1500
1501		for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1502			struct resource *r = &dev->resource[i];
1503
1504			if (r->parent || !r->start || !r->flags)
1505				continue;
1506
1507			pr_debug("PCI: Claiming %s: "
1508				 "Resource %d: %016llx..%016llx [%x]\n",
1509				 pci_name(dev), i,
1510				 (unsigned long long)r->start,
1511				 (unsigned long long)r->end,
1512				 (unsigned int)r->flags);
1513
1514			pci_claim_resource(dev, i);
 
 
 
1515		}
1516	}
1517
1518	list_for_each_entry(child_bus, &bus->children, node)
1519		pcibios_claim_one_bus(child_bus);
1520}
 
1521
1522
1523/* pcibios_finish_adding_to_bus
1524 *
1525 * This is to be called by the hotplug code after devices have been
1526 * added to a bus, this include calling it for a PHB that is just
1527 * being added
1528 */
1529void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1530{
1531	pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1532		 pci_domain_nr(bus), bus->number);
1533
1534	/* Allocate bus and devices resources */
1535	pcibios_allocate_bus_resources(bus);
1536	pcibios_claim_one_bus(bus);
 
 
 
 
 
 
 
 
 
1537
1538	/* Add new devices to global lists.  Register in proc, sysfs. */
1539	pci_bus_add_devices(bus);
1540
1541	/* Fixup EEH */
1542	eeh_add_device_tree_late(bus);
1543}
1544EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1545
1546#endif /* CONFIG_HOTPLUG */
1547
1548int pcibios_enable_device(struct pci_dev *dev, int mask)
1549{
1550	if (ppc_md.pcibios_enable_device_hook)
1551		if (ppc_md.pcibios_enable_device_hook(dev))
 
 
1552			return -EINVAL;
1553
1554	return pci_enable_resources(dev, mask);
1555}
1556
1557void __devinit pcibios_setup_phb_resources(struct pci_controller *hose)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1558{
1559	struct pci_bus *bus = hose->bus;
1560	struct resource *res;
 
1561	int i;
1562
1563	/* Hookup PHB IO resource */
1564	bus->resource[0] = res = &hose->io_resource;
1565
1566	if (!res->flags) {
1567		printk(KERN_WARNING "PCI: I/O resource not set for host"
1568		       " bridge %s (domain %d)\n",
1569		       hose->dn->full_name, hose->global_number);
1570#ifdef CONFIG_PPC32
1571		/* Workaround for lack of IO resource only on 32-bit */
1572		res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1573		res->end = res->start + IO_SPACE_LIMIT;
1574		res->flags = IORESOURCE_IO;
1575#endif /* CONFIG_PPC32 */
1576	}
1577
1578	pr_debug("PCI: PHB IO resource    = %016llx-%016llx [%lx]\n",
1579		 (unsigned long long)res->start,
1580		 (unsigned long long)res->end,
1581		 (unsigned long)res->flags);
1582
1583	/* Hookup PHB Memory resources */
1584	for (i = 0; i < 3; ++i) {
1585		res = &hose->mem_resources[i];
1586		if (!res->flags) {
1587			if (i > 0)
1588				continue;
1589			printk(KERN_ERR "PCI: Memory resource 0 not set for "
1590			       "host bridge %s (domain %d)\n",
1591			       hose->dn->full_name, hose->global_number);
1592#ifdef CONFIG_PPC32
1593			/* Workaround for lack of MEM resource only on 32-bit */
1594			res->start = hose->pci_mem_offset;
1595			res->end = (resource_size_t)-1LL;
1596			res->flags = IORESOURCE_MEM;
1597#endif /* CONFIG_PPC32 */
1598		}
1599		bus->resource[i+1] = res;
1600
1601		pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n", i,
1602			 (unsigned long long)res->start,
1603			 (unsigned long long)res->end,
1604			 (unsigned long)res->flags);
1605	}
1606
1607	pr_debug("PCI: PHB MEM offset     = %016llx\n",
1608		 (unsigned long long)hose->pci_mem_offset);
1609	pr_debug("PCI: PHB IO  offset     = %08lx\n",
1610		 (unsigned long)hose->io_base_virt - _IO_BASE);
1611
1612}
1613
1614/*
1615 * Null PCI config access functions, for the case when we can't
1616 * find a hose.
1617 */
1618#define NULL_PCI_OP(rw, size, type)					\
1619static int								\
1620null_##rw##_config_##size(struct pci_dev *dev, int offset, type val)	\
1621{									\
1622	return PCIBIOS_DEVICE_NOT_FOUND;    				\
1623}
1624
1625static int
1626null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1627		 int len, u32 *val)
1628{
1629	return PCIBIOS_DEVICE_NOT_FOUND;
1630}
1631
1632static int
1633null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1634		  int len, u32 val)
1635{
1636	return PCIBIOS_DEVICE_NOT_FOUND;
1637}
1638
1639static struct pci_ops null_pci_ops =
1640{
1641	.read = null_read_config,
1642	.write = null_write_config,
1643};
1644
1645/*
1646 * These functions are used early on before PCI scanning is done
1647 * and all of the pci_dev and pci_bus structures have been created.
1648 */
1649static struct pci_bus *
1650fake_pci_bus(struct pci_controller *hose, int busnr)
1651{
1652	static struct pci_bus bus;
1653
1654	if (hose == 0) {
1655		printk(KERN_ERR "Can't find hose for PCI bus %d!\n", busnr);
1656	}
1657	bus.number = busnr;
1658	bus.sysdata = hose;
1659	bus.ops = hose? hose->ops: &null_pci_ops;
1660	return &bus;
1661}
1662
1663#define EARLY_PCI_OP(rw, size, type)					\
1664int early_##rw##_config_##size(struct pci_controller *hose, int bus,	\
1665			       int devfn, int offset, type value)	\
1666{									\
1667	return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus),	\
1668					    devfn, offset, value);	\
1669}
1670
1671EARLY_PCI_OP(read, byte, u8 *)
1672EARLY_PCI_OP(read, word, u16 *)
1673EARLY_PCI_OP(read, dword, u32 *)
1674EARLY_PCI_OP(write, byte, u8)
1675EARLY_PCI_OP(write, word, u16)
1676EARLY_PCI_OP(write, dword, u32)
1677
1678extern int pci_bus_find_capability (struct pci_bus *bus, unsigned int devfn, int cap);
1679int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1680			  int cap)
1681{
1682	return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1683}
1684
1685struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
1686{
1687	struct pci_controller *hose = bus->sysdata;
1688
1689	return of_node_get(hose->dn);
1690}
1691
1692/**
1693 * pci_scan_phb - Given a pci_controller, setup and scan the PCI bus
1694 * @hose: Pointer to the PCI host controller instance structure
1695 */
1696void __devinit pcibios_scan_phb(struct pci_controller *hose)
1697{
 
1698	struct pci_bus *bus;
1699	struct device_node *node = hose->dn;
1700	int mode;
1701
1702	pr_debug("PCI: Scanning PHB %s\n",
1703		 node ? node->full_name : "<NO NAME>");
 
 
 
 
 
 
 
 
 
 
1704
1705	/* Create an empty bus for the toplevel */
1706	bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, hose);
 
1707	if (bus == NULL) {
1708		pr_err("Failed to create bus for PCI domain %04x\n",
1709			hose->global_number);
 
1710		return;
1711	}
1712	bus->secondary = hose->first_busno;
1713	hose->bus = bus;
1714
1715	/* Get some IO space for the new PHB */
1716	pcibios_setup_phb_io_space(hose);
1717
1718	/* Wire up PHB bus resources */
1719	pcibios_setup_phb_resources(hose);
1720
1721	/* Get probe mode and perform scan */
1722	mode = PCI_PROBE_NORMAL;
1723	if (node && ppc_md.pci_probe_mode)
1724		mode = ppc_md.pci_probe_mode(bus);
1725	pr_debug("    probe mode: %d\n", mode);
1726	if (mode == PCI_PROBE_DEVTREE) {
1727		bus->subordinate = hose->last_busno;
1728		of_scan_bus(node, bus);
 
 
 
 
 
1729	}
1730
1731	if (mode == PCI_PROBE_NORMAL)
1732		hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
 
 
 
 
 
 
 
 
 
 
1733}
 
1734
1735static void fixup_hide_host_resource_fsl(struct pci_dev *dev)
1736{
1737	int i, class = dev->class >> 8;
 
 
1738
1739	if ((class == PCI_CLASS_PROCESSOR_POWERPC ||
1740	     class == PCI_CLASS_BRIDGE_OTHER) &&
1741		(dev->hdr_type == PCI_HEADER_TYPE_NORMAL) &&
 
1742		(dev->bus->parent == NULL)) {
1743		for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1744			dev->resource[i].start = 0;
1745			dev->resource[i].end = 0;
1746			dev->resource[i].flags = 0;
1747		}
1748	}
1749}
1750DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MOTOROLA, PCI_ANY_ID, fixup_hide_host_resource_fsl);
1751DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_FREESCALE, PCI_ANY_ID, fixup_hide_host_resource_fsl);