* [PATCH v2] ARM: asm: add readq/writeq methods
@ 2013-12-07 16:05 Matthias Mann
2013-12-07 21:38 ` Peter Maydell
0 siblings, 1 reply; 4+ messages in thread
From: Matthias Mann @ 2013-12-07 16:05 UTC (permalink / raw)
To: linux-arm-kernel
Add readq/writeq methods for 32 bit ARM to allow transfering 64 bit words over
PCIe as a single transfer.
Signed-off-by: Matthias Mann <m.mann@arkona-technologies.de>
---
v2: Changed assembler according to comments from M?ns Rullg?rd
Check for ARM architecture support and added preprocessor guards as
requested by Russel King
---
arch/arm/include/asm/io.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/arch/arm/include/asm/io.h b/arch/arm/include/asm/io.h
index 3c597c2..89d4ecd 100644
--- a/arch/arm/include/asm/io.h
+++ b/arch/arm/include/asm/io.h
@@ -112,6 +112,36 @@ static inline u32 __raw_readl(const volatile void __iomem *addr)
return val;
}
+#if __LINUX_ARM_ARCH__ >= 5
+static inline u64 __raw_readq(const volatile void __iomem *addr)
+{
+ u64 val;
+#if __LITTLE_ENDIAN
+ asm volatile("ldrd %Q1, %R1, %0"
+ : "+Q" (*(volatile u64 __force *)addr),
+ "=r" (val));
+#else
+ asm volatile("ldrd %R1, %Q1, %0"
+ : "+Q" (*(volatile u64 __force *)addr),
+ "=r" (val));
+#endif
+ return val;
+}
+
+static inline void __raw_writeq(u64 val, volatile void __iomem *addr)
+{
+#if __LITTLE_ENDIAN
+ asm volatile("strd %Q1, %R1, %0"
+ : "+Q" (*(volatile u64 __force *)addr)
+ : "r" (val));
+#else
+ asm volatile("strd %R1, %Q1, %0"
+ : "+Q" (*(volatile u64 __force *)addr)
+ : "r" (val));
+#endif
+}
+#endif /* __LINUX_ARM_ARCH__ >= 5 */
+
/*
* Architecture ioremap implementation.
*/
@@ -320,6 +350,23 @@ extern void _memset_io(volatile void __iomem *, int, size_t);
#endif /* readl */
+#if __LINUX_ARM_ARCH__ >= 5
+
+#ifndef readq
+#define readq_relaxed(c) ({ u64 __r = le64_to_cpu((__force __le64) \
+ __raw_readq(c)); __r; })
+
+#define readq(c) ({ u64 __v = readq_relaxed(c); __iormb(); __v; })
+#endif /* readq */
+
+#ifndef writeq
+#define writeq_relaxed(v,c) __raw_writeq((__force u64) cpu_to_le64(v),c)
+
+#define writeq(v,c) ({ __iowmb(); writeq_relaxed(v,c); })
+#endif /* writeq */
+
+#endif /* __LINUX_ARM_ARCH__ >= 5 */
+
/*
* ioremap and friends.
*
--
1.8.3.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH v2] ARM: asm: add readq/writeq methods
2013-12-07 16:05 [PATCH v2] ARM: asm: add readq/writeq methods Matthias Mann
@ 2013-12-07 21:38 ` Peter Maydell
2013-12-07 21:41 ` Måns Rullgård
0 siblings, 1 reply; 4+ messages in thread
From: Peter Maydell @ 2013-12-07 21:38 UTC (permalink / raw)
To: linux-arm-kernel
On 7 December 2013 16:05, Matthias Mann <M.Mann@arkona-technologies.de> wrote:
> Add readq/writeq methods for 32 bit ARM to allow transfering 64 bit words over
> PCIe as a single transfer.
> +#if __LINUX_ARM_ARCH__ >= 5
> +static inline u64 __raw_readq(const volatile void __iomem *addr)
> +{
> + u64 val;
> +#if __LITTLE_ENDIAN
> + asm volatile("ldrd %Q1, %R1, %0"
> + : "+Q" (*(volatile u64 __force *)addr),
> + "=r" (val));
> +#else
> + asm volatile("ldrd %R1, %Q1, %0"
> + : "+Q" (*(volatile u64 __force *)addr),
> + "=r" (val));
> +#endif
> + return val;
> +}
Given that ldrd/strd accesses are only a single 64 bit access
on CPUs with LPAE (on non-LPAE CPUs they may be
implemented as just a pair of 32 bit accesses) should the
condition be stricter than just __LINUX_ARM_ARCH__ >= 5 ?
thanks
-- PMM
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH v2] ARM: asm: add readq/writeq methods
2013-12-07 21:38 ` Peter Maydell
@ 2013-12-07 21:41 ` Måns Rullgård
2013-12-07 22:02 ` Matthias Mann
0 siblings, 1 reply; 4+ messages in thread
From: Måns Rullgård @ 2013-12-07 21:41 UTC (permalink / raw)
To: linux-arm-kernel
Peter Maydell <peter.maydell@linaro.org> writes:
> On 7 December 2013 16:05, Matthias Mann <M.Mann@arkona-technologies.de> wrote:
>> Add readq/writeq methods for 32 bit ARM to allow transfering 64 bit words over
>> PCIe as a single transfer.
>
>> +#if __LINUX_ARM_ARCH__ >= 5
>> +static inline u64 __raw_readq(const volatile void __iomem *addr)
>> +{
>> + u64 val;
>> +#if __LITTLE_ENDIAN
>> + asm volatile("ldrd %Q1, %R1, %0"
>> + : "+Q" (*(volatile u64 __force *)addr),
>> + "=r" (val));
>> +#else
>> + asm volatile("ldrd %R1, %Q1, %0"
>> + : "+Q" (*(volatile u64 __force *)addr),
>> + "=r" (val));
>> +#endif
>> + return val;
>> +}
>
> Given that ldrd/strd accesses are only a single 64 bit access
> on CPUs with LPAE (on non-LPAE CPUs they may be
> implemented as just a pair of 32 bit accesses) should the
> condition be stricter than just __LINUX_ARM_ARCH__ >= 5 ?
What do actual CPUs, e.g. the A9, do?
--
M?ns Rullg?rd
mans at mansr.com
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH v2] ARM: asm: add readq/writeq methods
2013-12-07 21:41 ` Måns Rullgård
@ 2013-12-07 22:02 ` Matthias Mann
0 siblings, 0 replies; 4+ messages in thread
From: Matthias Mann @ 2013-12-07 22:02 UTC (permalink / raw)
To: linux-arm-kernel
M?ns Rullg?rd wrote:
> Peter Maydell <peter.maydell@linaro.org> writes:
>
>> On 7 December 2013 16:05, Matthias Mann <M.Mann@arkona-technologies.de> wrote:
>>> Add readq/writeq methods for 32 bit ARM to allow transfering 64 bit words over
>>> PCIe as a single transfer.
>>> +#if __LINUX_ARM_ARCH__ >= 5
>>> +static inline u64 __raw_readq(const volatile void __iomem *addr)
>>> +{
>>> + u64 val;
>>> +#if __LITTLE_ENDIAN
>>> + asm volatile("ldrd %Q1, %R1, %0"
>>> + : "+Q" (*(volatile u64 __force *)addr),
>>> + "=r" (val));
>>> +#else
>>> + asm volatile("ldrd %R1, %Q1, %0"
>>> + : "+Q" (*(volatile u64 __force *)addr),
>>> + "=r" (val));
>>> +#endif
>>> + return val;
>>> +}
>> Given that ldrd/strd accesses are only a single 64 bit access
>> on CPUs with LPAE (on non-LPAE CPUs they may be
>> implemented as just a pair of 32 bit accesses) should the
>> condition be stricter than just __LINUX_ARM_ARCH__ >= 5 ?
> What do actual CPUs, e.g. the A9, do?
>
I've tested that on an Freescale i.MX6D which is a Cortex-A9 with an Altera Arria V GZ FPGA connected via PCIe. Using strd / ldrd I see a 64 bit TLP (length = 2) on the PCIe interface (this is on an uncachable 32 bit BAR).
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-12-07 22:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-07 16:05 [PATCH v2] ARM: asm: add readq/writeq methods Matthias Mann
2013-12-07 21:38 ` Peter Maydell
2013-12-07 21:41 ` Måns Rullgård
2013-12-07 22:02 ` Matthias Mann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox