arm64/arch_timer: Fix MMIO byteswap
authorPeter Zijlstra <peterz@infradead.org>
Tue, 6 Jun 2023 08:06:14 +0000 (10:06 +0200)
committerPeter Zijlstra <peterz@infradead.org>
Tue, 6 Jun 2023 08:19:51 +0000 (10:19 +0200)
The readl_relaxed() to __raw_readl() change meant to loose the
instrumentation, but also (inadvertently) lost the byteswap.

Fixes: 24ee7607b286 ("arm64/arch_timer: Provide noinstr sched_clock_read() functions")
Reported-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lkml.kernel.org/r/20230606080614.GB905437@hirez.programming.kicks-ass.net
drivers/clocksource/arm_arch_timer.c

index b23d23b033cc4a9a150b3d75153b1402d7d8e5ca..e733a2a1927a402f70e14585a2f98a76e6767cb7 100644 (file)
@@ -776,9 +776,9 @@ static noinstr u64 arch_counter_get_cnt_mem(struct arch_timer *t, int offset_lo)
        u32 cnt_lo, cnt_hi, tmp_hi;
 
        do {
-               cnt_hi = __raw_readl(t->base + offset_lo + 4);
-               cnt_lo = __raw_readl(t->base + offset_lo);
-               tmp_hi = __raw_readl(t->base + offset_lo + 4);
+               cnt_hi = __le32_to_cpu((__le32 __force)__raw_readl(t->base + offset_lo + 4));
+               cnt_lo = __le32_to_cpu((__le32 __force)__raw_readl(t->base + offset_lo));
+               tmp_hi = __le32_to_cpu((__le32 __force)__raw_readl(t->base + offset_lo + 4));
        } while (cnt_hi != tmp_hi);
 
        return ((u64) cnt_hi << 32) | cnt_lo;