[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1410164046-15577-1-git-send-email-subhransu.s.prusty@intel.com>
Date: Mon, 8 Sep 2014 13:44:06 +0530
From: "Subhransu S. Prusty" <subhransu.s.prusty@...el.com>
To: hpa@...or.com
Cc: tglx@...utronix.de, mingo@...hat.com, x86@...nel.org,
linux-kernel@...r.kernel.org, vinod.koul@...el.com,
"Subhransu S. Prusty" <subhransu.s.prusty@...el.com>
Subject: [PATCH] x86_64: Add memcpy32_toio to write to PCI MMIO
This is needed because the hardware does not support 64-bit moveq
insructions while writing to PCI MMIO.
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@...el.com>
Signed-off-by: Vinod Koul <vinod.koul@...el.com>
---
arch/x86/include/asm/io.h | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/x86/include/asm/io.h b/arch/x86/include/asm/io.h
index b8237d8..fa095fb 100644
--- a/arch/x86/include/asm/io.h
+++ b/arch/x86/include/asm/io.h
@@ -218,6 +218,28 @@ memcpy_toio(volatile void __iomem *dst, const void *src, size_t count)
memcpy((void __force *)dst, src, count);
}
+#ifndef CONFIG_X86_64
+#define MEMCPY_TOIO memcpy_toio
+#else
+#define MEMCPY_TOIO memcpy32_toio
+#endif
+
+/**
+ * memcpy32_toio: Copy using writel commands
+ *
+ * This is needed because the hardware does not support
+ * 64-bit moveq insructions while writing to PCI MMIO
+ */
+static inline void memcpy32_toio(void *dst, const void *src, int count)
+{
+ int i;
+ const u32 *src_32 = src;
+ u32 *dst_32 = dst;
+
+ for (i = 0; i < count/sizeof(u32); i++)
+ writel(*src_32++, dst_32++);
+}
+
/*
* ISA space is 'always mapped' on a typical x86 system, no need to
* explicitly ioremap() it. The fact that the ISA IO space is mapped
--
1.9.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists