diff options
| -rw-r--r-- | arch/sparc/lib/Makefile | 2 | ||||
| -rw-r--r-- | arch/sparc/lib/iomap.c | 48 | ||||
| -rw-r--r-- | include/asm-sparc/io.h | 16 |
3 files changed, 66 insertions, 0 deletions
diff --git a/arch/sparc/lib/Makefile b/arch/sparc/lib/Makefile index fa5006946062..5db7e1d85385 100644 --- a/arch/sparc/lib/Makefile +++ b/arch/sparc/lib/Makefile | |||
| @@ -9,3 +9,5 @@ lib-y := mul.o rem.o sdiv.o udiv.o umul.o urem.o ashrdi3.o memcpy.o memset.o \ | |||
| 9 | strncpy_from_user.o divdi3.o udivdi3.o strlen_user.o \ | 9 | strncpy_from_user.o divdi3.o udivdi3.o strlen_user.o \ |
| 10 | copy_user.o locks.o atomic.o atomic32.o bitops.o \ | 10 | copy_user.o locks.o atomic.o atomic32.o bitops.o \ |
| 11 | lshrdi3.o ashldi3.o rwsem.o muldi3.o bitext.o | 11 | lshrdi3.o ashldi3.o rwsem.o muldi3.o bitext.o |
| 12 | |||
| 13 | obj-y += iomap.o | ||
diff --git a/arch/sparc/lib/iomap.c b/arch/sparc/lib/iomap.c new file mode 100644 index 000000000000..54501c1ca785 --- /dev/null +++ b/arch/sparc/lib/iomap.c | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | /* | ||
| 2 | * Implement the sparc iomap interfaces | ||
| 3 | */ | ||
| 4 | #include <linux/pci.h> | ||
| 5 | #include <linux/module.h> | ||
| 6 | #include <asm/io.h> | ||
| 7 | |||
| 8 | /* Create a virtual mapping cookie for an IO port range */ | ||
| 9 | void __iomem *ioport_map(unsigned long port, unsigned int nr) | ||
| 10 | { | ||
| 11 | return (void __iomem *) (unsigned long) port; | ||
| 12 | } | ||
| 13 | |||
| 14 | void ioport_unmap(void __iomem *addr) | ||
| 15 | { | ||
| 16 | /* Nothing to do */ | ||
| 17 | } | ||
| 18 | EXPORT_SYMBOL(ioport_map); | ||
| 19 | EXPORT_SYMBOL(ioport_unmap); | ||
| 20 | |||
| 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) | ||
| 23 | { | ||
| 24 | unsigned long start = pci_resource_start(dev, bar); | ||
| 25 | unsigned long len = pci_resource_len(dev, bar); | ||
| 26 | unsigned long flags = pci_resource_flags(dev, bar); | ||
| 27 | |||
| 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); | ||
| 38 | } | ||
| 39 | /* What? */ | ||
| 40 | return NULL; | ||
| 41 | } | ||
| 42 | |||
| 43 | void pci_iounmap(struct pci_dev *dev, void __iomem * addr) | ||
| 44 | { | ||
| 45 | /* nothing to do */ | ||
| 46 | } | ||
| 47 | EXPORT_SYMBOL(pci_iomap); | ||
| 48 | EXPORT_SYMBOL(pci_iounmap); | ||
diff --git a/include/asm-sparc/io.h b/include/asm-sparc/io.h index a42df208d590..cab0b851b8b1 100644 --- a/include/asm-sparc/io.h +++ b/include/asm-sparc/io.h | |||
| @@ -249,6 +249,22 @@ extern void __iomem *ioremap(unsigned long offset, unsigned long size); | |||
| 249 | #define ioremap_nocache(X,Y) ioremap((X),(Y)) | 249 | #define ioremap_nocache(X,Y) ioremap((X),(Y)) |
| 250 | extern void iounmap(volatile void __iomem *addr); | 250 | extern void iounmap(volatile void __iomem *addr); |
| 251 | 251 | ||
| 252 | #define ioread8(X) readb(X) | ||
| 253 | #define ioread16(X) readw(X) | ||
| 254 | #define ioread32(X) readl(X) | ||
| 255 | #define iowrite8(val,X) writeb(val,X) | ||
| 256 | #define iowrite16(val,X) writew(val,X) | ||
| 257 | #define iowrite32(val,X) writel(val,X) | ||
| 258 | |||
| 259 | /* Create a virtual mapping cookie for an IO port range */ | ||
| 260 | extern void __iomem *ioport_map(unsigned long port, unsigned int nr); | ||
| 261 | extern void ioport_unmap(void __iomem *); | ||
| 262 | |||
| 263 | /* Create a virtual mapping cookie for a PCI BAR (memory or IO) */ | ||
| 264 | struct pci_dev; | ||
| 265 | extern void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max); | ||
| 266 | extern void pci_iounmap(struct pci_dev *dev, void __iomem *); | ||
| 267 | |||
| 252 | /* | 268 | /* |
| 253 | * Bus number may be in res->flags... somewhere. | 269 | * Bus number may be in res->flags... somewhere. |
| 254 | */ | 270 | */ |
