st-thermal.txt 995 B

1234567891011121314151617181920212223242526272829303132
  1. Binding for Thermal Sensor driver for STMicroelectronics STi series of SoCs.
  2. Required parameters:
  3. -------------------
  4. compatible : Should be "st,stih407-thermal"
  5. clock-names : Should be "thermal".
  6. See: Documentation/devicetree/bindings/resource-names.txt
  7. clocks : Phandle of the clock used by the thermal sensor.
  8. See: Documentation/devicetree/bindings/clock/clock-bindings.txt
  9. Optional parameters:
  10. -------------------
  11. reg : For non-sysconf based sensors, this should be the physical base
  12. address and length of the sensor's registers.
  13. interrupts : Standard way to define interrupt number.
  14. NB: For thermal sensor's for which no interrupt has been
  15. defined, a polling delay of 1000ms will be used to read the
  16. temperature from device.
  17. Example:
  18. temp0@91a0000 {
  19. compatible = "st,stih407-thermal";
  20. reg = <0x91a0000 0x28>;
  21. clock-names = "thermal";
  22. clocks = <&CLK_SYSIN>;
  23. interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>;
  24. st,passive_cooling_temp = <110>;
  25. };