cmi: Initial vendor
Based on CMIGlobal_OS1.0.2.0.TJAMIXM Change-Id: I4180d45518f22a46544fa3380e7544288f0f4b51
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<permissions>
|
||||
<library
|
||||
name="com.android.hotwordenrollment.common.util"
|
||||
file="/system_ext/framework/com.android.hotwordenrollment.common.util.jar"
|
||||
/>
|
||||
</permissions>
|
||||
|
||||
BIN
proprietary/vendor/bin/batterysecret
vendored
Executable file
BIN
proprietary/vendor/bin/hvdcp_opti
vendored
Executable file
BIN
proprietary/vendor/bin/hw/vendor.qti.hardware.sensorscalibrate@1.0-service
vendored
Normal file
35
proprietary/vendor/bin/init.qcom.sensors.sh
vendored
Executable file
@@ -0,0 +1,35 @@
|
||||
#!/vendor/bin/sh
|
||||
# Copyright (c) 2020 The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are met:
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# * Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in the
|
||||
# documentation and/or other materials provided with the distribution.
|
||||
# * Neither the name of The Linux Foundation nor
|
||||
# the names of its contributors may be used to endorse or promote
|
||||
# products derived from this software without specific prior written
|
||||
# permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
#
|
||||
# Function to start sensors for SSC enabled platforms
|
||||
#
|
||||
cp /vendor/etc/sensors/scripts/* /data/vendor/sensors/scripts/
|
||||
chmod a+rw /data/vendor/sensors/scripts/*
|
||||
rm /data/vendor/sensors/diag_log_slpi*
|
||||
rm /data/vendor/sensor_log/sensor*
|
||||
48
proprietary/vendor/bin/init.qti.chg_policy.sh
vendored
Executable file
@@ -0,0 +1,48 @@
|
||||
#! /vendor/bin/sh
|
||||
|
||||
#
|
||||
# Copyright (c) 2019-2021 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
# Copyright (c) 2019 The Linux Foundation. All rights reserved.
|
||||
#
|
||||
|
||||
export PATH=/vendor/bin
|
||||
|
||||
soc_id=`getprop ro.vendor.qti.soc_id`
|
||||
if [ "$soc_id" -eq 415 ] || [ "$soc_id" -eq 439 ] || [ "$soc_id" -eq 450 ] || [ "$soc_id" -eq 475 ] || [ "$soc_id" -eq 497 ] || [ "$soc_id" -eq 498 ] || [ "$soc_id" -eq 499 ] || [ "$soc_id" -eq 515 ]; then
|
||||
setprop persist.vendor.hvdcp_opti.start 2
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$soc_id" -eq 441 ] || [ "$soc_id" -eq 471 ]; then
|
||||
#Scuba does not support usb-pd or charge pumps
|
||||
find /sys/class/power_supply/battery/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/bms/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/main/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/usb/ -type f -maxdepth 1 | xargs chown system.system
|
||||
else
|
||||
find /sys/class/power_supply/battery/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/bms/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/main/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/usb/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/charge_pump_master/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/pc_port/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/dc/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/power_supply/parallel/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/usbpd/usbpd0/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/qc-vdm/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/charge_pump/ -type f -maxdepth 1 | xargs chown system.system
|
||||
find /sys/class/qcom-battery/ -type f -maxdepth 1 | xargs chown system.system
|
||||
|
||||
for i in 0 1 2 3 4 5 6 7 8 9
|
||||
do
|
||||
devname=`cat /sys/bus/iio/devices/iio:device$i/name`
|
||||
if [[ "$devname" == *smb* ]] || [[ "$devname" == *qg* ]] || [[ "$devname" == *div2_cp* ]] || [[ "$devname" == *div2-cp* ]]; then
|
||||
find /sys/bus/iio/devices/iio:device$i/ -type f -maxdepth 1 | xargs chown system.system
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
setprop persist.vendor.hvdcp_opti.start 1
|
||||
BIN
proprietary/vendor/bin/sensors.qti
vendored
Executable file
BIN
proprietary/vendor/bin/sscrpcd
vendored
Executable file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_Bluetooth_cal.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_General_cal.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_Global_cal.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_Handset_cal.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_Hdmi_cal.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_Headset_cal.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_Speaker_cal.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/Tutu/Tutu_workspaceFile.qwsp
vendored
Normal file
BIN
proprietary/vendor/etc/acdbdata/adsp_avs_config.acdb
vendored
Normal file
BIN
proprietary/vendor/etc/camera/102_SummerDay.png
vendored
Normal file
|
After Width: | Height: | Size: 342 KiB |
BIN
proprietary/vendor/etc/camera/103_Fantasy.png
vendored
Normal file
|
After Width: | Height: | Size: 335 KiB |
BIN
proprietary/vendor/etc/camera/104_Meet.png
vendored
Normal file
|
After Width: | Height: | Size: 330 KiB |
BIN
proprietary/vendor/etc/camera/105_WindSing.png
vendored
Normal file
|
After Width: | Height: | Size: 317 KiB |
BIN
proprietary/vendor/etc/camera/106_Lost.png
vendored
Normal file
|
After Width: | Height: | Size: 348 KiB |
BIN
proprietary/vendor/etc/camera/107_Central.png
vendored
Normal file
|
After Width: | Height: | Size: 336 KiB |
BIN
proprietary/vendor/etc/camera/108_NorthernEurope.png
vendored
Normal file
|
After Width: | Height: | Size: 295 KiB |
BIN
proprietary/vendor/etc/camera/109_Rome.png
vendored
Normal file
|
After Width: | Height: | Size: 194 KiB |
BIN
proprietary/vendor/etc/camera/110_BlackGold.png
vendored
Normal file
|
After Width: | Height: | Size: 289 KiB |
BIN
proprietary/vendor/etc/camera/111_GreenOrange.png
vendored
Normal file
|
After Width: | Height: | Size: 333 KiB |
BIN
proprietary/vendor/etc/camera/112_CyberPunk.png
vendored
Normal file
|
After Width: | Height: | Size: 351 KiB |
BIN
proprietary/vendor/etc/camera/113_BlackIce.png
vendored
Normal file
|
After Width: | Height: | Size: 276 KiB |
BIN
proprietary/vendor/etc/camera/CFR_para_HD_V03.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/CFR_para_T_2x_V03.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/CFR_para_W_V03.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/GpuKernelRepo.pb
vendored
Normal file
BIN
proprietary/vendor/etc/camera/LDC_FPC_TUNING_DATA.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/LDC_FPC_TUNING_DATA_AI.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/LDC_PACKDATA_VENDORID_0x01.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/LDC_PACKDATA_VENDORID_0x03.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/LDC_PACKDATA_VENDORID_0x07.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/ai_enhance.dlc
vendored
Normal file
34
proprietary/vendor/etc/camera/almalence_sr_params_tele.config
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.1, 0.9, 1.8, 1.8, 1.8, 1.8;
|
||||
sharpenIsoScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=0.6;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.9;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.5, 1.2, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.7, 0.6, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
sharpenGradScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainYScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainUScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainVScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
srMul=0.6;
|
||||
grainStrength=0.0;
|
||||
deghostPreMul=0.01;
|
||||
deghostMul=1.0;
|
||||
deghostPow=0.35;
|
||||
34
proprietary/vendor/etc/camera/almalence_sr_params_tele4x.config
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5;
|
||||
sharpenIsoScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenZoomScale=1.0, 1.0, 1.5, 1.0, 1.75, 1.75, 2, 2.5, 0.0;
|
||||
filterMul=0.6;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.9;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.3, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.7, 0.6, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
sharpenGradScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainYScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainUScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainVScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
srMul=0.65;
|
||||
grainStrength=0.0;
|
||||
deghostPreMul=0.01;
|
||||
deghostMul=1.0;
|
||||
deghostPow=0.35;
|
||||
34
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_iso100.config
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.3, 1.3, 1.3, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenIsoScale=1.0, 1.0, 1.0, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.9;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=1.0, 1.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
sharpenGradScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainYScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainUScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainVScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
srMul=1.0;
|
||||
grainStrength=0.0;
|
||||
deghostPreMul=0.01;
|
||||
deghostMul=1.0;
|
||||
deghostPow=0.35;
|
||||
25
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_iso100_zoom20x.config
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.3, 1.3, 1.3, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenIsoScale=0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.0, 0.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
25
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_iso100_zoom30x.config
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.3, 1.3, 1.3, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenIsoScale=0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.0, 0.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
25
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_iso100_zoom40x.config
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.3, 1.3, 1.3, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenIsoScale=0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.0, 0.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
36
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_moon.config
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
#phone: J1
|
||||
#version:2020-04-13
|
||||
#Comment: Modify the algorithm parameters corresponding to the moon mode; srMul=0.4;
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=0.4, 0.4, 0.4, 0.5, 0.6, 0.7, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8;
|
||||
sharpenIsoScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=1.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=0;
|
||||
deepFilterYMul=0.8, 0.5, 0.1, 0.1;
|
||||
deepFilterUVMul=1.5, 1.2, 1.0, 1.0;
|
||||
deepSharpen=0.8, 0.8, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
sharpenGradScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainYScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainUScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainVScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
srMul=0.4;
|
||||
grainStrength=0.0;
|
||||
deghostPreMul=0.01;
|
||||
deghostMul=1.0;
|
||||
deghostPow=0.35;
|
||||
25
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_zoom20x.config
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.3, 1.3, 1.3, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenIsoScale=0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.0, 0.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
25
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_zoom30x.config
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.3, 1.3, 1.3, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenIsoScale=0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.0, 0.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
25
proprietary/vendor/etc/camera/almalence_sr_params_tele4x_zoom40x.config
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.3, 1.3, 1.3, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenIsoScale=0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=1.0;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=0.0, 0.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
34
proprietary/vendor/etc/camera/almalence_sr_params_tele_iso100.config
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
#J1_2020-03-11_154600
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.1, 1.2, 1.2, 1.2, 1.2, 1.2;
|
||||
sharpenIsoScale=0.9, 0.9, 0.9, 0.9, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=0.9;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=0.9;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=1;
|
||||
deepFilterYMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepFilterUVMul=1.0, 1.0, 1.0, 1.0;
|
||||
deepSharpen=1.0, 1.0, 0.0, 0.0;
|
||||
deepFilterLeak=1;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
sharpenGradScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainYScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainUScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainVScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
srMul=0.9;
|
||||
grainStrength=0.0;
|
||||
deghostPreMul=0.01;
|
||||
deghostMul=1.0;
|
||||
deghostPow=0.35;
|
||||
35
proprietary/vendor/etc/camera/almalence_sr_params_wide.config
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
#时间:2020-01-10
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=1.5, 1.5, 1.6, 1.6, 1.6, 1.8, 1.9, 4.5, 4.5, 4.5, 4.6, 4.6;
|
||||
sharpenIsoScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sharpenZoomScale=1.0, 1.0, 0.0;
|
||||
filterMul=0.2;
|
||||
#filterLowMul; f; 1.0
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=1.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=0;
|
||||
deepFilterYMul=3.6, 1.8, 1.7, 1.4;
|
||||
deepFilterUVMul=4.0, 3.2, 3.0, 2.5;
|
||||
deepSharpen=1.0, 1.0, 0.0, 0.0;
|
||||
deepFilterLeak=0;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
sharpenGradScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainYScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainUScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainVScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
srMul=0.7;
|
||||
grainStrength=0.2;
|
||||
deghostPreMul=0.01;
|
||||
deghostMul=0.7;
|
||||
deghostPow=0.45;
|
||||
35
proprietary/vendor/etc/camera/almalence_sr_params_wide_64M.config
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
#date:2020-08-06
|
||||
#J3S
|
||||
deghostScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
sensitivityScale=0.6, 0.6, 0.6, 0.8, 0.8, 0.8, 0.8, 0.9, 1.0, 1.1, 1.2, 1.2;
|
||||
sharpenIsoScale=1.2, 1.2, 1.1, 1.1, 1.0, 1.0, 0.9, 0.9, 0.9, 0.8, 0.8, 0.8;
|
||||
sharpenZoomScale=1.0, 1.0, 0;
|
||||
filterMul=0.3;
|
||||
refFilterYMul=1.0;
|
||||
filterUVMul=1.0;
|
||||
refFilterUVMul=1.0;
|
||||
refFilterLowUVMul=1.0;
|
||||
sharpen=1.0;
|
||||
refFilterSharpen=0.0;
|
||||
srMinImages=1.0;
|
||||
movFiltAdd=0;
|
||||
deepFilterYMul=3.3, 2.6, 1.7, 1.5;
|
||||
deepFilterUVMul=3.0, 2.4, 1.8, 1.6;
|
||||
deepSharpen=1.1, 1.1, 0.6, 0.4;
|
||||
deepFilterLeak=0;
|
||||
deepFilterCorner=1.333;
|
||||
superRes=1;
|
||||
droLocal=0;
|
||||
deepFilter=1;
|
||||
bil11uv=0;
|
||||
maxSharpImages=10;
|
||||
preciseAlignment=1;
|
||||
sharpenGradScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainYScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainUScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
grainVScale=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0;
|
||||
srMul=1.0;
|
||||
grainStrength=0.0;
|
||||
deghostPreMul=0.01;
|
||||
deghostMul=1.0;
|
||||
deghostPow=0.2;
|
||||
21
proprietary/vendor/etc/camera/beauty_ui9_intelligent_params.config
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/*G
|
||||
1 2 3 4 5 6 7 8 9
|
||||
soften eye-large slender-face eye-bright deblemish depouch lip iris auto-bright
|
||||
10 11 12 13 14 15 16 17 18
|
||||
auto-color clarity auto-style slender-nose skin-sharp nose-highlgt 3d-nose 3d-app 3d-lip
|
||||
19 20 21 22 23 24 25 26 27
|
||||
3d-chin 3d-neck M-eyebrow M-pupil-line M-gloss M-blush eyesharp forhead teethwhite
|
||||
*/
|
||||
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
||||
//male(photo/front-bokeh/rear-bokeh)
|
||||
{ 25, 100, 100, 0, 1, 70, 0, 35, 0, 0, 10, 50, 0, 0, 0, 100, 100, 70, 60, 100, 60, 80, 60, 90, 0, -100, 0},
|
||||
{ 25, 0, 0, 0, 1, 70, 0, 35, 0, 0, 10, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -100, 0},
|
||||
{ 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -100, 0},
|
||||
//female(photo/front-bokeh/rear-bokeh)
|
||||
{ 40, 100, 100, 0, 1, 60, 50, 35, 0, 0, 10, 50, 0, 0, 0, 100, 100, 70, 60, 100, 60, 80, 60, 90, 0, -100, 0},
|
||||
{ 40, 0, 40, 0, 1, 60, 50, 35, 0, 0, 10, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -100, 0},
|
||||
{ 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -100, 0},
|
||||
//bady
|
||||
{ 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||
//preview(photo-video/front-bokeh/rear-bokeh)
|
||||
{ 60, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 100, 70, 60, 100, 60, 80, 60, 60, 0, -100, 0},
|
||||
20
proprietary/vendor/etc/camera/bokehParams.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"Bokeh_Params": {
|
||||
"Param0": 5,
|
||||
"Param1": 3,
|
||||
"Param2": 5,
|
||||
"Param3": 3,
|
||||
"Param4": 5,
|
||||
"Param5": 2,
|
||||
"Param6": 2,
|
||||
"Param7": 2,
|
||||
"Param8": 0,
|
||||
"Param9": 1,
|
||||
"Param10": {
|
||||
"Param10_0": 0,
|
||||
"Param10_1": "../data/vendor/camera/",
|
||||
"Param10_2": 100
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
65
proprietary/vendor/etc/camera/camxoverridesettings.txt
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
multiCameraEnable=TRUE
|
||||
pdafHWEnable=TRUE
|
||||
isTeleOisSupported=TRUE
|
||||
enableTOFInterface=TRUE
|
||||
logInfoMask=0x0
|
||||
overrideLogLevels=0x1
|
||||
logConfigMask=0x0
|
||||
logWarningMask=0x0
|
||||
logVerboseMask=0x0
|
||||
logDRQEnable=0x0
|
||||
logMetaEnable=0x0
|
||||
logRequestMapping=0x0
|
||||
systemLogEnable=TRUE
|
||||
logCoreCfgMask=0
|
||||
enableAsciiLogging=FALSE
|
||||
enableTxtLogging=0
|
||||
traceGroupsEnable=0
|
||||
enable3ADebugData=FALSE
|
||||
enableTuningMetadata=FALSE
|
||||
MPMSizeThresToDisableDelayedUnmap=0
|
||||
MPMForceDisableDelayedUnmap=TRUE
|
||||
is3rdLightWeightSupported=TRUE
|
||||
enableICAInGrid=1
|
||||
enableNCSService=1
|
||||
overrideFlashlightCurrent=75
|
||||
minReprocessInputWidth=8000
|
||||
minReprocessInputHeight=6000
|
||||
enableResourceManager=TRUE
|
||||
raiserecoverysigabrt=FALSE
|
||||
overrideFlashTorchCurrent=300
|
||||
overrideFlashlightCurrent=100
|
||||
disableFocusIndication=1
|
||||
gyroSensitivityLLS=0.03
|
||||
gyroSensitivityLLSEnable=FALSE
|
||||
isSuperPortraitSupported=FALSE
|
||||
isVideoMimovieSupported=TRUE
|
||||
isVideoLogformatSupported=TRUE
|
||||
AIEnhancementVersion=2
|
||||
isBeautyMakeupSupported=TRUE
|
||||
isVideoBeautifierSupported=TRUE
|
||||
isSatNearRangeMode=TRUE
|
||||
isVideoBokehSupported=TRUE
|
||||
iseispreviewSupported=TRUE
|
||||
ismfnrbokehsupported=TRUE
|
||||
enableRawHDR=0
|
||||
fovcEnable=1
|
||||
isFrontVideoBokehSupported=TRUE
|
||||
isColorRetentionSupported=TRUE
|
||||
multiCameraFrameSync=TRUE
|
||||
#isParallelCameraDeviceSupported=TRUE
|
||||
enableSensorHWSync=TRUE
|
||||
enableSensorFpsMatch=TRUE
|
||||
isVideoFilterSupported=TRUE
|
||||
FDFilterEngine=FD_Standard_ARM
|
||||
FDPreprocessing=GTM
|
||||
isVideoColorRetentionBackSupported=TRUE
|
||||
miIfeCamnocBandwidthMBytes=0xFFFF
|
||||
miIfeExternalBandwidthMBytes=0xFFFF
|
||||
miIfeBandwidthBoostCount=1
|
||||
AiSupportedMoonAutoFocus=TRUE
|
||||
enableCHIPartialData=1
|
||||
isHdrBokehSupported=TRUE
|
||||
enableGPURotation=TRUE
|
||||
quickviewsupport=TRUE
|
||||
sessionMaxFlushWaitTime=2000
|
||||
BIN
proprietary/vendor/etc/camera/com.xiaomi.dcal.wt.fake
vendored
Normal file
BIN
proprietary/vendor/etc/camera/com.xiaomi.dcal.wt4x.fake
vendored
Normal file
BIN
proprietary/vendor/etc/camera/com.xiaomi.dcal.wu.fake
vendored
Normal file
BIN
proprietary/vendor/etc/camera/com.xiaomi.dcal.wu.golden
vendored
Normal file
BIN
proprietary/vendor/etc/camera/det_quantize.dlc
vendored
Normal file
14
proprietary/vendor/etc/camera/eisoverridesettings.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
EISWidthMargin=0.2
|
||||
EISHeightMargin=0.4
|
||||
SUPEREISHeightMargin=0.513513
|
||||
SUPEREISWidthMargin=0.351351
|
||||
SUPEREISUWHeightMargin=0.517
|
||||
SUPEREISUWWidthMargin=0.355
|
||||
EISLDCGridEnabled=1
|
||||
EISv3GyroDumpEnabled=0
|
||||
EISv3OperationMode=0
|
||||
EISv2GyroDumpEnabled=0
|
||||
EISv2OperationMode=0
|
||||
EISFrameDelay=30
|
||||
EISv2iFOVCEnable=1
|
||||
EISv3iFOVCEnable=1
|
||||
BIN
proprietary/vendor/etc/camera/eyelineblush.cng
vendored
Normal file
BIN
proprietary/vendor/etc/camera/goturn_search_dsp.dlc
vendored
Normal file
BIN
proprietary/vendor/etc/camera/goturn_target_dsp.dlc
vendored
Normal file
22
proprietary/vendor/etc/camera/hdrd_ui9_params.config
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
static ArcHDRDAEParam ArcHDRDAEParams[] = {
|
||||
///(lux_min, lux_max, c_min, c_max, drc_min, drc_max, llhdr autoev evnum, ev[5] evMaxMinStep)
|
||||
//CommonAEParam
|
||||
//wide
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
//front
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -8, -12, 0, 0, -12, 12, 6},
|
||||
//tele 2x
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
//tele 5x
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
//ultra
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
//macro
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
//bokeh 2x
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
//bokeh 5x
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
//default camera
|
||||
{250, 300, 0.5, 0.7, 2.0, 4.0 ,0, 1, 3, 0, -12, 6, 0, 0, -12, 12, 6},
|
||||
};
|
||||
BIN
proprietary/vendor/etc/camera/mibokeh_855_opencl.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/mibokeh_855_parameter.bin
vendored
Normal file
BIN
proprietary/vendor/etc/camera/misupermoon/MobNetv2TF_0.35_iter200000_zoom2.5x_h1500w2000.dlc
vendored
Normal file
BIN
proprietary/vendor/etc/camera/model.dat
vendored
Normal file
BIN
proprietary/vendor/etc/camera/model_back.dlc
vendored
Normal file
BIN
proprietary/vendor/etc/camera/model_front.dlc
vendored
Normal file
BIN
proprietary/vendor/etc/camera/model_front_mibokeh_video.dlc
vendored
Normal file
BIN
proprietary/vendor/etc/camera/reid_float.dlc
vendored
Normal file
153
proprietary/vendor/etc/camera/sceneDetection.xml
vendored
Normal file
@@ -0,0 +1,153 @@
|
||||
<?xml version="1.0"?>
|
||||
<sceneDetection>
|
||||
<commonSetting>
|
||||
<blockWidth>32</blockWidth>
|
||||
<blockHeight>32</blockHeight>
|
||||
<frameNumToSave>3</frameNumToSave>
|
||||
<downsampleFactor>4</downsampleFactor>
|
||||
</commonSetting>
|
||||
|
||||
<hdr>
|
||||
<indoor_iso>800</indoor_iso>
|
||||
<indoor_expoTime>60</indoor_expoTime>
|
||||
<indoor_lowExpoRange>10</indoor_lowExpoRange>
|
||||
<indoor_highExpoRange>8</indoor_highExpoRange>
|
||||
<indoor_lowExpoRangeExtended>5</indoor_lowExpoRangeExtended>
|
||||
<indoor_highExpoRangeExtended>5</indoor_highExpoRangeExtended>
|
||||
<indoor_lowRatioThre>0.03</indoor_lowRatioThre>
|
||||
<indoor_highRatioThre>0.03</indoor_highRatioThre>
|
||||
<indoor_face_lowExpoRange>5</indoor_face_lowExpoRange>
|
||||
<indoor_face_highExpoRange>8</indoor_face_highExpoRange>
|
||||
<indoor_face_lowExpoRangeExtended>5</indoor_face_lowExpoRangeExtended>
|
||||
<indoor_face_highExpoRangeExtended>5</indoor_face_highExpoRangeExtended>
|
||||
<indoor_face_lowRatioThre>0.05</indoor_face_lowRatioThre>
|
||||
<indoor_face_highRatioThre>0.05</indoor_face_highRatioThre>
|
||||
|
||||
<outdoor_iso>200</outdoor_iso>
|
||||
<outdoor_expoTime>20</outdoor_expoTime>
|
||||
<outdoor_minRevisedBrightness>418.939</outdoor_minRevisedBrightness>
|
||||
<outdoor_lowExpoRange>10</outdoor_lowExpoRange>
|
||||
<outdoor_highExpoRange>8</outdoor_highExpoRange>
|
||||
<outdoor_lowExpoRangeExtended>5</outdoor_lowExpoRangeExtended>
|
||||
<outdoor_highExpoRangeExtended>5</outdoor_highExpoRangeExtended>
|
||||
<outdoor_lowRatioThre>0.03</outdoor_lowRatioThre>
|
||||
<outdoor_highRatioThre>0.03</outdoor_highRatioThre>
|
||||
<outdoor_face_lowExpoRange>5</outdoor_face_lowExpoRange>
|
||||
<outdoor_face_highExpoRange>8</outdoor_face_highExpoRange>
|
||||
<outdoor_face_lowExpoRangeExtended>5</outdoor_face_lowExpoRangeExtended>
|
||||
<outdoor_face_highExpoRangeExtended>5</outdoor_face_highExpoRangeExtended>
|
||||
<outdoor_face_lowRatioThre>0.05</outdoor_face_lowRatioThre>
|
||||
<outdoor_face_highRatioThre>0.05</outdoor_face_highRatioThre>
|
||||
|
||||
<night_iso>100</night_iso>
|
||||
<night_expoTime>10</night_expoTime>
|
||||
<night_maxRevisedBrightness>3</night_maxRevisedBrightness>
|
||||
<night_lowExpoRange>10</night_lowExpoRange>
|
||||
<night_highExpoRange>8</night_highExpoRange>
|
||||
<night_lowExpoRangeExtended>5</night_lowExpoRangeExtended>
|
||||
<night_highExpoRangeExtended>5</night_highExpoRangeExtended>
|
||||
<night_lowRatioThre>0.03</night_lowRatioThre>
|
||||
<night_highRatioThre>0.03</night_highRatioThre>
|
||||
<night_face_lowExpoRange>5</night_face_lowExpoRange>
|
||||
<night_face_highExpoRange>8</night_face_highExpoRange>
|
||||
<night_face_lowExpoRangeExtended>5</night_face_lowExpoRangeExtended>
|
||||
<night_face_highExpoRangeExtended>5</night_face_highExpoRangeExtended>
|
||||
<night_face_lowRatioThre>0.05</night_face_lowRatioThre>
|
||||
<night_face_highRatioThre>0.05</night_face_highRatioThre>
|
||||
|
||||
<default_lowExpoRange>10</default_lowExpoRange>
|
||||
<default_highExpoRange>8</default_highExpoRange>
|
||||
<default_lowExpoRangeExtended>5</default_lowExpoRangeExtended>
|
||||
<default_highExpoRangeExtended>5</default_highExpoRangeExtended>
|
||||
<default_lowRatioThre>0.03</default_lowRatioThre>
|
||||
<default_highRatioThre>0.03</default_highRatioThre>
|
||||
|
||||
<touch_lowExpoRange>10</touch_lowExpoRange>
|
||||
<touch_highExpoRange>8</touch_highExpoRange>
|
||||
<touch_lowExpoRangeExtended>5</touch_lowExpoRangeExtended>
|
||||
<touch_highExpoRangeExtended>5</touch_highExpoRangeExtended>
|
||||
<touch_lowRatioThre>0.03</touch_lowRatioThre>
|
||||
<touch_highRatioThre>0.03</touch_highRatioThre>
|
||||
</hdr>
|
||||
|
||||
<!--add by fengchaoyu for motion detection -->
|
||||
<motion>
|
||||
<motion_frameDiffThre>17.85</motion_frameDiffThre>
|
||||
<motion_blockWidth>32</motion_blockWidth>
|
||||
<motion_blockHeight>32</motion_blockHeight>
|
||||
<motion_judgeMove>0.015</motion_judgeMove>
|
||||
<motion_frameGap1>1</motion_frameGap1>
|
||||
<motion_frameGap2>1</motion_frameGap2>
|
||||
<motion_roiWidRate>1</motion_roiWidRate>
|
||||
<motion_roiHeiRate>1</motion_roiHeiRate>
|
||||
<motion_downsample>4</motion_downsample>
|
||||
<motion_startIndex>7</motion_startIndex>
|
||||
<motion_indoorExpoTime>40</motion_indoorExpoTime>
|
||||
|
||||
<motion_threStaGap>50.0</motion_threStaGap>
|
||||
<motion_threEndGap>220.0</motion_threEndGap>
|
||||
<motion_threFirStage>30.0</motion_threFirStage>
|
||||
<motion_threSecStageK>0.2</motion_threSecStageK>
|
||||
<motion_threThirStage>20.0</motion_threThirStage>
|
||||
|
||||
<motion_faceLeftXThre>40</motion_faceLeftXThre>
|
||||
<motion_faceTopYThre>40</motion_faceTopYThre>
|
||||
<motion_faceRollThre>20</motion_faceRollThre>
|
||||
<motion_facePitchThre>20</motion_facePitchThre>
|
||||
<motion_faceYawThre>30</motion_faceYawThre>
|
||||
<motion_faceSizeThre>40</motion_faceSizeThre>
|
||||
</motion>
|
||||
|
||||
<!--add by fengchaoyu for wideangle recommend-->
|
||||
<wideangle>
|
||||
<wideangle_horizontal>180</wideangle_horizontal>
|
||||
<wideangle_horiThre>10</wideangle_horiThre>
|
||||
<wideangle_vertical>270</wideangle_vertical>
|
||||
<wideangle_vertiThre>10</wideangle_vertiThre>
|
||||
<wideangle_minFaceNum>3</wideangle_minFaceNum>
|
||||
<wideangle_faceDisRatio>2.0</wideangle_faceDisRatio>
|
||||
<wideangle_faceSizeRatio>0.5</wideangle_faceSizeRatio>
|
||||
<wideangle_edgeDisRatio>0.1</wideangle_edgeDisRatio>
|
||||
</wideangle>
|
||||
|
||||
<!--add by gongqiang for nightView recommend-->
|
||||
<nightview>
|
||||
<nightview_lowthresh>50</nightview_lowthresh>
|
||||
<nightview_highthresh>150</nightview_highthresh>
|
||||
<nightview_lowratio>0.8</nightview_lowratio>
|
||||
<nightview_highratio>0.3</nightview_highratio>
|
||||
</nightview>
|
||||
|
||||
<dxo_nightview>
|
||||
<dxo_nightview_light>10.0</dxo_nightview_light>
|
||||
<dxo_nightview_mlight>80.0</dxo_nightview_mlight>
|
||||
<dxo_nightview_iso>1000.0</dxo_nightview_iso>
|
||||
<dxo_nightview_expo_time>20.0</dxo_nightview_expo_time>
|
||||
<dxo_nightview_bright_thresh>240</dxo_nightview_bright_thresh>
|
||||
<dxo_nightview_bright_ratio_thresh>0.008</dxo_nightview_bright_ratio_thresh>
|
||||
<dxo_nightview_dark_thresh>50</dxo_nightview_dark_thresh>
|
||||
<dxo_nightview_dark_ratio_thresh>0.3</dxo_nightview_dark_ratio_thresh>
|
||||
<dxo_lux_index_thresh>380</dxo_lux_index_thresh>
|
||||
<dxo_middle_low>80</dxo_middle_low>
|
||||
<dxo_middle_high>200</dxo_middle_high>
|
||||
<dxo_middle_ratio_thresh>0.4</dxo_middle_ratio_thresh>
|
||||
|
||||
<dxo_lux_index_thresh_face>400.0</dxo_lux_index_thresh_face>
|
||||
<dxo_nightview_light_face>10.0</dxo_nightview_light_face>
|
||||
<dxo_nightview_dark_ratio_thresh_face>0.18</dxo_nightview_dark_ratio_thresh_face>
|
||||
<dxo_nightview_middle_ratio_thresh_face>0.5</dxo_nightview_middle_ratio_thresh_face>
|
||||
<dxo_nightview_bright_ratio_thresh_face>0.008</dxo_nightview_bright_ratio_thresh_face>
|
||||
|
||||
<dxo_nightview_extreme_dark_lux>400.0</dxo_nightview_extreme_dark_lux>
|
||||
|
||||
</dxo_nightview>
|
||||
|
||||
<hdr_face>
|
||||
<hdr_bright_thresh>240</hdr_bright_thresh>
|
||||
<hdr_bright_ratio>0.008</hdr_bright_ratio>
|
||||
<face_brightness_thresh>200</face_brightness_thresh>
|
||||
<hdr_light_thresh>10</hdr_light_thresh>
|
||||
</hdr_face>
|
||||
|
||||
|
||||
</sceneDetection>
|
||||
BIN
proprietary/vendor/etc/camera/seg_quantized.dlc
vendored
Normal file
BIN
proprietary/vendor/etc/camera/vidhance_calibration
vendored
Normal file
14
proprietary/vendor/etc/charger_fstab.qti
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
#
|
||||
# Copyright (c) 2019 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
# Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
|
||||
#
|
||||
|
||||
# Android fstab file.
|
||||
# The filesystem that contains the filesystem checker binary (typically /system) cannot
|
||||
# specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK
|
||||
|
||||
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
|
||||
/dev/block/bootdevice/by-name/persist /mnt/vendor/persist ext4 noatime,nosuid,nodev,barrier=1 wait
|
||||
14
proprietary/vendor/etc/elliptic_sensor.xml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<ellipticSensorSetup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="elliptic_sensor.xsd">
|
||||
<sensors>
|
||||
<sensor name="Elliptic Proximity" reader="hexagon" sensor_type="8" type="4" subtype="401" audio_notify="ultrasound-proximity" debug="true">
|
||||
<ranges>
|
||||
<near value="0.0" limit="3.0"></near>
|
||||
<far value="5.0" limit="5.0"></far>
|
||||
</ranges>
|
||||
</sensor>
|
||||
</sensors>
|
||||
<readers>
|
||||
<reader name="hexagon"></reader>
|
||||
</readers>
|
||||
</ellipticSensorSetup>
|
||||
28
proprietary/vendor/etc/init/init.batterysecret.rc
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
on property:sys.boot_completed=1
|
||||
chmod 0664 /sys/class/usbpd/usbpd0/usbpd_verifed
|
||||
chmod 0664 /sys/class/usbpd/usbpd0/request_vdm_cmd
|
||||
chmod 0664 /sys/class/usbpd/usbpd0/verify_process
|
||||
chmod 0664 /sys/class/power_supply/usb/pd_authentication
|
||||
chmod 0664 /sys/class/power_supply/bms/authentic
|
||||
chmod 0664 /sys/class/power_supply/bms_master/authentic
|
||||
chmod 0664 /sys/class/power_supply/bms_slave/authentic
|
||||
|
||||
service batterysecret /vendor/bin/batterysecret
|
||||
class last_start
|
||||
user root
|
||||
group system system wakelock
|
||||
disabled
|
||||
|
||||
on property:sys.boot_completed=1
|
||||
start batterysecret
|
||||
|
||||
#run batterysecret in off-charge mode
|
||||
on charger
|
||||
start batterysecret
|
||||
chmod 0664 /sys/class/usbpd/usbpd0/usbpd_verifed
|
||||
chmod 0664 /sys/class/usbpd/usbpd0/request_vdm_cmd
|
||||
chmod 0664 /sys/class/usbpd/usbpd0/verify_process
|
||||
chmod 0664 /sys/class/power_supply/usb/pd_authentication
|
||||
chmod 0664 /sys/class/power_supply/bms/authentic
|
||||
chmod 0664 /sys/class/power_supply/bms_master/authentic
|
||||
chmod 0664 /sys/class/power_supply/bms_slave/authentic
|
||||
52
proprietary/vendor/etc/init/init.vendor.sensors.rc
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
# Copyright (c) 2019 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
# Copyright (c) 2009-2012, 2014-2019, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are met:
|
||||
# # Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# # Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in the
|
||||
# documentation and/or other materials provided with the distribution.
|
||||
# # Neither the name of The Linux Foundation nor
|
||||
# the names of its contributors may be used to endorse or promote
|
||||
# products derived from this software without specific prior written
|
||||
# permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
on early-boot
|
||||
|
||||
write /sys/kernel/boot_slpi/boot 1
|
||||
|
||||
chown system system /mnt/vendor/persist/sensors
|
||||
chown system system /mnt/vendor/persist/sensors/sns.reg
|
||||
chown system system /mnt/vendor/persist/sensors/sensors_list.txt
|
||||
chown system system /mnt/vendor/persist/sensors/registry
|
||||
chown system system /mnt/vendor/persist/sensors/registry/registry
|
||||
chown system system /mnt/vendor/persist/sensors/registry/registry/sensors_registry
|
||||
chown system system /mnt/vendor/persist/sensors/sensors_settings
|
||||
chown system system /mnt/vendor/persist/sensors/registry/sns_reg_config
|
||||
chown system system /mnt/vendor/persist/sensors/registry/sns_reg_version
|
||||
chown system system /mnt/vendor/persist/sensors/registry/config
|
||||
chmod 0664 /mnt/vendor/persist/sensors/sensors_settings
|
||||
chown system system /sys/kernel/boot_adsp/ssr
|
||||
|
||||
on post-fs-data && property:ro.build.type=userdebug
|
||||
#sensors log dir
|
||||
mkdir /data/vendor/sensors 0777 system system
|
||||
mkdir /data/vendor/sensors/scripts 0777 system system
|
||||
8
proprietary/vendor/etc/init/ipa_fws.rc
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Copyright (c) 2019-2020 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
|
||||
on early-boot
|
||||
write /dev/ipa 1
|
||||
|
||||
43
proprietary/vendor/etc/init/vendor.qti.hardware.charger_monitor@1.0-service.rc
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright (c) 2019-2020, Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
# Copyright (c) 2013-2018, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
|
||||
service vendor.hvdcp_opti /vendor/bin/hvdcp_opti
|
||||
class main
|
||||
user system
|
||||
group system wakelock
|
||||
capabilities BLOCK_SUSPEND WAKE_ALARM
|
||||
disabled
|
||||
|
||||
service vendor.qti-chg-policy-sh /vendor/bin/init.qti.chg_policy.sh
|
||||
class core
|
||||
user root
|
||||
oneshot
|
||||
disabled
|
||||
|
||||
on boot
|
||||
enable vendor.qti-chg-policy-sh
|
||||
start vendor.qti-chg-policy-sh
|
||||
|
||||
on charger
|
||||
chown radio wakelock /sys/power/wake_lock
|
||||
chmod 0660 /sys/power/wake_lock
|
||||
chown radio wakelock /sys/power/wake_unlock
|
||||
chmod 0660 /sys/power/wake_unlock
|
||||
mkdir /mnt/vendor/persist/hvdcp_opti 0770 root system
|
||||
mount_all /vendor/etc/charger_fstab.qti --early
|
||||
enable vendor.qti-chg-policy-sh
|
||||
start vendor.qti-chg-policy-sh
|
||||
|
||||
on property:persist.vendor.hvdcp_opti.start=2
|
||||
rmdir /mnt/vendor/persist/hvdcp_opti
|
||||
setprop persist.vendor.hvdcp_opti.start 0
|
||||
|
||||
on property:persist.vendor.hvdcp_opti.start=1
|
||||
mkdir /mnt/vendor/persist/hvdcp_opti 0770 root system
|
||||
enable vendor.hvdcp_opti
|
||||
start vendor.hvdcp_opti
|
||||
setprop persist.vendor.hvdcp_opti.start 0
|
||||
8
proprietary/vendor/etc/init/vendor.qti.hardware.sensorscalibrate@1.0-service.rc
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Copyright (c) 2017 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
service sensorscal-hal-1-0 /vendor/bin/hw/vendor.qti.hardware.sensorscalibrate@1.0-service
|
||||
class hal
|
||||
user system
|
||||
group system
|
||||
49
proprietary/vendor/etc/init/vendor.sensors.qti.rc
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
# Copyright (c) 2019 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
# Copyright (c) 2009-2012, 2014-2019, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are met:
|
||||
# # Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# # Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in the
|
||||
# documentation and/or other materials provided with the distribution.
|
||||
# # Neither the name of The Linux Foundation nor
|
||||
# the names of its contributors may be used to endorse or promote
|
||||
# products derived from this software without specific prior written
|
||||
# permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
service vendor.sensors.qti /vendor/bin/sensors.qti
|
||||
class main
|
||||
user system
|
||||
group system
|
||||
disabled
|
||||
oneshot
|
||||
|
||||
on property:debug.sensors.diag_buffer_log=true
|
||||
start vendor.sensors.qti
|
||||
|
||||
on property:debug.sensors.diag_buffer_log=false
|
||||
stop vendor.sensors.qti
|
||||
|
||||
service vendor-sensor-sh /vendor/bin/init.qcom.sensors.sh
|
||||
class late_start
|
||||
user system
|
||||
group system
|
||||
oneshot
|
||||
37
proprietary/vendor/etc/init/vendor.sensors.sscrpcd.rc
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
# Copyright (c) 2019 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
#
|
||||
# Copyright (c) 2009-2012, 2014-2019, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are met:
|
||||
# # Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# # Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in the
|
||||
# documentation and/or other materials provided with the distribution.
|
||||
# # Neither the name of The Linux Foundation nor
|
||||
# the names of its contributors may be used to endorse or promote
|
||||
# products derived from this software without specific prior written
|
||||
# permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
service vendor.sensors /vendor/bin/sscrpcd sensorspd
|
||||
class early_hal
|
||||
user system
|
||||
group system wakelock
|
||||
capabilities BLOCK_SUSPEND
|
||||
shutdown critical
|
||||
117
proprietary/vendor/etc/libnfc-nci.conf
vendored
Normal file
@@ -0,0 +1,117 @@
|
||||
########################## Start of libnfc-nci.conf ###########################
|
||||
# Sep.19, 2019 Reviewed by Jian
|
||||
###############################################################################
|
||||
# Application options
|
||||
NFC_DEBUG_ENABLED=1
|
||||
###############################################################################
|
||||
# performance measurement
|
||||
# Change this setting to control how often USERIAL log the performance (throughput)
|
||||
# data on read/write/poll
|
||||
# defailt is to log performance dara for every 100 read or write
|
||||
#REPORT_PERFORMANCE_MEASURE=100
|
||||
###############################################################################
|
||||
# File used for NFA storage
|
||||
NFA_STORAGE="/data/nfc"
|
||||
###############################################################################
|
||||
# Configure the default NfcA/IsoDep techology and protocol route. Can be
|
||||
# either a secure element (e.g. 0xF4) or the host (0x00)
|
||||
#DEFAULT_ISODEP_ROUTE=0x00
|
||||
|
||||
###############################################################################
|
||||
## Default poll duration (in ms)
|
||||
## The defualt is 500ms if not set
|
||||
NFA_DM_DISC_DURATION_POLL=500
|
||||
|
||||
###############################################################################
|
||||
# Force UICC to only listen to the following technology(s).
|
||||
# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
|
||||
# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B | NFA_TECHNOLOGY_MASK_F
|
||||
UICC_LISTEN_TECH_MASK=0x07
|
||||
|
||||
###############################################################################
|
||||
# Force HOST listen feature enable or disable.
|
||||
# 0: Disable
|
||||
# 1: Enable
|
||||
HOST_LISTEN_ENABLE=0x01
|
||||
###############################################################################
|
||||
# When screen is turned off, specify the desired power state of the controller.
|
||||
# 0: power-off-sleep state; DEFAULT
|
||||
# 1: full-power state
|
||||
# 2: screen-off card-emulation (CE4/CE3/CE1 modes are used)
|
||||
SCREEN_OFF_POWER_STATE=1
|
||||
###############################################################################
|
||||
# Force tag polling for the following technology(s).
|
||||
# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
|
||||
# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B |
|
||||
# NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 |
|
||||
# NFA_TECHNOLOGY_MASK_B_PRIME |
|
||||
# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE.
|
||||
#
|
||||
# Notable bits:
|
||||
# NFA_TECHNOLOGY_MASK_A 0x01 /* NFC Technology A */
|
||||
# NFA_TECHNOLOGY_MASK_B 0x02 /* NFC Technology B */
|
||||
# NFA_TECHNOLOGY_MASK_F 0x04 /* NFC Technology F */
|
||||
# NFA_TECHNOLOGY_MASK_ISO15693 0x08 /* Proprietary Technology */
|
||||
# NFA_TECHNOLOGY_MASK_A_ACTIVE 0x40 /* NFC Technology A active mode */
|
||||
# NFA_TECHNOLOGY_MASK_F_ACTIVE 0x80 /* NFC Technology F active mode */
|
||||
POLLING_TECH_MASK=0x4F
|
||||
###############################################################################
|
||||
# Force P2P to only listen for the following technology(s).
|
||||
# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
|
||||
# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_F |
|
||||
# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE
|
||||
#
|
||||
# Notable bits:
|
||||
# NFA_TECHNOLOGY_MASK_A 0x01 /* NFC Technology A */
|
||||
# NFA_TECHNOLOGY_MASK_F 0x04 /* NFC Technology F */
|
||||
# NFA_TECHNOLOGY_MASK_A_ACTIVE 0x40 /* NFC Technology A active mode */
|
||||
# NFA_TECHNOLOGY_MASK_F_ACTIVE 0x80 /* NFC Technology F active mode */
|
||||
P2P_LISTEN_TECH_MASK=0x45
|
||||
###############################################################################
|
||||
PRESERVE_STORAGE=0x01
|
||||
###############################################################################
|
||||
# Override the stack default for NFA_EE_MAX_EE_SUPPORTED set in nfc_target.h.
|
||||
# The value is set to 3 by default as it assumes we will discover 0xF2,
|
||||
# 0xF3, and 0xF4. If a platform will exclude and SE, this value can be reduced
|
||||
# so that the stack will not wait any longer than necessary.
|
||||
|
||||
# Maximum EE supported number
|
||||
# NXP PN547C2 0x02
|
||||
# NXP PN65T 0x03
|
||||
# NXP PN548C2 0x02
|
||||
# NXP PN66T 0x03
|
||||
NFA_MAX_EE_SUPPORTED=0x03
|
||||
##############################################################################
|
||||
# Deactivate notification wait time out in seconds used in ETSI Reader mode
|
||||
# 0 - Infinite wait
|
||||
NFA_DM_DISC_NTF_TIMEOUT=0
|
||||
|
||||
###############################################################################
|
||||
# AID_MATCHING constants
|
||||
# AID_MATCHING_EXACT_ONLY 0x00
|
||||
# AID_MATCHING_EXACT_OR_PREFIX 0x01
|
||||
# AID_MATCHING_PREFIX_ONLY 0x02
|
||||
#AID_MATCHING_EXACT_OR_SUBSET_OR_PREFIX 0x03
|
||||
AID_MATCHING_MODE=0x03
|
||||
###############################################################################
|
||||
# Preferred Secure Element for Technology based routing
|
||||
# eSE 0x01
|
||||
# UICC 0x02
|
||||
NXP_PRFD_TECH_SE=0x02
|
||||
|
||||
################################################################################
|
||||
#Set bit to 1 , black list is enabled
|
||||
#Set bit to 0, to disable balcklist
|
||||
NFA_AID_BLOCK_ROUTE=0x01
|
||||
|
||||
################################################################################
|
||||
# Maximum WTX requests entertained by MW
|
||||
NXP_WM_MAX_WTX_COUNT=30
|
||||
################################################################################
|
||||
#Set the default Felica T3T System Code :
|
||||
#This settings will be used when application does not set this parameter
|
||||
DEFAULT_SYS_CODE={FE:FE}
|
||||
#########################################################################
|
||||
#Set NCI credit notification timeout value
|
||||
NXP_NCI_CREDIT_NTF_TIMEOUT=2
|
||||
#########################################################################
|
||||
456
proprietary/vendor/etc/libnfc-nxp.conf
vendored
Normal file
@@ -0,0 +1,456 @@
|
||||
#################### This file is used by NXP NFC NCI HAL #####################
|
||||
# Sep.19, 2019 Reviewed by Jian
|
||||
###############################################################################
|
||||
# Application options
|
||||
# Logging Levels
|
||||
# NXPLOG_DEFAULT_LOGLEVEL 0x01
|
||||
# ANDROID_LOG_DEBUG 0x03
|
||||
# ANDROID_LOG_WARN 0x02
|
||||
# ANDROID_LOG_ERROR 0x01
|
||||
# ANDROID_LOG_SILENT 0x00
|
||||
NXPLOG_EXTNS_LOGLEVEL=0x03
|
||||
NXPLOG_NCIHAL_LOGLEVEL=0x03
|
||||
NXPLOG_NCIX_LOGLEVEL=0x03
|
||||
NXPLOG_NCIR_LOGLEVEL=0x03
|
||||
NXPLOG_FWDNLD_LOGLEVEL=0x03
|
||||
NXPLOG_TML_LOGLEVEL=0x03
|
||||
NFC_DEBUG_ENABLED=1
|
||||
|
||||
###############################################################################
|
||||
# Nfc Device Node name
|
||||
NXP_NFC_DEV_NODE="/dev/nq-nci"
|
||||
|
||||
#################################################################################
|
||||
#VEN Toggle Config
|
||||
#Disable = 0x00
|
||||
#Enable = 0x01
|
||||
ENABLE_VEN_TOGGLE=0x00
|
||||
|
||||
###############################################################################
|
||||
# Extension for Mifare reader enable
|
||||
MIFARE_READER_ENABLE=0x01
|
||||
|
||||
###############################################################################
|
||||
# File name for Firmware
|
||||
NXP_FW_NAME="libsn100u_fw.so"
|
||||
|
||||
###############################################################################
|
||||
# System clock source selection configuration
|
||||
#define CLK_SRC_XTAL 1
|
||||
#define CLK_SRC_PLL 2
|
||||
NXP_SYS_CLK_SRC_SEL=0x02
|
||||
|
||||
###############################################################################
|
||||
# System clock frequency selection configuration
|
||||
#define CLK_FREQ_13MHZ 1
|
||||
#define CLK_FREQ_19_2MHZ 2
|
||||
#define CLK_FREQ_24MHZ 3
|
||||
#define CLK_FREQ_26MHZ 4
|
||||
#define CLK_FREQ_38_4MHZ 5
|
||||
#define CLK_FREQ_52MHZ 6
|
||||
NXP_SYS_CLK_FREQ_SEL=0x02
|
||||
|
||||
###############################################################################
|
||||
# The timeout value to be used for clock request acknowledgment
|
||||
# min value = 0x01 to max = 0x06
|
||||
#NXP_SYS_CLOCK_TO_CFG=0x06
|
||||
|
||||
###############################################################################
|
||||
# The delay to try to start PLL/XTAL when using sys clock 256/fc units = ~18.8 us
|
||||
# min value = 0x01 to max = 0x1F
|
||||
#NXP_CLOCK_REQ_DELAY=0x16
|
||||
|
||||
###############################################################################
|
||||
# NXP proprietary settings
|
||||
NXP_ACT_PROP_EXTN={2F, 02, 00}
|
||||
|
||||
###############################################################################
|
||||
# NFC forum profile settings
|
||||
NXP_NFC_PROFILE_EXTN={20, 02, 05, 01, A0, 44, 01, 00}
|
||||
|
||||
###############################################################################
|
||||
# NXP TVDD configurations settings
|
||||
# Allow NFCC to configure External TVDD, two configurations (1 and 2) supported,
|
||||
# out of them only one can be configured at a time.
|
||||
#NXP_EXT_TVDD_CFG=0x02
|
||||
|
||||
###############################################################################
|
||||
#config1:SLALM, 3.3V for both RM and CM
|
||||
#NXP_EXT_TVDD_CFG_1={20, 02, 0F, 01, A0, 0E, 0B, 31, 01, 01, 31, 00, 00, 00, 01, 00, D0, 0C}
|
||||
|
||||
###############################################################################
|
||||
#config2: use DCDC in CE, use Tx_Pwr_Req, set CFG2 mode, SLALM,
|
||||
#monitoring 5V from DCDC, 3.3V for both RM and CM, DCDCWaitTime=4.2ms
|
||||
#NXP_EXT_TVDD_CFG_2={20, 02, 0F, 01, A0, 0E, 0B, 11, 01, C2, B2, 00, B2, 1E, 1F, 00, D0, 0C}
|
||||
|
||||
###############################################################################
|
||||
# Core configuration rf field filter settings to enable set to 01 to disable set
|
||||
# to 00 last bit
|
||||
#NXP_CORE_RF_FIELD={ 20, 02, 05, 01, A0, 62, 01, 00 }
|
||||
|
||||
###############################################################################
|
||||
# To enable i2c fragmentation set i2c fragmentation enable 0x01 to disable set
|
||||
# to 0x00
|
||||
#NXP_I2C_FRAGMENTATION_ENABLED=0x00
|
||||
|
||||
###############################################################################
|
||||
#set autonomous mode
|
||||
# disable autonomous 0x00
|
||||
# enable autonomous 0x01
|
||||
NXP_AUTONOMOUS_ENABLE=0x00
|
||||
###############################################################################
|
||||
#set Guard Timer
|
||||
# Gurad Timer range to 0x0F-0xFF(i.e.15-255 seconds)
|
||||
NXP_GUARD_TIMER_VALUE=0x0F
|
||||
###############################################################################
|
||||
#Enable SWP full power mode when phone is power off
|
||||
#NXP_SWP_FULL_PWR_ON=0x00
|
||||
|
||||
################################################################################
|
||||
#This is used to configure UICC2 at boot time.
|
||||
# UICC2 0x03
|
||||
NXP_DEFAULT_UICC2_SELECT=0x03
|
||||
###############################################################################
|
||||
# CE when Screen state is locked
|
||||
# This setting is for DEFAULT_AID_ROUTE,
|
||||
# DEFAULT_DESFIRE_ROUTE and DEFAULT_MIFARE_CLT_ROUTE
|
||||
# Disable 0x00
|
||||
# Enable 0x01
|
||||
NXP_CE_ROUTE_STRICT_DISABLE=0x01
|
||||
|
||||
###############################################################################
|
||||
#Timeout in secs
|
||||
NXP_SWP_RD_TAG_OP_TIMEOUT=20
|
||||
|
||||
###############################################################################
|
||||
#Set the default AID route Location :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# host 0x00
|
||||
# eSE 0x01
|
||||
# UICC 0x02
|
||||
# UICC2 0x03
|
||||
DEFAULT_AID_ROUTE=0x02
|
||||
|
||||
###############################################################################
|
||||
#Set the ISODEP (Mifare Desfire) route Location :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# host 0x00
|
||||
# eSE 0x01
|
||||
# UICC 0x02
|
||||
# UICC2 0x03
|
||||
DEFAULT_ISODEP_ROUTE=0x02
|
||||
|
||||
###############################################################################
|
||||
#Set the Mifare CLT route Location :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# host 0x00
|
||||
# eSE 0x01
|
||||
# UICC 0x02
|
||||
# UICC2 0x03
|
||||
DEFAULT_MIFARE_CLT_ROUTE=0x02
|
||||
|
||||
###############################################################################
|
||||
#Set the Felica CLT route Location :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# eSE 0x01
|
||||
# UICC 0x02
|
||||
# UICC2 0x03
|
||||
DEFAULT_FELICA_CLT_ROUTE=0x02
|
||||
|
||||
###############################################################################
|
||||
#Set the default AID Power state :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# bit pos 0 = Switch On
|
||||
# bit pos 1 = Switch Off
|
||||
# bit pos 2 = Battery Off
|
||||
# bit pos 3 = Screen off unlock
|
||||
# bit pos 4 = Screen On lock
|
||||
# bit pos 5 = Screen Off lock
|
||||
DEFAULT_AID_PWR_STATE=0x3B
|
||||
###############################################################################
|
||||
#Set the Mifare Desfire Power state :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# bit pos 0 = Switch On
|
||||
# bit pos 1 = Switch Off
|
||||
# bit pos 2 = Battery Off
|
||||
# bit pos 3 = Screen off unlock
|
||||
# bit pos 4 = Screen On lock
|
||||
# bit pos 5 = Screen Off lock
|
||||
DEFAULT_DESFIRE_PWR_STATE=0x3B
|
||||
|
||||
###############################################################################
|
||||
#Set the Mifare CLT Power state :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# bit pos 0 = Switch On
|
||||
# bit pos 1 = Switch Off
|
||||
# bit pos 2 = Battery Off
|
||||
# bit pos 3 = Screen off unlock
|
||||
# bit pos 4 = Screen On lock
|
||||
# bit pos 5 = Screen Off lock
|
||||
DEFAULT_MIFARE_CLT_PWR_STATE=0x3B
|
||||
|
||||
###############################################################################
|
||||
#Set the Felica CLT Power state :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# bit pos 0 = Switch On
|
||||
# bit pos 1 = Switch Off
|
||||
# bit pos 2 = Battery Off
|
||||
# bit pos 3 = Screen off unlock
|
||||
# bit pos 4 = Screen On lock
|
||||
# bit pos 5 = Screen Off lock
|
||||
DEFAULT_FELICA_CLT_PWR_STATE=0x3B
|
||||
|
||||
###############################################################################
|
||||
#Set the T4TNfcee AID Power state :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# bit pos 0 = Switch On
|
||||
# bit pos 1 = Switch Off
|
||||
# bit pos 2 = Battery Off
|
||||
# bit pos 3 = Screen off unlock
|
||||
# bit pos 4 = Screen On lock
|
||||
# bit pos 5 = Screen Off lock
|
||||
DEFAULT_T4TNFCEE_AID_POWER_STATE=0x3B
|
||||
|
||||
###############################################################################
|
||||
#Set the default Felica T3T System Code OffHost route Location :
|
||||
#This settings will be used when application does not set this parameter
|
||||
# host 0x00
|
||||
# eSE 0x01
|
||||
# UICC 0x02
|
||||
# UICC2 0x03
|
||||
DEFAULT_SYS_CODE_ROUTE=0x00
|
||||
|
||||
###############################################################################
|
||||
# AID Matching platform options
|
||||
# AID_MATCHING_L 0x01
|
||||
# AID_MATCHING_K 0x02
|
||||
#AID_MATCHING_PLATFORM=0x01
|
||||
|
||||
###############################################################################
|
||||
# P61 interface options
|
||||
# SPI 0x02
|
||||
NXP_P61_LS_DEFAULT_INTERFACE=0x02
|
||||
|
||||
###############################################################################
|
||||
#CHINA_TIANJIN_RF_SETTING
|
||||
#Enable 0x01
|
||||
#Disable 0x00
|
||||
#NXP_CHINA_TIANJIN_RF_ENABLED=0x01
|
||||
|
||||
###############################################################################
|
||||
#SWP_SWITCH_TIMEOUT_SETTING
|
||||
# Allowed range of swp timeout setting is 0x00 to 0x3C [0 - 60].
|
||||
# Timeout in milliseconds, for example
|
||||
# No Timeout 0x00
|
||||
# 10 millisecond timeout 0x0A
|
||||
#NXP_SWP_SWITCH_TIMEOUT=0x0A
|
||||
|
||||
###############################################################################
|
||||
# Flashing Options Configurations
|
||||
# FLASH_UPPER_VERSION 0x01
|
||||
# FLASH_DIFFERENT_VERSION 0x02
|
||||
# FLASH_ALWAYS 0x03
|
||||
NXP_FLASH_CONFIG=0x02
|
||||
|
||||
###############################################################################
|
||||
# P61 interface options for JCOP Download
|
||||
# SPI 0x02
|
||||
NXP_P61_JCOP_DEFAULT_INTERFACE=0x02
|
||||
|
||||
###############################################################################
|
||||
# Option to perform LS update every boot
|
||||
# Enable 0x01
|
||||
# Disable 0x00
|
||||
NXP_LS_FORCE_UPDATE_REQUIRED=0x00
|
||||
|
||||
###############################################################################
|
||||
# Option to perform JCOP update every boot
|
||||
# Enable 0x01
|
||||
# Disable 0x00
|
||||
NXP_JCOP_FORCE_UPDATE_REQUIRED=0x00
|
||||
|
||||
###############################################################################
|
||||
# Bail out mode
|
||||
# If set to 1, NFCC is using bail out mode for either Type A or Type B poll.
|
||||
NFA_POLL_BAIL_OUT_MODE=0x00
|
||||
|
||||
###############################################################################
|
||||
# White list of Hosts
|
||||
# This values will be the Hosts(NFCEEs) in the HCI Network.
|
||||
DEVICE_HOST_WHITE_LIST={C0, 80}
|
||||
|
||||
###############################################################################
|
||||
# Choose the presence-check algorithm for type-4 tag. If not defined, the default value is 1.
|
||||
# 0 NFA_RW_PRES_CHK_DEFAULT; Let stack selects an algorithm
|
||||
# 1 NFA_RW_PRES_CHK_I_BLOCK; ISO-DEP protocol's empty I-block
|
||||
# 2 NFA_RW_PRES_CHK_ISO_DEP_NAK; Type - 4 tag protocol iso-dep nak presence check
|
||||
# command is sent waiting for rsp and ntf.
|
||||
PRESENCE_CHECK_ALGORITHM=2
|
||||
###############################################################################
|
||||
# Enable/Disable checking default proto SE Id
|
||||
# Disable 0x00
|
||||
# Enable 0x01
|
||||
NXP_CHECK_DEFAULT_PROTO_SE_ID=0x01
|
||||
###############################################################################
|
||||
# Vendor Specific Proprietary Protocol & Discovery Configuration
|
||||
# Set to 0xFF if unsupported
|
||||
# byte[0] NCI_PROTOCOL_18092_ACTIVE
|
||||
# byte[1] NCI_PROTOCOL_B_PRIME
|
||||
# byte[2] NCI_PROTOCOL_DUAL
|
||||
# byte[3] NCI_PROTOCOL_15693
|
||||
# byte[4] NCI_PROTOCOL_KOVIO
|
||||
# byte[5] NCI_PROTOCOL_MIFARE
|
||||
# byte[6] NCI_DISCOVERY_TYPE_POLL_KOVIO
|
||||
# byte[7] NCI_DISCOVERY_TYPE_POLL_B_PRIME
|
||||
# byte[8] NCI_DISCOVERY_TYPE_LISTEN_B_PRIME
|
||||
NFA_PROPRIETARY_CFG={05, FF, FF, 06, 81, 80, FF, FF, FF}
|
||||
|
||||
###############################################################################
|
||||
#NXP_CN_TRANSIT_BLK_NUM_CHECK_ENABLE
|
||||
#Enable/Disable block number checks for china transit use case
|
||||
#Enable 0x01
|
||||
#Disable 0x00
|
||||
#NXP_CN_TRANSIT_BLK_NUM_CHECK_ENABLE=0x01
|
||||
|
||||
###################################################################################################
|
||||
#This flags will enable different modes of Lx Debug based on bits of the Byte0 & Byte1
|
||||
#Byte 0:
|
||||
# |_________Bit Mask_______| Debug Mode
|
||||
# b7|b6|b5|b4|b3|b2|b1|b0|
|
||||
# |X | | | | | | | Enable 7816-4 RetCode
|
||||
# | | |X | | | | | Enable L1 Events (ISO14443-4, ISO18092)
|
||||
# | | | |X | | | | Enable L2 Reader Events(ROW specific)
|
||||
# | | | | |X | | | Enable Felica SystemCode
|
||||
# | | | | | |X | | Enable Felica RF (all Felica CM events)
|
||||
# | | | | | | |X | Enable L2 Events Card Emulation (ISO14443-3, Modulation detected, RF Field ON/OFF)
|
||||
#Byte 1:
|
||||
# Enable RSSI 0x01 Byte1 Byte0
|
||||
# Disable RSSI 0x00 \__ __/
|
||||
# e.g. NXP_CORE_PROP_SYSTEM_DEBUG=0x0110 ==> L1 with RSSI
|
||||
NXP_CORE_PROP_SYSTEM_DEBUG=0x0000
|
||||
|
||||
###############################################################################
|
||||
#Enable NXP NCI runtime parser library
|
||||
#Enable 0x01
|
||||
#Disable 0x00
|
||||
NXP_NCI_PARSER_LIBRARY=0x00
|
||||
|
||||
###############################################################################
|
||||
# Timeout value in milliseconds for JCOP OS download to complete
|
||||
OS_DOWNLOAD_TIMEOUT_VALUE=60000
|
||||
|
||||
###############################################################################
|
||||
# Forcing HOST to listen for a selected protocol
|
||||
# 0x00 : Disable Host Listen
|
||||
# 0x01 : Enable Host to Listen (A) for ISO-DEP tech A
|
||||
# 0x02 : Enable Host to Listen (B) for ISO-DEP tech B
|
||||
# 0x04 : Enable Host to Listen (F) for T3T Tag Type Protocol tech F
|
||||
# 0x07 : Enable Host to Listen (ABF)for ISO-DEP tech AB & T3T Tag Type Protocol tech F
|
||||
HOST_LISTEN_TECH_MASK=0x07
|
||||
|
||||
###############################################################################
|
||||
# Enable forward functionality
|
||||
# Disable 0x00
|
||||
# Enable 0x01
|
||||
FORWARD_FUNCTIONALITY_ENABLE=0x01
|
||||
|
||||
###############################################################################
|
||||
# Configure the NFC Extras to open and use a static pipe. If the value is
|
||||
# not set or set to 0, then the default is use a dynamic pipe based on a
|
||||
# destination gate (see NFA_HCI_DEFAULT_DEST_GATE). Note there is a value
|
||||
# for each EE (ESE/SIM)
|
||||
OFF_HOST_ESE_PIPE_ID=0x16
|
||||
OFF_HOST_SIM_PIPE_ID=0x0A
|
||||
|
||||
###############################################################################
|
||||
#Set the Felica T3T System Code Power state :
|
||||
#This settings will be used when application does not set this parameter
|
||||
#Update Power state as per NCI2.0
|
||||
DEFAULT_SYS_CODE_PWR_STATE=0x39
|
||||
|
||||
###############################################################################
|
||||
#Default Secure Element route id
|
||||
DEFAULT_OFFHOST_ROUTE=0x02
|
||||
|
||||
###############################################################################
|
||||
#Maximum SMB transceive wait for response
|
||||
NXP_SMB_TRANSCEIVE_TIMEOUT=2000
|
||||
###############################################################################
|
||||
# Firmware file type
|
||||
#.so file 0x01
|
||||
#.bin file 0x02
|
||||
NXP_FW_TYPE=0x01
|
||||
############################################################################
|
||||
# Extended APDU length for ISO_DEP
|
||||
ISO_DEP_MAX_TRANSCEIVE=0xFEFF
|
||||
#########################################################################
|
||||
# Support for Amendment I SEMS specification
|
||||
# Support SEMS Amendment I 0x01
|
||||
# Support NXP LS client 0x00
|
||||
NXP_GP_AMD_I_SEMS_SUPPORTED=0x01
|
||||
###############################################################################
|
||||
# Assign terminal number to each interface based on system config
|
||||
NXP_SPI_SE_TERMINAL_NUM="eSE1"
|
||||
###############################################################################
|
||||
# Assign terminal number to each interface based on system config
|
||||
#NXP_VISO_SE_TERMINAL_NUM="eSE3"
|
||||
###############################################################################
|
||||
# Assign terminal number to each interface based on system config
|
||||
NXP_NFC_SE_TERMINAL_NUM="eSE2"
|
||||
###############################################################################
|
||||
#For static or dynamic dual UICC feature support
|
||||
#Enable static dual uicc feature by setting value 0x00
|
||||
#Enable dynamic dual uicc feature by setting value 0x01
|
||||
NXP_DUAL_UICC_ENABLE=0x01
|
||||
###############################################################################
|
||||
# Time to wait by DH when NFCC will report eSE Cold Temp Error.
|
||||
# The value is as per the UM and in seconds
|
||||
NXP_SE_COLD_TEMP_ERROR_DELAY=0x05
|
||||
|
||||
###############################################################################
|
||||
# Set configuration optimization decision setting
|
||||
# Enable = 0x01
|
||||
# Disable = 0x00
|
||||
NXP_SET_CONFIG_ALWAYS=0x01
|
||||
###############################################################################
|
||||
#OffHost ESE route location for MultiSE
|
||||
#ESE = 01
|
||||
OFFHOST_ROUTE_ESE={01}
|
||||
|
||||
###############################################################################
|
||||
#OffHost UICC route location for MultiSE
|
||||
#UICC1 = 02
|
||||
#UICC2 = 03
|
||||
OFFHOST_ROUTE_UICC={02:03}
|
||||
|
||||
###############################################################################
|
||||
#T4T NFCEE ENABLE
|
||||
#bit pos 0 = T4T NFCEE Enable
|
||||
#bit pos 6 = T4T NFCEE Contactless write enable
|
||||
NXP_T4T_NFCEE_ENABLE=0x01
|
||||
|
||||
###############################################################################
|
||||
#CORE_SET_CONF_CMD to reset Prop Emvco Flag
|
||||
NXP_PROP_RESET_EMVCO_CMD={20, 02, 05, 01, A0, 44, 01, 00}
|
||||
|
||||
###############################################################################
|
||||
# Firmware patch format, Only 1 and 5 should be set
|
||||
# 0 -> NFC Default
|
||||
# 1 -> EMVCO Default
|
||||
# 3 -> EMVCO Polling, DISC_IDLE = POWER_OFF, DISC DEACTIVATE = Removal process
|
||||
# 5 -> EMVCO Cert Polling, DISC_IDLE = Removal process , DISC DEACTIVATE = POWER_OFF
|
||||
# 7 -> EMVCO Polling, DISC_IDLE = POWER_OFF, DISC DEACTIVATE = POWER_OFF
|
||||
NFA_CONFIG_FORMAT=1
|
||||
|
||||
################################################################################
|
||||
# This will enable power state required for GSMA testing.
|
||||
# When this is enabled , then default AID route power state is added with this power state
|
||||
# If any aid with power state 0 is added, then this power state is used.
|
||||
# bit pos 0 = Switch On
|
||||
# bit pos 1 = Switch Off
|
||||
# bit pos 2 = Battery Off
|
||||
# bit pos 3 = Screen off unlock
|
||||
# bit pos 4 = Screen On lock
|
||||
# bit pos 5 = Screen Off lock
|
||||
DEFUALT_GSMA_PWR_STATE=0x3B
|
||||
#################################################################################
|
||||
11
proprietary/vendor/etc/permissions/vendor-qti-hardware-sensorscalibrate.xml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!---
|
||||
Copyright (c) 2017 Qualcomm Technologies, Inc.
|
||||
All Rights Reserved.
|
||||
Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
-->
|
||||
<permissions>
|
||||
<library name="vendor.qti.hardware.sensorscalibrate-V1.0"
|
||||
file="/system/framework/vendor.qti.hardware.sensorscalibrate-V1.0-java.jar"/>
|
||||
</permissions>
|
||||
|
||||
115
proprietary/vendor/etc/sensors/calibratedCheck.json
vendored
Normal file
@@ -0,0 +1,115 @@
|
||||
[
|
||||
{
|
||||
"parsedFileInfo":{
|
||||
"rootFile":"/mnt/vendor/persist/sensors/registry/registry/lsm6dso_0_platform.accel.fac_cal.bias",
|
||||
"verDepth":1,
|
||||
"rootObject":"lsm6dso_0_platform.accel.fac_cal.bias",
|
||||
"items":["x"]
|
||||
},
|
||||
"originalFileInfo":{"rootFile":"/vendor/etc/sensors/config/sm8250_lsm6dso_0.json",
|
||||
"verDepth":4,
|
||||
"rootObject":"lsm6dso_0_platform",
|
||||
"subRootObject1":".accel",
|
||||
"subRootObject2":".fac_cal",
|
||||
"subRootObject3":".bias",
|
||||
"items":["x"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"parsedFileInfo":{
|
||||
"rootFile":"/mnt/vendor/persist/sensors/registry/registry/lsm6dso_0_platform.gyro.fac_cal.bias",
|
||||
"verDepth":1,
|
||||
"rootObject":"lsm6dso_0_platform.gyro.fac_cal.bias",
|
||||
"items":["x"]
|
||||
},
|
||||
"originalFileInfo":{
|
||||
"rootFile":"/vendor/etc/sensors/config/sm8250_lsm6dso_0.json",
|
||||
"verDepth":4,
|
||||
"rootObject":"lsm6dso_0_platform",
|
||||
"subRootObject1":".gyro",
|
||||
"subRootObject2":".fac_cal",
|
||||
"subRootObject3":".bias",
|
||||
"items":["x"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"parsedFileInfo":{
|
||||
"rootFile":"/mnt/vendor/persist/sensors/registry/registry/tcs3701_platform.als.fac_cal",
|
||||
"verDepth":1,
|
||||
"rootObject":"tcs3701_platform.als.fac_cal",
|
||||
"items":["scale"]
|
||||
},
|
||||
"originalFileInfo":{
|
||||
"rootFile":"/vendor/etc/sensors/config/sm8250_tcs3701.json",
|
||||
"verDepth":3,
|
||||
"rootObject":"tcs3701_platform",
|
||||
"subRootObject1":".als",
|
||||
"subRootObject2":".fac_cal",
|
||||
"items":["scale"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"parsedFileInfo":{
|
||||
"rootFile":"/mnt/vendor/persist/sensors/registry/registry/vl53l1_tof_platform.prox.customer",
|
||||
"verDepth":1,
|
||||
"rootObject":"vl53l1_tof_platform.prox.customer",
|
||||
"items":["spad_enables_ref_0"]
|
||||
},
|
||||
"originalFileInfo":{
|
||||
"rootFile":"/vendor/etc/sensors/config/sm8250_vl53l1_tof_0.json",
|
||||
"verDepth":3,
|
||||
"rootObject":"vl53l1_tof_platform",
|
||||
"subRootObject1":".prox",
|
||||
"subRootObject2":".customer",
|
||||
"items":["spad_enables_ref_0"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"parsedFileInfo":{
|
||||
"rootFile":"/mnt/vendor/persist/sensors/registry/registry/tcs3701_platform.oled_cal_factor",
|
||||
"verDepth":1,
|
||||
"rootObject":"tcs3701_platform.oled_cal_factor",
|
||||
"items":["clear_a"]
|
||||
},
|
||||
"originalFileInfo":{
|
||||
"rootFile":"/vendor/etc/sensors/config/sm8250_tcs3701.json",
|
||||
"verDepth":2,
|
||||
"rootObject":"tcs3701_platform",
|
||||
"subRootObject1":".oled_cal_factor",
|
||||
"items":["clear_a"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"parsedFileInfo":{
|
||||
"rootFile":"/mnt/vendor/persist/sensors/registry/registry/tcs3408_platform.als.fac_cal",
|
||||
"verDepth":1,
|
||||
"rootObject":"tcs3408_platform.als.fac_cal",
|
||||
"items":["scale"]
|
||||
},
|
||||
"originalFileInfo":{
|
||||
"rootFile":"/vendor/etc/sensors/config/sm8250_tcs3408.json",
|
||||
"verDepth":3,
|
||||
"rootObject":"tcs3408_platform",
|
||||
"subRootObject1":".als",
|
||||
"subRootObject2":".fac_cal",
|
||||
"items":["scale"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"parsedFileInfo":{
|
||||
"rootFile":"/mnt/vendor/persist/sensors/registry/registry/bmp285_0_platform.pressure.fac_cal.bias",
|
||||
"verDepth":1,
|
||||
"rootObject":"bmp285_0_platform.pressure.fac_cal.bias",
|
||||
"items":["x"]
|
||||
},
|
||||
"originalFileInfo":{
|
||||
"rootFile":"/vendor/etc/sensors/config/sm8250_bmp285_0.json",
|
||||
"verDepth":4,
|
||||
"rootObject":"bmp285_0_platform",
|
||||
"subRootObject1":".pressure",
|
||||
"subRootObject2":".fac_cal",
|
||||
"subRootObject3":".bias",
|
||||
"items":["x"]
|
||||
}
|
||||
}
|
||||
]
|
||||
39
proprietary/vendor/etc/sensors/config/ak991x_dri_0.json
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"config":{
|
||||
"hw_platform": ["MTP", "Dragon", "Surf", "CMI"],
|
||||
"soc_id": ["291", "246", "305", "321", "339", "356"]
|
||||
},
|
||||
"ak0991x_0":{
|
||||
"owner": "sns_ak0991x",
|
||||
".mag":{
|
||||
"owner": "sns_ak0991x",
|
||||
".config":{
|
||||
"owner": "sns_ak0991x",
|
||||
"is_dri":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"hw_id":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"res_idx":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sync_stream":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".config_2":{
|
||||
"owner": "sns_ak0991x",
|
||||
"use_fifo":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"nsf":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sdr":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
46
proprietary/vendor/etc/sensors/config/bmp285_0.json
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"config":
|
||||
{
|
||||
"hw_platform": ["MTP", "Dragon", "Surf", "CMI"],
|
||||
"soc_id": ["291", "246", "305", "321", "356"]
|
||||
},
|
||||
"bmp285_0":{
|
||||
"owner": "sns_bmp285",
|
||||
".temp":{
|
||||
"owner": "sns_bmp285",
|
||||
".config":{
|
||||
"owner": "sns_bmp285",
|
||||
"is_dri":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"hw_id":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"res_idx":{ "type": "int", "ver": "0",
|
||||
"data": "2"
|
||||
},
|
||||
"sync_stream":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
}
|
||||
},
|
||||
".pressure":{
|
||||
"owner": "sns_bmp285",
|
||||
".config":{
|
||||
"owner": "sns_bmp285",
|
||||
"is_dri":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"hw_id":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"res_idx":{ "type": "int", "ver": "0",
|
||||
"data": "2"
|
||||
},
|
||||
"sync_stream":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
82
proprietary/vendor/etc/sensors/config/lsm6dso_0.json
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"config":
|
||||
{
|
||||
"hw_platform": ["QRD", "MTP", "Dragon", "Surf", "HDK", "CMI"],
|
||||
"soc_id": ["336", "339", "341", "321", "339", "356"]
|
||||
},
|
||||
"lsm6dso_0":{
|
||||
"owner": "lsm6dso",
|
||||
".accel":{
|
||||
"owner": "lsm6dso",
|
||||
".config":{
|
||||
"owner": "lsm6dso",
|
||||
"is_dri":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"hw_id":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"res_idx":{ "type": "int", "ver": "0",
|
||||
"data": "2"
|
||||
},
|
||||
"sync_stream":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
}
|
||||
},
|
||||
".gyro":{
|
||||
"owner": "lsm6dso",
|
||||
".config":{
|
||||
"owner": "lsm6dso",
|
||||
"is_dri":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"hw_id":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"res_idx":{ "type": "int", "ver": "0",
|
||||
"data": "3"
|
||||
},
|
||||
"sync_stream":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
}
|
||||
},
|
||||
".md":{
|
||||
"owner": "lsm6dso",
|
||||
".config":{
|
||||
"owner": "lsm6dso",
|
||||
"is_dri":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"hw_id":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"res_idx":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sync_stream":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
}
|
||||
},
|
||||
".temp":{
|
||||
"owner": "lsm6dso",
|
||||
".config":{
|
||||
"owner": "lsm6dso",
|
||||
"is_dri":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"hw_id":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"res_idx":{ "type": "int", "ver": "0",
|
||||
"data": "2"
|
||||
},
|
||||
"sync_stream":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
241
proprietary/vendor/etc/sensors/config/sm8250_ak991x_0.json
vendored
Normal file
@@ -0,0 +1,241 @@
|
||||
{
|
||||
"config":
|
||||
{
|
||||
"hw_platform": ["MTP", "Surf", "CMI"],
|
||||
"soc_id": ["321", "339", "356"]
|
||||
},
|
||||
"ak0991x_0_platform":{
|
||||
"owner": "sns_ak0991x",
|
||||
".config":{
|
||||
"owner": "sns_ak0991x",
|
||||
"bus_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"bus_instance":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"slave_config":{ "type": "int", "ver": "0",
|
||||
"data": "12"
|
||||
},
|
||||
"min_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "400"
|
||||
},
|
||||
"max_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "400"
|
||||
},
|
||||
"reg_addr_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"dri_irq_num":{ "type": "int", "ver": "0",
|
||||
"data": "119"
|
||||
},
|
||||
"irq_pull_type":{ "type": "int", "ver": "0",
|
||||
"data": "3"
|
||||
},
|
||||
"irq_is_chip_pin":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"irq_drive_strength":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"irq_trigger_type":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"num_rail":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"rail_on_state":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"vddio_rail":{ "type": "str", "ver": "2",
|
||||
"data": "/pmic/client/sensor_vddio"
|
||||
},
|
||||
"rigid_body_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".orient":{
|
||||
"owner": "sns_ak0991x",
|
||||
"x":{ "type": "str", "ver": "2",
|
||||
"data": "-x"
|
||||
},
|
||||
"y":{ "type": "str", "ver": "2",
|
||||
"data": "+y"
|
||||
},
|
||||
"z":{ "type": "str", "ver": "1",
|
||||
"data": "-z"
|
||||
}
|
||||
},
|
||||
".mag":{
|
||||
"owner": "sns_ak0991x",
|
||||
".fac_cal":{
|
||||
"owner": "sns_ak0991x",
|
||||
".corr_mat":{
|
||||
"owner": "sns_ak0991x",
|
||||
"0_0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.996902"
|
||||
},
|
||||
"0_1":{ "type": "flt", "ver": "0",
|
||||
"data": "-0.013794"
|
||||
},
|
||||
"0_2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1_0":{ "type": "flt", "ver": "0",
|
||||
"data": "-0.013794"
|
||||
},
|
||||
"1_1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.997696"
|
||||
},
|
||||
"1_2":{ "type": "flt", "ver": "0",
|
||||
"data": "-0.015106"
|
||||
},
|
||||
"2_0":{ "type": "flt", "ver": "0",
|
||||
"data": "-0.018906"
|
||||
},
|
||||
"2_1":{ "type": "flt", "ver": "0",
|
||||
"data": "-0.015106"
|
||||
},
|
||||
"2_2":{ "type": "flt", "ver": "0",
|
||||
"data": "1.005402"
|
||||
}
|
||||
},
|
||||
".bias":{
|
||||
"owner": "sns_ak0991x",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"y":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"z":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
".placement":{
|
||||
"owner": "sns_ak0991x",
|
||||
"0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"3":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"4":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"5":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"6":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"7":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"8":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"9":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"10":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"11":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
},
|
||||
".pdc_parameter":{
|
||||
"owner": "sns_ak0991x",
|
||||
"0":{ "type": "flt", "ver": "0",
|
||||
"data": "205"
|
||||
},
|
||||
"1":{ "type": "flt", "ver": "0",
|
||||
"data": "86"
|
||||
},
|
||||
"2":{ "type": "flt", "ver": "0",
|
||||
"data": "61"
|
||||
},
|
||||
"3":{ "type": "flt", "ver": "0",
|
||||
"data": "13"
|
||||
},
|
||||
"4":{ "type": "flt", "ver": "0",
|
||||
"data": "72"
|
||||
},
|
||||
"5":{ "type": "flt", "ver": "0",
|
||||
"data": "8"
|
||||
},
|
||||
"6":{ "type": "flt", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"7":{ "type": "flt", "ver": "0",
|
||||
"data": "130"
|
||||
},
|
||||
"8":{ "type": "flt", "ver": "0",
|
||||
"data": "213"
|
||||
},
|
||||
"9":{ "type": "flt", "ver": "0",
|
||||
"data": "55"
|
||||
},
|
||||
"10":{ "type": "flt", "ver": "0",
|
||||
"data": "239"
|
||||
},
|
||||
"11":{ "type": "flt", "ver": "0",
|
||||
"data": "192"
|
||||
},
|
||||
"12":{ "type": "flt", "ver": "0",
|
||||
"data": "108"
|
||||
},
|
||||
"13":{ "type": "flt", "ver": "0",
|
||||
"data": "28"
|
||||
},
|
||||
"14":{ "type": "flt", "ver": "0",
|
||||
"data": "253"
|
||||
},
|
||||
"15":{ "type": "flt", "ver": "0",
|
||||
"data": "232"
|
||||
},
|
||||
"16":{ "type": "flt", "ver": "0",
|
||||
"data": "254"
|
||||
},
|
||||
"17":{ "type": "flt", "ver": "0",
|
||||
"data": "229"
|
||||
},
|
||||
"18":{ "type": "flt", "ver": "0",
|
||||
"data": "128"
|
||||
},
|
||||
"19":{ "type": "flt", "ver": "0",
|
||||
"data": "112"
|
||||
},
|
||||
"20":{ "type": "flt", "ver": "0",
|
||||
"data": "192"
|
||||
},
|
||||
"21":{ "type": "flt", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"22":{ "type": "flt", "ver": "0",
|
||||
"data": "204"
|
||||
},
|
||||
"23":{ "type": "flt", "ver": "0",
|
||||
"data": "111"
|
||||
},
|
||||
"24":{ "type": "flt", "ver": "0",
|
||||
"data": "10"
|
||||
},
|
||||
"25":{ "type": "flt", "ver": "0",
|
||||
"data": "77"
|
||||
},
|
||||
"26":{ "type": "flt", "ver": "0",
|
||||
"data": "55"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
120
proprietary/vendor/etc/sensors/config/sm8250_bmp285_0.json
vendored
Normal file
@@ -0,0 +1,120 @@
|
||||
{
|
||||
"config":
|
||||
{
|
||||
"hw_platform": ["MTP", "Surf", "CMI"],
|
||||
"soc_id": ["321", "356"]
|
||||
},
|
||||
"bmp285_0_platform":{
|
||||
"owner": "sns_bmp285",
|
||||
".config":{
|
||||
"owner": "sns_bmp285",
|
||||
"bus_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"bus_instance":{ "type": "int", "ver": "0",
|
||||
"data": "5"
|
||||
},
|
||||
"slave_config":{ "type": "int", "ver": "0",
|
||||
"data": "119"
|
||||
},
|
||||
"min_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "400"
|
||||
},
|
||||
"max_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "400"
|
||||
},
|
||||
"reg_addr_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"num_rail":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"rail_on_state":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"vddio_rail":{ "type": "str", "ver": "0",
|
||||
"data": "/pmic/client/sensor_vddio"
|
||||
},
|
||||
"rigid_body_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".temp":{
|
||||
"owner": "sns_bmp285",
|
||||
".fac_cal":
|
||||
{
|
||||
"owner": "sns_bmp285",
|
||||
".scale":{
|
||||
"owner": "sns_bmp285",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
}
|
||||
},
|
||||
".bias":{
|
||||
"owner": "sns_bmp285",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
".pressure":{
|
||||
"owner": "sns_bmp285",
|
||||
".fac_cal":
|
||||
{
|
||||
"owner": "sns_bmp285",
|
||||
".scale":{
|
||||
"owner": "sns_bmp285",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
}
|
||||
},
|
||||
".bias":{
|
||||
"owner": "sns_bmp285",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
".placement":{
|
||||
"owner": "sns_bmp285",
|
||||
"0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"3":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"4":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"5":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"6":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"7":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"8":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"9":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"10":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"11":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
247
proprietary/vendor/etc/sensors/config/sm8250_lsm6dso_0.json
vendored
Normal file
@@ -0,0 +1,247 @@
|
||||
{
|
||||
"config":{
|
||||
"hw_platform": ["MTP", "Dragon", "Surf", "HDK", "CMI"],
|
||||
"soc_id": ["321", "339", "356"]
|
||||
},
|
||||
"lsm6dso_0_platform":{
|
||||
"owner": "lsm6dso",
|
||||
".config":{
|
||||
"owner": "lsm6dso",
|
||||
"bus_type":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"bus_instance":{ "type": "int", "ver": "1",
|
||||
"data": "3"
|
||||
},
|
||||
"slave_config":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"i3c_address":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"min_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"max_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "9600"
|
||||
},
|
||||
"reg_addr_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"dri_irq_num":{ "type": "int", "ver": "1",
|
||||
"data": "122"
|
||||
},
|
||||
"irq_pull_type":{ "type": "int", "ver": "1",
|
||||
"data": "2"
|
||||
},
|
||||
"irq_is_chip_pin":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"irq_drive_strength":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"irq_trigger_type":{ "type": "int", "ver": "1",
|
||||
"data": "3"
|
||||
},
|
||||
"num_rail":{ "type": "int", "ver": "1",
|
||||
"data": "1"
|
||||
},
|
||||
"rail_on_state":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"vddio_rail":{ "type": "str", "ver": "1",
|
||||
"data": "/pmic/client/sensor_vddio"
|
||||
},
|
||||
"rigid_body_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"min_odr":{ "type": "int", "ver": "0",
|
||||
"data": "20"
|
||||
},
|
||||
"max_odr":{ "type": "int", "ver": "0",
|
||||
"data": "500"
|
||||
}
|
||||
},
|
||||
".orient":{
|
||||
"owner": "lsm6dso",
|
||||
"x":{ "type": "str", "ver": "4",
|
||||
"data": "+x"
|
||||
},
|
||||
"y":{ "type": "str", "ver": "4",
|
||||
"data": "+y"
|
||||
},
|
||||
"z":{ "type": "str", "ver": "2",
|
||||
"data": "+z"
|
||||
}
|
||||
},
|
||||
".gyro":{
|
||||
"owner": "lsm6dso",
|
||||
".fac_cal":{
|
||||
"owner": "lsm6dso",
|
||||
".corr_mat":{
|
||||
"owner": "lsm6dso",
|
||||
"0_0":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
},
|
||||
"0_1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"0_2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1_0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1_1":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
},
|
||||
"1_2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2_0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2_1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2_2":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
}
|
||||
},
|
||||
".bias":{
|
||||
"owner": "lsm6dso",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"y":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"z":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
".accel":{
|
||||
"owner": "lsm6dso",
|
||||
".fac_cal":{
|
||||
"owner": "lsm6dso",
|
||||
".corr_mat":{
|
||||
"owner": "lsm6dso",
|
||||
"0_0":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
},
|
||||
"0_1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"0_2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1_0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1_1":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
},
|
||||
"1_2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2_0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2_1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2_2":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
}
|
||||
},
|
||||
".bias":{
|
||||
"owner": "lsm6dso",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"y":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"z":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
".temp":{
|
||||
"owner": "lsm6dso",
|
||||
".fac_cal":
|
||||
{
|
||||
"owner": "lsm6dso",
|
||||
".scale":{
|
||||
"owner": "lsm6dso",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "1.0"
|
||||
}
|
||||
},
|
||||
".bias":{
|
||||
"owner": "lsm6dso",
|
||||
"x":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
".md":{
|
||||
"owner": "lsm6dso",
|
||||
".config":{
|
||||
"owner": "lsm6dso",
|
||||
"thresh":{ "type": "flt", "ver": "0",
|
||||
"data": "0.6132"
|
||||
},
|
||||
"disable":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"win":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
".placement":{
|
||||
"owner": "lsm6dso",
|
||||
"0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"3":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"4":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"5":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"6":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"7":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"8":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"9":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"10":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"11":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
216
proprietary/vendor/etc/sensors/config/sm8250_power_0.json
vendored
Normal file
@@ -0,0 +1,216 @@
|
||||
{
|
||||
"config":{
|
||||
"hw_platform": ["MTP", "Surf", "RCM", "QRD", "CMI"],
|
||||
"soc_id": ["356"]
|
||||
},
|
||||
"power":{
|
||||
"owner": "power_manager",
|
||||
".island":{
|
||||
"owner": "power_manager",
|
||||
"enable_island":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
}
|
||||
},
|
||||
".mcps":{
|
||||
"owner": "power_manager",
|
||||
"min_svs":{ "type": "int", "ver": "0",
|
||||
"data": "269"
|
||||
},
|
||||
"low_svs":{ "type": "int", "ver": "0",
|
||||
"data": "384"
|
||||
},
|
||||
"svs":{ "type": "int", "ver": "0",
|
||||
"data": "499"
|
||||
},
|
||||
"nominal":{ "type": "int", "ver": "0",
|
||||
"data": "806"
|
||||
},
|
||||
"turbo":{ "type": "int", "ver": "0",
|
||||
"data": "998"
|
||||
}
|
||||
},
|
||||
".gpio":{
|
||||
"owner": "power_manager",
|
||||
".gpio_0":{
|
||||
"owner": "power_manager",
|
||||
"gpio_num":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"active_fs":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_dir":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"active_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_fs":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_dir":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".gpio_1":{
|
||||
"owner": "power_manager",
|
||||
"gpio_num":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_fs":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_dir":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"active_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_fs":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_dir":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".gpio_8":{
|
||||
"owner": "power_manager",
|
||||
"gpio_num":{ "type": "int", "ver": "0",
|
||||
"data": "8"
|
||||
},
|
||||
"active_fs":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_dir":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"active_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_fs":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_dir":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".gpio_9":{
|
||||
"owner": "power_manager",
|
||||
"gpio_num":{ "type": "int", "ver": "0",
|
||||
"data": "9"
|
||||
},
|
||||
"active_fs":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_dir":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"active_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_fs":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_dir":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".gpio_10":{
|
||||
"owner": "power_manager",
|
||||
"gpio_num":{ "type": "int", "ver": "0",
|
||||
"data": "10"
|
||||
},
|
||||
"active_fs":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_dir":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"active_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_fs":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_dir":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".gpio_11":{
|
||||
"owner": "power_manager",
|
||||
"gpio_num":{ "type": "int", "ver": "0",
|
||||
"data": "11"
|
||||
},
|
||||
"active_fs":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_dir":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"active_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"active_drive":{ "type": "int", "ver": "0",
|
||||
"data": "3"
|
||||
},
|
||||
"sleep_fs":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_dir":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_pull":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"sleep_drive":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
261
proprietary/vendor/etc/sensors/config/sm8250_sx933x_0.json
vendored
Normal file
@@ -0,0 +1,261 @@
|
||||
{
|
||||
"config":{
|
||||
"hw_platform": ["MTP", "Surf", "QRD", "HDK", "CMI"],
|
||||
"soc_id": ["321", "341", "356"]
|
||||
},
|
||||
"sx933x_0_platform":{
|
||||
"owner": "sns_sx933x",
|
||||
".config":{
|
||||
"owner": "sns_sx933x",
|
||||
"bus_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"bus_instance":{ "type": "int", "ver": "0",
|
||||
"data": "5"
|
||||
},
|
||||
"slave_config":{ "type": "int", "ver": "0",
|
||||
"data": "40"
|
||||
},
|
||||
"min_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "400"
|
||||
},
|
||||
"max_bus_speed_khz":{ "type": "int", "ver": "0",
|
||||
"data": "400"
|
||||
},
|
||||
"reg_addr_type":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"dri_irq_num":{ "type": "int", "ver": "0",
|
||||
"data": "120"
|
||||
},
|
||||
"irq_pull_type":{ "type": "int", "ver": "0",
|
||||
"data": "3"
|
||||
},
|
||||
"irq_is_chip_pin":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"irq_drive_strength":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
},
|
||||
"irq_trigger_type":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"num_rail":{ "type": "int", "ver": "0",
|
||||
"data": "2"
|
||||
},
|
||||
"rail_on_state":{ "type": "int", "ver": "0",
|
||||
"data": "1"
|
||||
},
|
||||
"vdd_rail":{ "type": "str", "ver": "0",
|
||||
"data": "/pmic/client/sensor_vdd"
|
||||
},
|
||||
"vddio_rail":{ "type": "str", "ver": "0",
|
||||
"data": "/pmic/client/sensor_vddio"
|
||||
},
|
||||
"rigid_body_type":{ "type": "int", "ver": "0",
|
||||
"data": "0"
|
||||
}
|
||||
},
|
||||
".placement":{
|
||||
"owner": "sns_sx933x",
|
||||
"0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"3":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"4":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"5":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"6":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"7":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"8":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"9":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"10":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"11":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
},
|
||||
".thresh":{
|
||||
"owner": "sns_sx933x",
|
||||
"threshold_0":{ "type": "flt", "ver": "50",
|
||||
"data": "25.0"
|
||||
},
|
||||
"threshold_1":{ "type": "flt", "ver": "50",
|
||||
"data": "25.0"
|
||||
},
|
||||
"threshold_2":{ "type": "flt", "ver": "50",
|
||||
"data": "25.0"
|
||||
},
|
||||
"threshold_3":{ "type": "flt", "ver": "50",
|
||||
"data": "25.0"
|
||||
}
|
||||
},
|
||||
".offset":{
|
||||
"owner": "sns_sx933x",
|
||||
"0":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"1":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"2":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
},
|
||||
"3":{ "type": "flt", "ver": "0",
|
||||
"data": "0.0"
|
||||
}
|
||||
},
|
||||
".register":{
|
||||
"owner": "sns_sx933x",
|
||||
"Is_config":{ "type": "int", "ver": "3",
|
||||
"data": "0"
|
||||
},
|
||||
"SX933X_SCANPERIOD_REG_0x801C":{ "type": "int", "ver": "0",
|
||||
"data": "32796"
|
||||
},
|
||||
"SX933X_SCANPERIOD":{ "type": "int", "ver": "3",
|
||||
"data": "10"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH0_REG_0x8024":{ "type": "int", "ver": "0",
|
||||
"data": "32804"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH0":{ "type": "int", "ver": "3",
|
||||
"data": "268508757"
|
||||
},
|
||||
"SX933X_AFEPHPH0_REG_0x8028":{ "type": "int", "ver": "0",
|
||||
"data": "32808"
|
||||
},
|
||||
"SX933X_AFEPHPH0":{ "type": "int", "ver": "1",
|
||||
"data": "1073185371"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH1_REG_0x802C":{ "type": "int", "ver": "0",
|
||||
"data": "32812"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH1":{ "type": "int", "ver": "4",
|
||||
"data": "268503214"
|
||||
},
|
||||
"SX933X_AFEPHPH1_REG_0x8030":{ "type": "int", "ver": "0",
|
||||
"data": "32816"
|
||||
},
|
||||
"SX933X_AFEPHPH1":{ "type": "int", "ver": "2",
|
||||
"data": "1052705486"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH2_REG_0x8034":{ "type": "int", "ver": "0",
|
||||
"data": "32820"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH2":{ "type": "int", "ver": "4",
|
||||
"data": "67669"
|
||||
},
|
||||
"SX933X_AFEPHPH2_REG_0x8038":{ "type": "int", "ver": "1",
|
||||
"data": "32824"
|
||||
},
|
||||
"SX933X_AFEPHPH2":{ "type": "int", "ver": "2",
|
||||
"data": "1073644123"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH3_REG_0x803C":{ "type": "int", "ver": "2",
|
||||
"data": "32828"
|
||||
},
|
||||
"SX933X_AFEPARAMSPH3":{ "type": "int", "ver": "3",
|
||||
"data": "268503149"
|
||||
},
|
||||
"SX933X_AFEPHPH3_REG_0x8040":{ "type": "int", "ver": "1",
|
||||
"data": "32832"
|
||||
},
|
||||
"SX933X_AFEPHPH3":{ "type": "int", "ver": "1",
|
||||
"data": "1040155227"
|
||||
},
|
||||
"SX933X_ADCFILTPH0_REG_0x8054":{ "type": "int", "ver": "0",
|
||||
"data": "32852"
|
||||
},
|
||||
"SX933X_ADCFILTPH0":{ "type": "int", "ver": "2",
|
||||
"data": "136917761"
|
||||
},
|
||||
"SX933X_AVGBFILTPH0_REG_0x8058":{ "type": "int", "ver": "0",
|
||||
"data": "32856"
|
||||
},
|
||||
"SX933X_AVGBFILTPH0":{ "type": "int", "ver": "3",
|
||||
"data": "1616904976"
|
||||
},
|
||||
"SX933X_AVGAFILTPH0_REG_0x805C":{ "type": "int", "ver": "0",
|
||||
"data": "32860"
|
||||
},
|
||||
"SX933X_AVGAFILTPH0":{ "type": "int", "ver": "3",
|
||||
"data": "1019502592"
|
||||
},
|
||||
"SX933X_ADCFILTPH1_REG_0x8074":{ "type": "int", "ver": "0",
|
||||
"data": "32884"
|
||||
},
|
||||
"SX933X_ADCFILTPH1":{ "type": "int", "ver": "4",
|
||||
"data": "135796737"
|
||||
},
|
||||
"SX933X_AVGBFILTPH1_REG_0x8078":{ "type": "int", "ver": "0",
|
||||
"data": "32888"
|
||||
},
|
||||
"SX933X_AVGBFILTPH1":{ "type": "int", "ver": "3",
|
||||
"data": "1616904208"
|
||||
},
|
||||
"SX933X_AVGAFILTPH1_REG_0x807C":{ "type": "int", "ver": "0",
|
||||
"data": "32892"
|
||||
},
|
||||
"SX933X_AVGAFILTPH1":{ "type": "int", "ver": "3",
|
||||
"data": "1019506688"
|
||||
},
|
||||
"SX933X_ADVDIG3PH1_REG_0x808C":{ "type": "int", "ver": "0",
|
||||
"data": "32908"
|
||||
},
|
||||
"SX933X_ADVDIG3PH1":{ "type": "int", "ver": "3",
|
||||
"data": "3735609"
|
||||
},
|
||||
"SX933X_ADVDIG4PH1_REG_0x8090":{ "type": "int", "ver": "0",
|
||||
"data": "32912"
|
||||
},
|
||||
"SX933X_ADVDIG4PH1":{ "type": "int", "ver": "0",
|
||||
"data": "131072"
|
||||
},
|
||||
"SX933X_ADCFILTPH2_REG_0x8094":{ "type": "int", "ver": "0",
|
||||
"data": "32916"
|
||||
},
|
||||
"SX933X_ADCFILTPH2":{ "type": "int", "ver": "2",
|
||||
"data": "3809280"
|
||||
},
|
||||
"SX933X_AVGAFILTPH2_REG_0x809C":{ "type": "int", "ver": "0",
|
||||
"data": "32924"
|
||||
},
|
||||
"SX933X_AVGAFILTPH2":{ "type": "int", "ver": "2",
|
||||
"data": "785543168"
|
||||
},
|
||||
"SX933X_ADCFILTPH3_REG_0x80B4":{ "type": "int", "ver": "0",
|
||||
"data": "32948"
|
||||
},
|
||||
"SX933X_ADCFILTPH3":{ "type": "int", "ver": "2",
|
||||
"data": "3809280"
|
||||
},
|
||||
"SX933X_GNRLCTRL2_REG_0x8020":{ "type": "int", "ver": "0",
|
||||
"data": "32800"
|
||||
},
|
||||
"SX933X_GNRLCTRL2":{ "type": "int", "ver": "1",
|
||||
"data": "983055"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||