brcm,kona-timer.txt 761 B

12345678910111213141516171819202122232425
  1. Broadcom Kona Family timer
  2. -----------------------------------------------------
  3. This timer is used in the following Broadcom SoCs:
  4. BCM11130, BCM11140, BCM11351, BCM28145, BCM28155
  5. Required properties:
  6. - compatible : "brcm,kona-timer"
  7. - DEPRECATED: compatible : "bcm,kona-timer"
  8. - reg : Register range for the timer
  9. - interrupts : interrupt for the timer
  10. - clocks: phandle + clock specifier pair of the external clock
  11. - clock-frequency: frequency that the clock operates
  12. Only one of clocks or clock-frequency should be specified.
  13. Refer to clocks/clock-bindings.txt for generic clock consumer properties.
  14. Example:
  15. timer@35006000 {
  16. compatible = "brcm,kona-timer";
  17. reg = <0x35006000 0x1000>;
  18. interrupts = <0x0 7 0x4>;
  19. clocks = <&hub_timer_clk>;
  20. };