Ziyi Cui 3add9b2b48 gs-common:dumpstate: Combine Temperature Residency bugreport to pixel_metrics
Bug: 246799997
Test: Test: "adb bugreport" includes temp residency metrics capture.
Change-Id: I51eb7f961bd1ddeb0b7cd7bb33d1a19fef9b2c92
2022-11-28 20:16:47 +00:00

47 lines
1.5 KiB
Bash

#!/vendor/bin/sh
echo "Temperatures"
for f in /sys/class/thermal/thermal* ; do
printf "%s: %s\n" `cat $f/type` `cat $f/temp`
done
echo "Cooling Device Current State"
for f in /sys/class/thermal/cooling* ; do
printf "%s: %s\n" `cat $f/type` `cat $f/cur_state`
done
echo "Cooling Device User Vote State"
for f in /sys/class/thermal/cooling* ; do
if [ ! -f $f/user_vote ]; then continue; fi;
printf "%s: %s\n" `cat $f/type` `cat $f/user_vote`
done
echo "Cooling Device Time in State"
for f in /sys/class/thermal/cooling* ; do
printf "%s: %s\n" `cat $f/type` `cat $f/stats/time_in_state_ms`
done
echo "Cooling Device Trans Table"
for f in /sys/class/thermal/cooling* ; do
printf "%s: %s\n" `cat $f/type` `cat $f/stats/trans_table`
done
echo "Cooling Device State2Power Table"
for f in /sys/class/thermal/cooling* ; do
if [ ! -f $f/state2power_table ]; then continue; fi;
printf "%s: %s\n" `cat $f/type` `cat $f/state2power_table`
done
echo "TMU state:"
cat /sys/module/gs_thermal/parameters/tmu_reg_dump_state
echo "TMU current temperature:"
cat /sys/module/gs_thermal/parameters/tmu_reg_dump_current_temp
echo "TMU_TOP rise thresholds:"
cat /sys/module/gs_thermal/parameters/tmu_top_reg_dump_rise_thres
echo "TMU_TOP fall thresholds:"
cat /sys/module/gs_thermal/parameters/tmu_top_reg_dump_fall_thres
echo "TMU_SUB rise thresholds:"
cat /sys/module/gs_thermal/parameters/tmu_sub_reg_dump_rise_thres
echo "TMU_SUB fall thresholds:"
cat /sys/module/gs_thermal/parameters/tmu_sub_reg_dump_fall_thres