Back to home page

OSCL-LXR

 
 

    


0001 * Dialog DA9062/61 TJUNC Thermal Module
0002 
0003 This module is part of the DA9061/DA9062. For more details about entire
0004 DA9062 and DA9061 chips see Documentation/devicetree/bindings/mfd/da9062.txt
0005 
0006 Junction temperature thermal module uses an interrupt signal to identify
0007 high THERMAL_TRIP_HOT temperatures for the PMIC device.
0008 
0009 Required properties:
0010 
0011 - compatible: should be one of the following valid compatible string lines:
0012         "dlg,da9061-thermal", "dlg,da9062-thermal"
0013         "dlg,da9062-thermal"
0014 
0015 Optional properties:
0016 
0017 - polling-delay-passive : Specify the polling period, measured in
0018     milliseconds, between thermal zone device update checks.
0019 
0020 Example: DA9062
0021 
0022         pmic0: da9062@58 {
0023                 thermal {
0024                         compatible = "dlg,da9062-thermal";
0025                         polling-delay-passive = <3000>;
0026                 };
0027         };
0028 
0029 Example: DA9061 using a fall-back compatible for the DA9062 onkey driver
0030 
0031         pmic0: da9061@58 {
0032                 thermal {
0033                         compatible = "dlg,da9061-thermal", "dlg,da9062-thermal";
0034                         polling-delay-passive = <3000>;
0035                 };
0036         };