thermal: seperate thermal config for charging

Separate thermal config for charger mode and remove the unused thermal
throttling.

Bug: 240897207
Test: thermalHAL init completed in charger.
Change-Id: I6e0c6869969ae1e817db00e2492afb3aaa2fe43d
This commit is contained in:
David Chao 2022-08-19 15:39:19 +08:00
parent 2b31d3c72d
commit 91f8937f1f
2 changed files with 12 additions and 1 deletions

View file

@ -107,7 +107,8 @@ DEVICE_MANIFEST_FILE += \
# Thermal Config
PRODUCT_COPY_FILES += \
device/google/felix/thermal_info_config_felix.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config.json
device/google/felix/thermal_info_config_felix.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config.json \
device/google/felix/thermal_info_config_charge_felix.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config_charge.json
# Power HAL config
PRODUCT_COPY_FILES += \

View file

@ -0,0 +1,10 @@
{
"Sensors":[
{
"Name":"battery",
"Type":"BATTERY",
"HotThreshold":["NAN", "NAN", "NAN", "NAN", "NAN", "NAN", 60.0],
"Multiplier":0.001
}
]
}