spear-timer.txt 426 B

12345678910111213141516171819
  1. * SPEAr ARM Timer
  2. ** Timer node required properties:
  3. - compatible : Should be:
  4. "st,spear-timer"
  5. - reg: Address range of the timer registers
  6. - interrupt-parent: Should be the phandle for the interrupt controller
  7. that services interrupts for this device
  8. - interrupt: Should contain the timer interrupt number
  9. Example:
  10. timer@f0000000 {
  11. compatible = "st,spear-timer";
  12. reg = <0xf0000000 0x400>;
  13. interrupts = <2>;
  14. };