sh: machvec: Remove custom ioport_{un,}map()
authorArnd Bergmann <arnd@arndb.de>
Thu, 14 Sep 2023 15:55:23 +0000 (17:55 +0200)
committerJohn Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Wed, 25 Oct 2023 14:50:30 +0000 (16:50 +0200)
These functions were only used on the microdev board that is now gone,
so remove them to simplify the ioport handling. This could be further
simplified to use the generic I/O port accessors now.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Link: https://lore.kernel.org/r/20230914155523.3839811-4-arnd@kernel.org
Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
arch/sh/include/asm/io.h
arch/sh/include/asm/machvec.h
arch/sh/kernel/ioport.c

index f2f38e9d489ac47867833249040c9c1b92704c80..ac521f287fa5967b2463d8c4bd5c7b4d09c2b686 100644 (file)
@@ -181,7 +181,7 @@ static inline void pfx##out##bwlq##p(type val, unsigned long port)  \
 {                                                                      \
        volatile type *__addr;                                          \
                                                                        \
-       __addr = __ioport_map(port, sizeof(type));                      \
+       __addr = (void __iomem *)sh_io_port_base + port;                \
        *__addr = val;                                                  \
        slow;                                                           \
 }                                                                      \
@@ -191,7 +191,7 @@ static inline type pfx##in##bwlq##p(unsigned long port)                     \
        volatile type *__addr;                                          \
        type __val;                                                     \
                                                                        \
-       __addr = __ioport_map(port, sizeof(type));                      \
+       __addr = (void __iomem *)sh_io_port_base + port;                \
        __val = *__addr;                                                \
        slow;                                                           \
                                                                        \
index 2b4b085e8f2195e95949e07dfd4e6c51767065f1..4e5314b921f19942072805d01ab98a128481ecb2 100644 (file)
@@ -19,11 +19,6 @@ struct sh_machine_vector {
        int (*mv_irq_demux)(int irq);
        void (*mv_init_irq)(void);
 
-#ifdef CONFIG_HAS_IOPORT_MAP
-       void __iomem *(*mv_ioport_map)(unsigned long port, unsigned int size);
-       void (*mv_ioport_unmap)(void __iomem *);
-#endif
-
        int (*mv_clk_init)(void);
        int (*mv_mode_pins)(void);
 
index f39446a658bdb8773e6dc3ec513bbc49b365b121..c8aff8a20164d3c9837b9e9ba41453d294e82f5f 100644 (file)
 unsigned long sh_io_port_base __read_mostly = -1;
 EXPORT_SYMBOL(sh_io_port_base);
 
-void __iomem *__ioport_map(unsigned long addr, unsigned int size)
-{
-       if (sh_mv.mv_ioport_map)
-               return sh_mv.mv_ioport_map(addr, size);
-
-       return (void __iomem *)(addr + sh_io_port_base);
-}
-EXPORT_SYMBOL(__ioport_map);
-
 void __iomem *ioport_map(unsigned long port, unsigned int nr)
 {
        void __iomem *ret;
@@ -29,13 +20,11 @@ void __iomem *ioport_map(unsigned long port, unsigned int nr)
        if (ret)
                return ret;
 
-       return __ioport_map(port, nr);
+       return (void __iomem *)(port + sh_io_port_base);
 }
 EXPORT_SYMBOL(ioport_map);
 
 void ioport_unmap(void __iomem *addr)
 {
-       if (sh_mv.mv_ioport_unmap)
-               sh_mv.mv_ioport_unmap(addr);
 }
 EXPORT_SYMBOL(ioport_unmap);