2023/1/17

Note of Linux bottom-half handling - Softirq, tasklet, workqueue, and threaded interrupt

最近因為手上的問題,花了些時間了解 Linux 上的 bottom-half 機制,記錄下看了甚麼。

重點整理

Softirq

  • Software Interrupt context
    • Enable handling of hardware interrupt
    • The timing of executing softirq handlers
      • (1) exit of HW ISR
      • (2) running at ksoftirqd
      • (3) explicitly call do_softirq
    • Not allowed bottom-half context switch
      • no sleep, no scheduling, and no user memory access
  • Normal priority kernel thread per CPU basis, i.e. ksoftirqd
    • ksoftirqd/n, n is the CPU number
  • Each softirq thread has the same softirq handler.
    • Softirq of the same type can run on multiple CPUs
      • Each CPU has a set of softirq pending status bits
      • The registered softirq handlers are shared by CPUs
    • When one softirq handler is running, another softirq handler can run on another CPU.
      • Disable local CPU bottom-half
      • Enable local CPU interrupt
  • Statically allocated. Only 10 softirqs by default. 
    • Has problem on loadable kernel module. Solved by using tasklet.
  • Postpone the user-space execution
    • softirq has time limit to prevent it's too long
  • Basis of tasklet

Tasklet

  • Implemented upon softirqs (tasklet_sofirq and hi_softirq)
  • Software Interrupt context
  • A tasklet only run on one CPU
  • Different tasklets can run concurrently on multiple CPUs
    • Per-cpu taskelet list
    • Tasket_softirq and hi_softirq
  • Run atomically in a run-to-complete fashion

Work queue

  • Implemented upon kernel thread
  • Process context
  • Permit handlers to sleep

Above methods (softirq, tasklet, work queue) need us to explicitly arrange them in top-half handlers.

Threaded interrupts

  • Recommended way to implement bottom-half
  • Handle the complex of hardirq -> tasklet/softirq interaction and locking problems
  • Prioritizing the handlers share an interrupt line

參考資料

2021/1/29

Cross compile mtd-utils

2019/10/23

為什麼 GPIO input 要用 pull-up/pull-down,output 要用 push-pull 或 open-drain?


最近花了點時間研究了 GPIO 為什麼有那麼多的設定要選,有 pull-up / pull-down,還有 push-pull。上網一查,發現相關的心得文章超多,代表了有很多的人都跟我一樣,時間和精神去了解,然後覺得有點價值,值得寫文章記錄下來。

目前看了幾篇文章覺得很有參考價值的有下面幾篇。

Open Drain Output vs. Push-Pull Output

2019/10/17

Make produces "No such file or directory" error in Cygwin


最近需要裝 Cygwin 來 build code,當裝完後執行 Make 時卻發生找不到 source,一直說 "No such file or directory"。

奇怪的是,source 放在 Make 旁邊時可以找到,但是放在子資料夾或是不同資料夾的話就找不到。本來以為是自己路徑給錯,但仔細檢查後又是對的,用 cat 或 ls 也可以找到相對應的 source。

問了下 Google,就在這篇找到 Hint,用 'whereis make' 看了下 make 的路徑,才發覺用到了別的 toolchain 的 make,而不是 Cygwin 提供的 make。

2019/10/3

context switch 到底在做甚麼?

簡單的說,'context switch' 就是切換  'context'。而所謂的 'context',指的就是當下 CPU  registers 的內容。

因為當程式在執行時,所做的事情就是從 memory 中讀取指令和依照指令做計算。CPU 在做這兩件事情時,就是用 core registers (CPU 內部的 register) 來紀錄讀取到哪裡了,以及當作計算時的暫存區域。

當 CPU 做事做到一半,如果有事件發生了,而且這個事件的處理所用到的 core registers 會把目前的進度蓋掉的話,CPU 就會先需要把 core registers 目前的值先暫存到 memory 的某個地方,等 CPU 處理完事件之後,再把暫存的值讀回來,就可以從事件發生時中斷的地方在繼續處理。這就是所謂的 'context switch'。

2019/6/3

Transform hex to decimal in excel


col\row   | 0    | 1   |
------------------------
       A  | 0x123| 291 |