138 lines
2.6 KiB
C
138 lines
2.6 KiB
C
|
/*
|
||
|
* Copyright (c) 2018 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <kernel_structs.h>
|
||
|
#include <cmsis_os.h>
|
||
|
|
||
|
#define ACTIVE 1
|
||
|
#define NOT_ACTIVE 0
|
||
|
|
||
|
static void zephyr_timer_wrapper(struct k_timer *timer);
|
||
|
|
||
|
struct timer_obj {
|
||
|
struct k_timer ztimer;
|
||
|
os_timer_type type;
|
||
|
u32_t status;
|
||
|
void (*callback_function)(void const *argument);
|
||
|
void *arg;
|
||
|
};
|
||
|
|
||
|
K_MEM_SLAB_DEFINE(cmsis_timer_slab, sizeof(struct timer_obj),
|
||
|
CONFIG_CMSIS_TIMER_MAX_COUNT, 4);
|
||
|
|
||
|
static void zephyr_timer_wrapper(struct k_timer *timer)
|
||
|
{
|
||
|
struct timer_obj *cm_timer;
|
||
|
|
||
|
cm_timer = CONTAINER_OF(timer, struct timer_obj, ztimer);
|
||
|
(cm_timer->callback_function)(cm_timer->arg);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Create a Timer
|
||
|
*/
|
||
|
osTimerId osTimerCreate(const osTimerDef_t *timer_def, os_timer_type type,
|
||
|
void *argument)
|
||
|
{
|
||
|
struct timer_obj *timer;
|
||
|
|
||
|
if (timer_def == NULL) {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
if (type != osTimerOnce && type != osTimerPeriodic) {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
if (k_mem_slab_alloc(&cmsis_timer_slab, (void **)&timer, 100) == 0) {
|
||
|
memset(timer, 0, sizeof(struct timer_obj));
|
||
|
} else {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
timer->callback_function = timer_def->ptimer;
|
||
|
timer->arg = argument;
|
||
|
timer->type = type;
|
||
|
timer->status = NOT_ACTIVE;
|
||
|
|
||
|
k_timer_init(&timer->ztimer, zephyr_timer_wrapper, NULL);
|
||
|
|
||
|
return (osTimerId)timer;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Start or restart a Timer
|
||
|
*/
|
||
|
osStatus osTimerStart(osTimerId timer_id, uint32_t millisec)
|
||
|
{
|
||
|
struct timer_obj *timer = (struct timer_obj *) timer_id;
|
||
|
|
||
|
if (timer == NULL) {
|
||
|
return osErrorParameter;
|
||
|
}
|
||
|
|
||
|
if (_is_in_isr()) {
|
||
|
return osErrorISR;
|
||
|
}
|
||
|
|
||
|
if (timer->type == osTimerOnce) {
|
||
|
k_timer_start(&timer->ztimer, millisec, 0);
|
||
|
} else if (timer->type == osTimerPeriodic) {
|
||
|
k_timer_start(&timer->ztimer, 0, millisec);
|
||
|
}
|
||
|
|
||
|
timer->status = ACTIVE;
|
||
|
return osOK;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Stop the Timer
|
||
|
*/
|
||
|
osStatus osTimerStop(osTimerId timer_id)
|
||
|
{
|
||
|
struct timer_obj *timer = (struct timer_obj *) timer_id;
|
||
|
|
||
|
if (timer == NULL) {
|
||
|
return osErrorParameter;
|
||
|
}
|
||
|
|
||
|
if (_is_in_isr()) {
|
||
|
return osErrorISR;
|
||
|
}
|
||
|
|
||
|
if (timer->status == NOT_ACTIVE) {
|
||
|
return osErrorResource;
|
||
|
}
|
||
|
|
||
|
k_timer_stop(&timer->ztimer);
|
||
|
timer->status = NOT_ACTIVE;
|
||
|
return osOK;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Delete the timer that was created by osTimerCreate
|
||
|
*/
|
||
|
osStatus osTimerDelete(osTimerId timer_id)
|
||
|
{
|
||
|
struct timer_obj *timer = (struct timer_obj *) timer_id;
|
||
|
|
||
|
if (timer == NULL) {
|
||
|
return osErrorParameter;
|
||
|
}
|
||
|
|
||
|
if (_is_in_isr()) {
|
||
|
return osErrorISR;
|
||
|
}
|
||
|
|
||
|
if (timer->status == ACTIVE) {
|
||
|
k_timer_stop(&timer->ztimer);
|
||
|
timer->status = NOT_ACTIVE;
|
||
|
}
|
||
|
|
||
|
k_mem_slab_free(&cmsis_timer_slab, (void *) &timer);
|
||
|
return osOK;
|
||
|
}
|