The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/thermal/brcm,bcm2835-thermal.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Binding for Thermal Sensor driver for BCM2835 SoCs.
    2 
    3 Required parameters:
    4 -------------------
    5 
    6 compatible:             should be one of: "brcm,bcm2835-thermal",
    7                         "brcm,bcm2836-thermal" or "brcm,bcm2837-thermal"
    8 reg:                    Address range of the thermal registers.
    9 clocks:                 Phandle of the clock used by the thermal sensor.
   10 #thermal-sensor-cells:  should be 0 (see Documentation/devicetree/bindings/thermal/thermal-sensor.yaml)
   11 
   12 Example:
   13 
   14 thermal-zones {
   15         cpu_thermal: cpu-thermal {
   16                 polling-delay-passive = <0>;
   17                 polling-delay = <1000>;
   18 
   19                 thermal-sensors = <&thermal>;
   20 
   21                 trips {
   22                         cpu-crit {
   23                                 temperature     = <80000>;
   24                                 hysteresis      = <0>;
   25                                 type            = "critical";
   26                         };
   27                 };
   28 
   29                 coefficients = <(-538)  407000>;
   30 
   31                 cooling-maps {
   32                 };
   33         };
   34 };
   35 
   36 thermal: thermal@7e212000 {
   37         compatible = "brcm,bcm2835-thermal";
   38         reg = <0x7e212000 0x8>;
   39         clocks = <&clocks BCM2835_CLOCK_TSENS>;
   40         #thermal-sensor-cells = <0>;
   41 };

Cache object: 96a87cfd2471eaa7c29d0def12e71397


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.