Linux kernel provided good readable timer operations in the code. ref timer
Some attributes of system timer in the kernel are:
It was not designed for time-critical kernel modules, as it takes much works during the tick, such like update jiffies, process accounting, RCU callback, _irq_work_etc.
Some throughput cared system was configed in the kernel configration with “NOHZ” option,
Invoke the tick during the “IDLE” state will offset the impact of the kernel “NOHZ” configration. We just want to invoke the callback instead of wake up other staffs.
Nearly all the embedded SoC have their design with 2 or more counter-based HW
timers, it was not wise design binding the periodic work to the system timer.
Write a simple Periodic-Timer-Service for the SoC with additional HW counters.
Some preconditions on this simple HW based timer framework are:
The counter based HW timer can be programmed to generate the interrupt for fast handling attached events.
Only periodic task was supported now.
Detail design
Public timer API
periodic_task_setup(void) // called during the init stage, init the needed data structures.
periodic_task_add(cpu, period, (*action), data, *name) // add period task into service.
periodic_task_remove(*task)/periodic_task_remove_all() // remove task from list.