i2c-at91.txt 718 B

123456789101112131415161718192021222324252627282930
  1. I2C for Atmel platforms
  2. Required properties :
  3. - compatible : Must be "atmel,at91rm9200-i2c", "atmel,at91sam9261-i2c",
  4. "atmel,at91sam9260-i2c", "atmel,at91sam9g20-i2c", "atmel,at91sam9g10-i2c"
  5. or "atmel,at91sam9x5-i2c"
  6. - reg: physical base address of the controller and length of memory mapped
  7. region.
  8. - interrupts: interrupt number to the cpu.
  9. - #address-cells = <1>;
  10. - #size-cells = <0>;
  11. Optional properties:
  12. - Child nodes conforming to i2c bus binding
  13. Examples :
  14. i2c0: i2c@fff84000 {
  15. compatible = "atmel,at91sam9g20-i2c";
  16. reg = <0xfff84000 0x100>;
  17. interrupts = <12 4 6>;
  18. #address-cells = <1>;
  19. #size-cells = <0>;
  20. 24c512@50 {
  21. compatible = "24c512";
  22. reg = <0x50>;
  23. pagesize = <128>;
  24. }
  25. }