Skip to content

Commit a620088

Browse files
committed
[nrf fromlist] drivers: timer: nrf_grtc_timer: Optimize to reduce register access
Speed up execution of the interrupt handler and sys_clock_set_timeout(). Sys_clock_set_timeout() can be called in two scenarios: from previous timeout expiration handler or freely. If the former case fast path can be used since CC value in the GRTC register just expired and it can be used as a reference for CCADD setting. This is only a single register write so it's much faster. In the latter a longer procedure is applied which also happens in two variants. If value which is set in CC is further in the future (e.g. K_FOREVER was set before) then CC can be safely overwritten with a new value without a risk of triggering unexpected COMPARE event. If value in CC is earlier than the new CC value (if earlier timeout was aborted) then there is a risk of COMPARE event happening while it is being overwritten. That case requires long and safer procedure of setting CC. Update hal_nordic with changes in the nrfx_grtc driver which are needed for nrf_grtc_timer changes. Upstream PR: #87944 Signed-off-by: Krzysztof Chruściński <[email protected]>
1 parent f941bbe commit a620088

File tree

1 file changed

+59
-31
lines changed

1 file changed

+59
-31
lines changed

drivers/timer/nrf_grtc_timer.c

Lines changed: 59 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,27 @@
4949
#define COUNTER_SPAN (GRTC_SYSCOUNTERL_VALUE_Msk | ((uint64_t)GRTC_SYSCOUNTERH_VALUE_Msk << 32))
5050
#define MAX_ABS_TICKS (COUNTER_SPAN / CYC_PER_TICK)
5151

52-
#define MAX_TICKS \
53-
(((COUNTER_SPAN / CYC_PER_TICK) > INT_MAX) ? INT_MAX : (COUNTER_SPAN / CYC_PER_TICK))
54-
55-
#define MAX_CYCLES (MAX_TICKS * CYC_PER_TICK)
52+
/* To allow use of CCADD we need to limit max cycles to 31 bits. */
53+
#define MAX_REL_CYCLES BIT_MASK(31)
54+
#define MAX_REL_TICKS (MAX_REL_CYCLES / CYC_PER_TICK)
5655

5756
#define LFCLK_FREQUENCY_HZ DT_PROP(LFCLK_NODE, clock_frequency)
5857

58+
/* Threshold used to determine if there is a risk of unexpected GRTC COMPARE event coming
59+
* from previous CC value.
60+
*/
61+
#define LATENCY_THR_TICKS 200
62+
5963
#if defined(CONFIG_TEST)
6064
const int32_t z_sys_timer_irq_for_test = DT_IRQN(GRTC_NODE);
6165
#endif
6266

6367
static void sys_clock_timeout_handler(int32_t id, uint64_t cc_val, void *p_context);
6468

65-
static struct k_spinlock lock;
6669
static uint64_t last_count; /* Time (SYSCOUNTER value) @last sys_clock_announce() */
70+
static uint32_t last_elapsed;
71+
static uint64_t cc_value; /* Value that is expected to be in CC register. */
72+
static uint64_t expired_cc; /* Value that is expected to be in CC register. */
6773
static atomic_t int_mask;
6874
static uint8_t ext_channels_allocated;
6975
static uint64_t grtc_start_value;
@@ -146,17 +152,13 @@ static void compare_int_unlock(int32_t chan, bool key)
146152
static void sys_clock_timeout_handler(int32_t id, uint64_t cc_val, void *p_context)
147153
{
148154
ARG_UNUSED(id);
155+
ARG_UNUSED(cc_val);
149156
ARG_UNUSED(p_context);
150-
uint64_t dticks;
151-
uint64_t now = counter();
152-
153-
if (unlikely(now < cc_val)) {
154-
return;
155-
}
157+
uint32_t dticks;
156158

157159
dticks = counter_sub(cc_val, last_count) / CYC_PER_TICK;
158-
159-
last_count += dticks * CYC_PER_TICK;
160+
last_count += (dticks * CYC_PER_TICK);
161+
expired_cc = cc_val;
160162

161163
if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) {
162164
/* protection is not needed because we are in the GRTC interrupt
@@ -165,6 +167,7 @@ static void sys_clock_timeout_handler(int32_t id, uint64_t cc_val, void *p_conte
165167
system_timeout_set_abs(last_count + CYC_PER_TICK);
166168
}
167169

170+
last_elapsed = 0;
168171
sys_clock_announce((int32_t)dticks);
169172
}
170173

@@ -368,6 +371,7 @@ uint64_t z_nrf_grtc_timer_startup_value_get(void)
368371
int z_nrf_grtc_wakeup_prepare(uint64_t wake_time_us)
369372
{
370373
nrfx_err_t err_code;
374+
static struct k_spinlock lock;
371375
static uint8_t systemoff_channel;
372376
uint64_t now = counter();
373377
nrfx_grtc_sleep_config_t sleep_cfg;
@@ -428,22 +432,15 @@ int z_nrf_grtc_wakeup_prepare(uint64_t wake_time_us)
428432
}
429433
#endif /* CONFIG_POWEROFF */
430434

435+
431436
uint32_t sys_clock_cycle_get_32(void)
432437
{
433-
k_spinlock_key_t key = k_spin_lock(&lock);
434-
uint32_t ret = (uint32_t)counter();
435-
436-
k_spin_unlock(&lock, key);
437-
return ret;
438+
return nrf_grtc_sys_counter_low_get(NRF_GRTC);
438439
}
439440

440441
uint64_t sys_clock_cycle_get_64(void)
441442
{
442-
k_spinlock_key_t key = k_spin_lock(&lock);
443-
uint64_t ret = counter();
444-
445-
k_spin_unlock(&lock, key);
446-
return ret;
443+
return counter();
447444
}
448445

449446
uint32_t sys_clock_elapsed(void)
@@ -452,7 +449,9 @@ uint32_t sys_clock_elapsed(void)
452449
return 0;
453450
}
454451

455-
return (uint32_t)(counter_sub(counter(), last_count) / CYC_PER_TICK);
452+
last_elapsed = (uint32_t)counter_sub(counter(), last_count);
453+
454+
return last_elapsed / CYC_PER_TICK;
456455
}
457456

458457
static int sys_clock_driver_init(void)
@@ -493,6 +492,10 @@ static int sys_clock_driver_init(void)
493492

494493
last_count = (counter() / CYC_PER_TICK) * CYC_PER_TICK;
495494
grtc_start_value = last_count;
495+
expired_cc = UINT64_MAX;
496+
nrfx_grtc_channel_callback_set(system_clock_channel_data.channel,
497+
sys_clock_timeout_handler, NULL);
498+
496499
int_mask = NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK;
497500
if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) {
498501
system_timeout_set_relative(CYC_PER_TICK);
@@ -547,22 +550,47 @@ void sys_clock_set_timeout(int32_t ticks, bool idle)
547550
{
548551
ARG_UNUSED(idle);
549552

553+
if (ticks == 0) {
554+
return;
555+
}
556+
550557
if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) {
551558
return;
552559
}
553560

554-
ticks = (ticks == K_TICKS_FOREVER) ? MAX_TICKS : MIN(MAX_TICKS, MAX(ticks, 0));
561+
uint32_t ch = system_clock_channel_data.channel;
555562

556-
uint64_t delta_time = ticks * CYC_PER_TICK;
563+
if ((cc_value == expired_cc) && (ticks < MAX_REL_TICKS)) {
564+
uint32_t cyc = ticks * CYC_PER_TICK;
557565

558-
uint64_t target_time = counter() + delta_time;
566+
/* If it's the first timeout setting after previous expiration and timeout
567+
* is short so fast method can be used which utilizes relative CC configuration.
568+
*/
569+
cc_value += cyc;
570+
nrfx_grtc_syscounter_cc_rel_set(ch, cyc, NRFX_GRTC_CC_RELATIVE_COMPARE);
571+
return;
572+
}
573+
574+
uint64_t cyc = (uint64_t)ticks * CYC_PER_TICK;
575+
bool safe_setting = false;
576+
int64_t prev_cc_val = cc_value;
559577

560-
/* Rounded down target_time to the tick boundary
561-
* (but not less than one tick after the last)
578+
cc_value = last_count + last_elapsed + cyc;
579+
580+
/* In case of timeout abort it may happen that CC is being set to a value
581+
* that later than previous CC. If previous CC value is not far in the
582+
* future, there is a risk that COMPARE event will be triggered for that
583+
* previous CC value. If there is such risk safe procedure must be applied
584+
* which is more time consuming but ensures that there will be no spurious
585+
* event.
562586
*/
563-
target_time = MAX((target_time - last_count)/CYC_PER_TICK, 1)*CYC_PER_TICK + last_count;
587+
if (prev_cc_val < cc_value) {
588+
int64_t now = last_count + last_elapsed;
589+
590+
safe_setting = (prev_cc_val - now) < LATENCY_THR_TICKS;
591+
}
564592

565-
system_timeout_set_abs(target_time);
593+
nrfx_grtc_syscounter_cc_abs_set(ch, cc_value, safe_setting);
566594
}
567595

568596
#if defined(CONFIG_NRF_GRTC_TIMER_APP_DEFINED_INIT)

0 commit comments

Comments
 (0)