GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / sparc / lib / iomap.c
blob9ef37e13a920e28ba99e197dc50dff7b812c5972
1 /*
2 * Implement the sparc iomap interfaces
3 */
4 #include <linux/pci.h>
5 #include <linux/module.h>
6 #include <asm/io.h>
8 /* Create a virtual mapping cookie for an IO port range */
9 void __iomem *ioport_map(unsigned long port, unsigned int nr)
11 return (void __iomem *) (unsigned long) port;
14 void ioport_unmap(void __iomem *addr)
16 /* Nothing to do */
18 EXPORT_SYMBOL(ioport_map);
19 EXPORT_SYMBOL(ioport_unmap);
21 /* Create a virtual mapping cookie for a PCI BAR (memory or IO) */
22 void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
24 resource_size_t start = pci_resource_start(dev, bar);
25 resource_size_t len = pci_resource_len(dev, bar);
26 unsigned long flags = pci_resource_flags(dev, bar);
28 if (!len || !start)
29 return NULL;
30 if (maxlen && len > maxlen)
31 len = maxlen;
32 if (flags & IORESOURCE_IO)
33 return ioport_map(start, len);
34 if (flags & IORESOURCE_MEM) {
35 if (flags & IORESOURCE_CACHEABLE)
36 return ioremap(start, len);
37 return ioremap_nocache(start, len);
39 /* What? */
40 return NULL;
43 void pci_iounmap(struct pci_dev *dev, void __iomem * addr)
45 /* nothing to do */
47 EXPORT_SYMBOL(pci_iomap);
48 EXPORT_SYMBOL(pci_iounmap);