aspeed,ast2400-i2c-ic.txt 698 B

12345678910111213141516171819202122232425
  1. Device tree configuration for the I2C Interrupt Controller on the AST24XX and
  2. AST25XX SoCs.
  3. Required Properties:
  4. - #address-cells : should be 1
  5. - #size-cells : should be 1
  6. - #interrupt-cells : should be 1
  7. - compatible : should be "aspeed,ast2400-i2c-ic"
  8. or "aspeed,ast2500-i2c-ic"
  9. - reg : address start and range of controller
  10. - interrupts : interrupt number
  11. - interrupt-controller : denotes that the controller receives and fires
  12. new interrupts for child busses
  13. Example:
  14. i2c_ic: interrupt-controller@0 {
  15. #address-cells = <1>;
  16. #size-cells = <1>;
  17. #interrupt-cells = <1>;
  18. compatible = "aspeed,ast2400-i2c-ic";
  19. reg = <0x0 0x40>;
  20. interrupts = <12>;
  21. interrupt-controller;
  22. };