xref: /openbmc/linux/arch/powerpc/kernel/pci-common.c (revision 6dfbde209171cd15407e7540d363a434a489aaca)
15516b540SKumar Gala /*
25516b540SKumar Gala  * Contains common pci routines for ALL ppc platform
3cf1d8a8aSKumar Gala  * (based on pci_32.c and pci_64.c)
4cf1d8a8aSKumar Gala  *
5cf1d8a8aSKumar Gala  * Port for PPC64 David Engebretsen, IBM Corp.
6cf1d8a8aSKumar Gala  * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
7cf1d8a8aSKumar Gala  *
8cf1d8a8aSKumar Gala  * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
9cf1d8a8aSKumar Gala  *   Rework, based on alpha PCI code.
10cf1d8a8aSKumar Gala  *
11cf1d8a8aSKumar Gala  * Common pmac/prep/chrp pci routines. -- Cort
125516b540SKumar Gala  *
135516b540SKumar Gala  * This program is free software; you can redistribute it and/or
145516b540SKumar Gala  * modify it under the terms of the GNU General Public License
155516b540SKumar Gala  * as published by the Free Software Foundation; either version
165516b540SKumar Gala  * 2 of the License, or (at your option) any later version.
175516b540SKumar Gala  */
185516b540SKumar Gala 
195516b540SKumar Gala #undef DEBUG
205516b540SKumar Gala 
215516b540SKumar Gala #include <linux/kernel.h>
225516b540SKumar Gala #include <linux/pci.h>
235516b540SKumar Gala #include <linux/string.h>
245516b540SKumar Gala #include <linux/init.h>
255516b540SKumar Gala #include <linux/bootmem.h>
265516b540SKumar Gala #include <linux/mm.h>
275516b540SKumar Gala #include <linux/list.h>
285516b540SKumar Gala #include <linux/syscalls.h>
295516b540SKumar Gala #include <linux/irq.h>
305516b540SKumar Gala #include <linux/vmalloc.h>
315516b540SKumar Gala 
325516b540SKumar Gala #include <asm/processor.h>
335516b540SKumar Gala #include <asm/io.h>
345516b540SKumar Gala #include <asm/prom.h>
355516b540SKumar Gala #include <asm/pci-bridge.h>
365516b540SKumar Gala #include <asm/byteorder.h>
375516b540SKumar Gala #include <asm/machdep.h>
385516b540SKumar Gala #include <asm/ppc-pci.h>
395516b540SKumar Gala #include <asm/firmware.h>
405516b540SKumar Gala 
415516b540SKumar Gala #ifdef DEBUG
425516b540SKumar Gala #include <asm/udbg.h>
435516b540SKumar Gala #define DBG(fmt...) printk(fmt)
445516b540SKumar Gala #else
455516b540SKumar Gala #define DBG(fmt...)
465516b540SKumar Gala #endif
475516b540SKumar Gala 
48a4c9e328SKumar Gala static DEFINE_SPINLOCK(hose_spinlock);
49a4c9e328SKumar Gala 
50a4c9e328SKumar Gala /* XXX kill that some day ... */
51a4c9e328SKumar Gala int global_phb_number;		/* Global phb counter */
52a4c9e328SKumar Gala 
53a4c9e328SKumar Gala extern struct list_head hose_list;
54a4c9e328SKumar Gala 
55a4c9e328SKumar Gala /*
56a4c9e328SKumar Gala  * pci_controller(phb) initialized common variables.
57a4c9e328SKumar Gala  */
58a4c9e328SKumar Gala static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
59a4c9e328SKumar Gala {
60a4c9e328SKumar Gala 	memset(hose, 0, sizeof(struct pci_controller));
61a4c9e328SKumar Gala 
62a4c9e328SKumar Gala 	spin_lock(&hose_spinlock);
63a4c9e328SKumar Gala 	hose->global_number = global_phb_number++;
64a4c9e328SKumar Gala 	list_add_tail(&hose->list_node, &hose_list);
65a4c9e328SKumar Gala 	spin_unlock(&hose_spinlock);
66a4c9e328SKumar Gala }
67a4c9e328SKumar Gala 
68a4c9e328SKumar Gala struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
69a4c9e328SKumar Gala {
70a4c9e328SKumar Gala 	struct pci_controller *phb;
71a4c9e328SKumar Gala 
72a4c9e328SKumar Gala 	if (mem_init_done)
73a4c9e328SKumar Gala 		phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
74a4c9e328SKumar Gala 	else
75a4c9e328SKumar Gala 		phb = alloc_bootmem(sizeof (struct pci_controller));
76a4c9e328SKumar Gala 	if (phb == NULL)
77a4c9e328SKumar Gala 		return NULL;
78a4c9e328SKumar Gala 	pci_setup_pci_controller(phb);
79a4c9e328SKumar Gala 	phb->arch_data = dev;
80a4c9e328SKumar Gala 	phb->is_dynamic = mem_init_done;
81a4c9e328SKumar Gala #ifdef CONFIG_PPC64
82a4c9e328SKumar Gala 	if (dev) {
83a4c9e328SKumar Gala 		int nid = of_node_to_nid(dev);
84a4c9e328SKumar Gala 
85a4c9e328SKumar Gala 		if (nid < 0 || !node_online(nid))
86a4c9e328SKumar Gala 			nid = -1;
87a4c9e328SKumar Gala 
88a4c9e328SKumar Gala 		PHB_SET_NODE(phb, nid);
89a4c9e328SKumar Gala 	}
90a4c9e328SKumar Gala #endif
91a4c9e328SKumar Gala 	return phb;
92a4c9e328SKumar Gala }
93a4c9e328SKumar Gala 
94a4c9e328SKumar Gala void pcibios_free_controller(struct pci_controller *phb)
95a4c9e328SKumar Gala {
96a4c9e328SKumar Gala 	spin_lock(&hose_spinlock);
97a4c9e328SKumar Gala 	list_del(&phb->list_node);
98a4c9e328SKumar Gala 	spin_unlock(&hose_spinlock);
99a4c9e328SKumar Gala 
100a4c9e328SKumar Gala 	if (phb->is_dynamic)
101a4c9e328SKumar Gala 		kfree(phb);
102a4c9e328SKumar Gala }
103a4c9e328SKumar Gala 
104*6dfbde20SBenjamin Herrenschmidt int pcibios_vaddr_is_ioport(void __iomem *address)
105*6dfbde20SBenjamin Herrenschmidt {
106*6dfbde20SBenjamin Herrenschmidt 	int ret = 0;
107*6dfbde20SBenjamin Herrenschmidt 	struct pci_controller *hose;
108*6dfbde20SBenjamin Herrenschmidt 	unsigned long size;
109*6dfbde20SBenjamin Herrenschmidt 
110*6dfbde20SBenjamin Herrenschmidt 	spin_lock(&hose_spinlock);
111*6dfbde20SBenjamin Herrenschmidt 	list_for_each_entry(hose, &hose_list, list_node) {
112*6dfbde20SBenjamin Herrenschmidt #ifdef CONFIG_PPC64
113*6dfbde20SBenjamin Herrenschmidt 		size = hose->pci_io_size;
114*6dfbde20SBenjamin Herrenschmidt #else
115*6dfbde20SBenjamin Herrenschmidt 		size = hose->io_resource.end - hose->io_resource.start + 1;
116*6dfbde20SBenjamin Herrenschmidt #endif
117*6dfbde20SBenjamin Herrenschmidt 		if (address >= hose->io_base_virt &&
118*6dfbde20SBenjamin Herrenschmidt 		    address < (hose->io_base_virt + size)) {
119*6dfbde20SBenjamin Herrenschmidt 			ret = 1;
120*6dfbde20SBenjamin Herrenschmidt 			break;
121*6dfbde20SBenjamin Herrenschmidt 		}
122*6dfbde20SBenjamin Herrenschmidt 	}
123*6dfbde20SBenjamin Herrenschmidt 	spin_unlock(&hose_spinlock);
124*6dfbde20SBenjamin Herrenschmidt 	return ret;
125*6dfbde20SBenjamin Herrenschmidt }
126*6dfbde20SBenjamin Herrenschmidt 
1275516b540SKumar Gala /*
1285516b540SKumar Gala  * Return the domain number for this bus.
1295516b540SKumar Gala  */
1305516b540SKumar Gala int pci_domain_nr(struct pci_bus *bus)
1315516b540SKumar Gala {
1325516b540SKumar Gala 	if (firmware_has_feature(FW_FEATURE_ISERIES))
1335516b540SKumar Gala 		return 0;
1345516b540SKumar Gala 	else {
1355516b540SKumar Gala 		struct pci_controller *hose = pci_bus_to_host(bus);
1365516b540SKumar Gala 
1375516b540SKumar Gala 		return hose->global_number;
1385516b540SKumar Gala 	}
1395516b540SKumar Gala }
1405516b540SKumar Gala 
1415516b540SKumar Gala EXPORT_SYMBOL(pci_domain_nr);
14258083dadSKumar Gala 
14358083dadSKumar Gala #ifdef CONFIG_PPC_OF
144a4c9e328SKumar Gala 
145a4c9e328SKumar Gala /* This routine is meant to be used early during boot, when the
146a4c9e328SKumar Gala  * PCI bus numbers have not yet been assigned, and you need to
147a4c9e328SKumar Gala  * issue PCI config cycles to an OF device.
148a4c9e328SKumar Gala  * It could also be used to "fix" RTAS config cycles if you want
149a4c9e328SKumar Gala  * to set pci_assign_all_buses to 1 and still use RTAS for PCI
150a4c9e328SKumar Gala  * config cycles.
151a4c9e328SKumar Gala  */
152a4c9e328SKumar Gala struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
153a4c9e328SKumar Gala {
154a4c9e328SKumar Gala 	if (!have_of)
155a4c9e328SKumar Gala 		return NULL;
156a4c9e328SKumar Gala 	while(node) {
157a4c9e328SKumar Gala 		struct pci_controller *hose, *tmp;
158a4c9e328SKumar Gala 		list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
159a4c9e328SKumar Gala 			if (hose->arch_data == node)
160a4c9e328SKumar Gala 				return hose;
161a4c9e328SKumar Gala 		node = node->parent;
162a4c9e328SKumar Gala 	}
163a4c9e328SKumar Gala 	return NULL;
164a4c9e328SKumar Gala }
165a4c9e328SKumar Gala 
16658083dadSKumar Gala static ssize_t pci_show_devspec(struct device *dev,
16758083dadSKumar Gala 		struct device_attribute *attr, char *buf)
16858083dadSKumar Gala {
16958083dadSKumar Gala 	struct pci_dev *pdev;
17058083dadSKumar Gala 	struct device_node *np;
17158083dadSKumar Gala 
17258083dadSKumar Gala 	pdev = to_pci_dev (dev);
17358083dadSKumar Gala 	np = pci_device_to_OF_node(pdev);
17458083dadSKumar Gala 	if (np == NULL || np->full_name == NULL)
17558083dadSKumar Gala 		return 0;
17658083dadSKumar Gala 	return sprintf(buf, "%s", np->full_name);
17758083dadSKumar Gala }
17858083dadSKumar Gala static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
17958083dadSKumar Gala #endif /* CONFIG_PPC_OF */
18058083dadSKumar Gala 
18158083dadSKumar Gala /* Add sysfs properties */
1824f3731daSTony Breeds int pcibios_add_platform_entries(struct pci_dev *pdev)
18358083dadSKumar Gala {
18458083dadSKumar Gala #ifdef CONFIG_PPC_OF
1854f3731daSTony Breeds 	return device_create_file(&pdev->dev, &dev_attr_devspec);
1864f3731daSTony Breeds #else
1874f3731daSTony Breeds 	return 0;
18858083dadSKumar Gala #endif /* CONFIG_PPC_OF */
1894f3731daSTony Breeds 
19058083dadSKumar Gala }
19158083dadSKumar Gala 
192a2b7390aSStephen Rothwell char __devinit *pcibios_setup(char *str)
19358083dadSKumar Gala {
19458083dadSKumar Gala 	return str;
19558083dadSKumar Gala }
19658083dadSKumar Gala 
19758083dadSKumar Gala /*
19858083dadSKumar Gala  * Reads the interrupt pin to determine if interrupt is use by card.
19958083dadSKumar Gala  * If the interrupt is used, then gets the interrupt line from the
20058083dadSKumar Gala  * openfirmware and sets it in the pci_dev and pci_config line.
20158083dadSKumar Gala  */
20258083dadSKumar Gala int pci_read_irq_line(struct pci_dev *pci_dev)
20358083dadSKumar Gala {
20458083dadSKumar Gala 	struct of_irq oirq;
20558083dadSKumar Gala 	unsigned int virq;
20658083dadSKumar Gala 
20758083dadSKumar Gala 	DBG("Try to map irq for %s...\n", pci_name(pci_dev));
20858083dadSKumar Gala 
20958083dadSKumar Gala #ifdef DEBUG
21058083dadSKumar Gala 	memset(&oirq, 0xff, sizeof(oirq));
21158083dadSKumar Gala #endif
21258083dadSKumar Gala 	/* Try to get a mapping from the device-tree */
21358083dadSKumar Gala 	if (of_irq_map_pci(pci_dev, &oirq)) {
21458083dadSKumar Gala 		u8 line, pin;
21558083dadSKumar Gala 
21658083dadSKumar Gala 		/* If that fails, lets fallback to what is in the config
21758083dadSKumar Gala 		 * space and map that through the default controller. We
21858083dadSKumar Gala 		 * also set the type to level low since that's what PCI
21958083dadSKumar Gala 		 * interrupts are. If your platform does differently, then
22058083dadSKumar Gala 		 * either provide a proper interrupt tree or don't use this
22158083dadSKumar Gala 		 * function.
22258083dadSKumar Gala 		 */
22358083dadSKumar Gala 		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
22458083dadSKumar Gala 			return -1;
22558083dadSKumar Gala 		if (pin == 0)
22658083dadSKumar Gala 			return -1;
22758083dadSKumar Gala 		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
22858083dadSKumar Gala 		    line == 0xff) {
22958083dadSKumar Gala 			return -1;
23058083dadSKumar Gala 		}
23158083dadSKumar Gala 		DBG(" -> no map ! Using irq line %d from PCI config\n", line);
23258083dadSKumar Gala 
23358083dadSKumar Gala 		virq = irq_create_mapping(NULL, line);
23458083dadSKumar Gala 		if (virq != NO_IRQ)
23558083dadSKumar Gala 			set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
23658083dadSKumar Gala 	} else {
23758083dadSKumar Gala 		DBG(" -> got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
23858083dadSKumar Gala 		    oirq.size, oirq.specifier[0], oirq.specifier[1],
23958083dadSKumar Gala 		    oirq.controller->full_name);
24058083dadSKumar Gala 
24158083dadSKumar Gala 		virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
24258083dadSKumar Gala 					     oirq.size);
24358083dadSKumar Gala 	}
24458083dadSKumar Gala 	if(virq == NO_IRQ) {
24558083dadSKumar Gala 		DBG(" -> failed to map !\n");
24658083dadSKumar Gala 		return -1;
24758083dadSKumar Gala 	}
24858083dadSKumar Gala 
24958083dadSKumar Gala 	DBG(" -> mapped to linux irq %d\n", virq);
25058083dadSKumar Gala 
25158083dadSKumar Gala 	pci_dev->irq = virq;
25258083dadSKumar Gala 
25358083dadSKumar Gala 	return 0;
25458083dadSKumar Gala }
25558083dadSKumar Gala EXPORT_SYMBOL(pci_read_irq_line);
25658083dadSKumar Gala 
25758083dadSKumar Gala /*
25858083dadSKumar Gala  * Platform support for /proc/bus/pci/X/Y mmap()s,
25958083dadSKumar Gala  * modelled on the sparc64 implementation by Dave Miller.
26058083dadSKumar Gala  *  -- paulus.
26158083dadSKumar Gala  */
26258083dadSKumar Gala 
26358083dadSKumar Gala /*
26458083dadSKumar Gala  * Adjust vm_pgoff of VMA such that it is the physical page offset
26558083dadSKumar Gala  * corresponding to the 32-bit pci bus offset for DEV requested by the user.
26658083dadSKumar Gala  *
26758083dadSKumar Gala  * Basically, the user finds the base address for his device which he wishes
26858083dadSKumar Gala  * to mmap.  They read the 32-bit value from the config space base register,
26958083dadSKumar Gala  * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
27058083dadSKumar Gala  * offset parameter of mmap on /proc/bus/pci/XXX for that device.
27158083dadSKumar Gala  *
27258083dadSKumar Gala  * Returns negative error code on failure, zero on success.
27358083dadSKumar Gala  */
27458083dadSKumar Gala static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
27558083dadSKumar Gala 					       resource_size_t *offset,
27658083dadSKumar Gala 					       enum pci_mmap_state mmap_state)
27758083dadSKumar Gala {
27858083dadSKumar Gala 	struct pci_controller *hose = pci_bus_to_host(dev->bus);
27958083dadSKumar Gala 	unsigned long io_offset = 0;
28058083dadSKumar Gala 	int i, res_bit;
28158083dadSKumar Gala 
28258083dadSKumar Gala 	if (hose == 0)
28358083dadSKumar Gala 		return NULL;		/* should never happen */
28458083dadSKumar Gala 
28558083dadSKumar Gala 	/* If memory, add on the PCI bridge address offset */
28658083dadSKumar Gala 	if (mmap_state == pci_mmap_mem) {
28758083dadSKumar Gala #if 0 /* See comment in pci_resource_to_user() for why this is disabled */
28858083dadSKumar Gala 		*offset += hose->pci_mem_offset;
28958083dadSKumar Gala #endif
29058083dadSKumar Gala 		res_bit = IORESOURCE_MEM;
29158083dadSKumar Gala 	} else {
29258083dadSKumar Gala 		io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
29358083dadSKumar Gala 		*offset += io_offset;
29458083dadSKumar Gala 		res_bit = IORESOURCE_IO;
29558083dadSKumar Gala 	}
29658083dadSKumar Gala 
29758083dadSKumar Gala 	/*
29858083dadSKumar Gala 	 * Check that the offset requested corresponds to one of the
29958083dadSKumar Gala 	 * resources of the device.
30058083dadSKumar Gala 	 */
30158083dadSKumar Gala 	for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
30258083dadSKumar Gala 		struct resource *rp = &dev->resource[i];
30358083dadSKumar Gala 		int flags = rp->flags;
30458083dadSKumar Gala 
30558083dadSKumar Gala 		/* treat ROM as memory (should be already) */
30658083dadSKumar Gala 		if (i == PCI_ROM_RESOURCE)
30758083dadSKumar Gala 			flags |= IORESOURCE_MEM;
30858083dadSKumar Gala 
30958083dadSKumar Gala 		/* Active and same type? */
31058083dadSKumar Gala 		if ((flags & res_bit) == 0)
31158083dadSKumar Gala 			continue;
31258083dadSKumar Gala 
31358083dadSKumar Gala 		/* In the range of this resource? */
31458083dadSKumar Gala 		if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
31558083dadSKumar Gala 			continue;
31658083dadSKumar Gala 
31758083dadSKumar Gala 		/* found it! construct the final physical address */
31858083dadSKumar Gala 		if (mmap_state == pci_mmap_io)
31958083dadSKumar Gala 			*offset += hose->io_base_phys - io_offset;
32058083dadSKumar Gala 		return rp;
32158083dadSKumar Gala 	}
32258083dadSKumar Gala 
32358083dadSKumar Gala 	return NULL;
32458083dadSKumar Gala }
32558083dadSKumar Gala 
32658083dadSKumar Gala /*
32758083dadSKumar Gala  * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
32858083dadSKumar Gala  * device mapping.
32958083dadSKumar Gala  */
33058083dadSKumar Gala static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
33158083dadSKumar Gala 				      pgprot_t protection,
33258083dadSKumar Gala 				      enum pci_mmap_state mmap_state,
33358083dadSKumar Gala 				      int write_combine)
33458083dadSKumar Gala {
33558083dadSKumar Gala 	unsigned long prot = pgprot_val(protection);
33658083dadSKumar Gala 
33758083dadSKumar Gala 	/* Write combine is always 0 on non-memory space mappings. On
33858083dadSKumar Gala 	 * memory space, if the user didn't pass 1, we check for a
33958083dadSKumar Gala 	 * "prefetchable" resource. This is a bit hackish, but we use
34058083dadSKumar Gala 	 * this to workaround the inability of /sysfs to provide a write
34158083dadSKumar Gala 	 * combine bit
34258083dadSKumar Gala 	 */
34358083dadSKumar Gala 	if (mmap_state != pci_mmap_mem)
34458083dadSKumar Gala 		write_combine = 0;
34558083dadSKumar Gala 	else if (write_combine == 0) {
34658083dadSKumar Gala 		if (rp->flags & IORESOURCE_PREFETCH)
34758083dadSKumar Gala 			write_combine = 1;
34858083dadSKumar Gala 	}
34958083dadSKumar Gala 
35058083dadSKumar Gala 	/* XXX would be nice to have a way to ask for write-through */
35158083dadSKumar Gala 	prot |= _PAGE_NO_CACHE;
35258083dadSKumar Gala 	if (write_combine)
35358083dadSKumar Gala 		prot &= ~_PAGE_GUARDED;
35458083dadSKumar Gala 	else
35558083dadSKumar Gala 		prot |= _PAGE_GUARDED;
35658083dadSKumar Gala 
35758083dadSKumar Gala 	return __pgprot(prot);
35858083dadSKumar Gala }
35958083dadSKumar Gala 
36058083dadSKumar Gala /*
36158083dadSKumar Gala  * This one is used by /dev/mem and fbdev who have no clue about the
36258083dadSKumar Gala  * PCI device, it tries to find the PCI device first and calls the
36358083dadSKumar Gala  * above routine
36458083dadSKumar Gala  */
36558083dadSKumar Gala pgprot_t pci_phys_mem_access_prot(struct file *file,
36658083dadSKumar Gala 				  unsigned long pfn,
36758083dadSKumar Gala 				  unsigned long size,
36858083dadSKumar Gala 				  pgprot_t protection)
36958083dadSKumar Gala {
37058083dadSKumar Gala 	struct pci_dev *pdev = NULL;
37158083dadSKumar Gala 	struct resource *found = NULL;
37258083dadSKumar Gala 	unsigned long prot = pgprot_val(protection);
37358083dadSKumar Gala 	unsigned long offset = pfn << PAGE_SHIFT;
37458083dadSKumar Gala 	int i;
37558083dadSKumar Gala 
37658083dadSKumar Gala 	if (page_is_ram(pfn))
37758083dadSKumar Gala 		return __pgprot(prot);
37858083dadSKumar Gala 
37958083dadSKumar Gala 	prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
38058083dadSKumar Gala 
38158083dadSKumar Gala 	for_each_pci_dev(pdev) {
38258083dadSKumar Gala 		for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
38358083dadSKumar Gala 			struct resource *rp = &pdev->resource[i];
38458083dadSKumar Gala 			int flags = rp->flags;
38558083dadSKumar Gala 
38658083dadSKumar Gala 			/* Active and same type? */
38758083dadSKumar Gala 			if ((flags & IORESOURCE_MEM) == 0)
38858083dadSKumar Gala 				continue;
38958083dadSKumar Gala 			/* In the range of this resource? */
39058083dadSKumar Gala 			if (offset < (rp->start & PAGE_MASK) ||
39158083dadSKumar Gala 			    offset > rp->end)
39258083dadSKumar Gala 				continue;
39358083dadSKumar Gala 			found = rp;
39458083dadSKumar Gala 			break;
39558083dadSKumar Gala 		}
39658083dadSKumar Gala 		if (found)
39758083dadSKumar Gala 			break;
39858083dadSKumar Gala 	}
39958083dadSKumar Gala 	if (found) {
40058083dadSKumar Gala 		if (found->flags & IORESOURCE_PREFETCH)
40158083dadSKumar Gala 			prot &= ~_PAGE_GUARDED;
40258083dadSKumar Gala 		pci_dev_put(pdev);
40358083dadSKumar Gala 	}
40458083dadSKumar Gala 
40558083dadSKumar Gala 	DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
40658083dadSKumar Gala 
40758083dadSKumar Gala 	return __pgprot(prot);
40858083dadSKumar Gala }
40958083dadSKumar Gala 
41058083dadSKumar Gala 
41158083dadSKumar Gala /*
41258083dadSKumar Gala  * Perform the actual remap of the pages for a PCI device mapping, as
41358083dadSKumar Gala  * appropriate for this architecture.  The region in the process to map
41458083dadSKumar Gala  * is described by vm_start and vm_end members of VMA, the base physical
41558083dadSKumar Gala  * address is found in vm_pgoff.
41658083dadSKumar Gala  * The pci device structure is provided so that architectures may make mapping
41758083dadSKumar Gala  * decisions on a per-device or per-bus basis.
41858083dadSKumar Gala  *
41958083dadSKumar Gala  * Returns a negative error code on failure, zero on success.
42058083dadSKumar Gala  */
42158083dadSKumar Gala int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
42258083dadSKumar Gala 			enum pci_mmap_state mmap_state, int write_combine)
42358083dadSKumar Gala {
42458083dadSKumar Gala 	resource_size_t offset = vma->vm_pgoff << PAGE_SHIFT;
42558083dadSKumar Gala 	struct resource *rp;
42658083dadSKumar Gala 	int ret;
42758083dadSKumar Gala 
42858083dadSKumar Gala 	rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
42958083dadSKumar Gala 	if (rp == NULL)
43058083dadSKumar Gala 		return -EINVAL;
43158083dadSKumar Gala 
43258083dadSKumar Gala 	vma->vm_pgoff = offset >> PAGE_SHIFT;
43358083dadSKumar Gala 	vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
43458083dadSKumar Gala 						  vma->vm_page_prot,
43558083dadSKumar Gala 						  mmap_state, write_combine);
43658083dadSKumar Gala 
43758083dadSKumar Gala 	ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
43858083dadSKumar Gala 			       vma->vm_end - vma->vm_start, vma->vm_page_prot);
43958083dadSKumar Gala 
44058083dadSKumar Gala 	return ret;
44158083dadSKumar Gala }
44258083dadSKumar Gala 
44358083dadSKumar Gala void pci_resource_to_user(const struct pci_dev *dev, int bar,
44458083dadSKumar Gala 			  const struct resource *rsrc,
44558083dadSKumar Gala 			  resource_size_t *start, resource_size_t *end)
44658083dadSKumar Gala {
44758083dadSKumar Gala 	struct pci_controller *hose = pci_bus_to_host(dev->bus);
44858083dadSKumar Gala 	resource_size_t offset = 0;
44958083dadSKumar Gala 
45058083dadSKumar Gala 	if (hose == NULL)
45158083dadSKumar Gala 		return;
45258083dadSKumar Gala 
45358083dadSKumar Gala 	if (rsrc->flags & IORESOURCE_IO)
45458083dadSKumar Gala 		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
45558083dadSKumar Gala 
45658083dadSKumar Gala 	/* We pass a fully fixed up address to userland for MMIO instead of
45758083dadSKumar Gala 	 * a BAR value because X is lame and expects to be able to use that
45858083dadSKumar Gala 	 * to pass to /dev/mem !
45958083dadSKumar Gala 	 *
46058083dadSKumar Gala 	 * That means that we'll have potentially 64 bits values where some
46158083dadSKumar Gala 	 * userland apps only expect 32 (like X itself since it thinks only
46258083dadSKumar Gala 	 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
46358083dadSKumar Gala 	 * 32 bits CHRPs :-(
46458083dadSKumar Gala 	 *
46558083dadSKumar Gala 	 * Hopefully, the sysfs insterface is immune to that gunk. Once X
46658083dadSKumar Gala 	 * has been fixed (and the fix spread enough), we can re-enable the
46758083dadSKumar Gala 	 * 2 lines below and pass down a BAR value to userland. In that case
46858083dadSKumar Gala 	 * we'll also have to re-enable the matching code in
46958083dadSKumar Gala 	 * __pci_mmap_make_offset().
47058083dadSKumar Gala 	 *
47158083dadSKumar Gala 	 * BenH.
47258083dadSKumar Gala 	 */
47358083dadSKumar Gala #if 0
47458083dadSKumar Gala 	else if (rsrc->flags & IORESOURCE_MEM)
47558083dadSKumar Gala 		offset = hose->pci_mem_offset;
47658083dadSKumar Gala #endif
47758083dadSKumar Gala 
47858083dadSKumar Gala 	*start = rsrc->start - offset;
47958083dadSKumar Gala 	*end = rsrc->end - offset;
48058083dadSKumar Gala }
481