blob: 5e0bb71408b58c34fd287fcc32bead4fb755732f [file]
/*
* Copyright (c) 1997-2016 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/init.h>
#include <zephyr/internal/syscall_handler.h>
#include <zephyr/sys/check.h>
#include <stdbool.h>
#include <zephyr/spinlock.h>
#include <ksched.h>
#include <wait_q.h>
static struct k_spinlock timer_lock;
#ifdef CONFIG_OBJ_CORE_TIMER
static struct k_obj_type obj_type_timer;
#endif /* CONFIG_OBJ_CORE_TIMER */
#if defined(CONFIG_TIMER_OBSERVER)
static inline void z_timer_observer_on_init(struct k_timer *timer)
{
STRUCT_SECTION_FOREACH(k_timer_observer, obs) {
if (obs->on_init != NULL) {
obs->on_init(timer);
}
}
}
static inline void z_timer_observer_on_start(struct k_timer *timer, k_timeout_t duration,
k_timeout_t period)
{
STRUCT_SECTION_FOREACH(k_timer_observer, obs) {
if (obs->on_start != NULL) {
obs->on_start(timer, duration, period);
}
}
}
static inline void z_timer_observer_on_stop(struct k_timer *timer)
{
STRUCT_SECTION_FOREACH(k_timer_observer, obs) {
if (obs->on_stop != NULL) {
obs->on_stop(timer);
}
}
}
static inline void z_timer_observer_on_expiry(struct k_timer *timer)
{
STRUCT_SECTION_FOREACH(k_timer_observer, obs) {
if (obs->on_expiry != NULL) {
obs->on_expiry(timer);
}
}
}
#else
#define z_timer_observer_on_init(timer) (void)0
#define z_timer_observer_on_start(timer, duration, period) (void)0
#define z_timer_observer_on_stop(timer) (void)0
#define z_timer_observer_on_expiry(timer) (void)0
#endif /* CONFIG_TIMER_OBSERVER */
/**
* @brief Handle expiration of a kernel timer object.
*
* @param t Timeout used by the timer.
*/
void z_timer_expiration_handler(struct _timeout *t)
{
struct k_timer *timer = CONTAINER_OF(t, struct k_timer, timeout);
struct k_thread *thread;
k_spinlock_key_t key = k_spin_lock(&timer_lock);
/* A same-CPU IRQ may have raced with our dispatch between
* sys_clock_announce() popping us off the queue and us taking
* timer.c::lock. Two cases:
* - The timer was restarted (z_add_timeout re-queued the timeout):
* it is active again, and the new schedule fires later.
* - The timer was stopped (z_try_abort_timeout marked the
* in-flight slot superseded): bail without firing expiry_fn.
*/
if (!z_is_inactive_timeout(t) ||
z_timeout_inflight_superseded(t)) {
k_spin_unlock(&timer_lock, key);
return;
}
/*
* if the timer is periodic, start it again; don't add _TICK_ALIGN
* since we're already aligned to a tick boundary
*/
if (!K_TIMEOUT_EQ(timer->period, K_NO_WAIT) &&
!K_TIMEOUT_EQ(timer->period, K_FOREVER)) {
k_timeout_t next = timer->period;
#ifdef CONFIG_TIMEOUT_64BIT
/* Exploit the fact that uptime during a kernel
* timeout handler reflects the time of the scheduled
* event and not real time to get some inexpensive
* protection against late interrupts. If we're
* delayed for any reason, we still end up calculating
* the next expiration as a regular stride from where
* we "should" have run. Requires absolute timeouts.
*/
next = K_TIMEOUT_ABS_TICKS(k_uptime_ticks() + next.ticks);
#endif /* CONFIG_TIMEOUT_64BIT */
z_add_timeout(&timer->timeout, z_timer_expiration_handler,
next);
}
/* update timer's status */
timer->status += 1U;
z_timer_observer_on_expiry(timer);
/* invoke timer expiry function */
if (timer->expiry_fn != NULL) {
k_timer_expiry_t expiry_fn = timer->expiry_fn;
/* Unlock for user handler. */
k_spin_unlock(&timer_lock, key);
SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_timer, expiry, timer);
expiry_fn(timer);
SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_timer, expiry, timer);
key = k_spin_lock(&timer_lock);
}
if (!IS_ENABLED(CONFIG_MULTITHREADING)) {
k_spin_unlock(&timer_lock, key);
return;
}
thread = z_waitq_head(&timer->wait_q);
if (thread == NULL) {
k_spin_unlock(&timer_lock, key);
return;
}
z_unpend_thread_no_timeout(thread);
arch_thread_return_value_set(thread, 0);
k_spin_unlock(&timer_lock, key);
z_ready_thread(thread);
}
int k_timer_cleanup(struct k_timer *timer)
{
/* Not callable from an ISR: this is the one timer path that can
* spin waiting for an in-flight handler, and an ISR spinning here
* could starve the very CPU the handler needs to make progress.
*/
__ASSERT(!arch_is_in_isr(), "");
SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_timer, cleanup, timer);
k_spinlock_key_t key;
/* Refuse if anyone is still pending on the timer's wait queue
* (e.g. via k_timer_status_sync()): freeing the storage would
* leave dangling pended_on pointers.
*/
retry:
key = k_spin_lock(&timer_lock);
CHECKIF(z_waitq_head(&timer->wait_q) != NULL) {
k_spin_unlock(&timer_lock, key);
SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_timer, cleanup, timer, -EAGAIN);
return -EAGAIN;
}
/* Cancel the timeout AND wait for any in-flight expiration
* handler on another CPU to complete before returning. Unlike
* k_timer_stop(), we do not call any user stop_fn here: the
* caller is about to free the storage and there is no further
* consumer of the timer.
*
* This is the one timer path that waits on the handler (it must,
* before the storage is freed). The wait can only stall if the
* handler itself blocks on this CPU making progress -- e.g. an
* expiry_fn that aborts a thread running here. Freeing a timer
* whose handler does that is a caller bug; ordinary stop/start do
* not wait and so cannot stall.
*/
if (z_try_abort_timeout(&timer->timeout) == -EAGAIN) {
k_spin_unlock(&timer_lock, key);
goto retry;
}
k_spin_unlock(&timer_lock, key);
SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_timer, cleanup, timer, 0);
return 0;
}
void k_timer_init(struct k_timer *timer,
k_timer_expiry_t expiry_fn,
k_timer_stop_t stop_fn)
{
timer->expiry_fn = expiry_fn;
timer->stop_fn = stop_fn;
timer->status = 0U;
if (IS_ENABLED(CONFIG_MULTITHREADING)) {
z_waitq_init(&timer->wait_q);
}
z_init_timeout(&timer->timeout);
SYS_PORT_TRACING_OBJ_INIT(k_timer, timer);
timer->user_data = NULL;
k_object_init(timer);
#ifdef CONFIG_OBJ_CORE_TIMER
k_obj_core_init_and_link(K_OBJ_CORE(timer), &obj_type_timer);
#endif /* CONFIG_OBJ_CORE_TIMER */
z_timer_observer_on_init(timer);
}
void z_impl_k_timer_start(struct k_timer *timer, k_timeout_t duration,
k_timeout_t period)
{
SYS_PORT_TRACING_OBJ_FUNC(k_timer, start, timer, duration, period);
if (K_TIMEOUT_EQ(duration, K_FOREVER)) {
return;
}
/* Hold the timer lock across abort + add to serialize against a
* concurrent k_timer_start on the same timer. An in-flight handler
* (z_try_abort_timeout() returning non-zero) is flagged superseded
* and will bail; the re-arm below also re-links the node, which
* makes a not-yet-committed handler bail too. Either way we do not
* wait for it.
*/
k_spinlock_key_t key = k_spin_lock(&timer_lock);
(void)z_try_abort_timeout(&timer->timeout);
timer->period = period;
timer->status = 0U;
z_add_timeout(&timer->timeout, z_timer_expiration_handler, duration);
z_timer_observer_on_start(timer, duration, period);
k_spin_unlock(&timer_lock, key);
}
#ifdef CONFIG_USERSPACE
static inline void z_vrfy_k_timer_start(struct k_timer *timer,
k_timeout_t duration,
k_timeout_t period)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
z_impl_k_timer_start(timer, duration, period);
}
#include <zephyr/syscalls/k_timer_start_mrsh.c>
#endif /* CONFIG_USERSPACE */
void z_impl_k_timer_stop(struct k_timer *timer)
{
SYS_PORT_TRACING_OBJ_FUNC(k_timer, stop, timer);
k_spinlock_key_t key = k_spin_lock(&timer_lock);
if (z_try_abort_timeout(&timer->timeout) != 0) {
/* Not removed from the queue: either the timer was not
* active, or its handler is in flight. In the latter case
* z_try_abort_timeout() has flagged it superseded so the
* handler bails; we do not wait for it. Nothing to stop here.
*/
k_spin_unlock(&timer_lock, key);
return;
}
z_timer_observer_on_stop(timer);
if (timer->stop_fn != NULL) {
SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_timer, stop_fn_expiry, timer);
k_spin_unlock(&timer_lock, key);
timer->stop_fn(timer);
key = k_spin_lock(&timer_lock);
SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_timer, stop_fn_expiry, timer);
}
if (!IS_ENABLED(CONFIG_MULTITHREADING)) {
k_spin_unlock(&timer_lock, key);
return;
}
struct k_thread *pending_thread = z_unpend1_no_timeout(&timer->wait_q);
if (pending_thread != NULL) {
z_ready_thread(pending_thread);
z_reschedule(&timer_lock, key);
} else {
k_spin_unlock(&timer_lock, key);
}
}
#ifdef CONFIG_USERSPACE
static inline void z_vrfy_k_timer_stop(struct k_timer *timer)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
z_impl_k_timer_stop(timer);
}
#include <zephyr/syscalls/k_timer_stop_mrsh.c>
#endif /* CONFIG_USERSPACE */
uint32_t z_impl_k_timer_status_get(struct k_timer *timer)
{
k_spinlock_key_t key = k_spin_lock(&timer_lock);
uint32_t result = timer->status;
timer->status = 0U;
k_spin_unlock(&timer_lock, key);
return result;
}
#ifdef CONFIG_USERSPACE
static inline uint32_t z_vrfy_k_timer_status_get(struct k_timer *timer)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
return z_impl_k_timer_status_get(timer);
}
#include <zephyr/syscalls/k_timer_status_get_mrsh.c>
#endif /* CONFIG_USERSPACE */
uint32_t z_impl_k_timer_status_sync(struct k_timer *timer)
{
__ASSERT(!arch_is_in_isr(), "");
SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_timer, status_sync, timer);
if (!IS_ENABLED(CONFIG_MULTITHREADING)) {
uint32_t result;
do {
unsigned int key = irq_lock();
if (!z_is_inactive_timeout(&timer->timeout)) {
result = *(volatile uint32_t *)&timer->status;
timer->status = 0U;
if (result > 0) {
irq_unlock(key);
break;
} else {
k_cpu_atomic_idle(key);
}
} else {
result = timer->status;
irq_unlock(key);
break;
}
} while (true);
return result;
}
k_spinlock_key_t key = k_spin_lock(&timer_lock);
uint32_t result = timer->status;
if (result == 0U) {
if (!z_is_inactive_timeout(&timer->timeout)) {
SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(k_timer, status_sync, timer, K_FOREVER);
/* wait for timer to expire or stop */
(void)z_pend_curr(&timer_lock, key, &timer->wait_q, K_FOREVER);
/* get updated timer status */
key = k_spin_lock(&timer_lock);
result = timer->status;
} else {
/* timer is already stopped */
}
} else {
/* timer has already expired at least once */
}
timer->status = 0U;
k_spin_unlock(&timer_lock, key);
/**
* @note New tracing hook
*/
SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_timer, status_sync, timer, result);
return result;
}
#ifdef CONFIG_USERSPACE
static inline uint32_t z_vrfy_k_timer_status_sync(struct k_timer *timer)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
return z_impl_k_timer_status_sync(timer);
}
#include <zephyr/syscalls/k_timer_status_sync_mrsh.c>
static inline k_ticks_t z_vrfy_k_timer_remaining_ticks(
const struct k_timer *timer)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
return z_impl_k_timer_remaining_ticks(timer);
}
#include <zephyr/syscalls/k_timer_remaining_ticks_mrsh.c>
static inline k_ticks_t z_vrfy_k_timer_expires_ticks(
const struct k_timer *timer)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
return z_impl_k_timer_expires_ticks(timer);
}
#include <zephyr/syscalls/k_timer_expires_ticks_mrsh.c>
static inline void *z_vrfy_k_timer_user_data_get(const struct k_timer *timer)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
return z_impl_k_timer_user_data_get(timer);
}
#include <zephyr/syscalls/k_timer_user_data_get_mrsh.c>
static inline void z_vrfy_k_timer_user_data_set(struct k_timer *timer,
void *user_data)
{
K_OOPS(K_SYSCALL_OBJ(timer, K_OBJ_TIMER));
z_impl_k_timer_user_data_set(timer, user_data);
}
#include <zephyr/syscalls/k_timer_user_data_set_mrsh.c>
#endif /* CONFIG_USERSPACE */
#ifdef CONFIG_OBJ_CORE_TIMER
K_OBJ_TYPE_DEFINE(obj_type_timer, k_timer, K_OBJ_TYPE_TIMER_ID, NULL);
#endif /* CONFIG_OBJ_CORE_TIMER */