diff options
author | Tom Rini <trini@konsulko.com> | 2019-06-20 21:52:31 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-06-20 21:52:31 -0400 |
commit | 226a35ef0ef310d8fffa3e6283ee3aab9dab26aa (patch) | |
tree | 22fe10155b4a590a165edaee8f5eb2b9b777b2fd /doc/device-tree-bindings/timer/fsl,mpc83xx-timer.txt | |
parent | f643fb9f4c8fc5c5dceb8c2c2893447d18413d77 (diff) | |
parent | 2bc1821e8662f9ed67cc6eeb680148bb5c148379 (diff) |
Merge branch '2019-06-20-master-imports'
- Assorted minor fixes
Diffstat (limited to 'doc/device-tree-bindings/timer/fsl,mpc83xx-timer.txt')
-rw-r--r-- | doc/device-tree-bindings/timer/fsl,mpc83xx-timer.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/timer/fsl,mpc83xx-timer.txt b/doc/device-tree-bindings/timer/fsl,mpc83xx-timer.txt new file mode 100644 index 0000000000..608d24110b --- /dev/null +++ b/doc/device-tree-bindings/timer/fsl,mpc83xx-timer.txt @@ -0,0 +1,21 @@ +MPC83xx timer devices + +MPC83xx SoCs offer a decrementer interrupt that can be used to implement delay +functionality, and periodically triggered actions. + +Required properties: +- compatible: must be "fsl,mpc83xx-timer" +- clocks: must be a reference to the system's CSB (coherent system bus) clock, + provided by one of the "fsl,mpc83xx-clk" devices + +Example: + +socclocks: clocks { + compatible = "fsl,mpc832x-clk"; + #clock-cells = <1>; +}; + +timer { + compatible = "fsl,mpc83xx-timer"; + clocks = <&socclocks MPC83XX_CLK_CSB>; +}; |