Merge 24Q4 into AOSP main
Bug: 370570306 Merged-In: I7a1ff29ea0f18c2d339091aaec5b723fa7fdbf17 Change-Id: I15b600be7ee81b614247c74a071d7f9237492b0d
This commit is contained in:
commit
f071c06bfb
11 changed files with 287 additions and 444 deletions
|
@ -43,6 +43,7 @@ BOARD_KERNEL_CMDLINE += disable_dma32=on
|
||||||
include device/google/gs101/BoardConfig-common.mk
|
include device/google/gs101/BoardConfig-common.mk
|
||||||
include device/google/gs101/wifi/BoardConfig-wifi.mk
|
include device/google/gs101/wifi/BoardConfig-wifi.mk
|
||||||
-include vendor/google_devices/gs101/prebuilts/BoardConfigVendor.mk
|
-include vendor/google_devices/gs101/prebuilts/BoardConfigVendor.mk
|
||||||
|
include device/google/gs-common/check_current_prebuilt/check_current_prebuilt.mk
|
||||||
-include vendor/google_devices/bluejay/proprietary/BoardConfigVendor.mk
|
-include vendor/google_devices/bluejay/proprietary/BoardConfigVendor.mk
|
||||||
|
|
||||||
$(call soong_config_set,google3a_config,target_device,bluejay)
|
$(call soong_config_set,google3a_config,target_device,bluejay)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<item>36</item>
|
<item>36</item>
|
||||||
</integer-array>
|
</integer-array>
|
||||||
<integer-array name="antenna_y">
|
<integer-array name="antenna_y">
|
||||||
<item>83</item>
|
<item>67</item>
|
||||||
</integer-array>
|
</integer-array>
|
||||||
<bool name="nfc_observe_mode_supported">true</bool>
|
<bool name="nfc_observe_mode_supported">true</bool>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -40,6 +40,9 @@ on property:vendor.all.modules.ready=1
|
||||||
chown system system /sys/bus/i2c/devices/8-0043/calibration/redc_stored
|
chown system system /sys/bus/i2c/devices/8-0043/calibration/redc_stored
|
||||||
chown system system /sys/bus/i2c/devices/8-0043/default/vibe_state
|
chown system system /sys/bus/i2c/devices/8-0043/default/vibe_state
|
||||||
chown system system /sys/bus/i2c/devices/8-0043/default/num_waves
|
chown system system /sys/bus/i2c/devices/8-0043/default/num_waves
|
||||||
|
chown system system /sys/bus/i2c/devices/8-0043/default/braking_time_bank
|
||||||
|
chown system system /sys/bus/i2c/devices/8-0043/default/braking_time_index
|
||||||
|
chown system system /sys/bus/i2c/devices/8-0043/default/braking_time_ms
|
||||||
chown system system /sys/bus/i2c/devices/8-0043/default/f0_offset
|
chown system system /sys/bus/i2c/devices/8-0043/default/f0_offset
|
||||||
chown system system /sys/bus/i2c/devices/8-0043/default/owt_free_space
|
chown system system /sys/bus/i2c/devices/8-0043/default/owt_free_space
|
||||||
chown system system /sys/bus/i2c/devices/8-0043/default/f0_comp_enable
|
chown system system /sys/bus/i2c/devices/8-0043/default/f0_comp_enable
|
||||||
|
|
|
@ -133,12 +133,31 @@ ifdef RELEASE_SVN_BLUEJAY
|
||||||
TARGET_SVN ?= $(RELEASE_SVN_BLUEJAY)
|
TARGET_SVN ?= $(RELEASE_SVN_BLUEJAY)
|
||||||
else
|
else
|
||||||
# Set this for older releases that don't use build flag
|
# Set this for older releases that don't use build flag
|
||||||
TARGET_SVN ?= 64
|
TARGET_SVN ?= 65
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PRODUCT_VENDOR_PROPERTIES += \
|
PRODUCT_VENDOR_PROPERTIES += \
|
||||||
ro.vendor.build.svn=$(TARGET_SVN)
|
ro.vendor.build.svn=$(TARGET_SVN)
|
||||||
|
|
||||||
|
# Set device family property for SMR
|
||||||
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
|
ro.build.device_family=O6R4B9
|
||||||
|
|
||||||
|
# Set build properties for SMR builds
|
||||||
|
ifeq ($(RELEASE_IS_SMR), true)
|
||||||
|
ifneq (,$(RELEASE_BASE_OS_BLUEJAY))
|
||||||
|
PRODUCT_BASE_OS := $(RELEASE_BASE_OS_BLUEJAY)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Set build properties for EMR builds
|
||||||
|
ifeq ($(RELEASE_IS_EMR), true)
|
||||||
|
ifneq (,$(RELEASE_BASE_OS_BLUEJAY))
|
||||||
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
|
ro.build.version.emergency_base_os=$(RELEASE_BASE_OS_BLUEJAY)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
# DCK properties based on target
|
# DCK properties based on target
|
||||||
PRODUCT_PROPERTY_OVERRIDES += \
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
ro.gms.dck.eligible_wcc=2 \
|
ro.gms.dck.eligible_wcc=2 \
|
||||||
|
@ -226,11 +245,21 @@ PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
|
|
||||||
# GPS xml
|
# GPS xml
|
||||||
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
||||||
|
ifneq (,$(filter 6.1, $(TARGET_LINUX_KERNEL_VERSION)))
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/bluejay/gps.6.1.xml.b3:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
else
|
||||||
PRODUCT_COPY_FILES += \
|
PRODUCT_COPY_FILES += \
|
||||||
device/google/bluejay/gps.xml.b3:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
device/google/bluejay/gps.xml.b3:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
|
ifneq (,$(filter 6.1, $(TARGET_LINUX_KERNEL_VERSION)))
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/bluejay/gps_user.6.1.xml.b3:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
else
|
||||||
PRODUCT_COPY_FILES += \
|
PRODUCT_COPY_FILES += \
|
||||||
device/google/bluejay/gps_user.xml.b3:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
device/google/bluejay/gps_user.xml.b3:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# This device is shipped with 32 (Android S V2)
|
# This device is shipped with 32 (Android S V2)
|
||||||
|
@ -239,8 +268,8 @@ PRODUCT_SHIPPING_API_LEVEL := 32
|
||||||
# Vibrator HAL
|
# Vibrator HAL
|
||||||
$(call soong_config_set,haptics,kernel_ver,v$(subst .,_,$(TARGET_LINUX_KERNEL_VERSION)))
|
$(call soong_config_set,haptics,kernel_ver,v$(subst .,_,$(TARGET_LINUX_KERNEL_VERSION)))
|
||||||
ADAPTIVE_HAPTICS_FEATURE := adaptive_haptics_v1
|
ADAPTIVE_HAPTICS_FEATURE := adaptive_haptics_v1
|
||||||
|
ACTUATOR_MODEL := legacy_zlra_actuator
|
||||||
PRODUCT_VENDOR_PROPERTIES += \
|
PRODUCT_VENDOR_PROPERTIES += \
|
||||||
ro.vendor.vibrator.hal.supported_primitives=243 \
|
|
||||||
ro.vendor.vibrator.hal.f0.comp.enabled=0 \
|
ro.vendor.vibrator.hal.f0.comp.enabled=0 \
|
||||||
ro.vendor.vibrator.hal.redc.comp.enabled=0 \
|
ro.vendor.vibrator.hal.redc.comp.enabled=0 \
|
||||||
persist.vendor.vibrator.hal.context.enable=false \
|
persist.vendor.vibrator.hal.context.enable=false \
|
||||||
|
@ -249,6 +278,10 @@ PRODUCT_VENDOR_PROPERTIES += \
|
||||||
persist.vendor.vibrator.hal.context.cooldowntime=1600 \
|
persist.vendor.vibrator.hal.context.cooldowntime=1600 \
|
||||||
persist.vendor.vibrator.hal.context.settlingtime=5000
|
persist.vendor.vibrator.hal.context.settlingtime=5000
|
||||||
|
|
||||||
|
# Override Output Distortion Gain
|
||||||
|
PRODUCT_VENDOR_PROPERTIES += \
|
||||||
|
vendor.audio.hapticgenerator.distortion.output.gain=0.29
|
||||||
|
|
||||||
# Device features
|
# Device features
|
||||||
PRODUCT_COPY_FILES += \
|
PRODUCT_COPY_FILES += \
|
||||||
frameworks/native/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml
|
frameworks/native/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml
|
||||||
|
@ -274,3 +307,8 @@ PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
|
|
||||||
# Disable AVF Remote Attestation
|
# Disable AVF Remote Attestation
|
||||||
PRODUCT_AVF_REMOTE_ATTESTATION_DISABLED := true
|
PRODUCT_AVF_REMOTE_ATTESTATION_DISABLED := true
|
||||||
|
|
||||||
|
# Bluetooth device id
|
||||||
|
# Bluejay: 0x4108
|
||||||
|
PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
|
bluetooth.device_id.product_id=16648
|
||||||
|
|
105
gps.6.1.xml.b3
Normal file
105
gps.6.1.xml.b3
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<glgps xmlns="http://www.glpals.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.glpals.com/ glconfig.xsd" >
|
||||||
|
<hal
|
||||||
|
PortName="/dev/ttyBCM"
|
||||||
|
BaudRate="921600"
|
||||||
|
GpioNStdbyPath="/sys/devices/platform/10940000.spi/spi_master/spi5/spi5.0/nstandby"
|
||||||
|
CustGpioDelayMs="250"
|
||||||
|
LogEnabled="true"
|
||||||
|
Log="JAVA"
|
||||||
|
SecondaryConfigPath="/data/vendor/gps/overlay/gps_overlay.xml"
|
||||||
|
LogDirectory="/sdcard/gps/broadcom/storage/"
|
||||||
|
CtrlPipe="/data/vendor/gps/glgpsctrl"
|
||||||
|
NmeaOutName="/data/vendor/gps/nmea_out"
|
||||||
|
|
||||||
|
acSuplServer="supl.google.com"
|
||||||
|
SuplPort="7275"
|
||||||
|
SuplLogEnable="true"
|
||||||
|
SuplLogFullName="/data/vendor/gps/suplflow.txt"
|
||||||
|
tlsEnable="true"
|
||||||
|
|
||||||
|
SuplSslMethod="SSLv23"
|
||||||
|
SuplEnable="true"
|
||||||
|
SuplUseApn="false"
|
||||||
|
SuplUseApnNI="true"
|
||||||
|
SuplDummyCellInfo="true"
|
||||||
|
SuplUseFwCellInfo="false"
|
||||||
|
SuplTlsCertDirPath="/etc/security/cacerts"
|
||||||
|
SuplTlsCertPath="/vendor/etc/gnss/gps.cer"
|
||||||
|
SuplUT1Seconds="20"
|
||||||
|
SuplUT2Seconds="20"
|
||||||
|
SuplUT3Seconds="20"
|
||||||
|
TcpConnectionTimeout="20"
|
||||||
|
SuplLppCapable="true"
|
||||||
|
SuplEcidCapable="true"
|
||||||
|
SuplVersion="2"
|
||||||
|
SuplMinorVersion="0"
|
||||||
|
SuplOtdoaCapable="true"
|
||||||
|
SuplOtdoaCapable2="true"
|
||||||
|
SuplGlonassCapable = "true"
|
||||||
|
SuplGalileoCapable = "true"
|
||||||
|
SuplBdsCapable = "true"
|
||||||
|
SuplMgpsCapable = "true"
|
||||||
|
|
||||||
|
RtoEnable="true"
|
||||||
|
RtiEnable="true"
|
||||||
|
HttpSyncLto="true"
|
||||||
|
LtoFileName="lto2.dat"
|
||||||
|
LtoDir="/data/vendor/gps/"
|
||||||
|
LtoSyncThresholdDays="1"
|
||||||
|
|
||||||
|
GnssYearOfHardware="2020"
|
||||||
|
CpEarlyFixGuardTimeSec="1"
|
||||||
|
CpGuardTimeSec="1"
|
||||||
|
CpLppGuardTimeSec="1"
|
||||||
|
IgnoreInjectedSystemTime="true"
|
||||||
|
|
||||||
|
AttributionAppPkgName="com.google.android.carrierlocation"
|
||||||
|
|
||||||
|
AssertEnabled="true"
|
||||||
|
ExitOnComFailure="true"
|
||||||
|
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
||||||
|
CpLppeUseAgnssLocForEmptyDbh="true"
|
||||||
|
ReAidingOnHotStart="false"
|
||||||
|
ReAidingIntervalSec="3600"
|
||||||
|
PpsDevice="/sys/devices/platform/bbd_pps/pps_assert"
|
||||||
|
SensorsMask="0x244"
|
||||||
|
MaxThreadNum="13"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<gll
|
||||||
|
PpsEnable="true"
|
||||||
|
LogPriMask="LOG_INFO"
|
||||||
|
LogFacMask="LOG_NMEA | LOG_GLLIOS | LOG_GLLAPI"
|
||||||
|
FrqPlan="FRQ_PLAN_26MHZ_2PPM_49_152MHZ_300PPB"
|
||||||
|
MultiCarrRFMode="GL_MULTI_CARR_RF_MODE_L1"
|
||||||
|
MultiCarrLnaMask="L1_EXT_ON"
|
||||||
|
RfType="GL_RF_4776_BRCM"
|
||||||
|
EnableFilteringForLTEB13="true"
|
||||||
|
|
||||||
|
WarmStandbyTimeout1Seconds="10"
|
||||||
|
WarmStandbyTimeout2Seconds="15"
|
||||||
|
|
||||||
|
EnableGnssPropagateInStandby="true"
|
||||||
|
|
||||||
|
RfPathLossDb_Ap="4"
|
||||||
|
RfPathLossDb_Cp="4"
|
||||||
|
OnChipGpsCarrierType="3,2,3,3,2,3,2,3,3,3,1,2,1,3,2,1,2,3,1,1,1,1,3,3,3,3,3,1,2,3,2,3"
|
||||||
|
|
||||||
|
EnableOnChipStopNotification="2"
|
||||||
|
PowerMode="3"
|
||||||
|
MinGpsWeekNumber="2216"
|
||||||
|
OnChipAccMask="50"
|
||||||
|
EnableB1C="false"
|
||||||
|
|
||||||
|
RTICacheTimeoutSec="3600"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<gll_features
|
||||||
|
EnableQzsAutoSwitch="false"
|
||||||
|
EnableGloAutoSwitch="false"
|
||||||
|
EnableNicAutoSwitch="true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</glgps>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
SuplLogFullName="/data/vendor/gps/suplflow.txt"
|
SuplLogFullName="/data/vendor/gps/suplflow.txt"
|
||||||
tlsEnable="true"
|
tlsEnable="true"
|
||||||
|
|
||||||
SuplSslMethod="SSLv23_NO_TLSv1_2"
|
SuplSslMethod="SSLv23"
|
||||||
SuplEnable="true"
|
SuplEnable="true"
|
||||||
SuplUseApn="false"
|
SuplUseApn="false"
|
||||||
SuplUseApnNI="true"
|
SuplUseApnNI="true"
|
||||||
|
@ -49,6 +49,7 @@
|
||||||
LtoSyncThresholdDays="1"
|
LtoSyncThresholdDays="1"
|
||||||
|
|
||||||
GnssYearOfHardware="2020"
|
GnssYearOfHardware="2020"
|
||||||
|
CpEarlyFixGuardTimeSec="1"
|
||||||
CpGuardTimeSec="1"
|
CpGuardTimeSec="1"
|
||||||
CpLppGuardTimeSec="1"
|
CpLppGuardTimeSec="1"
|
||||||
IgnoreInjectedSystemTime="true"
|
IgnoreInjectedSystemTime="true"
|
||||||
|
@ -56,6 +57,7 @@
|
||||||
AttributionAppPkgName="com.google.android.carrierlocation"
|
AttributionAppPkgName="com.google.android.carrierlocation"
|
||||||
|
|
||||||
AssertEnabled="true"
|
AssertEnabled="true"
|
||||||
|
ExitOnComFailure="true"
|
||||||
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
||||||
CpLppeUseAgnssLocForEmptyDbh="true"
|
CpLppeUseAgnssLocForEmptyDbh="true"
|
||||||
ReAidingOnHotStart="false"
|
ReAidingOnHotStart="false"
|
||||||
|
@ -94,7 +96,10 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<gll_features
|
<gll_features
|
||||||
|
EnableQzsAutoSwitch="false"
|
||||||
|
EnableGloAutoSwitch="false"
|
||||||
EnableNicAutoSwitch="true"
|
EnableNicAutoSwitch="true"
|
||||||
|
ConstellationAutoSwitchOffNavOnly="true"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</glgps>
|
</glgps>
|
||||||
|
|
104
gps_user.6.1.xml.b3
Normal file
104
gps_user.6.1.xml.b3
Normal file
|
@ -0,0 +1,104 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<glgps xmlns="http://www.glpals.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.glpals.com/ glconfig.xsd" >
|
||||||
|
<hal
|
||||||
|
PortName="/dev/ttyBCM"
|
||||||
|
BaudRate="921600"
|
||||||
|
GpioNStdbyPath="/sys/devices/platform/10940000.spi/spi_master/spi5/spi5.0/nstandby"
|
||||||
|
CustGpioDelayMs="250"
|
||||||
|
LogEnabled="false"
|
||||||
|
Log="JAVA"
|
||||||
|
LogDirectory="/sdcard/gps/broadcom/storage/"
|
||||||
|
CtrlPipe="/data/vendor/gps/glgpsctrl"
|
||||||
|
NmeaOutName="/data/vendor/gps/nmea_out"
|
||||||
|
|
||||||
|
acSuplServer="supl.google.com"
|
||||||
|
SuplPort="7275"
|
||||||
|
SuplLogEnable="false"
|
||||||
|
SuplLogFullName="/data/vendor/gps/suplflow.txt"
|
||||||
|
tlsEnable="true"
|
||||||
|
|
||||||
|
SuplSslMethod="SSLv23"
|
||||||
|
SuplEnable="true"
|
||||||
|
SuplUseApn="false"
|
||||||
|
SuplUseApnNI="true"
|
||||||
|
SuplDummyCellInfo="true"
|
||||||
|
SuplUseFwCellInfo="false"
|
||||||
|
SuplTlsCertDirPath="/etc/security/cacerts"
|
||||||
|
SuplTlsCertPath="/vendor/etc/gnss/gps.cer"
|
||||||
|
SuplUT1Seconds="20"
|
||||||
|
SuplUT2Seconds="20"
|
||||||
|
SuplUT3Seconds="20"
|
||||||
|
TcpConnectionTimeout="20"
|
||||||
|
SuplLppCapable="true"
|
||||||
|
SuplEcidCapable="true"
|
||||||
|
SuplVersion="2"
|
||||||
|
SuplMinorVersion="0"
|
||||||
|
SuplOtdoaCapable="true"
|
||||||
|
SuplOtdoaCapable2="true"
|
||||||
|
SuplGlonassCapable = "true"
|
||||||
|
SuplGalileoCapable = "true"
|
||||||
|
SuplBdsCapable = "true"
|
||||||
|
SuplMgpsCapable = "true"
|
||||||
|
|
||||||
|
RtoEnable="true"
|
||||||
|
RtiEnable="true"
|
||||||
|
HttpSyncLto="true"
|
||||||
|
LtoFileName="lto2.dat"
|
||||||
|
LtoDir="/data/vendor/gps/"
|
||||||
|
LtoSyncThresholdDays="1"
|
||||||
|
|
||||||
|
GnssYearOfHardware="2020"
|
||||||
|
CpEarlyFixGuardTimeSec="1"
|
||||||
|
CpGuardTimeSec="1"
|
||||||
|
CpLppGuardTimeSec="1"
|
||||||
|
IgnoreInjectedSystemTime="true"
|
||||||
|
|
||||||
|
AttributionAppPkgName="com.google.android.carrierlocation"
|
||||||
|
|
||||||
|
AssertEnabled="false"
|
||||||
|
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
||||||
|
CpLppeUseAgnssLocForEmptyDbh="true"
|
||||||
|
ReAidingOnHotStart="false"
|
||||||
|
ReAidingIntervalSec="3600"
|
||||||
|
PpsDevice="/sys/devices/platform/bbd_pps/pps_assert"
|
||||||
|
SensorsMask="0x244"
|
||||||
|
MaxThreadNum="13"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<gll
|
||||||
|
PpsEnable="true"
|
||||||
|
LogPriMask="LOG_INFO"
|
||||||
|
LogFacMask="LOG_NMEA | LOG_GLLIOS | LOG_GLLAPI"
|
||||||
|
FrqPlan="FRQ_PLAN_26MHZ_2PPM_49_152MHZ_300PPB"
|
||||||
|
MultiCarrRFMode="GL_MULTI_CARR_RF_MODE_L1"
|
||||||
|
MultiCarrLnaMask="L1_EXT_ON"
|
||||||
|
RfType="GL_RF_4776_BRCM"
|
||||||
|
EnableFilteringForLTEB13="true"
|
||||||
|
|
||||||
|
WarmStandbyTimeout1Seconds="10"
|
||||||
|
WarmStandbyTimeout2Seconds="15"
|
||||||
|
|
||||||
|
EnableGnssPropagateInStandby="true"
|
||||||
|
|
||||||
|
RfPathLossDb_Ap="4"
|
||||||
|
RfPathLossDb_Cp="4"
|
||||||
|
OnChipGpsCarrierType="3,2,3,3,2,3,2,3,3,3,1,2,1,3,2,1,2,3,1,1,1,1,3,3,3,3,3,1,2,3,2,3"
|
||||||
|
|
||||||
|
EnableOnChipStopNotification="false"
|
||||||
|
PowerMode="3"
|
||||||
|
MinGpsWeekNumber="2216"
|
||||||
|
OnChipAccMask="50"
|
||||||
|
EnableB1C="false"
|
||||||
|
|
||||||
|
RTICacheTimeoutSec="3600"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<gll_features
|
||||||
|
EnableQzsAutoSwitch="false"
|
||||||
|
EnableGloAutoSwitch="false"
|
||||||
|
EnableNicAutoSwitch="true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</glgps>
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
SuplLogFullName="/data/vendor/gps/suplflow.txt"
|
SuplLogFullName="/data/vendor/gps/suplflow.txt"
|
||||||
tlsEnable="true"
|
tlsEnable="true"
|
||||||
|
|
||||||
SuplSslMethod="SSLv23_NO_TLSv1_2"
|
SuplSslMethod="SSLv23"
|
||||||
SuplEnable="true"
|
SuplEnable="true"
|
||||||
SuplUseApn="false"
|
SuplUseApn="false"
|
||||||
SuplUseApnNI="true"
|
SuplUseApnNI="true"
|
||||||
|
@ -48,6 +48,7 @@
|
||||||
LtoSyncThresholdDays="1"
|
LtoSyncThresholdDays="1"
|
||||||
|
|
||||||
GnssYearOfHardware="2020"
|
GnssYearOfHardware="2020"
|
||||||
|
CpEarlyFixGuardTimeSec="1"
|
||||||
CpGuardTimeSec="1"
|
CpGuardTimeSec="1"
|
||||||
CpLppGuardTimeSec="1"
|
CpLppGuardTimeSec="1"
|
||||||
IgnoreInjectedSystemTime="true"
|
IgnoreInjectedSystemTime="true"
|
||||||
|
@ -93,7 +94,10 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<gll_features
|
<gll_features
|
||||||
|
EnableQzsAutoSwitch="false"
|
||||||
|
EnableGloAutoSwitch="false"
|
||||||
EnableNicAutoSwitch="true"
|
EnableNicAutoSwitch="true"
|
||||||
|
ConstellationAutoSwitchOffNavOnly="true"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</glgps>
|
</glgps>
|
||||||
|
|
|
@ -1584,18 +1584,6 @@
|
||||||
"Duration": 50,
|
"Duration": 50,
|
||||||
"Value": "1"
|
"Value": "1"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "THERMAL_FLASH_LED_REDUCE_CRITICAL",
|
|
||||||
"Node": "LimitFlashCurrent",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "100"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"PowerHint": "THERMAL_FLASH_LED_REDUCE_NONE",
|
|
||||||
"Node": "LimitFlashCurrent",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "1500"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "EXPENSIVE_RENDERING",
|
"PowerHint": "EXPENSIVE_RENDERING",
|
||||||
"Node": "PowerHALRenderingState",
|
"Node": "PowerHALRenderingState",
|
||||||
|
@ -1846,11 +1834,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 15.0,
|
"StaleTimeFactor": 15.0,
|
||||||
"HeuristicBoost_On": true,
|
"HeuristicBoost_On": true,
|
||||||
"HBoostOnMissedCycles": 8,
|
"HBoostModerateJankThreshold": 2,
|
||||||
"HBoostOffMaxAvgRatio": 4.0,
|
"HBoostOffMaxAvgDurRatio": 4.0,
|
||||||
"HBoostOffMissedCycles": 5,
|
"HBoostSevereJankPidPu": 0.5,
|
||||||
"HBoostPidPuFactor": 0.5,
|
"HBoostSevereJankThreshold": 8,
|
||||||
"HBoostUclampMin": 722,
|
"HBoostUclampMinCeilingRange": [480, 722],
|
||||||
|
"HBoostUclampMinFloorRange": [230, 410],
|
||||||
"JankCheckTimeFactor": 1.2,
|
"JankCheckTimeFactor": 1.2,
|
||||||
"LowFrameRateThreshold": 25,
|
"LowFrameRateThreshold": 25,
|
||||||
"MaxRecordsNum": 300
|
"MaxRecordsNum": 300
|
||||||
|
@ -1881,11 +1870,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 15.0,
|
"StaleTimeFactor": 15.0,
|
||||||
"HeuristicBoost_On": true,
|
"HeuristicBoost_On": true,
|
||||||
"HBoostOnMissedCycles": 8,
|
"HBoostModerateJankThreshold": 2,
|
||||||
"HBoostOffMaxAvgRatio": 4.0,
|
"HBoostOffMaxAvgDurRatio": 4.0,
|
||||||
"HBoostOffMissedCycles": 5,
|
"HBoostSevereJankPidPu": 0.5,
|
||||||
"HBoostPidPuFactor": 0.5,
|
"HBoostSevereJankThreshold": 8,
|
||||||
"HBoostUclampMin": 722,
|
"HBoostUclampMinCeilingRange": [480, 722],
|
||||||
|
"HBoostUclampMinFloorRange": [230, 410],
|
||||||
"JankCheckTimeFactor": 1.2,
|
"JankCheckTimeFactor": 1.2,
|
||||||
"LowFrameRateThreshold": 25,
|
"LowFrameRateThreshold": 25,
|
||||||
"MaxRecordsNum": 300
|
"MaxRecordsNum": 300
|
||||||
|
@ -1916,11 +1906,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 15.0,
|
"StaleTimeFactor": 15.0,
|
||||||
"HeuristicBoost_On": true,
|
"HeuristicBoost_On": true,
|
||||||
"HBoostOnMissedCycles": 8,
|
"HBoostModerateJankThreshold": 2,
|
||||||
"HBoostOffMaxAvgRatio": 4.0,
|
"HBoostOffMaxAvgDurRatio": 4.0,
|
||||||
"HBoostOffMissedCycles": 5,
|
"HBoostSevereJankPidPu": 0.5,
|
||||||
"HBoostPidPuFactor": 0.5,
|
"HBoostSevereJankThreshold": 8,
|
||||||
"HBoostUclampMin": 722,
|
"HBoostUclampMinCeilingRange": [480, 722],
|
||||||
|
"HBoostUclampMinFloorRange": [230, 410],
|
||||||
"JankCheckTimeFactor": 1.2,
|
"JankCheckTimeFactor": 1.2,
|
||||||
"LowFrameRateThreshold": 25,
|
"LowFrameRateThreshold": 25,
|
||||||
"MaxRecordsNum": 300
|
"MaxRecordsNum": 300
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
0.0,
|
0.0,
|
||||||
0.0
|
0.0
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/neutral_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001,
|
"Multiplier":0.001,
|
||||||
"PollingDelay":60000,
|
"PollingDelay":60000,
|
||||||
|
@ -39,7 +38,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/skin_therm1/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -55,7 +53,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/skin_therm2/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -71,7 +68,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/disp_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -87,7 +83,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/gnss_tcxo_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -112,7 +107,6 @@
|
||||||
"0.0",
|
"0.0",
|
||||||
"0.0"
|
"0.0"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/usb_pwr_therm2/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -128,7 +122,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/charger_skin_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -144,7 +137,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/quiet_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -555,22 +547,6 @@
|
||||||
"PollingDelay":60000,
|
"PollingDelay":60000,
|
||||||
"PassiveDelay":7000
|
"PassiveDelay":7000
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Name":"battery_cycle",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Name":"battery",
|
"Name":"battery",
|
||||||
"Type":"BATTERY",
|
"Type":"BATTERY",
|
||||||
|
@ -587,378 +563,6 @@
|
||||||
"Multiplier":0.001,
|
"Multiplier":0.001,
|
||||||
"Monitor":false
|
"Monitor":false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Name":"critical-battery-cell",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "vdroop1",
|
|
||||||
"Combination":[
|
|
||||||
"battery",
|
|
||||||
"battery_cycle",
|
|
||||||
"vdroop1"
|
|
||||||
],
|
|
||||||
"Coefficient":[
|
|
||||||
"-10000",
|
|
||||||
"400",
|
|
||||||
"1000"
|
|
||||||
],
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
3.00,
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"LOW_TEMP_UVLO2",
|
|
||||||
"Type":"UNKNOWN",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "vdroop2",
|
|
||||||
"Combination":[
|
|
||||||
"battery",
|
|
||||||
"vdroop2"
|
|
||||||
],
|
|
||||||
"Coefficient":[
|
|
||||||
"-5000",
|
|
||||||
"1200"
|
|
||||||
],
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
2.00,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 6, 6, 6]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 4, 4, 4]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"FLASH_LED_REDUCE",
|
|
||||||
"Type":"UNKNOWN",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "vdroop1",
|
|
||||||
"Combination":[
|
|
||||||
"battery",
|
|
||||||
"battery_cycle",
|
|
||||||
"vdroop1"
|
|
||||||
],
|
|
||||||
"Coefficient":[
|
|
||||||
"-10000",
|
|
||||||
"400",
|
|
||||||
"1000"
|
|
||||||
],
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
3.00,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"SendPowerHint":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"soc",
|
|
||||||
"Type":"BCL_PERCENTAGE",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
90,
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Hidden":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"batoilo",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
5000,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 6, 6, 6]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 5, 5, 5]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"vdroop1",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
1000,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 10, 10]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 4, 4, 4]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"vdroop2",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
1200,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 10, 10]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 9, 9, 9]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 5, 5, 5]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"smpl_gm",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
1100,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 10, 10]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 4, 4, 4]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_cpu1",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
7000,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Hidden":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_cpu2",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
12000,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Hidden":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_tpu",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
10500,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Hidden":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_gpu",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
12000,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"HotHysteresis":[
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
100,
|
|
||||||
0.0,
|
|
||||||
0.0
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Hidden":true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Name":"TPU",
|
"Name":"TPU",
|
||||||
"Type":"NPU",
|
"Type":"NPU",
|
||||||
|
@ -980,28 +584,24 @@
|
||||||
"Name":"thermal-cpufreq-0",
|
"Name":"thermal-cpufreq-0",
|
||||||
"Type":"CPU",
|
"Type":"CPU",
|
||||||
"WritePath":"/dev/thermal/cdev-by-name/thermal-cpufreq-0/user_vote",
|
"WritePath":"/dev/thermal/cdev-by-name/thermal-cpufreq-0/user_vote",
|
||||||
"State2Power":["436", "372", "320", "248", "224", "188", "164", "120", "80", "60", "24"],
|
|
||||||
"PowerRail":"S4M_VDD_CPUCL0"
|
"PowerRail":"S4M_VDD_CPUCL0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"thermal-cpufreq-1",
|
"Name":"thermal-cpufreq-1",
|
||||||
"Type":"CPU",
|
"Type":"CPU",
|
||||||
"WritePath":"/dev/thermal/cdev-by-name/thermal-cpufreq-1/user_vote",
|
"WritePath":"/dev/thermal/cdev-by-name/thermal-cpufreq-1/user_vote",
|
||||||
"State2Power":["1260", "1074", "904", "730", "594", "476", "374", "314", "240", "200", "162", "130", "94", "60"],
|
|
||||||
"PowerRail":"S3M_VDD_CPUCL1"
|
"PowerRail":"S3M_VDD_CPUCL1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"thermal-cpufreq-2",
|
"Name":"thermal-cpufreq-2",
|
||||||
"Type":"CPU",
|
"Type":"CPU",
|
||||||
"WritePath":"/dev/thermal/cdev-by-name/thermal-cpufreq-2/user_vote",
|
"WritePath":"/dev/thermal/cdev-by-name/thermal-cpufreq-2/user_vote",
|
||||||
"State2Power":["4406", "3874", "3500", "3052", "2704", "2334", "2176", "1864", "1492", "1362", "1116", "908", "756", "594", "478", "388", "178"],
|
|
||||||
"PowerRail":"S2M_VDD_CPUCL2"
|
"PowerRail":"S2M_VDD_CPUCL2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"thermal-gpufreq-0",
|
"Name":"thermal-gpufreq-0",
|
||||||
"Type":"GPU",
|
"Type":"GPU",
|
||||||
"WritePath":"/dev/thermal/cdev-by-name/thermal-gpufreq-0/user_vote",
|
"WritePath":"/dev/thermal/cdev-by-name/thermal-gpufreq-0/user_vote",
|
||||||
"State2Power":["4599", "3727", "3259", "2378", "2044", "1813", "1449", "1223", "1007", "804", "633", "452"],
|
|
||||||
"PowerRail":"S2S_VDD_G3D"
|
"PowerRail":"S2S_VDD_G3D"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
0.0,
|
0.0,
|
||||||
0.0
|
0.0
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/neutral_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001,
|
"Multiplier":0.001,
|
||||||
"PollingDelay":60000,
|
"PollingDelay":60000,
|
||||||
|
@ -39,7 +38,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/skin_therm1/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -55,7 +53,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/skin_therm2/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -71,7 +68,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/disp_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -87,7 +83,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/gnss_tcxo_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -112,7 +107,6 @@
|
||||||
"0.0",
|
"0.0",
|
||||||
"0.0"
|
"0.0"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/usb_pwr_therm2/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -128,7 +122,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/charger_skin_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
@ -144,7 +137,6 @@
|
||||||
"NAN",
|
"NAN",
|
||||||
"NAN"
|
"NAN"
|
||||||
],
|
],
|
||||||
"TempPath":"/dev/thermal/tz-by-name/quiet_therm/adc_channel/channel_temp",
|
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue