53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2024 Intel Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <kernel_internal.h>
|
|
|
|
/* We are not building thread.c when MULTITHREADING=n, so we
|
|
* need to provide a few stubs here.
|
|
*/
|
|
bool k_is_in_isr(void)
|
|
{
|
|
return arch_is_in_isr();
|
|
}
|
|
|
|
/* This is a fallback implementation of k_sleep() for when multi-threading is
|
|
* disabled. The main implementation is in sched.c.
|
|
*/
|
|
int32_t z_impl_k_sleep(k_timeout_t timeout)
|
|
{
|
|
k_ticks_t ticks;
|
|
uint32_t expected_wakeup_ticks;
|
|
|
|
__ASSERT(!arch_is_in_isr(), "");
|
|
|
|
SYS_PORT_TRACING_FUNC_ENTER(k_thread, sleep, timeout);
|
|
|
|
/* in case of K_FOREVER, we suspend */
|
|
if (K_TIMEOUT_EQ(timeout, K_FOREVER)) {
|
|
/* In Single Thread, just wait for an interrupt saving power */
|
|
k_cpu_idle();
|
|
SYS_PORT_TRACING_FUNC_EXIT(k_thread, sleep, timeout, (int32_t) K_TICKS_FOREVER);
|
|
|
|
return (int32_t) K_TICKS_FOREVER;
|
|
}
|
|
|
|
ticks = timeout.ticks;
|
|
if (Z_TICK_ABS(ticks) <= 0) {
|
|
expected_wakeup_ticks = ticks + sys_clock_tick_get_32();
|
|
} else {
|
|
expected_wakeup_ticks = Z_TICK_ABS(ticks);
|
|
}
|
|
/* busy wait to be time coherent since subsystems may depend on it */
|
|
z_impl_k_busy_wait(k_ticks_to_us_ceil32(expected_wakeup_ticks));
|
|
|
|
int32_t ret = k_ticks_to_ms_ceil64(0);
|
|
|
|
SYS_PORT_TRACING_FUNC_EXIT(k_thread, sleep, timeout, ret);
|
|
|
|
return ret;
|
|
}
|