timer.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #include "timer.h"
  2. #include <common/kprint.h>
  3. #include <exception/softirq.h>
  4. #include <mm/slab.h>
  5. #include <driver/timers/HPET/HPET.h>
  6. #include <process/process.h>
  7. struct timer_func_list_t timer_func_head;
  8. void test_timer()
  9. {
  10. printk_color(ORANGE, BLACK, "(test_timer)");
  11. }
  12. void timer_init()
  13. {
  14. timer_jiffies = 0;
  15. timer_func_init(&timer_func_head, NULL, NULL, -1UL);
  16. register_softirq(TIMER_SIRQ, &do_timer_softirq, NULL);
  17. struct timer_func_list_t *tmp = (struct timer_func_list_t *)kmalloc(sizeof(struct timer_func_list_t), 0);
  18. timer_func_init(tmp, &test_timer, NULL, 5);
  19. timer_func_add(tmp);
  20. kdebug("timer func initialized.");
  21. }
  22. void do_timer_softirq(void *data)
  23. {
  24. struct timer_func_list_t *tmp = container_of(list_next(&timer_func_head.list), struct timer_func_list_t, list);
  25. while ((!list_empty(&timer_func_head.list)) && (tmp->expire_jiffies <= timer_jiffies))
  26. {
  27. timer_func_del(tmp);
  28. tmp->func(tmp->data);
  29. kfree(tmp);
  30. tmp = container_of(list_next(&timer_func_head.list), struct timer_func_list_t, list);
  31. }
  32. }
  33. /**
  34. * @brief 初始化定时功能
  35. *
  36. * @param timer_func 队列结构体
  37. * @param func 定时功能处理函数
  38. * @param data 传输的数据
  39. * @param expire_ms 定时时长(单位:ms)
  40. */
  41. void timer_func_init(struct timer_func_list_t *timer_func, void (*func)(void *data), void *data, uint64_t expire_ms)
  42. {
  43. list_init(&timer_func->list);
  44. timer_func->func = func;
  45. timer_func->data = data,
  46. // timer_func->expire_jiffies = timer_jiffies + expire_ms / 5 + expire_ms % HPET0_INTERVAL ? 1 : 0; // 设置过期的时间片
  47. timer_func->expire_jiffies = cal_next_n_ms_jiffies(expire_ms); // 设置过期的时间片
  48. }
  49. /**
  50. * @brief 将定时功能添加到列表中
  51. *
  52. * @param timer_func 待添加的定时功能
  53. */
  54. void timer_func_add(struct timer_func_list_t *timer_func)
  55. {
  56. struct timer_func_list_t *tmp = container_of(list_next(&timer_func_head.list), struct timer_func_list_t, list);
  57. if (list_empty(&timer_func_head.list) == false)
  58. while (tmp->expire_jiffies < timer_func->expire_jiffies)
  59. tmp = container_of(list_next(&tmp->list), struct timer_func_list_t, list);
  60. list_add(&tmp->list, &(timer_func->list));
  61. }
  62. /**
  63. * @brief 将定时功能从列表中删除
  64. *
  65. * @param timer_func
  66. */
  67. void timer_func_del(struct timer_func_list_t *timer_func)
  68. {
  69. list_del(&timer_func->list);
  70. }