Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1602653 > unrolled thread

[GIT PULL] clocksource: Fix for 4.11

Started byDaniel Lezcano <daniel.lezcano@linaro.org>
First post2017-03-16 17:50 +0100
Last post2017-03-16 17:50 +0100
Articles 2 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [GIT PULL] clocksource: Fix for 4.11 Daniel Lezcano <daniel.lezcano@linaro.org> - 2017-03-16 17:50 +0100
    [PATCH] Revert "clocksource/drivers/tcb_clksrc: Use 32 bit tcb as sched_clock" Daniel Lezcano <daniel.lezcano@linaro.org> - 2017-03-16 17:50 +0100

#1602653 — [GIT PULL] clocksource: Fix for 4.11

FromDaniel Lezcano <daniel.lezcano@linaro.org>
Date2017-03-16 17:50 +0100
Subject[GIT PULL] clocksource: Fix for 4.11
Message-ID<tlGL9-14c-37@gated-at.bofh.it>
Hi Thomas, Ingo,

this pull request provides one fix for 4.11:

 - Revert the tcb as sched_clock. The initialization routine for the tcb clock
   is too late and leads to a warning. In order to use the tcb as a sched_clock
   the init sequence must be fixed before. Revert the patch until this is done
   (Romain Izard)

The following changes since commit fa3aa7a54fe6d3abf128f13cd4bbd40eaa48fed2:

  jiffies: Revert bogus conversion of NSEC_PER_SEC to TICK_NSEC (2017-03-07 11:03:28 +0100)

are available in the git repository at:

  https://git.linaro.org/people/daniel.lezcano/linux.git clockevents/4.11-fixes

for you to fetch changes up to 33d8c15559df4f0bce25d7e16ebb5879e249f2e7:

  Revert "clocksource/drivers/tcb_clksrc: Use 32 bit tcb as sched_clock" (2017-03-11 22:03:34 +0100)

----------------------------------------------------------------
Romain Izard (1):
      Revert "clocksource/drivers/tcb_clksrc: Use 32 bit tcb as sched_clock"

 drivers/clocksource/tcb_clksrc.c | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)


-- 

 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

[toc] | [next] | [standalone]


#1602657 — [PATCH] Revert "clocksource/drivers/tcb_clksrc: Use 32 bit tcb as sched_clock"

FromDaniel Lezcano <daniel.lezcano@linaro.org>
Date2017-03-16 17:50 +0100
Subject[PATCH] Revert "clocksource/drivers/tcb_clksrc: Use 32 bit tcb as sched_clock"
Message-ID<tlGL9-14c-35@gated-at.bofh.it>
In reply to#1602653
From: Romain Izard <romain.izard.pro@gmail.com>

This reverts commit 7b9f1d16e6d1 ("clocksource/drivers/tcb_clksrc: Use
32 bit tcb as sched_clock"). In the current state, the kernel warns
against a late registration of the new sched_clock, the printk clock
resets after only a few minutes, and it seems that scheduling can be
affected as well.

Signed-off-by: Romain Izard <romain.izard.pro@gmail.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 drivers/clocksource/tcb_clksrc.c | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c
index 745844e..d4ca996 100644
--- a/drivers/clocksource/tcb_clksrc.c
+++ b/drivers/clocksource/tcb_clksrc.c
@@ -10,7 +10,6 @@
 #include <linux/io.h>
 #include <linux/platform_device.h>
 #include <linux/atmel_tc.h>
-#include <linux/sched_clock.h>
 
 
 /*
@@ -57,14 +56,9 @@ static u64 tc_get_cycles(struct clocksource *cs)
 	return (upper << 16) | lower;
 }
 
-static u32 tc_get_cv32(void)
-{
-	return __raw_readl(tcaddr + ATMEL_TC_REG(0, CV));
-}
-
 static u64 tc_get_cycles32(struct clocksource *cs)
 {
-	return tc_get_cv32();
+	return __raw_readl(tcaddr + ATMEL_TC_REG(0, CV));
 }
 
 static struct clocksource clksrc = {
@@ -75,11 +69,6 @@ static struct clocksource clksrc = {
 	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
 };
 
-static u64 notrace tc_read_sched_clock(void)
-{
-	return tc_get_cv32();
-}
-
 #ifdef CONFIG_GENERIC_CLOCKEVENTS
 
 struct tc_clkevt_device {
@@ -350,9 +339,6 @@ static int __init tcb_clksrc_init(void)
 		clksrc.read = tc_get_cycles32;
 		/* setup ony channel 0 */
 		tcb_setup_single_chan(tc, best_divisor_idx);
-
-		/* register sched_clock on chips with single 32 bit counter */
-		sched_clock_register(tc_read_sched_clock, 32, divided_rate);
 	} else {
 		/* tclib will give us three clocks no matter what the
 		 * underlying platform supports.
-- 
2.7.4

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web