ti,c64x+timer64.txt 570 B

12345678910111213141516171819202122232425
  1. Timer64
  2. -------
  3. The timer64 node describes C6X event timers.
  4. Required properties:
  5. - compatible: must be "ti,c64x+timer64"
  6. - reg: base address and size of register region
  7. - interrupts: interrupt id
  8. Optional properties:
  9. - ti,dscr-dev-enable: Device ID used to enable timer IP through DSCR interface.
  10. - ti,core-mask: on multi-core SoCs, bitmask of cores allowed to use this timer.
  11. Example:
  12. timer0: timer@25e0000 {
  13. compatible = "ti,c64x+timer64";
  14. ti,core-mask = < 0x01 >;
  15. reg = <0x25e0000 0x40>;
  16. interrupt-parent = <&megamod_pic>;
  17. interrupts = < 16 >;
  18. };