Snap for 12238800 from c12283dc31
to mainline-tzdata6-release
Change-Id: I68400292b50f61b6adb88cc15aa7cc2222edc53d
This commit is contained in:
commit
4498f59c64
23 changed files with 661 additions and 1229 deletions
2
OWNERS
2
OWNERS
|
@ -1,4 +1,4 @@
|
||||||
per-file powerhint-*.json = jychen@google.com,jenhaochen@google.com,wvw@google.com,joaodias@google.com
|
per-file powerhint-*.json = jychen@google.com,jenhaochen@google.com,wvw@google.com,joaodias@google.com
|
||||||
|
|
||||||
# per-file for Pixel device makefiles, see go/pixel-device-mk-owner-checklist for details.
|
# per-file for Pixel device makefiles, see go/pixel-device-mk-owner-checklist for details.
|
||||||
per-file *.mk,*/BoardConfig.mk=file:device/google/gs-common:main:/MK_OWNERS
|
per-file *.mk,*/BoardConfig.mk,{**/,}Android.bp=file:device/google/gs-common:main:/MK_OWNERS
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<item>38</item>
|
<item>38</item>
|
||||||
</integer-array>
|
</integer-array>
|
||||||
<integer-array name="antenna_y">
|
<integer-array name="antenna_y">
|
||||||
<item>100</item>
|
<item>59</item>
|
||||||
</integer-array>
|
</integer-array>
|
||||||
<bool name="nfc_observe_mode_supported">true</bool>
|
<bool name="nfc_observe_mode_supported">true</bool>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -303,14 +303,26 @@ PRODUCT_SOONG_NAMESPACES += vendor/google_devices/pantah/prebuilts
|
||||||
# Location
|
# Location
|
||||||
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
||||||
PRODUCT_COPY_FILES += \
|
PRODUCT_COPY_FILES += \
|
||||||
device/google/pantah/location/gps.xml.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml \
|
|
||||||
device/google/pantah/location/lhd.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
device/google/pantah/location/lhd.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
||||||
device/google/pantah/location/scd.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
device/google/pantah/location/scd.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
||||||
|
ifneq (,$(filter 6.1, $(TARGET_LINUX_KERNEL_VERSION)))
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps.6.1.xml.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
else
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps.xml.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
PRODUCT_COPY_FILES += \
|
PRODUCT_COPY_FILES += \
|
||||||
device/google/pantah/location/gps_user.xml.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml \
|
|
||||||
device/google/pantah/location/lhd_user.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
device/google/pantah/location/lhd_user.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
||||||
device/google/pantah/location/scd_user.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
device/google/pantah/location/scd_user.conf.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
||||||
|
ifneq (,$(filter 6.1, $(TARGET_LINUX_KERNEL_VERSION)))
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps_user.6.1.xml.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
else
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps_user.xml.c10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Set support one-handed mode
|
# Set support one-handed mode
|
||||||
|
@ -322,9 +334,34 @@ PRODUCT_VENDOR_PROPERTIES += \
|
||||||
vendor.zram.size=3g
|
vendor.zram.size=3g
|
||||||
|
|
||||||
# Increment the SVN for any official public releases
|
# Increment the SVN for any official public releases
|
||||||
PRODUCT_VENDOR_PROPERTIES += \
|
ifdef RELEASE_SVN_CHEETAH
|
||||||
ro.vendor.build.svn=59
|
TARGET_SVN ?= $(RELEASE_SVN_CHEETAH)
|
||||||
|
else
|
||||||
|
# Set this for older releases that don't use build flag
|
||||||
|
TARGET_SVN ?= 61
|
||||||
|
endif
|
||||||
|
|
||||||
|
PRODUCT_VENDOR_PROPERTIES += \
|
||||||
|
ro.vendor.build.svn=$(TARGET_SVN)
|
||||||
|
|
||||||
|
# Set device family property for SMR
|
||||||
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
|
ro.build.device_family=P10C10L10
|
||||||
|
|
||||||
|
# Set build properties for SMR builds
|
||||||
|
ifeq ($(RELEASE_IS_SMR), true)
|
||||||
|
ifneq (,$(RELEASE_BASE_OS_CHEETAH))
|
||||||
|
PRODUCT_BASE_OS := $(RELEASE_BASE_OS_CHEETAH)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Set build properties for EMR builds
|
||||||
|
ifeq ($(RELEASE_IS_EMR), true)
|
||||||
|
ifneq (,$(RELEASE_BASE_OS_CHEETAH))
|
||||||
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
|
ro.build.version.emergency_base_os=$(RELEASE_BASE_OS_CHEETAH)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
# DCK properties based on target
|
# DCK properties based on target
|
||||||
PRODUCT_PROPERTY_OVERRIDES += \
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
ro.gms.dck.eligible_wcc=3 \
|
ro.gms.dck.eligible_wcc=3 \
|
||||||
|
@ -369,6 +406,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.38
|
||||||
|
|
||||||
# Keyboard bottom and side padding in dp for portrait mode and height ratio
|
# Keyboard bottom and side padding in dp for portrait mode and height ratio
|
||||||
PRODUCT_PRODUCT_PROPERTIES += \
|
PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
ro.com.google.ime.kb_pad_port_b=8 \
|
ro.com.google.ime.kb_pad_port_b=8 \
|
||||||
|
@ -410,3 +451,7 @@ PRODUCT_VENDOR_PROPERTIES += \
|
||||||
PRODUCT_PRODUCT_PROPERTIES += \
|
PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
ro.quick_start.oem_id=00e0 \
|
ro.quick_start.oem_id=00e0 \
|
||||||
ro.quick_start.device_id=cheetah
|
ro.quick_start.device_id=cheetah
|
||||||
|
|
||||||
|
# Bluetooth device id
|
||||||
|
PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
|
bluetooth.device_id.product_id=20490
|
||||||
|
|
|
@ -286,14 +286,26 @@ PRODUCT_SOONG_NAMESPACES += vendor/google_devices/pantah/prebuilts
|
||||||
# Location
|
# Location
|
||||||
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
||||||
PRODUCT_COPY_FILES += \
|
PRODUCT_COPY_FILES += \
|
||||||
device/google/pantah/location/gps.xml.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml \
|
|
||||||
device/google/pantah/location/lhd.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
device/google/pantah/location/lhd.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
||||||
device/google/pantah/location/scd.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
device/google/pantah/location/scd.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
||||||
|
ifneq (,$(filter 6.1, $(TARGET_LINUX_KERNEL_VERSION)))
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps.6.1.xml.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
else
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps.xml.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
PRODUCT_COPY_FILES += \
|
PRODUCT_COPY_FILES += \
|
||||||
device/google/pantah/location/gps_user.xml.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml \
|
|
||||||
device/google/pantah/location/lhd_user.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
device/google/pantah/location/lhd_user.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/lhd.conf \
|
||||||
device/google/pantah/location/scd_user.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
device/google/pantah/location/scd_user.conf.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/scd.conf
|
||||||
|
ifneq (,$(filter 6.1, $(TARGET_LINUX_KERNEL_VERSION)))
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps_user.6.1.xml.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
else
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
device/google/pantah/location/gps_user.xml.p10:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Set support one-handed mode
|
# Set support one-handed mode
|
||||||
|
@ -305,9 +317,34 @@ PRODUCT_VENDOR_PROPERTIES += \
|
||||||
vendor.zram.size=3g
|
vendor.zram.size=3g
|
||||||
|
|
||||||
# Increment the SVN for any official public releases
|
# Increment the SVN for any official public releases
|
||||||
PRODUCT_VENDOR_PROPERTIES += \
|
ifdef RELEASE_SVN_PANTHER
|
||||||
ro.vendor.build.svn=59
|
TARGET_SVN ?= $(RELEASE_SVN_PANTHER)
|
||||||
|
else
|
||||||
|
# Set this for older releases that don't use build flag
|
||||||
|
TARGET_SVN ?= 61
|
||||||
|
endif
|
||||||
|
|
||||||
|
PRODUCT_VENDOR_PROPERTIES += \
|
||||||
|
ro.vendor.build.svn=$(TARGET_SVN)
|
||||||
|
|
||||||
|
# Set device family property for SMR
|
||||||
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
|
ro.build.device_family=P10C10L10
|
||||||
|
|
||||||
|
# Set build properties for SMR builds
|
||||||
|
ifeq ($(RELEASE_IS_SMR), true)
|
||||||
|
ifneq (,$(RELEASE_BASE_OS_PANTHER))
|
||||||
|
PRODUCT_BASE_OS := $(RELEASE_BASE_OS_PANTHER)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Set build properties for EMR builds
|
||||||
|
ifeq ($(RELEASE_IS_EMR), true)
|
||||||
|
ifneq (,$(RELEASE_BASE_OS_PANTHER))
|
||||||
|
PRODUCT_PROPERTY_OVERRIDES += \
|
||||||
|
ro.build.version.emergency_base_os=$(RELEASE_BASE_OS_PANTHER)
|
||||||
|
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 \
|
||||||
|
@ -354,6 +391,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.38
|
||||||
|
|
||||||
# Keyboard bottom padding in dp for portrait mode and height ratio
|
# Keyboard bottom padding in dp for portrait mode and height ratio
|
||||||
PRODUCT_PRODUCT_PROPERTIES += \
|
PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
ro.com.google.ime.kb_pad_port_b=8 \
|
ro.com.google.ime.kb_pad_port_b=8 \
|
||||||
|
@ -393,3 +434,7 @@ PRODUCT_VENDOR_PROPERTIES += \
|
||||||
PRODUCT_PRODUCT_PROPERTIES += \
|
PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
ro.quick_start.oem_id=00e0 \
|
ro.quick_start.oem_id=00e0 \
|
||||||
ro.quick_start.device_id=panther
|
ro.quick_start.device_id=panther
|
||||||
|
|
||||||
|
# Bluetooth device id
|
||||||
|
PRODUCT_PRODUCT_PROPERTIES += \
|
||||||
|
bluetooth.device_id.product_id=20489
|
||||||
|
|
107
location/gps.6.1.xml.c10
Normal file
107
location/gps.6.1.xml.c10
Normal file
|
@ -0,0 +1,107 @@
|
||||||
|
<?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_NO_TLSv1_2"
|
||||||
|
SuplEnable="true"
|
||||||
|
SuplUseApn="false"
|
||||||
|
SuplUseApnNI="true"
|
||||||
|
SuplUseFwCellInfo="false"
|
||||||
|
SuplDummyCellInfo ="true"
|
||||||
|
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"
|
||||||
|
CpGuardTimeSec="1"
|
||||||
|
CpLppGuardTimeSec="1"
|
||||||
|
IgnoreInjectedSystemTime="true"
|
||||||
|
|
||||||
|
AttributionAppPkgName="com.google.android.carrierlocation"
|
||||||
|
|
||||||
|
AssertEnabled="true"
|
||||||
|
ExitOnComFailure="true"
|
||||||
|
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
||||||
|
CpLppeUseAgnssLocForEmptyDbh="true"
|
||||||
|
CpLppHighAccuracyShapeMode="1"
|
||||||
|
ReAidingOnHotStart="false"
|
||||||
|
ReAidingIntervalSec="3600"
|
||||||
|
RuntimeSwLteFilterEnable="true"
|
||||||
|
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_L5"
|
||||||
|
MultiCarrLnaMask="L1_EXT_ON|L5_EXT_ON"
|
||||||
|
RfType="GL_RF_4776_BRCM"
|
||||||
|
ExtL5Bias="20.1"
|
||||||
|
|
||||||
|
WarmStandbyTimeout1Seconds="10"
|
||||||
|
WarmStandbyTimeout2Seconds="15"
|
||||||
|
|
||||||
|
EnableGnssPropagateInStandby="true"
|
||||||
|
|
||||||
|
RfPathLossDb_Ap="3.91"
|
||||||
|
RfPathLossDb_Cp="3.91"
|
||||||
|
RfPathLossDb_Ap_L5="3.76"
|
||||||
|
RfPathLossDb_Cp_L5="3.76"
|
||||||
|
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
|
||||||
|
EnableNicAutoSwitch="true"
|
||||||
|
EnableNavic="true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</glgps>
|
||||||
|
|
107
location/gps.6.1.xml.p10
Normal file
107
location/gps.6.1.xml.p10
Normal file
|
@ -0,0 +1,107 @@
|
||||||
|
<?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_NO_TLSv1_2"
|
||||||
|
SuplEnable="true"
|
||||||
|
SuplUseApn="false"
|
||||||
|
SuplUseApnNI="true"
|
||||||
|
SuplUseFwCellInfo="false"
|
||||||
|
SuplDummyCellInfo ="true"
|
||||||
|
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"
|
||||||
|
CpGuardTimeSec="1"
|
||||||
|
CpLppGuardTimeSec="1"
|
||||||
|
IgnoreInjectedSystemTime="true"
|
||||||
|
|
||||||
|
AttributionAppPkgName="com.google.android.carrierlocation"
|
||||||
|
|
||||||
|
AssertEnabled="true"
|
||||||
|
ExitOnComFailure="true"
|
||||||
|
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
||||||
|
CpLppeUseAgnssLocForEmptyDbh="true"
|
||||||
|
CpLppHighAccuracyShapeMode="1"
|
||||||
|
ReAidingOnHotStart="false"
|
||||||
|
ReAidingIntervalSec="3600"
|
||||||
|
RuntimeSwLteFilterEnable="true"
|
||||||
|
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_L5"
|
||||||
|
MultiCarrLnaMask="L1_EXT_ON|L5_EXT_ON"
|
||||||
|
RfType="GL_RF_4776_BRCM"
|
||||||
|
ExtL5Bias="21.2"
|
||||||
|
|
||||||
|
WarmStandbyTimeout1Seconds="10"
|
||||||
|
WarmStandbyTimeout2Seconds="15"
|
||||||
|
|
||||||
|
EnableGnssPropagateInStandby="true"
|
||||||
|
|
||||||
|
RfPathLossDb_Ap="3.6"
|
||||||
|
RfPathLossDb_Cp="3.6"
|
||||||
|
RfPathLossDb_Ap_L5="3.6"
|
||||||
|
RfPathLossDb_Cp_L5="3.6"
|
||||||
|
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
|
||||||
|
EnableNicAutoSwitch="true"
|
||||||
|
EnableNavic="true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</glgps>
|
||||||
|
|
|
@ -56,6 +56,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"
|
||||||
CpLppHighAccuracyShapeMode="1"
|
CpLppHighAccuracyShapeMode="1"
|
||||||
|
|
|
@ -56,6 +56,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"
|
||||||
CpLppHighAccuracyShapeMode="1"
|
CpLppHighAccuracyShapeMode="1"
|
||||||
|
|
|
@ -56,6 +56,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"
|
||||||
CpLppHighAccuracyShapeMode="1"
|
CpLppHighAccuracyShapeMode="1"
|
||||||
|
|
105
location/gps_user.6.1.xml.c10
Normal file
105
location/gps_user.6.1.xml.c10
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="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_NO_TLSv1_2"
|
||||||
|
SuplEnable="true"
|
||||||
|
SuplUseApn="false"
|
||||||
|
SuplUseApnNI="true"
|
||||||
|
SuplUseFwCellInfo="false"
|
||||||
|
SuplDummyCellInfo ="true"
|
||||||
|
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"
|
||||||
|
CpGuardTimeSec="1"
|
||||||
|
CpLppGuardTimeSec="1"
|
||||||
|
IgnoreInjectedSystemTime="true"
|
||||||
|
|
||||||
|
AttributionAppPkgName="com.google.android.carrierlocation"
|
||||||
|
|
||||||
|
AssertEnabled="false"
|
||||||
|
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
||||||
|
CpLppeUseAgnssLocForEmptyDbh="true"
|
||||||
|
CpLppHighAccuracyShapeMode="1"
|
||||||
|
ReAidingOnHotStart="false"
|
||||||
|
ReAidingIntervalSec="3600"
|
||||||
|
RuntimeSwLteFilterEnable="true"
|
||||||
|
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_L5"
|
||||||
|
MultiCarrLnaMask="L1_EXT_ON|L5_EXT_ON"
|
||||||
|
RfType="GL_RF_4776_BRCM"
|
||||||
|
ExtL5Bias="20.1"
|
||||||
|
|
||||||
|
WarmStandbyTimeout1Seconds="10"
|
||||||
|
WarmStandbyTimeout2Seconds="15"
|
||||||
|
|
||||||
|
EnableGnssPropagateInStandby="true"
|
||||||
|
|
||||||
|
RfPathLossDb_Ap="3.91"
|
||||||
|
RfPathLossDb_Cp="3.91"
|
||||||
|
RfPathLossDb_Ap_L5="3.76"
|
||||||
|
RfPathLossDb_Cp_L5="3.76"
|
||||||
|
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="0"
|
||||||
|
PowerMode="3"
|
||||||
|
MinGpsWeekNumber="2216"
|
||||||
|
OnChipAccMask="50"
|
||||||
|
EnableB1C="false"
|
||||||
|
|
||||||
|
RTICacheTimeoutSec="3600"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<gll_features
|
||||||
|
EnableNicAutoSwitch="true"
|
||||||
|
EnableNavic="true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</glgps>
|
||||||
|
|
105
location/gps_user.6.1.xml.p10
Normal file
105
location/gps_user.6.1.xml.p10
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="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_NO_TLSv1_2"
|
||||||
|
SuplEnable="true"
|
||||||
|
SuplUseApn="false"
|
||||||
|
SuplUseApnNI="true"
|
||||||
|
SuplUseFwCellInfo="false"
|
||||||
|
SuplDummyCellInfo ="true"
|
||||||
|
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"
|
||||||
|
CpGuardTimeSec="1"
|
||||||
|
CpLppGuardTimeSec="1"
|
||||||
|
IgnoreInjectedSystemTime="true"
|
||||||
|
|
||||||
|
AttributionAppPkgName="com.google.android.carrierlocation"
|
||||||
|
|
||||||
|
AssertEnabled="false"
|
||||||
|
CpLppeCancelDbhOnAgnssProvideLoc="true"
|
||||||
|
CpLppeUseAgnssLocForEmptyDbh="true"
|
||||||
|
CpLppHighAccuracyShapeMode="1"
|
||||||
|
ReAidingOnHotStart="false"
|
||||||
|
ReAidingIntervalSec="3600"
|
||||||
|
RuntimeSwLteFilterEnable="true"
|
||||||
|
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_L5"
|
||||||
|
MultiCarrLnaMask="L1_EXT_ON|L5_EXT_ON"
|
||||||
|
RfType="GL_RF_4776_BRCM"
|
||||||
|
ExtL5Bias="21.2"
|
||||||
|
|
||||||
|
WarmStandbyTimeout1Seconds="10"
|
||||||
|
WarmStandbyTimeout2Seconds="15"
|
||||||
|
|
||||||
|
EnableGnssPropagateInStandby="true"
|
||||||
|
|
||||||
|
RfPathLossDb_Ap="3.6"
|
||||||
|
RfPathLossDb_Cp="3.6"
|
||||||
|
RfPathLossDb_Ap_L5="3.6"
|
||||||
|
RfPathLossDb_Cp_L5="3.6"
|
||||||
|
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="0"
|
||||||
|
PowerMode="3"
|
||||||
|
MinGpsWeekNumber="2216"
|
||||||
|
OnChipAccMask="50"
|
||||||
|
EnableB1C="false"
|
||||||
|
|
||||||
|
RTICacheTimeoutSec="3600"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<gll_features
|
||||||
|
EnableNicAutoSwitch="true"
|
||||||
|
EnableNavic="true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</glgps>
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<item>38</item>
|
<item>38</item>
|
||||||
</integer-array>
|
</integer-array>
|
||||||
<integer-array name="antenna_y">
|
<integer-array name="antenna_y">
|
||||||
<item>97</item>
|
<item>53</item>
|
||||||
</integer-array>
|
</integer-array>
|
||||||
<bool name="nfc_observe_mode_supported">true</bool>
|
<bool name="nfc_observe_mode_supported">true</bool>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -1812,18 +1812,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",
|
||||||
|
@ -2128,11 +2116,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -2163,11 +2152,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -2198,11 +2188,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
|
|
@ -356,14 +356,6 @@
|
||||||
],
|
],
|
||||||
"ResetOnInit": true
|
"ResetOnInit": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Name": "NewlyIdleBalancer",
|
|
||||||
"Path": "/proc/vendor_sched/idle_balancer",
|
|
||||||
"Values": [
|
|
||||||
"0",
|
|
||||||
"1"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Name": "DisplayWakeup",
|
"Name": "DisplayWakeup",
|
||||||
"Path": "/sys/devices/platform/1c240000.drmdecon/early_wakeup",
|
"Path": "/sys/devices/platform/1c240000.drmdecon/early_wakeup",
|
||||||
|
@ -1419,12 +1411,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_EXTREME",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_STREAMING_HIGH",
|
"PowerHint": "CAMERA_STREAMING_HIGH",
|
||||||
"Node": "PowerHALCameraRunning",
|
"Node": "PowerHALCameraRunning",
|
||||||
|
@ -1551,12 +1537,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_HIGH",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_STREAMING_STANDARD",
|
"PowerHint": "CAMERA_STREAMING_STANDARD",
|
||||||
"Node": "PowerHALCameraRunning",
|
"Node": "PowerHALCameraRunning",
|
||||||
|
@ -1665,12 +1645,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_STANDARD",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_STREAMING_LOW",
|
"PowerHint": "CAMERA_STREAMING_LOW",
|
||||||
"Node": "PowerHALCameraRunning",
|
"Node": "PowerHALCameraRunning",
|
||||||
|
@ -1749,12 +1723,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_LOW",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_VIDEO_RECORDING",
|
"PowerHint": "CAMERA_VIDEO_RECORDING",
|
||||||
"Type": "MaskHint",
|
"Type": "MaskHint",
|
||||||
|
@ -2032,18 +2000,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",
|
||||||
|
@ -2324,11 +2280,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
|
||||||
|
@ -2359,11 +2316,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
|
||||||
|
@ -2394,11 +2352,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
|
||||||
|
|
|
@ -1150,18 +1150,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",
|
||||||
|
@ -1244,11 +1232,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -1279,11 +1268,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -1314,11 +1304,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
|
|
@ -1699,18 +1699,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",
|
||||||
|
@ -2015,11 +2003,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -2050,11 +2039,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -2085,11 +2075,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
|
|
@ -336,14 +336,6 @@
|
||||||
],
|
],
|
||||||
"ResetOnInit": true
|
"ResetOnInit": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Name": "NewlyIdleBalancer",
|
|
||||||
"Path": "/proc/vendor_sched/idle_balancer",
|
|
||||||
"Values": [
|
|
||||||
"0",
|
|
||||||
"1"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Name": "DisplayWakeup",
|
"Name": "DisplayWakeup",
|
||||||
"Path": "/sys/devices/platform/1c240000.drmdecon/early_wakeup",
|
"Path": "/sys/devices/platform/1c240000.drmdecon/early_wakeup",
|
||||||
|
@ -1275,12 +1267,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_EXTREME",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_STREAMING_HIGH",
|
"PowerHint": "CAMERA_STREAMING_HIGH",
|
||||||
"Node": "PowerHALCameraRunning",
|
"Node": "PowerHALCameraRunning",
|
||||||
|
@ -1407,12 +1393,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_HIGH",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_STREAMING_STANDARD",
|
"PowerHint": "CAMERA_STREAMING_STANDARD",
|
||||||
"Node": "PowerHALCameraRunning",
|
"Node": "PowerHALCameraRunning",
|
||||||
|
@ -1521,12 +1501,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_STANDARD",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_STREAMING_LOW",
|
"PowerHint": "CAMERA_STREAMING_LOW",
|
||||||
"Node": "PowerHALCameraRunning",
|
"Node": "PowerHALCameraRunning",
|
||||||
|
@ -1605,12 +1579,6 @@
|
||||||
"Duration": 0,
|
"Duration": 0,
|
||||||
"Value": "0"
|
"Value": "0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"PowerHint": "CAMERA_STREAMING_LOW",
|
|
||||||
"Node": "NewlyIdleBalancer",
|
|
||||||
"Duration": 0,
|
|
||||||
"Value": "0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"PowerHint": "CAMERA_VIDEO_RECORDING",
|
"PowerHint": "CAMERA_VIDEO_RECORDING",
|
||||||
"Type": "MaskHint",
|
"Type": "MaskHint",
|
||||||
|
@ -1888,18 +1856,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",
|
||||||
|
@ -2180,11 +2136,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
|
||||||
|
@ -2215,11 +2172,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
|
||||||
|
@ -2250,11 +2208,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
|
||||||
|
|
|
@ -1150,18 +1150,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",
|
||||||
|
@ -1244,11 +1232,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -1279,11 +1268,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
@ -1314,11 +1304,12 @@
|
||||||
"TargetTimeFactor": 1.0,
|
"TargetTimeFactor": 1.0,
|
||||||
"StaleTimeFactor": 20.0,
|
"StaleTimeFactor": 20.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
|
||||||
|
|
|
@ -429,318 +429,28 @@
|
||||||
"Type":"NPU",
|
"Type":"NPU",
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", "NAN", "NAN", "NAN"],
|
"HotThreshold":["NAN", "NAN", "NAN", "NAN", "NAN", "NAN", "NAN"],
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"battery_cycle",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"Multiplier":1,
|
|
||||||
"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"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"SendPowerHint":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"soc",
|
|
||||||
"Type":"BCL_PERCENTAGE",
|
|
||||||
"HotThreshold":["NAN", "NAN", 80, "NAN", "NAN", "NAN", "NAN"],
|
|
||||||
"Multiplier":1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_TPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"WEIGHTED_AVG",
|
|
||||||
"TriggerSensor": "ocp_tpu",
|
|
||||||
"Combination":["ocp_tpu", "battery"],
|
|
||||||
"Coefficient":[1, -10],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 13000, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_GPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"WEIGHTED_AVG",
|
|
||||||
"TriggerSensor": "ocp_gpu",
|
|
||||||
"Combination":["ocp_gpu", "battery"],
|
|
||||||
"Coefficient":[1, -10],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 13000, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 9, 9, 9]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_GPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":["batoilo", "ocp_gpu", "battery"],
|
|
||||||
"Coefficient":[5000, 12000, -1000 ],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 3.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 9, 9, 9]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_TPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":["batoilo", "ocp_tpu", "battery"],
|
|
||||||
"Coefficient":[5000, 12000, -1000],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 3.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_GPU",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":["batoilo", "ocp_gpu"],
|
|
||||||
"Coefficient":[5000, 12000],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 2.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 4, 4, 4]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_TPU",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":[
|
|
||||||
"batoilo",
|
|
||||||
"ocp_tpu"
|
|
||||||
],
|
|
||||||
"Coefficient":[5000, 12000],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 2.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 6, 6, 6]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 5, 5, 5]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_AUDIO_BAACL",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "soc",
|
|
||||||
"Combination":["battery", "soc"],
|
|
||||||
"Coefficient":[-25000, 80],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 2.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 2, 2, 2]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 4, 4, 4]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_cpu1",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 8000, "NAN", "NAN"],
|
|
||||||
"HotHysteresis":[0.0, 0.0, 0.0, 0.0, 100, 0.0, 0.0],
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Hidden":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_tpu",
|
|
||||||
"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],
|
|
||||||
"Multiplier":1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"CoolingDevices":[
|
"CoolingDevices":[
|
||||||
{
|
{
|
||||||
"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":[1100, 1050, 1000, 950, 900, 850, 800, 750, 700, 650, 600]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":[1400, 1350, 1300, 1250, 1200, 1150, 1100, 1050, 1000, 950, 900, 850, 800, 750]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":[1450, 1400, 1350, 1300, 1250, 1200, 1150, 1100, 1050, 1000, 950, 900, 850, 800, 750]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":[4371, 3543, 3085, 2293, 1927, 1707, 1394, 1171, 967, 768, 592, 433]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"chg_mdis",
|
"Name":"chg_mdis",
|
||||||
|
|
|
@ -60,383 +60,6 @@
|
||||||
"VrThreshold":"NAN",
|
"VrThreshold":"NAN",
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Name":"battery_cycle",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"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":"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",
|
|
||||||
80,
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 5, 5, 5]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_AUDIO_BAACL",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "soc",
|
|
||||||
"Combination":[
|
|
||||||
"battery",
|
|
||||||
"soc"
|
|
||||||
],
|
|
||||||
"Coefficient":[
|
|
||||||
"-25000",
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"HotThreshold":[
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
"NAN",
|
|
||||||
2.0,
|
|
||||||
"NAN",
|
|
||||||
"NAN"
|
|
||||||
],
|
|
||||||
"VrThreshold":"NAN",
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 10, 10]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 2, 2, 2]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"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":"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,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 10, 10]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Name":"TPU",
|
"Name":"TPU",
|
||||||
"Type":"NPU",
|
"Type":"NPU",
|
||||||
|
@ -457,20 +80,17 @@
|
||||||
{
|
{
|
||||||
"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":["1100", "1050", "1000", "950", "900", "850", "800", "750", "700", "650", "600"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":["1400", "1350", "1300", "1250", "1200", "1150", "1100", "1050", "1000", "950", "900", "850", "800", "750"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":["1450", "1400", "1350", "1300", "1250", "1200", "1150", "1100", "1050", "1000", "950", "900", "850", "800", "750"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"thermal-gpufreq-0",
|
"Name":"thermal-gpufreq-0",
|
||||||
|
|
|
@ -429,319 +429,28 @@
|
||||||
"Type":"NPU",
|
"Type":"NPU",
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", "NAN", "NAN", "NAN"],
|
"HotThreshold":["NAN", "NAN", "NAN", "NAN", "NAN", "NAN", "NAN"],
|
||||||
"Multiplier":0.001
|
"Multiplier":0.001
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"battery_cycle",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"Multiplier":1,
|
|
||||||
"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"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"SendPowerHint":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"soc",
|
|
||||||
"Type":"BCL_PERCENTAGE",
|
|
||||||
"HotThreshold":["NAN", "NAN", 80, "NAN", "NAN", "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_TPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"WEIGHTED_AVG",
|
|
||||||
"TriggerSensor": "ocp_tpu",
|
|
||||||
"Combination":["ocp_tpu", "battery"],
|
|
||||||
"Coefficient":[1, -10],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 13000, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_GPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"WEIGHTED_AVG",
|
|
||||||
"TriggerSensor": "ocp_gpu",
|
|
||||||
"Combination":["ocp_gpu", "battery"],
|
|
||||||
"Coefficient":[1, -10],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 13000, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 9, 9, 9]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_GPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":["batoilo", "ocp_gpu", "battery"],
|
|
||||||
"Coefficient":[5000, 12000, -1000],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 3.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 9, 9, 9]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_TPU_LOW_TEMP",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":["batoilo", "ocp_tpu", "battery"],
|
|
||||||
"Coefficient":[5000, 12000, -1000],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 3.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_GPU",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":["batoilo", "ocp_gpu"],
|
|
||||||
"Coefficient":[5000, 12000],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 2.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 4, 4, 4]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_BATOILO_TPU",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "batoilo",
|
|
||||||
"Combination":[
|
|
||||||
"batoilo",
|
|
||||||
"ocp_tpu"
|
|
||||||
],
|
|
||||||
"Coefficient":[5000, 12000],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 2.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 6, 6, 6]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 5, 5, 5]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"BCL_AUDIO_BAACL",
|
|
||||||
"Type":"BCL_VOLTAGE",
|
|
||||||
"VirtualSensor":true,
|
|
||||||
"Formula":"COUNT_THRESHOLD",
|
|
||||||
"TriggerSensor": "soc",
|
|
||||||
"Combination":["battery", "soc"],
|
|
||||||
"Coefficient":[-25000, 80],
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 2.0, "NAN", "NAN"],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 2, 2, 2]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 4, 4, 4]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Monitor":true,
|
|
||||||
"PollingDelay":0,
|
|
||||||
"PassiveDelay":1000,
|
|
||||||
"BindedCdevInfo": [
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-cpufreq-2",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 7, 7, 7]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "thermal-gpufreq-0",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CdevRequest": "tpu_cooling",
|
|
||||||
"LimitInfo": [0, 0, 0, 0, 3, 3, 3]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_cpu1",
|
|
||||||
"Type":"BCL_CURRENT",
|
|
||||||
"HotThreshold":["NAN", "NAN", "NAN", "NAN", 8000, "NAN", "NAN"],
|
|
||||||
"HotHysteresis":[0.0, 0.0, 0.0, 0.0, 100, 0.0, 0.0],
|
|
||||||
"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],
|
|
||||||
"Multiplier":1,
|
|
||||||
"Hidden":true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Name":"ocp_tpu",
|
|
||||||
"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],
|
|
||||||
"Multiplier":1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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],
|
|
||||||
"Multiplier":1
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"CoolingDevices":[
|
"CoolingDevices":[
|
||||||
{
|
{
|
||||||
"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":[1100, 1050, 1000, 950, 900, 850, 800, 750, 700, 650, 600]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":[1400, 1350, 1300, 1250, 1200, 1150, 1100, 1050, 1000, 950, 900, 850, 800, 750]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":[1450, 1400, 1350, 1300, 1250, 1200, 1150, 1100, 1050, 1000, 950, 900, 850, 800, 750]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"chg_mdis",
|
"Name":"chg_mdis",
|
||||||
|
|
|
@ -562,20 +562,17 @@
|
||||||
{
|
{
|
||||||
"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":["1100", "1050", "1000", "950", "900", "850", "800", "750", "700", "650", "600"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":["1400", "1350", "1300", "1250", "1200", "1150", "1100", "1050", "1000", "950", "900", "850", "800", "750"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":["1450", "1400", "1350", "1300", "1250", "1200", "1150", "1100", "1050", "1000", "950", "900", "850", "800", "750"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"thermal-gpufreq-0",
|
"Name":"thermal-gpufreq-0",
|
||||||
|
|
|
@ -659,20 +659,17 @@
|
||||||
{
|
{
|
||||||
"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":["1100", "1050", "1000", "950", "900", "850", "800", "750", "700", "650", "600"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":["1400", "1350", "1300", "1250", "1200", "1150", "1100", "1050", "1000", "950", "900", "850", "800", "750"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"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":["1450", "1400", "1350", "1300", "1250", "1200", "1150", "1100", "1050", "1000", "950", "900", "850", "800", "750"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name":"thermal-gpufreq-0",
|
"Name":"thermal-gpufreq-0",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue