* [PATCH] MIPS: <asm/io.h>: use generic io accessors
@ 2024-07-28 21:19 Antony Pavlov
2024-07-30 7:50 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Antony Pavlov @ 2024-07-28 21:19 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
arch/mips/include/asm/io.h | 62 --------------------------------------
1 file changed, 62 deletions(-)
diff --git a/arch/mips/include/asm/io.h b/arch/mips/include/asm/io.h
index 4584eec8ca0..bbd1c0199f8 100644
--- a/arch/mips/include/asm/io.h
+++ b/arch/mips/include/asm/io.h
@@ -52,68 +52,6 @@ static inline void *phys_to_virt(unsigned long address)
#define IO_SPACE_LIMIT 0
-/*****************************************************************************/
-/*
- * readX/writeX() are used to access memory mapped devices. On some
- * architectures the memory mapped IO stuff needs to be accessed
- * differently. On the simple architectures, we just read/write the
- * memory location directly.
- */
-#ifndef __raw_readb
-static inline u8 __raw_readb(const volatile void __iomem *addr)
-{
- return *(const volatile u8 __force *) addr;
-}
-#endif
-
-#ifndef __raw_readw
-static inline u16 __raw_readw(const volatile void __iomem *addr)
-{
- return *(const volatile u16 __force *) addr;
-}
-#endif
-
-#ifndef __raw_readl
-static inline u32 __raw_readl(const volatile void __iomem *addr)
-{
- return *(const volatile u32 __force *) addr;
-}
-#endif
-
-#define readb __raw_readb
-#define readw(addr) __le16_to_cpu(__raw_readw(addr))
-#define readl(addr) __le32_to_cpu(__raw_readl(addr))
-
-#ifndef __raw_writeb
-static inline void __raw_writeb(u8 b, volatile void __iomem *addr)
-{
- *(volatile u8 __force *) addr = b;
-}
-#endif
-
-#ifndef __raw_writew
-static inline void __raw_writew(u16 b, volatile void __iomem *addr)
-{
- *(volatile u16 __force *) addr = b;
-}
-#endif
-
-#ifndef __raw_writel
-static inline void __raw_writel(u32 b, volatile void __iomem *addr)
-{
- *(volatile u32 __force *) addr = b;
-}
-#endif
-
-#define writeb __raw_writeb
-#define writew(b,addr) __raw_writew(__cpu_to_le16(b),addr)
-#define writel(b,addr) __raw_writel(__cpu_to_le32(b),addr)
-
-#define in_be16(a) __be16_to_cpu(__raw_readw(a))
-#define in_be32(a) __be32_to_cpu(__raw_readl(a))
-#define out_be16(a, v) __raw_writew(__cpu_to_be16(v), a)
-#define out_be32(a, v) __raw_writel(__cpu_to_be32(v), a)
-
#ifdef CONFIG_64BIT
#define IOMEM(addr) ((void __force __iomem *)PHYS_TO_XKSEG_UNCACHED(addr))
#else
--
2.39.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] MIPS: <asm/io.h>: use generic io accessors
2024-07-28 21:19 [PATCH] MIPS: <asm/io.h>: use generic io accessors Antony Pavlov
@ 2024-07-30 7:50 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2024-07-30 7:50 UTC (permalink / raw)
To: barebox, Antony Pavlov; +Cc: Ahmad Fatoum
On Mon, 29 Jul 2024 00:19:29 +0300, Antony Pavlov wrote:
>
Applied, thanks!
[1/1] MIPS: <asm/io.h>: use generic io accessors
https://git.pengutronix.de/cgit/barebox/commit/?id=4a0b13ce8a61 (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-07-30 7:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-28 21:19 [PATCH] MIPS: <asm/io.h>: use generic io accessors Antony Pavlov
2024-07-30 7:50 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox