blob: 57acda852f5a4723c7a294520b8fb6d51494cb54 [file] [log] [blame]
Michal Simeka6475c12010-01-18 15:27:10 +01001/*
2 * ppc64 "iomap" interface implementation.
3 *
4 * (C) Copyright 2004 Linus Torvalds
5 */
6#include <linux/init.h>
7#include <linux/pci.h>
8#include <linux/mm.h>
Paul Gortmaker66421a62011-09-22 11:22:55 -04009#include <linux/export.h>
Michal Simeka6475c12010-01-18 15:27:10 +010010#include <asm/io.h>
11#include <asm/pci-bridge.h>
12
13void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max)
14{
15 resource_size_t start = pci_resource_start(dev, bar);
16 resource_size_t len = pci_resource_len(dev, bar);
17 unsigned long flags = pci_resource_flags(dev, bar);
18
19 if (!len)
20 return NULL;
21 if (max && len > max)
22 len = max;
23 if (flags & IORESOURCE_IO)
24 return ioport_map(start, len);
25 if (flags & IORESOURCE_MEM)
26 return ioremap(start, len);
27 /* What? */
28 return NULL;
29}
30EXPORT_SYMBOL(pci_iomap);
31
32void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
33{
34 if (isa_vaddr_is_ioport(addr))
35 return;
36 if (pcibios_vaddr_is_ioport(addr))
37 return;
38 iounmap(addr);
39}
40EXPORT_SYMBOL(pci_iounmap);