atmel-at91.txt 989 B

1234567891011121314151617181920212223242526272829303132
  1. Atmel AT91 device tree bindings.
  2. ================================
  3. PIT Timer required properties:
  4. - compatible: Should be "atmel,at91sam9260-pit"
  5. - reg: Should contain registers location and length
  6. - interrupts: Should contain interrupt for the PIT which is the IRQ line
  7. shared across all System Controller members.
  8. TC/TCLIB Timer required properties:
  9. - compatible: Should be "atmel,<chip>-pit".
  10. <chip> can be "at91rm9200" or "at91sam9x5"
  11. - reg: Should contain registers location and length
  12. - interrupts: Should contain all interrupts for the TC block
  13. Note that you can specify several interrupt cells if the TC
  14. block has one interrupt per channel.
  15. Examples:
  16. One interrupt per TC block:
  17. tcb0: timer@fff7c000 {
  18. compatible = "atmel,at91rm9200-tcb";
  19. reg = <0xfff7c000 0x100>;
  20. interrupts = <18 4>;
  21. };
  22. One interrupt per TC channel in a TC block:
  23. tcb1: timer@fffdc000 {
  24. compatible = "atmel,at91rm9200-tcb";
  25. reg = <0xfffdc000 0x100>;
  26. interrupts = <26 4 27 4 28 4>;
  27. };