public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clocksource: vf_pit_timer: fix pit_read_sched_clock
@ 2014-04-15 10:48 Xiubo Li
  2014-04-15 12:35 ` Daniel Lezcano
  0 siblings, 1 reply; 5+ messages in thread
From: Xiubo Li @ 2014-04-15 10:48 UTC (permalink / raw)
  To: daniel.lezcano, tglx, shawn.guo; +Cc: linux-kernel, Xiubo Li

The pit_read_sched_clock mean to getting the current counter value,
and the vf pit timer is a down count timer, this should return
the counter value or the cycles elapsed.

Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
---
 drivers/clocksource/vf_pit_timer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clocksource/vf_pit_timer.c b/drivers/clocksource/vf_pit_timer.c
index 02821b0..a918bc4 100644
--- a/drivers/clocksource/vf_pit_timer.c
+++ b/drivers/clocksource/vf_pit_timer.c
@@ -54,7 +54,7 @@ static inline void pit_irq_acknowledge(void)
 
 static u64 pit_read_sched_clock(void)
 {
-	return __raw_readl(clksrc_base + PITCVAL);
+	return ~__raw_readl(clksrc_base + PITCVAL);
 }
 
 static int __init pit_clocksource_init(unsigned long rate)
-- 
1.8.4



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

end of thread, other threads:[~2014-04-16  0:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-15 10:48 [PATCH] clocksource: vf_pit_timer: fix pit_read_sched_clock Xiubo Li
2014-04-15 12:35 ` Daniel Lezcano
2014-04-15 21:53   ` Thomas Gleixner
2014-04-16  0:51     ` Li.Xiubo
2014-04-16  0:33   ` Li.Xiubo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox