[RFC v7 08/23] arch/s390/kernel/time: set ->min_delta_ticks and ->max_delta_ticks

2016-09-16 Thread Nicolai Stange
With the yet to come introduction of NTP correction awareness to the
clockevent core, drivers should report their valid ranges in units of
cycles to the latter.

Currently, the s390's CPU timer clockevent device is initialized as
follows:

  cd->min_delta_ns= 1;
  cd->max_delta_ns= LONG_MAX;

Note that the device's time to cycle conversion factor, i.e.
cd->mult / (2^cd->shift), is approx. equal to 4.

Hence, this would translate to

  cd->min_delta_ticks = 4;
  cd->max_delta_ticks = 4 * LONG_MAX;

However, a minimum value of 1ns is in the range of noise anyway and the
clockevent core will take care of this by increasing it to 1us or so.
Furthermore, 4*LONG_MAX will overflow the unsigned long argument the
clockevent devices gets programmed with.

Thus, initialize ->min_delta_ticks with 1 and ->max_delta_ticks with
ULONG_MAX.

Signed-off-by: Nicolai Stange 
---
 arch/s390/kernel/time.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c
index 0bfcc49..f15530b 100644
--- a/arch/s390/kernel/time.c
+++ b/arch/s390/kernel/time.c
@@ -162,7 +162,9 @@ void init_cpu_timer(void)
cd->mult= 16777;
cd->shift   = 12;
cd->min_delta_ns= 1;
+   cd->min_delta_ticks = 1;
cd->max_delta_ns= LONG_MAX;
+   cd->max_delta_ticks = ULONG_MAX;
cd->rating  = 400;
cd->cpumask = cpumask_of(cpu);
cd->set_next_event  = s390_next_event;
-- 
2.10.0



[RFC v7 08/23] arch/s390/kernel/time: set ->min_delta_ticks and ->max_delta_ticks

2016-09-16 Thread Nicolai Stange
With the yet to come introduction of NTP correction awareness to the
clockevent core, drivers should report their valid ranges in units of
cycles to the latter.

Currently, the s390's CPU timer clockevent device is initialized as
follows:

  cd->min_delta_ns= 1;
  cd->max_delta_ns= LONG_MAX;

Note that the device's time to cycle conversion factor, i.e.
cd->mult / (2^cd->shift), is approx. equal to 4.

Hence, this would translate to

  cd->min_delta_ticks = 4;
  cd->max_delta_ticks = 4 * LONG_MAX;

However, a minimum value of 1ns is in the range of noise anyway and the
clockevent core will take care of this by increasing it to 1us or so.
Furthermore, 4*LONG_MAX will overflow the unsigned long argument the
clockevent devices gets programmed with.

Thus, initialize ->min_delta_ticks with 1 and ->max_delta_ticks with
ULONG_MAX.

Signed-off-by: Nicolai Stange 
---
 arch/s390/kernel/time.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c
index 0bfcc49..f15530b 100644
--- a/arch/s390/kernel/time.c
+++ b/arch/s390/kernel/time.c
@@ -162,7 +162,9 @@ void init_cpu_timer(void)
cd->mult= 16777;
cd->shift   = 12;
cd->min_delta_ns= 1;
+   cd->min_delta_ticks = 1;
cd->max_delta_ns= LONG_MAX;
+   cd->max_delta_ticks = ULONG_MAX;
cd->rating  = 400;
cd->cpumask = cpumask_of(cpu);
cd->set_next_event  = s390_next_event;
-- 
2.10.0