DragonOS/kernel/driver/timers/timer.c

81 lines
2.1 KiB
C
Raw Normal View History

2022-04-08 12:04:12 +00:00
#include "timer.h"
2022-04-08 13:26:42 +00:00
#include <common/kprint.h>
2022-04-08 12:04:12 +00:00
#include <exception/softirq.h>
2022-04-08 13:26:42 +00:00
#include <mm/slab.h>
void test_timer()
{
printk_color(ORANGE, BLACK, "(test_timer)");
}
2022-04-08 12:04:12 +00:00
void timer_init()
{
timer_jiffies = 0;
2022-04-08 13:26:42 +00:00
timer_func_init(&timer_func_head, NULL, NULL, -1UL);
2022-04-08 12:04:12 +00:00
register_softirq(0, &do_timer_softirq, NULL);
2022-04-08 13:26:42 +00:00
struct timer_func_list_t *tmp = (struct timer_func_list_t *)kmalloc(sizeof(struct timer_func_list_t), 0);
timer_func_init(tmp, &test_timer, NULL, 5);
timer_func_add(tmp);
kdebug("timer func initialized.");
2022-04-08 12:04:12 +00:00
}
2022-04-08 13:26:42 +00:00
void do_timer_softirq(void *data)
2022-04-08 12:04:12 +00:00
{
2022-04-08 13:26:42 +00:00
struct timer_func_list_t *tmp = container_of(list_next(&timer_func_head.list), struct timer_func_list_t, list);
while ((!list_empty(&timer_func_head.list)) && (tmp->expire_jiffies <= timer_jiffies))
{
timer_func_del(tmp);
tmp->func(tmp->data);
kfree(tmp);
tmp = container_of(list_next(&timer_func_head.list), struct timer_func_list_t, list);
}
2022-04-08 12:04:12 +00:00
printk_color(ORANGE, BLACK, "(HPET%ld)", timer_jiffies);
2022-04-08 13:26:42 +00:00
}
/**
* @brief
*
* @param timer_func
* @param func
* @param expire_jiffies
*/
void timer_func_init(struct timer_func_list_t *timer_func, void (*func)(void *data), void *data, uint64_t expire_jiffies)
{
list_init(&timer_func->list);
timer_func->func = func;
timer_func->data = data,
timer_func->expire_jiffies = timer_jiffies + expire_jiffies;
}
/**
* @brief
*
* @param timer_func
*/
void timer_func_add(struct timer_func_list_t *timer_func)
{
struct timer_func_list_t *tmp = container_of(list_next(&timer_func_head.list), struct timer_func_list_t, list);
if (list_empty(&timer_func_head.list) == false)
while (tmp->expire_jiffies < timer_func->expire_jiffies)
tmp = container_of(list_next(&tmp->list), struct timer_func_list_t, list);
list_add(&tmp->list, &(timer_func->list));
}
/**
* @brief
*
* @param timer_func
*/
void timer_func_del(struct timer_func_list_t *timer_func)
{
list_del(&timer_func->list);
2022-04-08 12:04:12 +00:00
}