2021-03-02 00:57:23 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021 NXP
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DT_DRV_COMPAT nxp_os_timer
|
|
|
|
|
2022-10-04 23:05:05 +08:00
|
|
|
#include <limits.h>
|
|
|
|
|
2023-08-28 19:15:43 +08:00
|
|
|
#include <zephyr/init.h>
|
2022-05-06 16:25:46 +08:00
|
|
|
#include <zephyr/drivers/timer/system_timer.h>
|
2022-10-04 21:33:53 +08:00
|
|
|
#include <zephyr/irq.h>
|
2022-05-06 16:25:46 +08:00
|
|
|
#include <zephyr/sys_clock.h>
|
|
|
|
#include <zephyr/spinlock.h>
|
2021-03-02 00:57:23 +08:00
|
|
|
#include "fsl_ostimer.h"
|
2021-03-30 23:43:13 +08:00
|
|
|
#include "fsl_power.h"
|
2021-03-02 00:57:23 +08:00
|
|
|
|
|
|
|
#define CYC_PER_TICK ((uint32_t)((uint64_t)sys_clock_hw_cycles_per_sec() \
|
|
|
|
/ (uint64_t)CONFIG_SYS_CLOCK_TICKS_PER_SEC))
|
|
|
|
#define MAX_CYC INT_MAX
|
|
|
|
#define MAX_TICKS ((MAX_CYC - CYC_PER_TICK) / CYC_PER_TICK)
|
|
|
|
#define MIN_DELAY 1000
|
|
|
|
|
|
|
|
#define TICKLESS IS_ENABLED(CONFIG_TICKLESS_KERNEL)
|
|
|
|
|
|
|
|
static struct k_spinlock lock;
|
|
|
|
static uint64_t last_count;
|
|
|
|
static OSTIMER_Type *base;
|
|
|
|
|
2022-01-06 18:27:07 +08:00
|
|
|
void mcux_lpc_ostick_isr(const void *arg)
|
2021-03-02 00:57:23 +08:00
|
|
|
{
|
|
|
|
ARG_UNUSED(arg);
|
|
|
|
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
uint64_t now = OSTIMER_GetCurrentTimerValue(base);
|
|
|
|
uint32_t dticks = (uint32_t)((now - last_count) / CYC_PER_TICK);
|
|
|
|
|
|
|
|
/* Clear interrupt flag by writing 1. */
|
|
|
|
base->OSEVENT_CTRL &= ~OSTIMER_OSEVENT_CTRL_OSTIMER_INTENA_MASK;
|
|
|
|
|
|
|
|
last_count += dticks * CYC_PER_TICK;
|
|
|
|
|
|
|
|
if (!TICKLESS) {
|
|
|
|
uint64_t next = last_count + CYC_PER_TICK;
|
|
|
|
|
|
|
|
if ((int64_t)(next - now) < MIN_DELAY) {
|
|
|
|
next += CYC_PER_TICK;
|
|
|
|
}
|
|
|
|
OSTIMER_SetMatchValue(base, next, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
sys_clock_announce(IS_ENABLED(CONFIG_TICKLESS_KERNEL) ? dticks : 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sys_clock_set_timeout(int32_t ticks, bool idle)
|
|
|
|
{
|
|
|
|
ARG_UNUSED(idle);
|
|
|
|
|
|
|
|
if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) {
|
|
|
|
/* Only for tickless kernel system */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ticks = ticks == K_TICKS_FOREVER ? MAX_TICKS : ticks;
|
|
|
|
ticks = CLAMP(ticks - 1, 0, (int32_t)MAX_TICKS);
|
|
|
|
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
uint64_t now = OSTIMER_GetCurrentTimerValue(base);
|
|
|
|
uint32_t adj, cyc = ticks * CYC_PER_TICK;
|
|
|
|
|
|
|
|
/* Round up to next tick boundary. */
|
|
|
|
adj = (uint32_t)(now - last_count) + (CYC_PER_TICK - 1);
|
|
|
|
if (cyc <= MAX_CYC - adj) {
|
|
|
|
cyc += adj;
|
|
|
|
} else {
|
|
|
|
cyc = MAX_CYC;
|
|
|
|
}
|
|
|
|
cyc = (cyc / CYC_PER_TICK) * CYC_PER_TICK;
|
|
|
|
|
|
|
|
if ((int32_t)(cyc + last_count - now) < MIN_DELAY) {
|
|
|
|
cyc += CYC_PER_TICK;
|
|
|
|
}
|
|
|
|
|
|
|
|
OSTIMER_SetMatchValue(base, cyc + last_count, NULL);
|
|
|
|
|
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t sys_clock_elapsed(void)
|
|
|
|
{
|
|
|
|
if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) {
|
|
|
|
/* Always return 0 for tickful kernel system */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
uint32_t ret = ((uint32_t)OSTIMER_GetCurrentTimerValue(base) -
|
|
|
|
(uint32_t)last_count) / CYC_PER_TICK;
|
|
|
|
|
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t sys_clock_cycle_get_32(void)
|
|
|
|
{
|
|
|
|
return (uint32_t)OSTIMER_GetCurrentTimerValue(base);
|
|
|
|
}
|
2021-10-30 08:10:35 +08:00
|
|
|
|
|
|
|
uint64_t sys_clock_cycle_get_64(void)
|
|
|
|
{
|
|
|
|
return OSTIMER_GetCurrentTimerValue(base);
|
|
|
|
}
|
2021-11-04 19:51:39 +08:00
|
|
|
|
init: remove the need for a dummy device pointer in SYS_INIT functions
The init infrastructure, found in `init.h`, is currently used by:
- `SYS_INIT`: to call functions before `main`
- `DEVICE_*`: to initialize devices
They are all sorted according to an initialization level + a priority.
`SYS_INIT` calls are really orthogonal to devices, however, the required
function signature requires a `const struct device *dev` as a first
argument. The only reason for that is because the same init machinery is
used by devices, so we have something like:
```c
struct init_entry {
int (*init)(const struct device *dev);
/* only set by DEVICE_*, otherwise NULL */
const struct device *dev;
}
```
As a result, we end up with such weird/ugly pattern:
```c
static int my_init(const struct device *dev)
{
/* always NULL! add ARG_UNUSED to avoid compiler warning */
ARG_UNUSED(dev);
...
}
```
This is really a result of poor internals isolation. This patch proposes
a to make init entries more flexible so that they can accept sytem
initialization calls like this:
```c
static int my_init(void)
{
...
}
```
This is achieved using a union:
```c
union init_function {
/* for SYS_INIT, used when init_entry.dev == NULL */
int (*sys)(void);
/* for DEVICE*, used when init_entry.dev != NULL */
int (*dev)(const struct device *dev);
};
struct init_entry {
/* stores init function (either for SYS_INIT or DEVICE*)
union init_function init_fn;
/* stores device pointer for DEVICE*, NULL for SYS_INIT. Allows
* to know which union entry to call.
*/
const struct device *dev;
}
```
This solution **does not increase ROM usage**, and allows to offer clean
public APIs for both SYS_INIT and DEVICE*. Note that however, init
machinery keeps a coupling with devices.
**NOTE**: This is a breaking change! All `SYS_INIT` functions will need
to be converted to the new signature. See the script offered in the
following commit.
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
init: convert SYS_INIT functions to the new signature
Conversion scripted using scripts/utils/migrate_sys_init.py.
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
manifest: update projects for SYS_INIT changes
Update modules with updated SYS_INIT calls:
- hal_ti
- lvgl
- sof
- TraceRecorderSource
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
tests: devicetree: devices: adjust test
Adjust test according to the recently introduced SYS_INIT
infrastructure.
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
tests: kernel: threads: adjust SYS_INIT call
Adjust to the new signature: int (*init_fn)(void);
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-10-19 15:33:44 +08:00
|
|
|
static int sys_clock_driver_init(void)
|
2021-11-04 19:51:39 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
/* Configure event timer's ISR */
|
|
|
|
IRQ_CONNECT(DT_INST_IRQN(0), DT_INST_IRQ(0, priority),
|
|
|
|
mcux_lpc_ostick_isr, NULL, 0);
|
|
|
|
|
|
|
|
base = (OSTIMER_Type *)DT_INST_REG_ADDR(0);
|
|
|
|
|
2023-04-28 00:50:21 +08:00
|
|
|
#if (DT_INST_PROP(0, wakeup_source))
|
|
|
|
EnableDeepSleepIRQ(DT_INST_IRQN(0));
|
|
|
|
#endif
|
2021-11-04 19:51:39 +08:00
|
|
|
|
|
|
|
/* Initialize the OS timer, setting clock configuration. */
|
|
|
|
OSTIMER_Init(base);
|
|
|
|
|
|
|
|
last_count = OSTIMER_GetCurrentTimerValue(base);
|
|
|
|
OSTIMER_SetMatchValue(base, last_count + CYC_PER_TICK, NULL);
|
|
|
|
|
|
|
|
/* Enable event timer interrupt */
|
|
|
|
irq_enable(DT_INST_IRQN(0));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYS_INIT(sys_clock_driver_init, PRE_KERNEL_2,
|
|
|
|
CONFIG_SYSTEM_CLOCK_INIT_PRIORITY);
|