fsl,mpc83xx-timer.txt 522 B

123456789101112131415161718192021
  1. MPC83xx timer devices
  2. MPC83xx SoCs offer a decrementer interrupt that can be used to implement delay
  3. functionality, and periodically triggered actions.
  4. Required properties:
  5. - compatible: must be "fsl,mpc83xx-timer"
  6. - clocks: must be a reference to the system's CSB (coherent system bus) clock,
  7. provided by one of the "fsl,mpc83xx-clk" devices
  8. Example:
  9. socclocks: clocks {
  10. compatible = "fsl,mpc832x-clk";
  11. #clock-cells = <1>;
  12. };
  13. timer {
  14. compatible = "fsl,mpc83xx-timer";
  15. clocks = <&socclocks MPC83XX_CLK_CSB>;
  16. };