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