xref: /openbmc/linux/arch/powerpc/kernel/pci-common.c (revision e60516e3d0bbde450acf4397b0d01b03042a7d57)
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 ... */
51ebfc00f7SStephen Rothwell static int global_phb_number;		/* Global phb counter */
52a4c9e328SKumar Gala 
53a4c9e328SKumar Gala 
542d5f5659SLinas Vepstas struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
55a4c9e328SKumar Gala {
56a4c9e328SKumar Gala 	struct pci_controller *phb;
57a4c9e328SKumar Gala 
58*e60516e3SStephen Rothwell 	phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
59a4c9e328SKumar Gala 	if (phb == NULL)
60a4c9e328SKumar Gala 		return NULL;
61*e60516e3SStephen Rothwell 	spin_lock(&hose_spinlock);
62*e60516e3SStephen Rothwell 	phb->global_number = global_phb_number++;
63*e60516e3SStephen Rothwell 	list_add_tail(&phb->list_node, &hose_list);
64*e60516e3SStephen Rothwell 	spin_unlock(&hose_spinlock);
65a4c9e328SKumar Gala 	phb->arch_data = dev;
66a4c9e328SKumar Gala 	phb->is_dynamic = mem_init_done;
67a4c9e328SKumar Gala #ifdef CONFIG_PPC64
68a4c9e328SKumar Gala 	if (dev) {
69a4c9e328SKumar Gala 		int nid = of_node_to_nid(dev);
70a4c9e328SKumar Gala 
71a4c9e328SKumar Gala 		if (nid < 0 || !node_online(nid))
72a4c9e328SKumar Gala 			nid = -1;
73a4c9e328SKumar Gala 
74a4c9e328SKumar Gala 		PHB_SET_NODE(phb, nid);
75a4c9e328SKumar Gala 	}
76a4c9e328SKumar Gala #endif
77a4c9e328SKumar Gala 	return phb;
78a4c9e328SKumar Gala }
79a4c9e328SKumar Gala 
80a4c9e328SKumar Gala void pcibios_free_controller(struct pci_controller *phb)
81a4c9e328SKumar Gala {
82a4c9e328SKumar Gala 	spin_lock(&hose_spinlock);
83a4c9e328SKumar Gala 	list_del(&phb->list_node);
84a4c9e328SKumar Gala 	spin_unlock(&hose_spinlock);
85a4c9e328SKumar Gala 
86a4c9e328SKumar Gala 	if (phb->is_dynamic)
87a4c9e328SKumar Gala 		kfree(phb);
88a4c9e328SKumar Gala }
89a4c9e328SKumar Gala 
906dfbde20SBenjamin Herrenschmidt int pcibios_vaddr_is_ioport(void __iomem *address)
916dfbde20SBenjamin Herrenschmidt {
926dfbde20SBenjamin Herrenschmidt 	int ret = 0;
936dfbde20SBenjamin Herrenschmidt 	struct pci_controller *hose;
946dfbde20SBenjamin Herrenschmidt 	unsigned long size;
956dfbde20SBenjamin Herrenschmidt 
966dfbde20SBenjamin Herrenschmidt 	spin_lock(&hose_spinlock);
976dfbde20SBenjamin Herrenschmidt 	list_for_each_entry(hose, &hose_list, list_node) {
986dfbde20SBenjamin Herrenschmidt #ifdef CONFIG_PPC64
996dfbde20SBenjamin Herrenschmidt 		size = hose->pci_io_size;
1006dfbde20SBenjamin Herrenschmidt #else
1016dfbde20SBenjamin Herrenschmidt 		size = hose->io_resource.end - hose->io_resource.start + 1;
1026dfbde20SBenjamin Herrenschmidt #endif
1036dfbde20SBenjamin Herrenschmidt 		if (address >= hose->io_base_virt &&
1046dfbde20SBenjamin Herrenschmidt 		    address < (hose->io_base_virt + size)) {
1056dfbde20SBenjamin Herrenschmidt 			ret = 1;
1066dfbde20SBenjamin Herrenschmidt 			break;
1076dfbde20SBenjamin Herrenschmidt 		}
1086dfbde20SBenjamin Herrenschmidt 	}
1096dfbde20SBenjamin Herrenschmidt 	spin_unlock(&hose_spinlock);
1106dfbde20SBenjamin Herrenschmidt 	return ret;
1116dfbde20SBenjamin Herrenschmidt }
1126dfbde20SBenjamin Herrenschmidt 
1135516b540SKumar Gala /*
1145516b540SKumar Gala  * Return the domain number for this bus.
1155516b540SKumar Gala  */
1165516b540SKumar Gala int pci_domain_nr(struct pci_bus *bus)
1175516b540SKumar Gala {
1185516b540SKumar Gala 	if (firmware_has_feature(FW_FEATURE_ISERIES))
1195516b540SKumar Gala 		return 0;
1205516b540SKumar Gala 	else {
1215516b540SKumar Gala 		struct pci_controller *hose = pci_bus_to_host(bus);
1225516b540SKumar Gala 
1235516b540SKumar Gala 		return hose->global_number;
1245516b540SKumar Gala 	}
1255516b540SKumar Gala }
1265516b540SKumar Gala 
1275516b540SKumar Gala EXPORT_SYMBOL(pci_domain_nr);
12858083dadSKumar Gala 
12958083dadSKumar Gala #ifdef CONFIG_PPC_OF
130a4c9e328SKumar Gala 
131a4c9e328SKumar Gala /* This routine is meant to be used early during boot, when the
132a4c9e328SKumar Gala  * PCI bus numbers have not yet been assigned, and you need to
133a4c9e328SKumar Gala  * issue PCI config cycles to an OF device.
134a4c9e328SKumar Gala  * It could also be used to "fix" RTAS config cycles if you want
135a4c9e328SKumar Gala  * to set pci_assign_all_buses to 1 and still use RTAS for PCI
136a4c9e328SKumar Gala  * config cycles.
137a4c9e328SKumar Gala  */
138a4c9e328SKumar Gala struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
139a4c9e328SKumar Gala {
140a4c9e328SKumar Gala 	if (!have_of)
141a4c9e328SKumar Gala 		return NULL;
142a4c9e328SKumar Gala 	while(node) {
143a4c9e328SKumar Gala 		struct pci_controller *hose, *tmp;
144a4c9e328SKumar Gala 		list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
145a4c9e328SKumar Gala 			if (hose->arch_data == node)
146a4c9e328SKumar Gala 				return hose;
147a4c9e328SKumar Gala 		node = node->parent;
148a4c9e328SKumar Gala 	}
149a4c9e328SKumar Gala 	return NULL;
150a4c9e328SKumar Gala }
151a4c9e328SKumar Gala 
15258083dadSKumar Gala static ssize_t pci_show_devspec(struct device *dev,
15358083dadSKumar Gala 		struct device_attribute *attr, char *buf)
15458083dadSKumar Gala {
15558083dadSKumar Gala 	struct pci_dev *pdev;
15658083dadSKumar Gala 	struct device_node *np;
15758083dadSKumar Gala 
15858083dadSKumar Gala 	pdev = to_pci_dev (dev);
15958083dadSKumar Gala 	np = pci_device_to_OF_node(pdev);
16058083dadSKumar Gala 	if (np == NULL || np->full_name == NULL)
16158083dadSKumar Gala 		return 0;
16258083dadSKumar Gala 	return sprintf(buf, "%s", np->full_name);
16358083dadSKumar Gala }
16458083dadSKumar Gala static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
16558083dadSKumar Gala #endif /* CONFIG_PPC_OF */
16658083dadSKumar Gala 
16758083dadSKumar Gala /* Add sysfs properties */
1684f3731daSTony Breeds int pcibios_add_platform_entries(struct pci_dev *pdev)
16958083dadSKumar Gala {
17058083dadSKumar Gala #ifdef CONFIG_PPC_OF
1714f3731daSTony Breeds 	return device_create_file(&pdev->dev, &dev_attr_devspec);
1724f3731daSTony Breeds #else
1734f3731daSTony Breeds 	return 0;
17458083dadSKumar Gala #endif /* CONFIG_PPC_OF */
1754f3731daSTony Breeds 
17658083dadSKumar Gala }
17758083dadSKumar Gala 
178a2b7390aSStephen Rothwell char __devinit *pcibios_setup(char *str)
17958083dadSKumar Gala {
18058083dadSKumar Gala 	return str;
18158083dadSKumar Gala }
18258083dadSKumar Gala 
18358083dadSKumar Gala /*
18458083dadSKumar Gala  * Reads the interrupt pin to determine if interrupt is use by card.
18558083dadSKumar Gala  * If the interrupt is used, then gets the interrupt line from the
18658083dadSKumar Gala  * openfirmware and sets it in the pci_dev and pci_config line.
18758083dadSKumar Gala  */
18858083dadSKumar Gala int pci_read_irq_line(struct pci_dev *pci_dev)
18958083dadSKumar Gala {
19058083dadSKumar Gala 	struct of_irq oirq;
19158083dadSKumar Gala 	unsigned int virq;
19258083dadSKumar Gala 
19358083dadSKumar Gala 	DBG("Try to map irq for %s...\n", pci_name(pci_dev));
19458083dadSKumar Gala 
19558083dadSKumar Gala #ifdef DEBUG
19658083dadSKumar Gala 	memset(&oirq, 0xff, sizeof(oirq));
19758083dadSKumar Gala #endif
19858083dadSKumar Gala 	/* Try to get a mapping from the device-tree */
19958083dadSKumar Gala 	if (of_irq_map_pci(pci_dev, &oirq)) {
20058083dadSKumar Gala 		u8 line, pin;
20158083dadSKumar Gala 
20258083dadSKumar Gala 		/* If that fails, lets fallback to what is in the config
20358083dadSKumar Gala 		 * space and map that through the default controller. We
20458083dadSKumar Gala 		 * also set the type to level low since that's what PCI
20558083dadSKumar Gala 		 * interrupts are. If your platform does differently, then
20658083dadSKumar Gala 		 * either provide a proper interrupt tree or don't use this
20758083dadSKumar Gala 		 * function.
20858083dadSKumar Gala 		 */
20958083dadSKumar Gala 		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
21058083dadSKumar Gala 			return -1;
21158083dadSKumar Gala 		if (pin == 0)
21258083dadSKumar Gala 			return -1;
21358083dadSKumar Gala 		if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
21458083dadSKumar Gala 		    line == 0xff) {
21558083dadSKumar Gala 			return -1;
21658083dadSKumar Gala 		}
21758083dadSKumar Gala 		DBG(" -> no map ! Using irq line %d from PCI config\n", line);
21858083dadSKumar Gala 
21958083dadSKumar Gala 		virq = irq_create_mapping(NULL, line);
22058083dadSKumar Gala 		if (virq != NO_IRQ)
22158083dadSKumar Gala 			set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
22258083dadSKumar Gala 	} else {
22358083dadSKumar Gala 		DBG(" -> got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
22458083dadSKumar Gala 		    oirq.size, oirq.specifier[0], oirq.specifier[1],
22558083dadSKumar Gala 		    oirq.controller->full_name);
22658083dadSKumar Gala 
22758083dadSKumar Gala 		virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
22858083dadSKumar Gala 					     oirq.size);
22958083dadSKumar Gala 	}
23058083dadSKumar Gala 	if(virq == NO_IRQ) {
23158083dadSKumar Gala 		DBG(" -> failed to map !\n");
23258083dadSKumar Gala 		return -1;
23358083dadSKumar Gala 	}
23458083dadSKumar Gala 
23558083dadSKumar Gala 	DBG(" -> mapped to linux irq %d\n", virq);
23658083dadSKumar Gala 
23758083dadSKumar Gala 	pci_dev->irq = virq;
23858083dadSKumar Gala 
23958083dadSKumar Gala 	return 0;
24058083dadSKumar Gala }
24158083dadSKumar Gala EXPORT_SYMBOL(pci_read_irq_line);
24258083dadSKumar Gala 
24358083dadSKumar Gala /*
24458083dadSKumar Gala  * Platform support for /proc/bus/pci/X/Y mmap()s,
24558083dadSKumar Gala  * modelled on the sparc64 implementation by Dave Miller.
24658083dadSKumar Gala  *  -- paulus.
24758083dadSKumar Gala  */
24858083dadSKumar Gala 
24958083dadSKumar Gala /*
25058083dadSKumar Gala  * Adjust vm_pgoff of VMA such that it is the physical page offset
25158083dadSKumar Gala  * corresponding to the 32-bit pci bus offset for DEV requested by the user.
25258083dadSKumar Gala  *
25358083dadSKumar Gala  * Basically, the user finds the base address for his device which he wishes
25458083dadSKumar Gala  * to mmap.  They read the 32-bit value from the config space base register,
25558083dadSKumar Gala  * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
25658083dadSKumar Gala  * offset parameter of mmap on /proc/bus/pci/XXX for that device.
25758083dadSKumar Gala  *
25858083dadSKumar Gala  * Returns negative error code on failure, zero on success.
25958083dadSKumar Gala  */
26058083dadSKumar Gala static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
26158083dadSKumar Gala 					       resource_size_t *offset,
26258083dadSKumar Gala 					       enum pci_mmap_state mmap_state)
26358083dadSKumar Gala {
26458083dadSKumar Gala 	struct pci_controller *hose = pci_bus_to_host(dev->bus);
26558083dadSKumar Gala 	unsigned long io_offset = 0;
26658083dadSKumar Gala 	int i, res_bit;
26758083dadSKumar Gala 
26858083dadSKumar Gala 	if (hose == 0)
26958083dadSKumar Gala 		return NULL;		/* should never happen */
27058083dadSKumar Gala 
27158083dadSKumar Gala 	/* If memory, add on the PCI bridge address offset */
27258083dadSKumar Gala 	if (mmap_state == pci_mmap_mem) {
27358083dadSKumar Gala #if 0 /* See comment in pci_resource_to_user() for why this is disabled */
27458083dadSKumar Gala 		*offset += hose->pci_mem_offset;
27558083dadSKumar Gala #endif
27658083dadSKumar Gala 		res_bit = IORESOURCE_MEM;
27758083dadSKumar Gala 	} else {
27858083dadSKumar Gala 		io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
27958083dadSKumar Gala 		*offset += io_offset;
28058083dadSKumar Gala 		res_bit = IORESOURCE_IO;
28158083dadSKumar Gala 	}
28258083dadSKumar Gala 
28358083dadSKumar Gala 	/*
28458083dadSKumar Gala 	 * Check that the offset requested corresponds to one of the
28558083dadSKumar Gala 	 * resources of the device.
28658083dadSKumar Gala 	 */
28758083dadSKumar Gala 	for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
28858083dadSKumar Gala 		struct resource *rp = &dev->resource[i];
28958083dadSKumar Gala 		int flags = rp->flags;
29058083dadSKumar Gala 
29158083dadSKumar Gala 		/* treat ROM as memory (should be already) */
29258083dadSKumar Gala 		if (i == PCI_ROM_RESOURCE)
29358083dadSKumar Gala 			flags |= IORESOURCE_MEM;
29458083dadSKumar Gala 
29558083dadSKumar Gala 		/* Active and same type? */
29658083dadSKumar Gala 		if ((flags & res_bit) == 0)
29758083dadSKumar Gala 			continue;
29858083dadSKumar Gala 
29958083dadSKumar Gala 		/* In the range of this resource? */
30058083dadSKumar Gala 		if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
30158083dadSKumar Gala 			continue;
30258083dadSKumar Gala 
30358083dadSKumar Gala 		/* found it! construct the final physical address */
30458083dadSKumar Gala 		if (mmap_state == pci_mmap_io)
30558083dadSKumar Gala 			*offset += hose->io_base_phys - io_offset;
30658083dadSKumar Gala 		return rp;
30758083dadSKumar Gala 	}
30858083dadSKumar Gala 
30958083dadSKumar Gala 	return NULL;
31058083dadSKumar Gala }
31158083dadSKumar Gala 
31258083dadSKumar Gala /*
31358083dadSKumar Gala  * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
31458083dadSKumar Gala  * device mapping.
31558083dadSKumar Gala  */
31658083dadSKumar Gala static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
31758083dadSKumar Gala 				      pgprot_t protection,
31858083dadSKumar Gala 				      enum pci_mmap_state mmap_state,
31958083dadSKumar Gala 				      int write_combine)
32058083dadSKumar Gala {
32158083dadSKumar Gala 	unsigned long prot = pgprot_val(protection);
32258083dadSKumar Gala 
32358083dadSKumar Gala 	/* Write combine is always 0 on non-memory space mappings. On
32458083dadSKumar Gala 	 * memory space, if the user didn't pass 1, we check for a
32558083dadSKumar Gala 	 * "prefetchable" resource. This is a bit hackish, but we use
32658083dadSKumar Gala 	 * this to workaround the inability of /sysfs to provide a write
32758083dadSKumar Gala 	 * combine bit
32858083dadSKumar Gala 	 */
32958083dadSKumar Gala 	if (mmap_state != pci_mmap_mem)
33058083dadSKumar Gala 		write_combine = 0;
33158083dadSKumar Gala 	else if (write_combine == 0) {
33258083dadSKumar Gala 		if (rp->flags & IORESOURCE_PREFETCH)
33358083dadSKumar Gala 			write_combine = 1;
33458083dadSKumar Gala 	}
33558083dadSKumar Gala 
33658083dadSKumar Gala 	/* XXX would be nice to have a way to ask for write-through */
33758083dadSKumar Gala 	prot |= _PAGE_NO_CACHE;
33858083dadSKumar Gala 	if (write_combine)
33958083dadSKumar Gala 		prot &= ~_PAGE_GUARDED;
34058083dadSKumar Gala 	else
34158083dadSKumar Gala 		prot |= _PAGE_GUARDED;
34258083dadSKumar Gala 
34358083dadSKumar Gala 	return __pgprot(prot);
34458083dadSKumar Gala }
34558083dadSKumar Gala 
34658083dadSKumar Gala /*
34758083dadSKumar Gala  * This one is used by /dev/mem and fbdev who have no clue about the
34858083dadSKumar Gala  * PCI device, it tries to find the PCI device first and calls the
34958083dadSKumar Gala  * above routine
35058083dadSKumar Gala  */
35158083dadSKumar Gala pgprot_t pci_phys_mem_access_prot(struct file *file,
35258083dadSKumar Gala 				  unsigned long pfn,
35358083dadSKumar Gala 				  unsigned long size,
35458083dadSKumar Gala 				  pgprot_t protection)
35558083dadSKumar Gala {
35658083dadSKumar Gala 	struct pci_dev *pdev = NULL;
35758083dadSKumar Gala 	struct resource *found = NULL;
35858083dadSKumar Gala 	unsigned long prot = pgprot_val(protection);
35958083dadSKumar Gala 	unsigned long offset = pfn << PAGE_SHIFT;
36058083dadSKumar Gala 	int i;
36158083dadSKumar Gala 
36258083dadSKumar Gala 	if (page_is_ram(pfn))
36358083dadSKumar Gala 		return __pgprot(prot);
36458083dadSKumar Gala 
36558083dadSKumar Gala 	prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
36658083dadSKumar Gala 
36758083dadSKumar Gala 	for_each_pci_dev(pdev) {
36858083dadSKumar Gala 		for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
36958083dadSKumar Gala 			struct resource *rp = &pdev->resource[i];
37058083dadSKumar Gala 			int flags = rp->flags;
37158083dadSKumar Gala 
37258083dadSKumar Gala 			/* Active and same type? */
37358083dadSKumar Gala 			if ((flags & IORESOURCE_MEM) == 0)
37458083dadSKumar Gala 				continue;
37558083dadSKumar Gala 			/* In the range of this resource? */
37658083dadSKumar Gala 			if (offset < (rp->start & PAGE_MASK) ||
37758083dadSKumar Gala 			    offset > rp->end)
37858083dadSKumar Gala 				continue;
37958083dadSKumar Gala 			found = rp;
38058083dadSKumar Gala 			break;
38158083dadSKumar Gala 		}
38258083dadSKumar Gala 		if (found)
38358083dadSKumar Gala 			break;
38458083dadSKumar Gala 	}
38558083dadSKumar Gala 	if (found) {
38658083dadSKumar Gala 		if (found->flags & IORESOURCE_PREFETCH)
38758083dadSKumar Gala 			prot &= ~_PAGE_GUARDED;
38858083dadSKumar Gala 		pci_dev_put(pdev);
38958083dadSKumar Gala 	}
39058083dadSKumar Gala 
39158083dadSKumar Gala 	DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
39258083dadSKumar Gala 
39358083dadSKumar Gala 	return __pgprot(prot);
39458083dadSKumar Gala }
39558083dadSKumar Gala 
39658083dadSKumar Gala 
39758083dadSKumar Gala /*
39858083dadSKumar Gala  * Perform the actual remap of the pages for a PCI device mapping, as
39958083dadSKumar Gala  * appropriate for this architecture.  The region in the process to map
40058083dadSKumar Gala  * is described by vm_start and vm_end members of VMA, the base physical
40158083dadSKumar Gala  * address is found in vm_pgoff.
40258083dadSKumar Gala  * The pci device structure is provided so that architectures may make mapping
40358083dadSKumar Gala  * decisions on a per-device or per-bus basis.
40458083dadSKumar Gala  *
40558083dadSKumar Gala  * Returns a negative error code on failure, zero on success.
40658083dadSKumar Gala  */
40758083dadSKumar Gala int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
40858083dadSKumar Gala 			enum pci_mmap_state mmap_state, int write_combine)
40958083dadSKumar Gala {
41058083dadSKumar Gala 	resource_size_t offset = vma->vm_pgoff << PAGE_SHIFT;
41158083dadSKumar Gala 	struct resource *rp;
41258083dadSKumar Gala 	int ret;
41358083dadSKumar Gala 
41458083dadSKumar Gala 	rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
41558083dadSKumar Gala 	if (rp == NULL)
41658083dadSKumar Gala 		return -EINVAL;
41758083dadSKumar Gala 
41858083dadSKumar Gala 	vma->vm_pgoff = offset >> PAGE_SHIFT;
41958083dadSKumar Gala 	vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
42058083dadSKumar Gala 						  vma->vm_page_prot,
42158083dadSKumar Gala 						  mmap_state, write_combine);
42258083dadSKumar Gala 
42358083dadSKumar Gala 	ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
42458083dadSKumar Gala 			       vma->vm_end - vma->vm_start, vma->vm_page_prot);
42558083dadSKumar Gala 
42658083dadSKumar Gala 	return ret;
42758083dadSKumar Gala }
42858083dadSKumar Gala 
42958083dadSKumar Gala void pci_resource_to_user(const struct pci_dev *dev, int bar,
43058083dadSKumar Gala 			  const struct resource *rsrc,
43158083dadSKumar Gala 			  resource_size_t *start, resource_size_t *end)
43258083dadSKumar Gala {
43358083dadSKumar Gala 	struct pci_controller *hose = pci_bus_to_host(dev->bus);
43458083dadSKumar Gala 	resource_size_t offset = 0;
43558083dadSKumar Gala 
43658083dadSKumar Gala 	if (hose == NULL)
43758083dadSKumar Gala 		return;
43858083dadSKumar Gala 
43958083dadSKumar Gala 	if (rsrc->flags & IORESOURCE_IO)
44058083dadSKumar Gala 		offset = (unsigned long)hose->io_base_virt - _IO_BASE;
44158083dadSKumar Gala 
44258083dadSKumar Gala 	/* We pass a fully fixed up address to userland for MMIO instead of
44358083dadSKumar Gala 	 * a BAR value because X is lame and expects to be able to use that
44458083dadSKumar Gala 	 * to pass to /dev/mem !
44558083dadSKumar Gala 	 *
44658083dadSKumar Gala 	 * That means that we'll have potentially 64 bits values where some
44758083dadSKumar Gala 	 * userland apps only expect 32 (like X itself since it thinks only
44858083dadSKumar Gala 	 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
44958083dadSKumar Gala 	 * 32 bits CHRPs :-(
45058083dadSKumar Gala 	 *
45158083dadSKumar Gala 	 * Hopefully, the sysfs insterface is immune to that gunk. Once X
45258083dadSKumar Gala 	 * has been fixed (and the fix spread enough), we can re-enable the
45358083dadSKumar Gala 	 * 2 lines below and pass down a BAR value to userland. In that case
45458083dadSKumar Gala 	 * we'll also have to re-enable the matching code in
45558083dadSKumar Gala 	 * __pci_mmap_make_offset().
45658083dadSKumar Gala 	 *
45758083dadSKumar Gala 	 * BenH.
45858083dadSKumar Gala 	 */
45958083dadSKumar Gala #if 0
46058083dadSKumar Gala 	else if (rsrc->flags & IORESOURCE_MEM)
46158083dadSKumar Gala 		offset = hose->pci_mem_offset;
46258083dadSKumar Gala #endif
46358083dadSKumar Gala 
46458083dadSKumar Gala 	*start = rsrc->start - offset;
46558083dadSKumar Gala 	*end = rsrc->end - offset;
46658083dadSKumar Gala }
467