All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] parisc: Drop homebrewn io[read|write]64_[lo_hi|hi_lo]
@ 2022-09-22 19:18 Linus Walleij
  2022-09-23 19:52 ` Arnd Bergmann
  0 siblings, 1 reply; 2+ messages in thread
From: Linus Walleij @ 2022-09-22 19:18 UTC (permalink / raw)
  To: James E . J . Bottomley, Helge Deller
  Cc: linux-parisc, Linus Walleij, Arnd Bergmann, kernel test robot

The parisc implements ioread64_lo_hi(), ioread64_hi_lo()
iowrite64_lo_hi() and iowrite64_hi_lo() while we already
have a perfectly working generic version in the generic
portable assembly in <linux/io-64-nonatomic-hi-lo.h>.

Drop the custom versions in favor for the defaults.

Fixes: 77bfc8bdb5a1 ("parisc: Remove 64bit access on 32bit machines")
Cc: Arnd Bergmann <arnd@arndb.de>
Acked-by: Helge Deller <deller@gmx.de>
Reported-by: Helge Deller <deller@gmx.de>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
Arnd: please queue this on top of your pile in linux-arch
if it looks all right.
---
 arch/parisc/lib/iomap.c | 36 ------------------------------------
 1 file changed, 36 deletions(-)

diff --git a/arch/parisc/lib/iomap.c b/arch/parisc/lib/iomap.c
index d3d57119df64..915c0c4da663 100644
--- a/arch/parisc/lib/iomap.c
+++ b/arch/parisc/lib/iomap.c
@@ -360,26 +360,6 @@ u64 ioread64be(const void __iomem *addr)
 }
 #endif
 
-u64 ioread64_lo_hi(const void __iomem *addr)
-{
-	u32 low, high;
-
-	low = ioread32(addr);
-	high = ioread32(addr + sizeof(u32));
-
-	return low + ((u64)high << 32);
-}
-
-u64 ioread64_hi_lo(const void __iomem *addr)
-{
-	u32 low, high;
-
-	high = ioread32(addr + sizeof(u32));
-	low = ioread32(addr);
-
-	return low + ((u64)high << 32);
-}
-
 void iowrite8(u8 datum, void __iomem *addr)
 {
 	if (unlikely(INDIRECT_ADDR(addr))) {
@@ -445,18 +425,6 @@ void iowrite64be(u64 datum, void __iomem *addr)
 }
 #endif
 
-void iowrite64_lo_hi(u64 val, void __iomem *addr)
-{
-	iowrite32(val, addr);
-	iowrite32(val >> 32, addr + sizeof(u32));
-}
-
-void iowrite64_hi_lo(u64 val, void __iomem *addr)
-{
-	iowrite32(val >> 32, addr + sizeof(u32));
-	iowrite32(val, addr);
-}
-
 /* Repeating interfaces */
 
 void ioread8_rep(const void __iomem *addr, void *dst, unsigned long count)
@@ -564,8 +532,6 @@ EXPORT_SYMBOL(ioread32be);
 EXPORT_SYMBOL(ioread64);
 EXPORT_SYMBOL(ioread64be);
 #endif
-EXPORT_SYMBOL(ioread64_lo_hi);
-EXPORT_SYMBOL(ioread64_hi_lo);
 EXPORT_SYMBOL(iowrite8);
 EXPORT_SYMBOL(iowrite16);
 EXPORT_SYMBOL(iowrite16be);
@@ -575,8 +541,6 @@ EXPORT_SYMBOL(iowrite32be);
 EXPORT_SYMBOL(iowrite64);
 EXPORT_SYMBOL(iowrite64be);
 #endif
-EXPORT_SYMBOL(iowrite64_lo_hi);
-EXPORT_SYMBOL(iowrite64_hi_lo);
 EXPORT_SYMBOL(ioread8_rep);
 EXPORT_SYMBOL(ioread16_rep);
 EXPORT_SYMBOL(ioread32_rep);
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] parisc: Drop homebrewn io[read|write]64_[lo_hi|hi_lo]
  2022-09-22 19:18 [PATCH] parisc: Drop homebrewn io[read|write]64_[lo_hi|hi_lo] Linus Walleij
@ 2022-09-23 19:52 ` Arnd Bergmann
  0 siblings, 0 replies; 2+ messages in thread
From: Arnd Bergmann @ 2022-09-23 19:52 UTC (permalink / raw)
  To: Linus Walleij, James E . J . Bottomley, Helge Deller
  Cc: linux-parisc, kernel test robot

On Thu, Sep 22, 2022, at 9:18 PM, Linus Walleij wrote:
> The parisc implements ioread64_lo_hi(), ioread64_hi_lo()
> iowrite64_lo_hi() and iowrite64_hi_lo() while we already
> have a perfectly working generic version in the generic
> portable assembly in <linux/io-64-nonatomic-hi-lo.h>.
>
> Drop the custom versions in favor for the defaults.
>
> Fixes: 77bfc8bdb5a1 ("parisc: Remove 64bit access on 32bit machines")
> Cc: Arnd Bergmann <arnd@arndb.de>
> Acked-by: Helge Deller <deller@gmx.de>
> Reported-by: Helge Deller <deller@gmx.de>
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Arnd: please queue this on top of your pile in linux-arch
> if it looks all right.

Applied now, thanks!

      Arnd

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-09-23 19:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-22 19:18 [PATCH] parisc: Drop homebrewn io[read|write]64_[lo_hi|hi_lo] Linus Walleij
2022-09-23 19:52 ` Arnd Bergmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.