1,353
社区成员
在QCS8550上, /sys/devices/virtual/thermal有很多温控节点,这个温控策略应该如何配置?
1、各模块如何配置温控节点?
2、trip_point_0_temp、trip_point_1_temp为什么没有递增关系?
A:大部分thermal zone都是高通默认配置,客户无须修改。
1、各模块如何配置温控节点?
A: cat /sys/devices/virtual/thermal/thermal_zone*/type
可以查看各个thermalzone的名称,可以通过名称在device tree的代码库里搜索对应的dts文件。
例如某thermalzone名称是“cpu-1-9“
搜索到kalama-thermal.dtsi
cpu-1-9 {
797 polling-delay-passive = <200>;
798 polling-delay = <0>;
799 thermal-sensors = <&tsens0 14>;
800 trips {
801 thermal-engine-config {
802 temperature = <125000>;
803 hysteresis = <1000>;
804 type = "passive";
805 };
806
807 thermal-hal-config {
808 temperature = <125000>;
809 hysteresis = <1000>;
810 type = "passive";
811 };
812
813 cpu7_emerg1: cpu7-emerg1-cfg {
814 temperature = <108000>;
815 hysteresis = <8000>;
816 type = "passive";
817 };
818
819 cpu7_emerg1_1: cpu7-emerg1-1-cfg {
820 temperature = <110000>;
821 hysteresis = <10000>;
822 type = "passive";
823 };
824
825 reset-mon-cfg {
826 temperature = <115000>;
827 hysteresis = <5000>;
828 type = "passive";
829 };
830 };
831
832 cooling-maps {
833 cpu19_cdev {
834 trip = <&cpu7_emerg1>;
835 cooling-device = <&cpu7_pause 1 1>;
836 };
837
838 cpu19_cdev1 {
839 trip = <&cpu7_emerg1_1>;
840 cooling-device = <&cpu7_hotplug 1 1>;
841 };
842 };
843 };
你可以通过修改dts里面cpu-1-9 节点下的配置来改变对应thermalzone的配置。
2、trip_point_0_temp、trip_point_1_temp为什么没有递增关系?
这个是按上面的trips节点下的temperature顺序依次排的,没有必定的递增递减关系。