diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/drivers/pci/pci.c | 4 | ||||
-rw-r--r-- | arch/sh/include/asm/io.h | 10 | ||||
-rw-r--r-- | arch/sh/kernel/io.c | 4 |
3 files changed, 18 insertions, 0 deletions
diff --git a/arch/sh/drivers/pci/pci.c b/arch/sh/drivers/pci/pci.c index 9a1c423ad167..c481df639022 100644 --- a/arch/sh/drivers/pci/pci.c +++ b/arch/sh/drivers/pci/pci.c | |||
@@ -295,6 +295,8 @@ int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma, | |||
295 | vma->vm_page_prot); | 295 | vma->vm_page_prot); |
296 | } | 296 | } |
297 | 297 | ||
298 | #ifndef CONFIG_GENERIC_IOMAP | ||
299 | |||
298 | static void __iomem *ioport_map_pci(struct pci_dev *dev, | 300 | static void __iomem *ioport_map_pci(struct pci_dev *dev, |
299 | unsigned long port, unsigned int nr) | 301 | unsigned long port, unsigned int nr) |
300 | { | 302 | { |
@@ -346,6 +348,8 @@ void pci_iounmap(struct pci_dev *dev, void __iomem *addr) | |||
346 | } | 348 | } |
347 | EXPORT_SYMBOL(pci_iounmap); | 349 | EXPORT_SYMBOL(pci_iounmap); |
348 | 350 | ||
351 | #endif /* CONFIG_GENERIC_IOMAP */ | ||
352 | |||
349 | #ifdef CONFIG_HOTPLUG | 353 | #ifdef CONFIG_HOTPLUG |
350 | EXPORT_SYMBOL(pcibios_resource_to_bus); | 354 | EXPORT_SYMBOL(pcibios_resource_to_bus); |
351 | EXPORT_SYMBOL(pcibios_bus_to_resource); | 355 | EXPORT_SYMBOL(pcibios_bus_to_resource); |
diff --git a/arch/sh/include/asm/io.h b/arch/sh/include/asm/io.h index 25348141674b..aeecf432d48c 100644 --- a/arch/sh/include/asm/io.h +++ b/arch/sh/include/asm/io.h | |||
@@ -146,6 +146,7 @@ __BUILD_MEMORY_STRING(q, u64) | |||
146 | #define readl_relaxed(a) readl(a) | 146 | #define readl_relaxed(a) readl(a) |
147 | #define readq_relaxed(a) readq(a) | 147 | #define readq_relaxed(a) readq(a) |
148 | 148 | ||
149 | #ifndef CONFIG_GENERIC_IOMAP | ||
149 | /* Simple MMIO */ | 150 | /* Simple MMIO */ |
150 | #define ioread8(a) __raw_readb(a) | 151 | #define ioread8(a) __raw_readb(a) |
151 | #define ioread16(a) __raw_readw(a) | 152 | #define ioread16(a) __raw_readw(a) |
@@ -166,6 +167,15 @@ __BUILD_MEMORY_STRING(q, u64) | |||
166 | #define iowrite8_rep(a, s, c) __raw_writesb((a), (s), (c)) | 167 | #define iowrite8_rep(a, s, c) __raw_writesb((a), (s), (c)) |
167 | #define iowrite16_rep(a, s, c) __raw_writesw((a), (s), (c)) | 168 | #define iowrite16_rep(a, s, c) __raw_writesw((a), (s), (c)) |
168 | #define iowrite32_rep(a, s, c) __raw_writesl((a), (s), (c)) | 169 | #define iowrite32_rep(a, s, c) __raw_writesl((a), (s), (c)) |
170 | #endif | ||
171 | |||
172 | #define mmio_insb(p,d,c) __raw_readsb(p,d,c) | ||
173 | #define mmio_insw(p,d,c) __raw_readsw(p,d,c) | ||
174 | #define mmio_insl(p,d,c) __raw_readsl(p,d,c) | ||
175 | |||
176 | #define mmio_outsb(p,s,c) __raw_writesb(p,s,c) | ||
177 | #define mmio_outsw(p,s,c) __raw_writesw(p,s,c) | ||
178 | #define mmio_outsl(p,s,c) __raw_writesl(p,s,c) | ||
169 | 179 | ||
170 | /* synco on SH-4A, otherwise a nop */ | 180 | /* synco on SH-4A, otherwise a nop */ |
171 | #define mmiowb() wmb() | 181 | #define mmiowb() wmb() |
diff --git a/arch/sh/kernel/io.c b/arch/sh/kernel/io.c index 4f85fffaa557..d0ca9684b781 100644 --- a/arch/sh/kernel/io.c +++ b/arch/sh/kernel/io.c | |||
@@ -62,6 +62,8 @@ void memset_io(volatile void __iomem *dst, int c, unsigned long count) | |||
62 | } | 62 | } |
63 | EXPORT_SYMBOL(memset_io); | 63 | EXPORT_SYMBOL(memset_io); |
64 | 64 | ||
65 | #ifndef CONFIG_GENERIC_IOMAP | ||
66 | |||
65 | void __iomem *ioport_map(unsigned long port, unsigned int nr) | 67 | void __iomem *ioport_map(unsigned long port, unsigned int nr) |
66 | { | 68 | { |
67 | void __iomem *ret; | 69 | void __iomem *ret; |
@@ -79,3 +81,5 @@ void ioport_unmap(void __iomem *addr) | |||
79 | sh_mv.mv_ioport_unmap(addr); | 81 | sh_mv.mv_ioport_unmap(addr); |
80 | } | 82 | } |
81 | EXPORT_SYMBOL(ioport_unmap); | 83 | EXPORT_SYMBOL(ioport_unmap); |
84 | |||
85 | #endif /* CONFIG_GENERIC_IOMAP */ | ||