dw-apb.txt 691 B

12345678910111213141516171819202122232425
  1. * Designware APB timer
  2. Required properties:
  3. - compatible: "snps,dw-apb-timer-sp" or "snps,dw-apb-timer-osc"
  4. - reg: physical base address of the controller and length of memory mapped
  5. region.
  6. - interrupts: IRQ line for the timer.
  7. - clock-frequency: The frequency in HZ of the timer.
  8. - clock-freq: For backwards compatibility with picoxcell
  9. Example:
  10. timer1: timer@ffc09000 {
  11. compatible = "snps,dw-apb-timer-sp";
  12. interrupts = <0 168 4>;
  13. clock-frequency = <200000000>;
  14. reg = <0xffc09000 0x1000>;
  15. };
  16. timer2: timer@ffd00000 {
  17. compatible = "snps,dw-apb-timer-osc";
  18. interrupts = <0 169 4>;
  19. clock-frequency = <200000000>;
  20. reg = <0xffd00000 0x1000>;
  21. };