Path: blob/master/arch/microblaze/pci/pci-common.c
10817 views
/*1* Contains common pci routines for ALL ppc platform2* (based on pci_32.c and pci_64.c)3*4* Port for PPC64 David Engebretsen, IBM Corp.5* Contains common pci routines for ppc64 platform, pSeries and iSeries brands.6*7* Copyright (C) 2003 Anton Blanchard <[email protected]>, IBM8* Rework, based on alpha PCI code.9*10* Common pmac/prep/chrp pci routines. -- Cort11*12* This program is free software; you can redistribute it and/or13* modify it under the terms of the GNU General Public License14* as published by the Free Software Foundation; either version15* 2 of the License, or (at your option) any later version.16*/1718#include <linux/kernel.h>19#include <linux/pci.h>20#include <linux/string.h>21#include <linux/init.h>22#include <linux/bootmem.h>23#include <linux/mm.h>24#include <linux/list.h>25#include <linux/syscalls.h>26#include <linux/irq.h>27#include <linux/vmalloc.h>28#include <linux/slab.h>29#include <linux/of.h>30#include <linux/of_address.h>31#include <linux/of_pci.h>3233#include <asm/processor.h>34#include <asm/io.h>35#include <asm/pci-bridge.h>36#include <asm/byteorder.h>3738static DEFINE_SPINLOCK(hose_spinlock);39LIST_HEAD(hose_list);4041/* XXX kill that some day ... */42static int global_phb_number; /* Global phb counter */4344/* ISA Memory physical address */45resource_size_t isa_mem_base;4647/* Default PCI flags is 0 on ppc32, modified at boot on ppc64 */48unsigned int pci_flags;4950static struct dma_map_ops *pci_dma_ops = &dma_direct_ops;5152void set_pci_dma_ops(struct dma_map_ops *dma_ops)53{54pci_dma_ops = dma_ops;55}5657struct dma_map_ops *get_pci_dma_ops(void)58{59return pci_dma_ops;60}61EXPORT_SYMBOL(get_pci_dma_ops);6263struct pci_controller *pcibios_alloc_controller(struct device_node *dev)64{65struct pci_controller *phb;6667phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);68if (!phb)69return NULL;70spin_lock(&hose_spinlock);71phb->global_number = global_phb_number++;72list_add_tail(&phb->list_node, &hose_list);73spin_unlock(&hose_spinlock);74phb->dn = dev;75phb->is_dynamic = mem_init_done;76return phb;77}7879void pcibios_free_controller(struct pci_controller *phb)80{81spin_lock(&hose_spinlock);82list_del(&phb->list_node);83spin_unlock(&hose_spinlock);8485if (phb->is_dynamic)86kfree(phb);87}8889static resource_size_t pcibios_io_size(const struct pci_controller *hose)90{91return hose->io_resource.end - hose->io_resource.start + 1;92}9394int pcibios_vaddr_is_ioport(void __iomem *address)95{96int ret = 0;97struct pci_controller *hose;98resource_size_t size;99100spin_lock(&hose_spinlock);101list_for_each_entry(hose, &hose_list, list_node) {102size = pcibios_io_size(hose);103if (address >= hose->io_base_virt &&104address < (hose->io_base_virt + size)) {105ret = 1;106break;107}108}109spin_unlock(&hose_spinlock);110return ret;111}112113unsigned long pci_address_to_pio(phys_addr_t address)114{115struct pci_controller *hose;116resource_size_t size;117unsigned long ret = ~0;118119spin_lock(&hose_spinlock);120list_for_each_entry(hose, &hose_list, list_node) {121size = pcibios_io_size(hose);122if (address >= hose->io_base_phys &&123address < (hose->io_base_phys + size)) {124unsigned long base =125(unsigned long)hose->io_base_virt - _IO_BASE;126ret = base + (address - hose->io_base_phys);127break;128}129}130spin_unlock(&hose_spinlock);131132return ret;133}134EXPORT_SYMBOL_GPL(pci_address_to_pio);135136/*137* Return the domain number for this bus.138*/139int pci_domain_nr(struct pci_bus *bus)140{141struct pci_controller *hose = pci_bus_to_host(bus);142143return hose->global_number;144}145EXPORT_SYMBOL(pci_domain_nr);146147/* This routine is meant to be used early during boot, when the148* PCI bus numbers have not yet been assigned, and you need to149* issue PCI config cycles to an OF device.150* It could also be used to "fix" RTAS config cycles if you want151* to set pci_assign_all_buses to 1 and still use RTAS for PCI152* config cycles.153*/154struct pci_controller *pci_find_hose_for_OF_device(struct device_node *node)155{156while (node) {157struct pci_controller *hose, *tmp;158list_for_each_entry_safe(hose, tmp, &hose_list, list_node)159if (hose->dn == node)160return hose;161node = node->parent;162}163return NULL;164}165166static ssize_t pci_show_devspec(struct device *dev,167struct device_attribute *attr, char *buf)168{169struct pci_dev *pdev;170struct device_node *np;171172pdev = to_pci_dev(dev);173np = pci_device_to_OF_node(pdev);174if (np == NULL || np->full_name == NULL)175return 0;176return sprintf(buf, "%s", np->full_name);177}178static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);179180/* Add sysfs properties */181int pcibios_add_platform_entries(struct pci_dev *pdev)182{183return device_create_file(&pdev->dev, &dev_attr_devspec);184}185186char __devinit *pcibios_setup(char *str)187{188return str;189}190191/*192* Reads the interrupt pin to determine if interrupt is use by card.193* If the interrupt is used, then gets the interrupt line from the194* openfirmware and sets it in the pci_dev and pci_config line.195*/196int pci_read_irq_line(struct pci_dev *pci_dev)197{198struct of_irq oirq;199unsigned int virq;200201/* The current device-tree that iSeries generates from the HV202* PCI informations doesn't contain proper interrupt routing,203* and all the fallback would do is print out crap, so we204* don't attempt to resolve the interrupts here at all, some205* iSeries specific fixup does it.206*207* In the long run, we will hopefully fix the generated device-tree208* instead.209*/210pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));211212#ifdef DEBUG213memset(&oirq, 0xff, sizeof(oirq));214#endif215/* Try to get a mapping from the device-tree */216if (of_irq_map_pci(pci_dev, &oirq)) {217u8 line, pin;218219/* If that fails, lets fallback to what is in the config220* space and map that through the default controller. We221* also set the type to level low since that's what PCI222* interrupts are. If your platform does differently, then223* either provide a proper interrupt tree or don't use this224* function.225*/226if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))227return -1;228if (pin == 0)229return -1;230if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||231line == 0xff || line == 0) {232return -1;233}234pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",235line, pin);236237virq = irq_create_mapping(NULL, line);238if (virq != NO_IRQ)239irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);240} else {241pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",242oirq.size, oirq.specifier[0], oirq.specifier[1],243oirq.controller ? oirq.controller->full_name :244"<default>");245246virq = irq_create_of_mapping(oirq.controller, oirq.specifier,247oirq.size);248}249if (virq == NO_IRQ) {250pr_debug(" Failed to map !\n");251return -1;252}253254pr_debug(" Mapped to linux irq %d\n", virq);255256pci_dev->irq = virq;257258return 0;259}260EXPORT_SYMBOL(pci_read_irq_line);261262/*263* Platform support for /proc/bus/pci/X/Y mmap()s,264* modelled on the sparc64 implementation by Dave Miller.265* -- paulus.266*/267268/*269* Adjust vm_pgoff of VMA such that it is the physical page offset270* corresponding to the 32-bit pci bus offset for DEV requested by the user.271*272* Basically, the user finds the base address for his device which he wishes273* to mmap. They read the 32-bit value from the config space base register,274* add whatever PAGE_SIZE multiple offset they wish, and feed this into the275* offset parameter of mmap on /proc/bus/pci/XXX for that device.276*277* Returns negative error code on failure, zero on success.278*/279static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,280resource_size_t *offset,281enum pci_mmap_state mmap_state)282{283struct pci_controller *hose = pci_bus_to_host(dev->bus);284unsigned long io_offset = 0;285int i, res_bit;286287if (hose == 0)288return NULL; /* should never happen */289290/* If memory, add on the PCI bridge address offset */291if (mmap_state == pci_mmap_mem) {292#if 0 /* See comment in pci_resource_to_user() for why this is disabled */293*offset += hose->pci_mem_offset;294#endif295res_bit = IORESOURCE_MEM;296} else {297io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;298*offset += io_offset;299res_bit = IORESOURCE_IO;300}301302/*303* Check that the offset requested corresponds to one of the304* resources of the device.305*/306for (i = 0; i <= PCI_ROM_RESOURCE; i++) {307struct resource *rp = &dev->resource[i];308int flags = rp->flags;309310/* treat ROM as memory (should be already) */311if (i == PCI_ROM_RESOURCE)312flags |= IORESOURCE_MEM;313314/* Active and same type? */315if ((flags & res_bit) == 0)316continue;317318/* In the range of this resource? */319if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)320continue;321322/* found it! construct the final physical address */323if (mmap_state == pci_mmap_io)324*offset += hose->io_base_phys - io_offset;325return rp;326}327328return NULL;329}330331/*332* Set vm_page_prot of VMA, as appropriate for this architecture, for a pci333* device mapping.334*/335static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,336pgprot_t protection,337enum pci_mmap_state mmap_state,338int write_combine)339{340pgprot_t prot = protection;341342/* Write combine is always 0 on non-memory space mappings. On343* memory space, if the user didn't pass 1, we check for a344* "prefetchable" resource. This is a bit hackish, but we use345* this to workaround the inability of /sysfs to provide a write346* combine bit347*/348if (mmap_state != pci_mmap_mem)349write_combine = 0;350else if (write_combine == 0) {351if (rp->flags & IORESOURCE_PREFETCH)352write_combine = 1;353}354355return pgprot_noncached(prot);356}357358/*359* This one is used by /dev/mem and fbdev who have no clue about the360* PCI device, it tries to find the PCI device first and calls the361* above routine362*/363pgprot_t pci_phys_mem_access_prot(struct file *file,364unsigned long pfn,365unsigned long size,366pgprot_t prot)367{368struct pci_dev *pdev = NULL;369struct resource *found = NULL;370resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;371int i;372373if (page_is_ram(pfn))374return prot;375376prot = pgprot_noncached(prot);377for_each_pci_dev(pdev) {378for (i = 0; i <= PCI_ROM_RESOURCE; i++) {379struct resource *rp = &pdev->resource[i];380int flags = rp->flags;381382/* Active and same type? */383if ((flags & IORESOURCE_MEM) == 0)384continue;385/* In the range of this resource? */386if (offset < (rp->start & PAGE_MASK) ||387offset > rp->end)388continue;389found = rp;390break;391}392if (found)393break;394}395if (found) {396if (found->flags & IORESOURCE_PREFETCH)397prot = pgprot_noncached_wc(prot);398pci_dev_put(pdev);399}400401pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",402(unsigned long long)offset, pgprot_val(prot));403404return prot;405}406407/*408* Perform the actual remap of the pages for a PCI device mapping, as409* appropriate for this architecture. The region in the process to map410* is described by vm_start and vm_end members of VMA, the base physical411* address is found in vm_pgoff.412* The pci device structure is provided so that architectures may make mapping413* decisions on a per-device or per-bus basis.414*415* Returns a negative error code on failure, zero on success.416*/417int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,418enum pci_mmap_state mmap_state, int write_combine)419{420resource_size_t offset =421((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;422struct resource *rp;423int ret;424425rp = __pci_mmap_make_offset(dev, &offset, mmap_state);426if (rp == NULL)427return -EINVAL;428429vma->vm_pgoff = offset >> PAGE_SHIFT;430vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,431vma->vm_page_prot,432mmap_state, write_combine);433434ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,435vma->vm_end - vma->vm_start, vma->vm_page_prot);436437return ret;438}439440/* This provides legacy IO read access on a bus */441int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)442{443unsigned long offset;444struct pci_controller *hose = pci_bus_to_host(bus);445struct resource *rp = &hose->io_resource;446void __iomem *addr;447448/* Check if port can be supported by that bus. We only check449* the ranges of the PHB though, not the bus itself as the rules450* for forwarding legacy cycles down bridges are not our problem451* here. So if the host bridge supports it, we do it.452*/453offset = (unsigned long)hose->io_base_virt - _IO_BASE;454offset += port;455456if (!(rp->flags & IORESOURCE_IO))457return -ENXIO;458if (offset < rp->start || (offset + size) > rp->end)459return -ENXIO;460addr = hose->io_base_virt + port;461462switch (size) {463case 1:464*((u8 *)val) = in_8(addr);465return 1;466case 2:467if (port & 1)468return -EINVAL;469*((u16 *)val) = in_le16(addr);470return 2;471case 4:472if (port & 3)473return -EINVAL;474*((u32 *)val) = in_le32(addr);475return 4;476}477return -EINVAL;478}479480/* This provides legacy IO write access on a bus */481int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)482{483unsigned long offset;484struct pci_controller *hose = pci_bus_to_host(bus);485struct resource *rp = &hose->io_resource;486void __iomem *addr;487488/* Check if port can be supported by that bus. We only check489* the ranges of the PHB though, not the bus itself as the rules490* for forwarding legacy cycles down bridges are not our problem491* here. So if the host bridge supports it, we do it.492*/493offset = (unsigned long)hose->io_base_virt - _IO_BASE;494offset += port;495496if (!(rp->flags & IORESOURCE_IO))497return -ENXIO;498if (offset < rp->start || (offset + size) > rp->end)499return -ENXIO;500addr = hose->io_base_virt + port;501502/* WARNING: The generic code is idiotic. It gets passed a pointer503* to what can be a 1, 2 or 4 byte quantity and always reads that504* as a u32, which means that we have to correct the location of505* the data read within those 32 bits for size 1 and 2506*/507switch (size) {508case 1:509out_8(addr, val >> 24);510return 1;511case 2:512if (port & 1)513return -EINVAL;514out_le16(addr, val >> 16);515return 2;516case 4:517if (port & 3)518return -EINVAL;519out_le32(addr, val);520return 4;521}522return -EINVAL;523}524525/* This provides legacy IO or memory mmap access on a bus */526int pci_mmap_legacy_page_range(struct pci_bus *bus,527struct vm_area_struct *vma,528enum pci_mmap_state mmap_state)529{530struct pci_controller *hose = pci_bus_to_host(bus);531resource_size_t offset =532((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;533resource_size_t size = vma->vm_end - vma->vm_start;534struct resource *rp;535536pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",537pci_domain_nr(bus), bus->number,538mmap_state == pci_mmap_mem ? "MEM" : "IO",539(unsigned long long)offset,540(unsigned long long)(offset + size - 1));541542if (mmap_state == pci_mmap_mem) {543/* Hack alert !544*545* Because X is lame and can fail starting if it gets an error546* trying to mmap legacy_mem (instead of just moving on without547* legacy memory access) we fake it here by giving it anonymous548* memory, effectively behaving just like /dev/zero549*/550if ((offset + size) > hose->isa_mem_size) {551#ifdef CONFIG_MMU552printk(KERN_DEBUG553"Process %s (pid:%d) mapped non-existing PCI"554"legacy memory for 0%04x:%02x\n",555current->comm, current->pid, pci_domain_nr(bus),556bus->number);557#endif558if (vma->vm_flags & VM_SHARED)559return shmem_zero_setup(vma);560return 0;561}562offset += hose->isa_mem_phys;563} else {564unsigned long io_offset = (unsigned long)hose->io_base_virt - \565_IO_BASE;566unsigned long roffset = offset + io_offset;567rp = &hose->io_resource;568if (!(rp->flags & IORESOURCE_IO))569return -ENXIO;570if (roffset < rp->start || (roffset + size) > rp->end)571return -ENXIO;572offset += hose->io_base_phys;573}574pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);575576vma->vm_pgoff = offset >> PAGE_SHIFT;577vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);578return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,579vma->vm_end - vma->vm_start,580vma->vm_page_prot);581}582583void pci_resource_to_user(const struct pci_dev *dev, int bar,584const struct resource *rsrc,585resource_size_t *start, resource_size_t *end)586{587struct pci_controller *hose = pci_bus_to_host(dev->bus);588resource_size_t offset = 0;589590if (hose == NULL)591return;592593if (rsrc->flags & IORESOURCE_IO)594offset = (unsigned long)hose->io_base_virt - _IO_BASE;595596/* We pass a fully fixed up address to userland for MMIO instead of597* a BAR value because X is lame and expects to be able to use that598* to pass to /dev/mem !599*600* That means that we'll have potentially 64 bits values where some601* userland apps only expect 32 (like X itself since it thinks only602* Sparc has 64 bits MMIO) but if we don't do that, we break it on603* 32 bits CHRPs :-(604*605* Hopefully, the sysfs insterface is immune to that gunk. Once X606* has been fixed (and the fix spread enough), we can re-enable the607* 2 lines below and pass down a BAR value to userland. In that case608* we'll also have to re-enable the matching code in609* __pci_mmap_make_offset().610*611* BenH.612*/613#if 0614else if (rsrc->flags & IORESOURCE_MEM)615offset = hose->pci_mem_offset;616#endif617618*start = rsrc->start - offset;619*end = rsrc->end - offset;620}621622/**623* pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree624* @hose: newly allocated pci_controller to be setup625* @dev: device node of the host bridge626* @primary: set if primary bus (32 bits only, soon to be deprecated)627*628* This function will parse the "ranges" property of a PCI host bridge device629* node and setup the resource mapping of a pci controller based on its630* content.631*632* Life would be boring if it wasn't for a few issues that we have to deal633* with here:634*635* - We can only cope with one IO space range and up to 3 Memory space636* ranges. However, some machines (thanks Apple !) tend to split their637* space into lots of small contiguous ranges. So we have to coalesce.638*639* - We can only cope with all memory ranges having the same offset640* between CPU addresses and PCI addresses. Unfortunately, some bridges641* are setup for a large 1:1 mapping along with a small "window" which642* maps PCI address 0 to some arbitrary high address of the CPU space in643* order to give access to the ISA memory hole.644* The way out of here that I've chosen for now is to always set the645* offset based on the first resource found, then override it if we646* have a different offset and the previous was set by an ISA hole.647*648* - Some busses have IO space not starting at 0, which causes trouble with649* the way we do our IO resource renumbering. The code somewhat deals with650* it for 64 bits but I would expect problems on 32 bits.651*652* - Some 32 bits platforms such as 4xx can have physical space larger than653* 32 bits so we need to use 64 bits values for the parsing654*/655void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,656struct device_node *dev,657int primary)658{659const u32 *ranges;660int rlen;661int pna = of_n_addr_cells(dev);662int np = pna + 5;663int memno = 0, isa_hole = -1;664u32 pci_space;665unsigned long long pci_addr, cpu_addr, pci_next, cpu_next, size;666unsigned long long isa_mb = 0;667struct resource *res;668669printk(KERN_INFO "PCI host bridge %s %s ranges:\n",670dev->full_name, primary ? "(primary)" : "");671672/* Get ranges property */673ranges = of_get_property(dev, "ranges", &rlen);674if (ranges == NULL)675return;676677/* Parse it */678pr_debug("Parsing ranges property...\n");679while ((rlen -= np * 4) >= 0) {680/* Read next ranges element */681pci_space = ranges[0];682pci_addr = of_read_number(ranges + 1, 2);683cpu_addr = of_translate_address(dev, ranges + 3);684size = of_read_number(ranges + pna + 3, 2);685686pr_debug("pci_space: 0x%08x pci_addr:0x%016llx "687"cpu_addr:0x%016llx size:0x%016llx\n",688pci_space, pci_addr, cpu_addr, size);689690ranges += np;691692/* If we failed translation or got a zero-sized region693* (some FW try to feed us with non sensical zero sized regions694* such as power3 which look like some kind of attempt695* at exposing the VGA memory hole)696*/697if (cpu_addr == OF_BAD_ADDR || size == 0)698continue;699700/* Now consume following elements while they are contiguous */701for (; rlen >= np * sizeof(u32);702ranges += np, rlen -= np * 4) {703if (ranges[0] != pci_space)704break;705pci_next = of_read_number(ranges + 1, 2);706cpu_next = of_translate_address(dev, ranges + 3);707if (pci_next != pci_addr + size ||708cpu_next != cpu_addr + size)709break;710size += of_read_number(ranges + pna + 3, 2);711}712713/* Act based on address space type */714res = NULL;715switch ((pci_space >> 24) & 0x3) {716case 1: /* PCI IO space */717printk(KERN_INFO718" IO 0x%016llx..0x%016llx -> 0x%016llx\n",719cpu_addr, cpu_addr + size - 1, pci_addr);720721/* We support only one IO range */722if (hose->pci_io_size) {723printk(KERN_INFO724" \\--> Skipped (too many) !\n");725continue;726}727/* On 32 bits, limit I/O space to 16MB */728if (size > 0x01000000)729size = 0x01000000;730731/* 32 bits needs to map IOs here */732hose->io_base_virt = ioremap(cpu_addr, size);733734/* Expect trouble if pci_addr is not 0 */735if (primary)736isa_io_base =737(unsigned long)hose->io_base_virt;738/* pci_io_size and io_base_phys always represent IO739* space starting at 0 so we factor in pci_addr740*/741hose->pci_io_size = pci_addr + size;742hose->io_base_phys = cpu_addr - pci_addr;743744/* Build resource */745res = &hose->io_resource;746res->flags = IORESOURCE_IO;747res->start = pci_addr;748break;749case 2: /* PCI Memory space */750case 3: /* PCI 64 bits Memory space */751printk(KERN_INFO752" MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",753cpu_addr, cpu_addr + size - 1, pci_addr,754(pci_space & 0x40000000) ? "Prefetch" : "");755756/* We support only 3 memory ranges */757if (memno >= 3) {758printk(KERN_INFO759" \\--> Skipped (too many) !\n");760continue;761}762/* Handles ISA memory hole space here */763if (pci_addr == 0) {764isa_mb = cpu_addr;765isa_hole = memno;766if (primary || isa_mem_base == 0)767isa_mem_base = cpu_addr;768hose->isa_mem_phys = cpu_addr;769hose->isa_mem_size = size;770}771772/* We get the PCI/Mem offset from the first range or773* the, current one if the offset came from an ISA774* hole. If they don't match, bugger.775*/776if (memno == 0 ||777(isa_hole >= 0 && pci_addr != 0 &&778hose->pci_mem_offset == isa_mb))779hose->pci_mem_offset = cpu_addr - pci_addr;780else if (pci_addr != 0 &&781hose->pci_mem_offset != cpu_addr - pci_addr) {782printk(KERN_INFO783" \\--> Skipped (offset mismatch) !\n");784continue;785}786787/* Build resource */788res = &hose->mem_resources[memno++];789res->flags = IORESOURCE_MEM;790if (pci_space & 0x40000000)791res->flags |= IORESOURCE_PREFETCH;792res->start = cpu_addr;793break;794}795if (res != NULL) {796res->name = dev->full_name;797res->end = res->start + size - 1;798res->parent = NULL;799res->sibling = NULL;800res->child = NULL;801}802}803804/* If there's an ISA hole and the pci_mem_offset is -not- matching805* the ISA hole offset, then we need to remove the ISA hole from806* the resource list for that brige807*/808if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {809unsigned int next = isa_hole + 1;810printk(KERN_INFO " Removing ISA hole at 0x%016llx\n", isa_mb);811if (next < memno)812memmove(&hose->mem_resources[isa_hole],813&hose->mem_resources[next],814sizeof(struct resource) * (memno - next));815hose->mem_resources[--memno].flags = 0;816}817}818819/* Decide whether to display the domain number in /proc */820int pci_proc_domain(struct pci_bus *bus)821{822struct pci_controller *hose = pci_bus_to_host(bus);823824if (!(pci_flags & PCI_ENABLE_PROC_DOMAINS))825return 0;826if (pci_flags & PCI_COMPAT_DOMAIN_0)827return hose->global_number != 0;828return 1;829}830831void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,832struct resource *res)833{834resource_size_t offset = 0, mask = (resource_size_t)-1;835struct pci_controller *hose = pci_bus_to_host(dev->bus);836837if (!hose)838return;839if (res->flags & IORESOURCE_IO) {840offset = (unsigned long)hose->io_base_virt - _IO_BASE;841mask = 0xffffffffu;842} else if (res->flags & IORESOURCE_MEM)843offset = hose->pci_mem_offset;844845region->start = (res->start - offset) & mask;846region->end = (res->end - offset) & mask;847}848EXPORT_SYMBOL(pcibios_resource_to_bus);849850void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,851struct pci_bus_region *region)852{853resource_size_t offset = 0, mask = (resource_size_t)-1;854struct pci_controller *hose = pci_bus_to_host(dev->bus);855856if (!hose)857return;858if (res->flags & IORESOURCE_IO) {859offset = (unsigned long)hose->io_base_virt - _IO_BASE;860mask = 0xffffffffu;861} else if (res->flags & IORESOURCE_MEM)862offset = hose->pci_mem_offset;863res->start = (region->start + offset) & mask;864res->end = (region->end + offset) & mask;865}866EXPORT_SYMBOL(pcibios_bus_to_resource);867868/* Fixup a bus resource into a linux resource */869static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)870{871struct pci_controller *hose = pci_bus_to_host(dev->bus);872resource_size_t offset = 0, mask = (resource_size_t)-1;873874if (res->flags & IORESOURCE_IO) {875offset = (unsigned long)hose->io_base_virt - _IO_BASE;876mask = 0xffffffffu;877} else if (res->flags & IORESOURCE_MEM)878offset = hose->pci_mem_offset;879880res->start = (res->start + offset) & mask;881res->end = (res->end + offset) & mask;882}883884/* This header fixup will do the resource fixup for all devices as they are885* probed, but not for bridge ranges886*/887static void __devinit pcibios_fixup_resources(struct pci_dev *dev)888{889struct pci_controller *hose = pci_bus_to_host(dev->bus);890int i;891892if (!hose) {893printk(KERN_ERR "No host bridge for PCI dev %s !\n",894pci_name(dev));895return;896}897for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {898struct resource *res = dev->resource + i;899if (!res->flags)900continue;901/* On platforms that have PCI_PROBE_ONLY set, we don't902* consider 0 as an unassigned BAR value. It's technically903* a valid value, but linux doesn't like it... so when we can904* re-assign things, we do so, but if we can't, we keep it905* around and hope for the best...906*/907if (res->start == 0 && !(pci_flags & PCI_PROBE_ONLY)) {908pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]" \909"is unassigned\n",910pci_name(dev), i,911(unsigned long long)res->start,912(unsigned long long)res->end,913(unsigned int)res->flags);914res->end -= res->start;915res->start = 0;916res->flags |= IORESOURCE_UNSET;917continue;918}919920pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] fixup...\n",921pci_name(dev), i,922(unsigned long long)res->start,\923(unsigned long long)res->end,924(unsigned int)res->flags);925926fixup_resource(res, dev);927928pr_debug("PCI:%s %016llx-%016llx\n",929pci_name(dev),930(unsigned long long)res->start,931(unsigned long long)res->end);932}933}934DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);935936/* This function tries to figure out if a bridge resource has been initialized937* by the firmware or not. It doesn't have to be absolutely bullet proof, but938* things go more smoothly when it gets it right. It should covers cases such939* as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges940*/941static int __devinit pcibios_uninitialized_bridge_resource(struct pci_bus *bus,942struct resource *res)943{944struct pci_controller *hose = pci_bus_to_host(bus);945struct pci_dev *dev = bus->self;946resource_size_t offset;947u16 command;948int i;949950/* We don't do anything if PCI_PROBE_ONLY is set */951if (pci_flags & PCI_PROBE_ONLY)952return 0;953954/* Job is a bit different between memory and IO */955if (res->flags & IORESOURCE_MEM) {956/* If the BAR is non-0 (res != pci_mem_offset) then it's957* probably been initialized by somebody958*/959if (res->start != hose->pci_mem_offset)960return 0;961962/* The BAR is 0, let's check if memory decoding is enabled on963* the bridge. If not, we consider it unassigned964*/965pci_read_config_word(dev, PCI_COMMAND, &command);966if ((command & PCI_COMMAND_MEMORY) == 0)967return 1;968969/* Memory decoding is enabled and the BAR is 0. If any of970* the bridge resources covers that starting address (0 then971* it's good enough for us for memory972*/973for (i = 0; i < 3; i++) {974if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&975hose->mem_resources[i].start == hose->pci_mem_offset)976return 0;977}978979/* Well, it starts at 0 and we know it will collide so we may as980* well consider it as unassigned. That covers the Apple case.981*/982return 1;983} else {984/* If the BAR is non-0, then we consider it assigned */985offset = (unsigned long)hose->io_base_virt - _IO_BASE;986if (((res->start - offset) & 0xfffffffful) != 0)987return 0;988989/* Here, we are a bit different than memory as typically IO990* space starting at low addresses -is- valid. What we do991* instead if that we consider as unassigned anything that992* doesn't have IO enabled in the PCI command register,993* and that's it.994*/995pci_read_config_word(dev, PCI_COMMAND, &command);996if (command & PCI_COMMAND_IO)997return 0;998999/* It's starting at 0 and IO is disabled in the bridge, consider1000* it unassigned1001*/1002return 1;1003}1004}10051006/* Fixup resources of a PCI<->PCI bridge */1007static void __devinit pcibios_fixup_bridge(struct pci_bus *bus)1008{1009struct resource *res;1010int i;10111012struct pci_dev *dev = bus->self;10131014pci_bus_for_each_resource(bus, res, i) {1015res = bus->resource[i];1016if (!res)1017continue;1018if (!res->flags)1019continue;1020if (i >= 3 && bus->self->transparent)1021continue;10221023pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",1024pci_name(dev), i,1025(unsigned long long)res->start,\1026(unsigned long long)res->end,1027(unsigned int)res->flags);10281029/* Perform fixup */1030fixup_resource(res, dev);10311032/* Try to detect uninitialized P2P bridge resources,1033* and clear them out so they get re-assigned later1034*/1035if (pcibios_uninitialized_bridge_resource(bus, res)) {1036res->flags = 0;1037pr_debug("PCI:%s (unassigned)\n",1038pci_name(dev));1039} else {1040pr_debug("PCI:%s %016llx-%016llx\n",1041pci_name(dev),1042(unsigned long long)res->start,1043(unsigned long long)res->end);1044}1045}1046}10471048void __devinit pcibios_setup_bus_self(struct pci_bus *bus)1049{1050/* Fix up the bus resources for P2P bridges */1051if (bus->self != NULL)1052pcibios_fixup_bridge(bus);1053}10541055void __devinit pcibios_setup_bus_devices(struct pci_bus *bus)1056{1057struct pci_dev *dev;10581059pr_debug("PCI: Fixup bus devices %d (%s)\n",1060bus->number, bus->self ? pci_name(bus->self) : "PHB");10611062list_for_each_entry(dev, &bus->devices, bus_list) {1063/* Setup OF node pointer in archdata */1064dev->dev.of_node = pci_device_to_OF_node(dev);10651066/* Fixup NUMA node as it may not be setup yet by the generic1067* code and is needed by the DMA init1068*/1069set_dev_node(&dev->dev, pcibus_to_node(dev->bus));10701071/* Hook up default DMA ops */1072set_dma_ops(&dev->dev, pci_dma_ops);1073dev->dev.archdata.dma_data = (void *)PCI_DRAM_OFFSET;10741075/* Read default IRQs and fixup if necessary */1076pci_read_irq_line(dev);1077}1078}10791080void __devinit pcibios_fixup_bus(struct pci_bus *bus)1081{1082/* When called from the generic PCI probe, read PCI<->PCI bridge1083* bases. This is -not- called when generating the PCI tree from1084* the OF device-tree.1085*/1086if (bus->self != NULL)1087pci_read_bridge_bases(bus);10881089/* Now fixup the bus bus */1090pcibios_setup_bus_self(bus);10911092/* Now fixup devices on that bus */1093pcibios_setup_bus_devices(bus);1094}1095EXPORT_SYMBOL(pcibios_fixup_bus);10961097static int skip_isa_ioresource_align(struct pci_dev *dev)1098{1099if ((pci_flags & PCI_CAN_SKIP_ISA_ALIGN) &&1100!(dev->bus->bridge_ctl & PCI_BRIDGE_CTL_ISA))1101return 1;1102return 0;1103}11041105/*1106* We need to avoid collisions with `mirrored' VGA ports1107* and other strange ISA hardware, so we always want the1108* addresses to be allocated in the 0x000-0x0ff region1109* modulo 0x400.1110*1111* Why? Because some silly external IO cards only decode1112* the low 10 bits of the IO address. The 0x00-0xff region1113* is reserved for motherboard devices that decode all 161114* bits, so it's ok to allocate at, say, 0x2800-0x28ff,1115* but we want to try to avoid allocating at 0x2900-0x2bff1116* which might have be mirrored at 0x0100-0x03ff..1117*/1118resource_size_t pcibios_align_resource(void *data, const struct resource *res,1119resource_size_t size, resource_size_t align)1120{1121struct pci_dev *dev = data;1122resource_size_t start = res->start;11231124if (res->flags & IORESOURCE_IO) {1125if (skip_isa_ioresource_align(dev))1126return start;1127if (start & 0x300)1128start = (start + 0x3ff) & ~0x3ff;1129}11301131return start;1132}1133EXPORT_SYMBOL(pcibios_align_resource);11341135/*1136* Reparent resource children of pr that conflict with res1137* under res, and make res replace those children.1138*/1139static int __init reparent_resources(struct resource *parent,1140struct resource *res)1141{1142struct resource *p, **pp;1143struct resource **firstpp = NULL;11441145for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {1146if (p->end < res->start)1147continue;1148if (res->end < p->start)1149break;1150if (p->start < res->start || p->end > res->end)1151return -1; /* not completely contained */1152if (firstpp == NULL)1153firstpp = pp;1154}1155if (firstpp == NULL)1156return -1; /* didn't find any conflicting entries? */1157res->parent = parent;1158res->child = *firstpp;1159res->sibling = *pp;1160*firstpp = res;1161*pp = NULL;1162for (p = res->child; p != NULL; p = p->sibling) {1163p->parent = res;1164pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",1165p->name,1166(unsigned long long)p->start,1167(unsigned long long)p->end, res->name);1168}1169return 0;1170}11711172/*1173* Handle resources of PCI devices. If the world were perfect, we could1174* just allocate all the resource regions and do nothing more. It isn't.1175* On the other hand, we cannot just re-allocate all devices, as it would1176* require us to know lots of host bridge internals. So we attempt to1177* keep as much of the original configuration as possible, but tweak it1178* when it's found to be wrong.1179*1180* Known BIOS problems we have to work around:1181* - I/O or memory regions not configured1182* - regions configured, but not enabled in the command register1183* - bogus I/O addresses above 64K used1184* - expansion ROMs left enabled (this may sound harmless, but given1185* the fact the PCI specs explicitly allow address decoders to be1186* shared between expansion ROMs and other resource regions, it's1187* at least dangerous)1188*1189* Our solution:1190* (1) Allocate resources for all buses behind PCI-to-PCI bridges.1191* This gives us fixed barriers on where we can allocate.1192* (2) Allocate resources for all enabled devices. If there is1193* a collision, just mark the resource as unallocated. Also1194* disable expansion ROMs during this step.1195* (3) Try to allocate resources for disabled devices. If the1196* resources were assigned correctly, everything goes well,1197* if they weren't, they won't disturb allocation of other1198* resources.1199* (4) Assign new addresses to resources which were either1200* not configured at all or misconfigured. If explicitly1201* requested by the user, configure expansion ROM address1202* as well.1203*/12041205void pcibios_allocate_bus_resources(struct pci_bus *bus)1206{1207struct pci_bus *b;1208int i;1209struct resource *res, *pr;12101211pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",1212pci_domain_nr(bus), bus->number);12131214pci_bus_for_each_resource(bus, res, i) {1215res = bus->resource[i];1216if (!res || !res->flags1217|| res->start > res->end || res->parent)1218continue;1219if (bus->parent == NULL)1220pr = (res->flags & IORESOURCE_IO) ?1221&ioport_resource : &iomem_resource;1222else {1223/* Don't bother with non-root busses when1224* re-assigning all resources. We clear the1225* resource flags as if they were colliding1226* and as such ensure proper re-allocation1227* later.1228*/1229if (pci_flags & PCI_REASSIGN_ALL_RSRC)1230goto clear_resource;1231pr = pci_find_parent_resource(bus->self, res);1232if (pr == res) {1233/* this happens when the generic PCI1234* code (wrongly) decides that this1235* bridge is transparent -- paulus1236*/1237continue;1238}1239}12401241pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx "1242"[0x%x], parent %p (%s)\n",1243bus->self ? pci_name(bus->self) : "PHB",1244bus->number, i,1245(unsigned long long)res->start,1246(unsigned long long)res->end,1247(unsigned int)res->flags,1248pr, (pr && pr->name) ? pr->name : "nil");12491250if (pr && !(pr->flags & IORESOURCE_UNSET)) {1251if (request_resource(pr, res) == 0)1252continue;1253/*1254* Must be a conflict with an existing entry.1255* Move that entry (or entries) under the1256* bridge resource and try again.1257*/1258if (reparent_resources(pr, res) == 0)1259continue;1260}1261printk(KERN_WARNING "PCI: Cannot allocate resource region "1262"%d of PCI bridge %d, will remap\n", i, bus->number);1263clear_resource:1264res->start = res->end = 0;1265res->flags = 0;1266}12671268list_for_each_entry(b, &bus->children, node)1269pcibios_allocate_bus_resources(b);1270}12711272static inline void __devinit alloc_resource(struct pci_dev *dev, int idx)1273{1274struct resource *pr, *r = &dev->resource[idx];12751276pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",1277pci_name(dev), idx,1278(unsigned long long)r->start,1279(unsigned long long)r->end,1280(unsigned int)r->flags);12811282pr = pci_find_parent_resource(dev, r);1283if (!pr || (pr->flags & IORESOURCE_UNSET) ||1284request_resource(pr, r) < 0) {1285printk(KERN_WARNING "PCI: Cannot allocate resource region %d"1286" of device %s, will remap\n", idx, pci_name(dev));1287if (pr)1288pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",1289pr,1290(unsigned long long)pr->start,1291(unsigned long long)pr->end,1292(unsigned int)pr->flags);1293/* We'll assign a new address later */1294r->flags |= IORESOURCE_UNSET;1295r->end -= r->start;1296r->start = 0;1297}1298}12991300static void __init pcibios_allocate_resources(int pass)1301{1302struct pci_dev *dev = NULL;1303int idx, disabled;1304u16 command;1305struct resource *r;13061307for_each_pci_dev(dev) {1308pci_read_config_word(dev, PCI_COMMAND, &command);1309for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {1310r = &dev->resource[idx];1311if (r->parent) /* Already allocated */1312continue;1313if (!r->flags || (r->flags & IORESOURCE_UNSET))1314continue; /* Not assigned at all */1315/* We only allocate ROMs on pass 1 just in case they1316* have been screwed up by firmware1317*/1318if (idx == PCI_ROM_RESOURCE)1319disabled = 1;1320if (r->flags & IORESOURCE_IO)1321disabled = !(command & PCI_COMMAND_IO);1322else1323disabled = !(command & PCI_COMMAND_MEMORY);1324if (pass == disabled)1325alloc_resource(dev, idx);1326}1327if (pass)1328continue;1329r = &dev->resource[PCI_ROM_RESOURCE];1330if (r->flags) {1331/* Turn the ROM off, leave the resource region,1332* but keep it unregistered.1333*/1334u32 reg;1335pci_read_config_dword(dev, dev->rom_base_reg, ®);1336if (reg & PCI_ROM_ADDRESS_ENABLE) {1337pr_debug("PCI: Switching off ROM of %s\n",1338pci_name(dev));1339r->flags &= ~IORESOURCE_ROM_ENABLE;1340pci_write_config_dword(dev, dev->rom_base_reg,1341reg & ~PCI_ROM_ADDRESS_ENABLE);1342}1343}1344}1345}13461347static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)1348{1349struct pci_controller *hose = pci_bus_to_host(bus);1350resource_size_t offset;1351struct resource *res, *pres;1352int i;13531354pr_debug("Reserving legacy ranges for domain %04x\n",1355pci_domain_nr(bus));13561357/* Check for IO */1358if (!(hose->io_resource.flags & IORESOURCE_IO))1359goto no_io;1360offset = (unsigned long)hose->io_base_virt - _IO_BASE;1361res = kzalloc(sizeof(struct resource), GFP_KERNEL);1362BUG_ON(res == NULL);1363res->name = "Legacy IO";1364res->flags = IORESOURCE_IO;1365res->start = offset;1366res->end = (offset + 0xfff) & 0xfffffffful;1367pr_debug("Candidate legacy IO: %pR\n", res);1368if (request_resource(&hose->io_resource, res)) {1369printk(KERN_DEBUG1370"PCI %04x:%02x Cannot reserve Legacy IO %pR\n",1371pci_domain_nr(bus), bus->number, res);1372kfree(res);1373}13741375no_io:1376/* Check for memory */1377offset = hose->pci_mem_offset;1378pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);1379for (i = 0; i < 3; i++) {1380pres = &hose->mem_resources[i];1381if (!(pres->flags & IORESOURCE_MEM))1382continue;1383pr_debug("hose mem res: %pR\n", pres);1384if ((pres->start - offset) <= 0xa0000 &&1385(pres->end - offset) >= 0xbffff)1386break;1387}1388if (i >= 3)1389return;1390res = kzalloc(sizeof(struct resource), GFP_KERNEL);1391BUG_ON(res == NULL);1392res->name = "Legacy VGA memory";1393res->flags = IORESOURCE_MEM;1394res->start = 0xa0000 + offset;1395res->end = 0xbffff + offset;1396pr_debug("Candidate VGA memory: %pR\n", res);1397if (request_resource(pres, res)) {1398printk(KERN_DEBUG1399"PCI %04x:%02x Cannot reserve VGA memory %pR\n",1400pci_domain_nr(bus), bus->number, res);1401kfree(res);1402}1403}14041405void __init pcibios_resource_survey(void)1406{1407struct pci_bus *b;14081409/* Allocate and assign resources. If we re-assign everything, then1410* we skip the allocate phase1411*/1412list_for_each_entry(b, &pci_root_buses, node)1413pcibios_allocate_bus_resources(b);14141415if (!(pci_flags & PCI_REASSIGN_ALL_RSRC)) {1416pcibios_allocate_resources(0);1417pcibios_allocate_resources(1);1418}14191420/* Before we start assigning unassigned resource, we try to reserve1421* the low IO area and the VGA memory area if they intersect the1422* bus available resources to avoid allocating things on top of them1423*/1424if (!(pci_flags & PCI_PROBE_ONLY)) {1425list_for_each_entry(b, &pci_root_buses, node)1426pcibios_reserve_legacy_regions(b);1427}14281429/* Now, if the platform didn't decide to blindly trust the firmware,1430* we proceed to assigning things that were left unassigned1431*/1432if (!(pci_flags & PCI_PROBE_ONLY)) {1433pr_debug("PCI: Assigning unassigned resources...\n");1434pci_assign_unassigned_resources();1435}1436}14371438#ifdef CONFIG_HOTPLUG14391440/* This is used by the PCI hotplug driver to allocate resource1441* of newly plugged busses. We can try to consolidate with the1442* rest of the code later, for now, keep it as-is as our main1443* resource allocation function doesn't deal with sub-trees yet.1444*/1445void __devinit pcibios_claim_one_bus(struct pci_bus *bus)1446{1447struct pci_dev *dev;1448struct pci_bus *child_bus;14491450list_for_each_entry(dev, &bus->devices, bus_list) {1451int i;14521453for (i = 0; i < PCI_NUM_RESOURCES; i++) {1454struct resource *r = &dev->resource[i];14551456if (r->parent || !r->start || !r->flags)1457continue;14581459pr_debug("PCI: Claiming %s: "1460"Resource %d: %016llx..%016llx [%x]\n",1461pci_name(dev), i,1462(unsigned long long)r->start,1463(unsigned long long)r->end,1464(unsigned int)r->flags);14651466pci_claim_resource(dev, i);1467}1468}14691470list_for_each_entry(child_bus, &bus->children, node)1471pcibios_claim_one_bus(child_bus);1472}1473EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);147414751476/* pcibios_finish_adding_to_bus1477*1478* This is to be called by the hotplug code after devices have been1479* added to a bus, this include calling it for a PHB that is just1480* being added1481*/1482void pcibios_finish_adding_to_bus(struct pci_bus *bus)1483{1484pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",1485pci_domain_nr(bus), bus->number);14861487/* Allocate bus and devices resources */1488pcibios_allocate_bus_resources(bus);1489pcibios_claim_one_bus(bus);14901491/* Add new devices to global lists. Register in proc, sysfs. */1492pci_bus_add_devices(bus);14931494/* Fixup EEH */1495/* eeh_add_device_tree_late(bus); */1496}1497EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);14981499#endif /* CONFIG_HOTPLUG */15001501int pcibios_enable_device(struct pci_dev *dev, int mask)1502{1503return pci_enable_resources(dev, mask);1504}15051506void __devinit pcibios_setup_phb_resources(struct pci_controller *hose)1507{1508struct pci_bus *bus = hose->bus;1509struct resource *res;1510int i;15111512/* Hookup PHB IO resource */1513bus->resource[0] = res = &hose->io_resource;15141515if (!res->flags) {1516printk(KERN_WARNING "PCI: I/O resource not set for host"1517" bridge %s (domain %d)\n",1518hose->dn->full_name, hose->global_number);1519/* Workaround for lack of IO resource only on 32-bit */1520res->start = (unsigned long)hose->io_base_virt - isa_io_base;1521res->end = res->start + IO_SPACE_LIMIT;1522res->flags = IORESOURCE_IO;1523}15241525pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",1526(unsigned long long)res->start,1527(unsigned long long)res->end,1528(unsigned long)res->flags);15291530/* Hookup PHB Memory resources */1531for (i = 0; i < 3; ++i) {1532res = &hose->mem_resources[i];1533if (!res->flags) {1534if (i > 0)1535continue;1536printk(KERN_ERR "PCI: Memory resource 0 not set for "1537"host bridge %s (domain %d)\n",1538hose->dn->full_name, hose->global_number);15391540/* Workaround for lack of MEM resource only on 32-bit */1541res->start = hose->pci_mem_offset;1542res->end = (resource_size_t)-1LL;1543res->flags = IORESOURCE_MEM;15441545}1546bus->resource[i+1] = res;15471548pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n",1549i, (unsigned long long)res->start,1550(unsigned long long)res->end,1551(unsigned long)res->flags);1552}15531554pr_debug("PCI: PHB MEM offset = %016llx\n",1555(unsigned long long)hose->pci_mem_offset);1556pr_debug("PCI: PHB IO offset = %08lx\n",1557(unsigned long)hose->io_base_virt - _IO_BASE);1558}15591560/*1561* Null PCI config access functions, for the case when we can't1562* find a hose.1563*/1564#define NULL_PCI_OP(rw, size, type) \1565static int \1566null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \1567{ \1568return PCIBIOS_DEVICE_NOT_FOUND; \1569}15701571static int1572null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,1573int len, u32 *val)1574{1575return PCIBIOS_DEVICE_NOT_FOUND;1576}15771578static int1579null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,1580int len, u32 val)1581{1582return PCIBIOS_DEVICE_NOT_FOUND;1583}15841585static struct pci_ops null_pci_ops = {1586.read = null_read_config,1587.write = null_write_config,1588};15891590/*1591* These functions are used early on before PCI scanning is done1592* and all of the pci_dev and pci_bus structures have been created.1593*/1594static struct pci_bus *1595fake_pci_bus(struct pci_controller *hose, int busnr)1596{1597static struct pci_bus bus;15981599if (!hose)1600printk(KERN_ERR "Can't find hose for PCI bus %d!\n", busnr);16011602bus.number = busnr;1603bus.sysdata = hose;1604bus.ops = hose ? hose->ops : &null_pci_ops;1605return &bus;1606}16071608#define EARLY_PCI_OP(rw, size, type) \1609int early_##rw##_config_##size(struct pci_controller *hose, int bus, \1610int devfn, int offset, type value) \1611{ \1612return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \1613devfn, offset, value); \1614}16151616EARLY_PCI_OP(read, byte, u8 *)1617EARLY_PCI_OP(read, word, u16 *)1618EARLY_PCI_OP(read, dword, u32 *)1619EARLY_PCI_OP(write, byte, u8)1620EARLY_PCI_OP(write, word, u16)1621EARLY_PCI_OP(write, dword, u32)16221623int early_find_capability(struct pci_controller *hose, int bus, int devfn,1624int cap)1625{1626return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);1627}162816291630