rcar-thermal.txt 586 B

1234567891011121314151617181920212223242526272829
  1. * Renesas R-Car Thermal
  2. Required properties:
  3. - compatible : "renesas,rcar-thermal"
  4. - reg : Address range of the thermal registers.
  5. The 1st reg will be recognized as common register
  6. if it has "interrupts".
  7. Option properties:
  8. - interrupts : use interrupt
  9. Example (non interrupt support):
  10. thermal@e61f0100 {
  11. compatible = "renesas,rcar-thermal";
  12. reg = <0xe61f0100 0x38>;
  13. };
  14. Example (interrupt support):
  15. thermal@e61f0000 {
  16. compatible = "renesas,rcar-thermal";
  17. reg = <0xe61f0000 0x14
  18. 0xe61f0100 0x38
  19. 0xe61f0200 0x38
  20. 0xe61f0300 0x38>;
  21. interrupts = <0 69 4>;
  22. };