shengli's blog

Tick the World

Write a HW based periodic timer framework

Posted at — Aug 12, 2018

Introduction

Linux kernel provided good readable timer operations in the code. ref timer

Some attributes of system timer in the kernel are:

  1. 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.
  2. 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.
  3. 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:

Detail design

comments powered by Disqus