~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_CN/arch/mips/ingenic-tcu.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 .. SPDX-License-Identifier: GPL-2.0
  2 
  3 .. include:: ../../disclaimer-zh_CN.rst
  4 
  5 :Original: Documentation/arch/mips/ingenic-tcu.rst
  6 
  7 :翻译:
  8 
  9  司延腾 Yanteng Si <siyanteng@loongson.cn>
 10 
 11 .. _cn_ingenic-tcu:
 12 
 13 ===============================================
 14 君正 JZ47xx SoC定时器/计数器硬件单元
 15 ===============================================
 16 
 17 君正 JZ47xx SoC中的定时器/计数器单元(TCU)是一个多功能硬件块。它有多达
 18 8个通道,可以用作计数器,计时器,或脉冲宽度调制器。
 19 
 20 - JZ4725B, JZ4750, JZ4755 只有6个TCU通道。其它SoC都有8个通道。
 21 
 22 - JZ4725B引入了一个独立的通道,称为操作系统计时器(OST)。这是一个32位可
 23   编程定时器。在JZ4760B及以上型号上,它是64位的。
 24 
 25 - 每个TCU通道都有自己的时钟源,可以通过 TCSR 寄存器设置通道的父级时钟
 26   源(pclk、ext、rtc)、开关以及分频。
 27 
 28     - 看门狗和OST硬件模块在它们的寄存器空间中也有相同形式的TCSR寄存器。
 29     - 用于关闭/开启的 TCU 寄存器也可以关闭/开启看门狗和 OST 时钟。
 30 
 31 - 每个TCU通道在两种模式的其中一种模式下运行:
 32 
 33     - 模式 TCU1:通道无法在睡眠模式下运行,但更易于操作。
 34     - 模式 TCU2:通道可以在睡眠模式下运行,但操作比 TCU1 通道复杂一些。
 35 
 36 - 每个 TCU 通道的模式取决于使用的SoC:
 37 
 38     - 在最老的SoC(高于JZ4740),八个通道都运行在TCU1模式。
 39     - 在 JZ4725B,通道5运行在TCU2,其它通道则运行在TCU1。
 40     - 在最新的SoC(JZ4750及之后),通道1-2运行在TCU2,其它通道则运行
 41       在TCU1。
 42 
 43 - 每个通道都可以生成中断。有些通道共享一条中断线,而有些没有,其在SoC型
 44   号之间的变更:
 45 
 46     - 在很老的SoC(JZ4740及更低),通道0和通道1有它们自己的中断线;通
 47       道2-7共享最后一条中断线。
 48     - 在 JZ4725B,通道0有它自己的中断线;通道1-5共享一条中断线;OST
 49       使用最后一条中断线。
 50     - 在比较新的SoC(JZ4750及以后),通道5有它自己的中断线;通
 51       道0-4和(如果是8通道)6-7全部共享一条中断线;OST使用最后一条中
 52       断线。
 53 
 54 实现
 55 ====
 56 
 57 TCU硬件的功能分布在多个驱动程序:
 58 
 59 ==============      ===================================
 60 时钟                drivers/clk/ingenic/tcu.c
 61 中断                drivers/irqchip/irq-ingenic-tcu.c
 62 定时器              drivers/clocksource/ingenic-timer.c
 63 OST                 drivers/clocksource/ingenic-ost.c
 64 脉冲宽度调制器      drivers/pwm/pwm-jz4740.c
 65 看门狗              drivers/watchdog/jz4740_wdt.c
 66 ==============      ===================================
 67 
 68 因为可以从相同的寄存器控制属于不同驱动程序和框架的TCU的各种功能,所以
 69 所有这些驱动程序都通过相同的控制总线通用接口访问它们的寄存器。
 70 
 71 有关TCU驱动程序的设备树绑定的更多信息,请参阅:
 72 Documentation/devicetree/bindings/timer/ingenic,tcu.yaml.

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php