surya: Import blobs from V14.0.5.0.SJGEUXM
This commit is contained in:
+9114
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,9 @@
|
||||
# Automatically generated file. DO NOT MODIFY
|
||||
#
|
||||
# This file is generated by device/xiaomi/surya/setup-makefiles.sh
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
ifeq ($(TARGET_DEVICE),surya)
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,4 @@
|
||||
# Automatically generated file. DO NOT MODIFY
|
||||
#
|
||||
# This file is generated by device/xiaomi/surya/setup-makefiles.sh
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Executable
BIN
Binary file not shown.
@@ -0,0 +1,78 @@
|
||||
#configuration parameters for DPM Fast Dormancy and TCM module.
|
||||
|
||||
#Configuration params for FD slot 0
|
||||
#delay_time while issuing dormancy_request
|
||||
dpm_s0_fd_delay_time_timer_value:0
|
||||
#Idle timer value when SCREEN state is ON
|
||||
#dpm_fd_screen_on_idle_timer_value = actual_screen_on_timer + delay_time
|
||||
dpm_s0_fd_screen_on_idle_timer_value:15
|
||||
#Idle timer value when SCREEN state is OFF
|
||||
#dpm_fd_screen_off_idle_timer_value = actual_screen_off_timer + delay_time
|
||||
dpm_s0_fd_screen_off_idle_timer_value:3
|
||||
#Idle timer value when TETHERING is ON
|
||||
#This takes precedence over SCREEN state
|
||||
#dpm_tethering_on_idle_timer_value = actual_tethering_on_timer + delay_time
|
||||
dpm_s0_fd_tethering_on_idle_timer_value:15
|
||||
#FastDormancy can be configured for a network type
|
||||
#Default configuration 101000011100001000
|
||||
dpm_s0_fd_enable_networks_mask:0x28708
|
||||
|
||||
#Configuration params for FD slot 1
|
||||
#delay_time while issuing dormancy_request
|
||||
dpm_s1_fd_delay_time_timer_value:0
|
||||
#Idle timer value when SCREEN state is ON
|
||||
#dpm_fd_screen_on_idle_timer_value = actual_screen_on_timer + delay_time
|
||||
dpm_s1_fd_screen_on_idle_timer_value:15
|
||||
#Idle timer value when SCREEN state is OFF
|
||||
#dpm_fd_screen_off_idle_timer_value = actual_screen_off_timer + delay_time
|
||||
dpm_s1_fd_screen_off_idle_timer_value:3
|
||||
#Idle timer value when TETHERING is ON
|
||||
#This takes precedence over SCREEN state
|
||||
#dpm_tethering_on_idle_timer_value = actual_tethering_on_timer + delay_time
|
||||
dpm_s1_fd_tethering_on_idle_timer_value:15
|
||||
#FastDormancy can be configured for a network type
|
||||
#Default configuration 101000011100001000
|
||||
dpm_s1_fd_enable_networks_mask:0x28708
|
||||
|
||||
#Configuration params for TCM
|
||||
#Idle timer value when SCREEN state is ON
|
||||
#min : 1s and max :256s
|
||||
dpm_tcm_screen_on_idle_timer_value:5
|
||||
#Idle timer value when SCREEN state is OFF
|
||||
#min : 0s and max :256s, tcm is disabled with screen off state
|
||||
dpm_tcm_screen_off_idle_timer_value:0
|
||||
#TCM can be configured for a network type
|
||||
#Default configuration 11111111111111111110
|
||||
dpm_tcm_enable_networks_mask:0xFFFFE
|
||||
|
||||
|
||||
#FastDormancy and TCM can be configured for a network type
|
||||
#NETWORK_TYPE_UNKNOWN = 0
|
||||
#NETWORK_TYPE_GPRS = 1
|
||||
#NETWORK_TYPE_EDGE = 2
|
||||
#NETWORK_TYPE_UMTS = 3
|
||||
#NETWORK_TYPE_CDMA = 4
|
||||
#NETWORK_TYPE_EVDO_0 = 5
|
||||
#NETWORK_TYPE_EVDO_A = 6
|
||||
#NETWORK_TYPE_1xRTT = 7
|
||||
#NETWORK_TYPE_HSDPA = 8
|
||||
#NETWORK_TYPE_HSUPA = 9
|
||||
#NETWORK_TYPE_HSPA = 10
|
||||
#NETWORK_TYPE_IDEN = 11
|
||||
#NETWORK_TYPE_EVDO_B = 12
|
||||
#NETWORK_TYPE_LTE = 13
|
||||
#NETWORK_TYPE_EHRPD = 14
|
||||
#NETWORK_TYPE_HSPAP = 15
|
||||
#NETWORK_TYPE_GSM = 16
|
||||
#NETWORK_TYPE_TD_SCDMA = 17
|
||||
#NETWORK_TYPE_IWLAN = 18
|
||||
#NETWORK_TYPE_LTE_CA = 19;
|
||||
|
||||
#configuration params for Dormancy manager
|
||||
#first larger inactivity soft timer to poll for dormancy in seconds.
|
||||
dpm_dm_t1_inactivity_timer:15
|
||||
#second smaller inactivity soft timer to poll for dormancy in seconds.
|
||||
dpm_dm_t2_inactivity_timer:5
|
||||
#number of times T2 can be repeated before registering for dormancy indication with modem directly.
|
||||
dpm_dm_repeat_t2:5
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
# Copyright (c) 2018 - 2020 Qualcomm Technologies, Inc.
|
||||
# All Rights Reserved.
|
||||
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
|
||||
# Create the directories used by DPM subsystem
|
||||
|
||||
on post-fs-data
|
||||
mkdir /data/dpm 0771 system system
|
||||
chown system system /data/dpm
|
||||
|
||||
#start dpmd service
|
||||
service dpmd /system/system_ext/bin/dpmd
|
||||
class late_start
|
||||
socket dpmd stream 660 root radio
|
||||
socket tcm stream 660 root inet
|
||||
socket dpmwrapper stream 660 root inet
|
||||
group system readproc inet radio wakelock oem_2901
|
||||
disabled
|
||||
|
||||
on property:persist.vendor.dpm.feature=*
|
||||
start dpmd
|
||||
on property:persist.vendor.dpm.feature=0
|
||||
stop dpmd
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2016, 2020 Qualcomm Technologies, Inc.
|
||||
All Rights Reserved.
|
||||
Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
-->
|
||||
|
||||
<permissions>
|
||||
<library name="com.qualcomm.qti.audiosphere"
|
||||
file="/system_ext/framework/audiosphere.jar" />
|
||||
</permissions>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Copyright (c) 2015-2016, 2020 Qualcomm Technologies, Inc.
|
||||
All Rights Reserved.
|
||||
Confidential and Proprietary - Qualcomm Technologies, Inc.-->
|
||||
<permissions>
|
||||
<library name="com.qti.dpmframework"
|
||||
file="/system/system_ext/framework/com.qti.dpmframework.jar"/>
|
||||
<library name="android.hidl.manager-V1.0-java"
|
||||
file="/system/framework/android.hidl.manager-V1.0-java.jar"/>
|
||||
<permission name="com.qualcomm.permission.READPROC" >
|
||||
<group gid="readproc" />
|
||||
</permission>
|
||||
</permissions>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Copyright (c) 2014, 2019-2021 Qualcomm Technologies, Inc.
|
||||
All Rights Reserved.
|
||||
Confidential and Proprietary - Qualcomm Technologies, Inc.-->
|
||||
<permissions>
|
||||
<library name="dpmapi"
|
||||
file="/system/system_ext/framework/dpmapi.jar"/>
|
||||
</permissions>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<permissions>
|
||||
<library name="com.qualcomm.qcrilhook"
|
||||
file="/system_ext/framework/qcrilhook.jar"
|
||||
dependency="qti-telephony-utils:qti-telephony-hidl-wrapper" />
|
||||
</permissions>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright (c) 2016 Qualcomm Technologies, Inc. All Rights Reserved.
|
||||
Qualcomm Technologies Proprietary and Confidential.
|
||||
-->
|
||||
<permissions>
|
||||
<permission name="com.qti.permission.DIAG">
|
||||
<group gid="oem_2901" />
|
||||
</permission>
|
||||
<permission name="com.qti.permission.AUDIO">
|
||||
<group gid="audio" />
|
||||
</permission>
|
||||
</permissions>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Vendored
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+33
@@ -0,0 +1,33 @@
|
||||
#!/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/*
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
BIN
Binary file not shown.
|
After Width: | Height: | Size: 342 KiB |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 335 KiB |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 330 KiB |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 317 KiB |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 348 KiB |
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user