Add files via upload
This commit is contained in:
parent
22fd933488
commit
37b46d3aa3
83 changed files with 1704 additions and 0 deletions
61
recovery/root/vendor/etc/gpfspath_oem_config.xml
vendored
Normal file
61
recovery/root/vendor/etc/gpfspath_oem_config.xml
vendored
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
<!--
|
||||||
|
Copyright (c) 2017 Qualcomm Technologies, Inc.
|
||||||
|
All Rights Reserved.
|
||||||
|
Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This file is configured by OEM to customize the path used by GP FS listener
|
||||||
|
service to save files, and will be located in /vendor/etc on device
|
||||||
|
|
||||||
|
"gp_data_path" and "gp_persist_path" are the /data and /persist partition
|
||||||
|
path to save files, respectively.
|
||||||
|
By default, "gp_data_path" is "/data/vendor/tzstorage/", and
|
||||||
|
"gp_persist_path" is "/mnt/vendor/persist/data/".
|
||||||
|
|
||||||
|
To replace with different paths, please also create folder in init.qcom.rc
|
||||||
|
file and update SEAndroid policy.
|
||||||
|
|
||||||
|
Take "/data/vendor/tzstorage/" as an example below,
|
||||||
|
|
||||||
|
A) rootdir/etc/init.qcom.rc:
|
||||||
|
# Create /data/vendor/tzstorage directory for SFS listener
|
||||||
|
mkdir /data/vendor/tzstorage 0770 system system
|
||||||
|
|
||||||
|
B) common/file.te:
|
||||||
|
# SFS listener data file
|
||||||
|
type data_tzstorage_file, file_type, data_file_type;
|
||||||
|
|
||||||
|
C) common/file_contexts:
|
||||||
|
/data/vendor/tzstorage(/.*)? u:object_r:data_tzstorage_file:s0
|
||||||
|
|
||||||
|
D) common/qseecomd.te:
|
||||||
|
# Allow SFS to write to data partition
|
||||||
|
allow tee data_tzstorage_file:dir create_dir_perms;
|
||||||
|
allow tee data_tzstorage_file:file create_file_perms;
|
||||||
|
|
||||||
|
"gp_whitelist_count" and "gp_whitelist_path"
|
||||||
|
|
||||||
|
Some paths needs "/data/vendor/tzstorage" appended to it at the beginning
|
||||||
|
as they do not have access/permissions on their own.
|
||||||
|
Use gp_whitelist_count and gp_whitelist_paths entries to add more such paths.
|
||||||
|
By default, we add "/data/system/users" and "/data/misc/qsee" for current use
|
||||||
|
cases.
|
||||||
|
|
||||||
|
To add an extra path, increment the count in gp_whitelist_count and add a new
|
||||||
|
gp_whitelist_path entry. It is very critical that the count matches with the
|
||||||
|
number of path entries.
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
<sfs_path>
|
||||||
|
<gp_data_path> /data/vendor/tzstorage/ </gp_data_path>
|
||||||
|
<gp_persist_path> /mnt/vendor/persist/data/ </gp_persist_path>
|
||||||
|
<gp_whitelist_count> 4 </gp_whitelist_count>
|
||||||
|
<gp_whitelist_path> /data/system/users/ </gp_whitelist_path>
|
||||||
|
<gp_whitelist_path> /data/misc/qsee/ </gp_whitelist_path>
|
||||||
|
<gp_whitelist_path> /qwes </gp_whitelist_path>
|
||||||
|
<gp_whitelist_path> /qwes/licenses </gp_whitelist_path>
|
||||||
|
</sfs_path>
|
10
recovery/root/vendor/etc/init/android.hardware.keymaster@4.0-strongbox-service-qti.rc
vendored
Normal file
10
recovery/root/vendor/etc/init/android.hardware.keymaster@4.0-strongbox-service-qti.rc
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
on property:hwservicemanager.ready=true && property:vendor.sys.listeners.registered=true
|
||||||
|
start keymaster-4-1-qti
|
||||||
|
start keymaster-sb-4-0
|
||||||
|
|
||||||
|
service keymaster-sb-4-0 /system/bin/android.hardware.keymaster@4.0-strongbox-service-qti
|
||||||
|
user root
|
||||||
|
group root
|
||||||
|
setenv LD_LIBRARY_PATH /vendor/lib64:/vendor/lib:/system/lib64:/system/lib:/sbin
|
||||||
|
disabled
|
||||||
|
seclabel u:r:recovery:s0
|
13
recovery/root/vendor/etc/init/android.hardware.security.keymint-service-qti.rc
vendored
Normal file
13
recovery/root/vendor/etc/init/android.hardware.security.keymint-service-qti.rc
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# Copyright (c) 2021 Qualcomm Technologies, Inc.
|
||||||
|
# All Rights Reserved.
|
||||||
|
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||||
|
|
||||||
|
on property:hwservicemanager.ready=true && property:vendor.sys.listeners.registered=true
|
||||||
|
start keymint-qti
|
||||||
|
|
||||||
|
service keymint-qti /system/bin/android.hardware.security.keymint-service-qti
|
||||||
|
user root
|
||||||
|
group root
|
||||||
|
setenv LD_LIBRARY_PATH /vendor/lib64:/vendor/lib:/system/lib64:/system/lib:/sbin
|
||||||
|
disabled
|
||||||
|
seclabel u:r:recovery:s0
|
19
recovery/root/vendor/etc/init/init.spdaemon.rc
vendored
Normal file
19
recovery/root/vendor/etc/init/init.spdaemon.rc
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
on post-fs
|
||||||
|
start vendor.spdaemon
|
||||||
|
start vendor.sec_nvm
|
||||||
|
|
||||||
|
service vendor.spdaemon /system/bin/spdaemon
|
||||||
|
user root
|
||||||
|
group root
|
||||||
|
setenv LD_LIBRARY_PATH /vendor/lib64:/vendor/lib:/system/lib64:/system/lib:/sbin
|
||||||
|
disabled
|
||||||
|
seclabel u:r:recovery:s0
|
||||||
|
shutdown critical
|
||||||
|
|
||||||
|
service vendor.sec_nvm /system/bin/sec_nvm
|
||||||
|
user root
|
||||||
|
group root
|
||||||
|
setenv LD_LIBRARY_PATH /vendor/lib64:/vendor/lib:/system/lib64:/system/lib:/sbin
|
||||||
|
disabled
|
||||||
|
seclabel u:r:recovery:s0
|
||||||
|
|
15
recovery/root/vendor/etc/init/init.vendor.qti.spu@1.1-service.rc
vendored
Normal file
15
recovery/root/vendor/etc/init/init.vendor.qti.spu@1.1-service.rc
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#####################################################################
|
||||||
|
# Copyright (c) 2019-2022 Qualcomm Technologies, Inc.
|
||||||
|
# All Rights Reserved.
|
||||||
|
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
on boot
|
||||||
|
start spu_service
|
||||||
|
|
||||||
|
service spu_service /system/bin/vendor.qti.spu@1.1-service
|
||||||
|
user root
|
||||||
|
group root
|
||||||
|
setenv LD_LIBRARY_PATH /vendor/lib64:/vendor/lib:/system/lib64:/system/lib:/sbin
|
||||||
|
disabled
|
||||||
|
seclabel u:r:recovery:s0
|
9
recovery/root/vendor/etc/init/vendor.qti.hardware.qteeconnector@1.0-service.rc
vendored
Normal file
9
recovery/root/vendor/etc/init/vendor.qti.hardware.qteeconnector@1.0-service.rc
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
on property:ro.crypto.state=encrypted && property:hwservicemanager.ready=true
|
||||||
|
start qteeconnector-hal-1-0
|
||||||
|
|
||||||
|
service qteeconnector-hal-1-0 /system/bin/vendor.qti.hardware.qteeconnector@1.0-service
|
||||||
|
user root
|
||||||
|
group root
|
||||||
|
setenv LD_LIBRARY_PATH /vendor/lib64:/vendor/lib:/system/lib64:/system/lib:/sbin
|
||||||
|
disabled
|
||||||
|
seclabel u:r:recovery:s0
|
22
recovery/root/vendor/etc/init/vendor.qti.hardware.vibrator.service.rc
vendored
Normal file
22
recovery/root/vendor/etc/init/vendor.qti.hardware.vibrator.service.rc
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
on late-init
|
||||||
|
write /sys/class/leds/vibrator/trigger "transient"
|
||||||
|
|
||||||
|
on late-fs
|
||||||
|
chmod 0666 /dev/qcom_haptic
|
||||||
|
chown system system /dev/qcom_haptic
|
||||||
|
|
||||||
|
on boot
|
||||||
|
start qti.vibrator
|
||||||
|
|
||||||
|
on property:sys.boot_completed=1
|
||||||
|
setprop vendor.haptic.calibrate.done 1
|
||||||
|
|
||||||
|
service qti.vibrator /system/bin/vendor.qti.hardware.vibrator.service
|
||||||
|
class hal
|
||||||
|
user root
|
||||||
|
group root
|
||||||
|
disabled
|
||||||
|
setenv LD_LIBRARY_PATH /vendor/lib64:/vendor/lib:/system/lib64:/system/lib:/sbin
|
||||||
|
setenv RICHTAP_DEVICE_PATH /dev/qcom_haptic
|
||||||
|
setenv ENV_RICHTAP_CONFIG_PATH /odm/etc/aac_richtap.config
|
||||||
|
seclabel u:r:recovery:s0
|
85
recovery/root/vendor/etc/vintf/compatibility_matrix.xml
vendored
Normal file
85
recovery/root/vendor/etc/vintf/compatibility_matrix.xml
vendored
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
<!--
|
||||||
|
Input:
|
||||||
|
compatibility_matrix.xml
|
||||||
|
-->
|
||||||
|
<compatibility-matrix version="4.0" type="device">
|
||||||
|
<hal format="hidl" optional="false">
|
||||||
|
<name>android.frameworks.sensorservice</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ISensorManager</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="false">
|
||||||
|
<name>android.hidl.allocator</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IAllocator</name>
|
||||||
|
<instance>ashmem</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="false">
|
||||||
|
<name>android.hidl.manager</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IServiceManager</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="false">
|
||||||
|
<name>android.hidl.memory</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMapper</name>
|
||||||
|
<instance>ashmem</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="false">
|
||||||
|
<name>android.hidl.token</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ITokenManager</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="false">
|
||||||
|
<name>android.system.wifi.keystore</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IKeystore</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="true">
|
||||||
|
<name>vendor.qti.hardware.qccsyshal</name>
|
||||||
|
<version>1.0-1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQccsyshal</name>
|
||||||
|
<instance>qccsyshal</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="true">
|
||||||
|
<name>vendor.qti.hardware.sigma_miracast</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>Isigma_miracast</name>
|
||||||
|
<instance>sigmahal</instance>
|
||||||
|
<instance>sigmahal64</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" optional="true">
|
||||||
|
<name>vendor.qti.hardware.wifi.keystore</name>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IKeystoreExt</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
</hal>
|
||||||
|
<vendor-ndk>
|
||||||
|
<version>31</version>
|
||||||
|
</vendor-ndk>
|
||||||
|
<system-sdk>
|
||||||
|
<version>31</version>
|
||||||
|
</system-sdk>
|
||||||
|
</compatibility-matrix>
|
857
recovery/root/vendor/etc/vintf/manifest.xml
vendored
Normal file
857
recovery/root/vendor/etc/vintf/manifest.xml
vendored
Normal file
|
@ -0,0 +1,857 @@
|
||||||
|
<!--
|
||||||
|
Input:
|
||||||
|
manifest_cape.xml
|
||||||
|
manifest_mot8450.xml
|
||||||
|
manifest_bronco.xml
|
||||||
|
paramupdater_manifest.xml
|
||||||
|
manifest.xml
|
||||||
|
-->
|
||||||
|
<manifest version="4.0" type="device" target-level="6">
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.audio</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>7.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IDevicesFactory</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@7.0::IDevicesFactory/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.audio.effect</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>7.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IEffectsFactory</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@7.0::IEffectsFactory/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.biometrics.fingerprint</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBiometricsFingerprint</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.1::IBiometricsFingerprint/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.bluetooth</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBluetoothHci</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IBluetoothHci/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.bluetooth.audio</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBluetoothAudioProvidersFactory</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.0::IBluetoothAudioProvidersFactory/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.boot</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBootControl</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.2::IBootControl/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.camera.provider</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.7</version>
|
||||||
|
<interface>
|
||||||
|
<name>ICameraProvider</name>
|
||||||
|
<instance>legacy/1</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.7::ICameraProvider/legacy/1</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.camera.provider</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<fqname>@2.4::ICameraProvider/external/0</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.drm</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<fqname>@1.3::ICryptoFactory/wfdhdcp</fqname>
|
||||||
|
<fqname>@1.3::IDrmFactory/wfdhdcp</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.gatekeeper</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IGatekeeper</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IGatekeeper/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.keymaster</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<fqname>@4.1::IKeymasterDevice/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.keymaster</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<fqname>@4.0::IKeymasterDevice/strongbox</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.media.omx</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IOmx</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>IOmxStore</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IOmx/default</fqname>
|
||||||
|
<fqname>@1.0::IOmxStore/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.nfc</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>INfc</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.2::INfc/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.radio</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<fqname>@1.2::ISap/slot1</fqname>
|
||||||
|
<fqname>@1.2::ISap/slot2</fqname>
|
||||||
|
<fqname>@1.6::IRadio/slot1</fqname>
|
||||||
|
<fqname>@1.6::IRadio/slot2</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.radio.config</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.3</version>
|
||||||
|
<interface>
|
||||||
|
<name>IRadioConfig</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.3::IRadioConfig/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.secure_element</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>ISecureElement</name>
|
||||||
|
<instance>SIM1</instance>
|
||||||
|
<instance>SIM2</instance>
|
||||||
|
<instance>eSE1</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.2::ISecureElement/SIM1</fqname>
|
||||||
|
<fqname>@1.2::ISecureElement/SIM2</fqname>
|
||||||
|
<fqname>@1.2::ISecureElement/eSE1</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.tetheroffload.config</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IOffloadConfig</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IOffloadConfig/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>android.hardware.tetheroffload.control</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IOffloadControl</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IOffloadControl/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>com.motorola.hardware.biometric.fingerprint</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMotoFingerPrint</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>IMotoFingerPrintSensorTest</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IMotoFingerPrint/default</fqname>
|
||||||
|
<fqname>@1.0::IMotoFingerPrintSensorTest/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" override="true">
|
||||||
|
<name>com.motorola.hardware.display.panel</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IDisplayPanel</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IDisplayPanel/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" override="true">
|
||||||
|
<name>com.motorola.hardware.display.touch</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMotTouch</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.2::IMotTouch/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>com.qualcomm.qti.dpm.api</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IdpmQmi</name>
|
||||||
|
<instance>dpmQmiService</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IdpmQmi/dpmQmiService</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>com.qualcomm.qti.imscmservice</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>IImsCmService</name>
|
||||||
|
<instance>qti.ims.connectionmanagerservice</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.2::IImsCmService/qti.ims.connectionmanagerservice</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>com.qualcomm.qti.uceservice</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.3</version>
|
||||||
|
<interface>
|
||||||
|
<name>IUceService</name>
|
||||||
|
<instance>com.qualcomm.qti.uceservice</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.3::IUceService/com.qualcomm.qti.uceservice</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.camera.desktop</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ICameraDesktop</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::ICameraDesktop/default</fqname>
|
||||||
|
<fqname>@2.0::ICameraDesktop/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.camera.imgtuner</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IImageTuning</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IImageTuning/default</fqname>
|
||||||
|
<fqname>@2.0::IImageTuning/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.health</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMotHealth</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.0::IMotHealth/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.health.storage</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMotStorage</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IMotStorage/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.paramupdater</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IParamUpdater</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IParamUpdater/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.wifi.supplicant</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>ISupplicantMot</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::ISupplicantMot/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.wireless.powershare</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMotPowerShare</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IMotPowerShare/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>motorola.hardware.wireless.wlc</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMotWlc</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.0::IMotWlc/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.egistec.hardware.fingerprint</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>4.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBiometricsFingerprintRbs</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@4.0::IBiometricsFingerprintRbs/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.nxp.hardware.nfc</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>INqNfc</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.0::INqNfc/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.data.factory</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.5</version>
|
||||||
|
<interface>
|
||||||
|
<name>IFactory</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.5::IFactory/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.esepowermanager</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IEsePowerManager</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IEsePowerManager/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.AGMIPC</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IAGM</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IAGM/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.alarm</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IAlarm</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IAlarm/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.bluetooth_audio</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBluetoothAudioProvidersFactory</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.1::IBluetoothAudioProvidersFactory/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.bluetooth_sar</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBluetoothSar</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IBluetoothSar/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.btconfigstore</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IBTConfigStore</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.0::IBTConfigStore/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.cacert</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IService</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IService/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.camera.aon</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IAONService</name>
|
||||||
|
<instance>aoncameraservice</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IAONService/aoncameraservice</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.camera.postproc</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IPostProcService</name>
|
||||||
|
<instance>camerapostprocservice</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IPostProcService/camerapostprocservice</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.capabilityconfigstore</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ICapabilityConfigStore</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::ICapabilityConfigStore/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.data.connection</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IDataConnection</name>
|
||||||
|
<instance>slot1</instance>
|
||||||
|
<instance>slot2</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IDataConnection/slot1</fqname>
|
||||||
|
<fqname>@1.1::IDataConnection/slot2</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.data.iwlan</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IIWlan</name>
|
||||||
|
<instance>slot1</instance>
|
||||||
|
<instance>slot2</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IIWlan/slot1</fqname>
|
||||||
|
<fqname>@1.1::IIWlan/slot2</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.data.latency</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ILinkLatency</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::ILinkLatency/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.dpmservice</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IDpmService</name>
|
||||||
|
<instance>DpmService</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IDpmService/DpmService</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.dsp</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IDspService</name>
|
||||||
|
<instance>dspservice</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IDspService/dspservice</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.eid</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IEid</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IEid/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.embmssl</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IEmbms</name>
|
||||||
|
<instance>embmsslServer0</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IEmbms/embmsslServer0</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.iop</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IIop</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.0::IIop/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.mwqemadapter</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IMwqemAdapter</name>
|
||||||
|
<instance>MwqemAdapter</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IMwqemAdapter/MwqemAdapter</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.pal</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IPAL</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IPAL/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.qccvndhal</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQccvndhal</name>
|
||||||
|
<instance>qccvndhal</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IQccvndhal/qccvndhal</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.qseecom</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQSEECom</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IQSEECom/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.qteeconnector</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IAppConnector</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>IGPAppConnector</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IAppConnector/default</fqname>
|
||||||
|
<fqname>@1.0::IGPAppConnector/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.am</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQcRilAudio</name>
|
||||||
|
<instance>slot1</instance>
|
||||||
|
<instance>slot2</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IQcRilAudio/slot1</fqname>
|
||||||
|
<fqname>@1.0::IQcRilAudio/slot2</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.internal.deviceinfo</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IDeviceInfo</name>
|
||||||
|
<instance>deviceinfo</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IDeviceInfo/deviceinfo</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.lpa</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>IUimLpa</name>
|
||||||
|
<instance>UimLpa0</instance>
|
||||||
|
<instance>UimLpa1</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.2::IUimLpa/UimLpa0</fqname>
|
||||||
|
<fqname>@1.2::IUimLpa/UimLpa1</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.qcrilhook</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQtiOemHook</name>
|
||||||
|
<instance>oemhook0</instance>
|
||||||
|
<instance>oemhook1</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IQtiOemHook/oemhook0</fqname>
|
||||||
|
<fqname>@1.0::IQtiOemHook/oemhook1</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.qtiradio</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQtiRadio</name>
|
||||||
|
<instance>slot1</instance>
|
||||||
|
<instance>slot2</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IQtiRadio/slot1</fqname>
|
||||||
|
<fqname>@1.0::IQtiRadio/slot2</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.qtiradio</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.6</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQtiRadio</name>
|
||||||
|
<instance>slot1</instance>
|
||||||
|
<instance>slot2</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.6::IQtiRadio/slot1</fqname>
|
||||||
|
<fqname>@2.6::IQtiRadio/slot2</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.uim</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>IUim</name>
|
||||||
|
<instance>Uim0</instance>
|
||||||
|
<instance>Uim1</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.2::IUim/Uim0</fqname>
|
||||||
|
<fqname>@1.2::IUim/Uim1</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.uim_remote_client</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IUimRemoteServiceClient</name>
|
||||||
|
<instance>uimRemoteClient0</instance>
|
||||||
|
<instance>uimRemoteClient1</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IUimRemoteServiceClient/uimRemoteClient0</fqname>
|
||||||
|
<fqname>@1.0::IUimRemoteServiceClient/uimRemoteClient1</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.radio.uim_remote_server</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IUimRemoteServiceServer</name>
|
||||||
|
<instance>uimRemoteServer0</instance>
|
||||||
|
<instance>uimRemoteServer1</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IUimRemoteServiceServer/uimRemoteServer0</fqname>
|
||||||
|
<fqname>@1.0::IUimRemoteServiceServer/uimRemoteServer1</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.sensorscalibrate</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ISensorsCalibrate</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::ISensorsCalibrate/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.soter</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ISoter</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::ISoter/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.wifi.wifilearner</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IWifiStats</name>
|
||||||
|
<instance>wifiStats</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IWifiStats/wifiStats</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.hardware.wifidisplaysession</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IWifiDisplaySession</name>
|
||||||
|
<instance>wifidisplaysession</instance>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>IWifiDisplaySessionAudioTrack</name>
|
||||||
|
<instance>wifidisplaysessionaudiotrack</instance>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>IWifiDisplaySessionImageTrack</name>
|
||||||
|
<instance>wifidisplaysessionimagetrack</instance>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>IWifiDisplaySessionVideoTrack</name>
|
||||||
|
<instance>wifidisplaysessionvideotrack</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IWifiDisplaySession/wifidisplaysession</fqname>
|
||||||
|
<fqname>@1.0::IWifiDisplaySessionAudioTrack/wifidisplaysessionaudiotrack</fqname>
|
||||||
|
<fqname>@1.0::IWifiDisplaySessionImageTrack/wifidisplaysessionimagetrack</fqname>
|
||||||
|
<fqname>@1.0::IWifiDisplaySessionVideoTrack/wifidisplaysessionvideotrack</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.ims.callinfo</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IService</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IService/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.ims.factory</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<version>2.2</version>
|
||||||
|
<interface>
|
||||||
|
<name>IImsFactory</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IImsFactory/default</fqname>
|
||||||
|
<fqname>@2.2::IImsFactory/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.imsrtpservice</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>3.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IRTPService</name>
|
||||||
|
<instance>imsrtpservice</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@3.0::IRTPService/imsrtpservice</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl" override="true">
|
||||||
|
<name>vendor.qti.memory.pasrmanager</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.qesdhal</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQesdhal</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::IQesdhal/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.qspmhal</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IQspmhal</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IQspmhal/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.spu</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.1</version>
|
||||||
|
<interface>
|
||||||
|
<name>ISPUManager</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.1::ISPUManager/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.qti.spu</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>2.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>ISPUManager</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@2.0::ISPUManager/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="hidl">
|
||||||
|
<name>vendor.zui.hardware.ifaa</name>
|
||||||
|
<transport>hwbinder</transport>
|
||||||
|
<version>1.0</version>
|
||||||
|
<interface>
|
||||||
|
<name>IIFAADevice</name>
|
||||||
|
<instance>default</instance>
|
||||||
|
</interface>
|
||||||
|
<fqname>@1.0::IIFAADevice/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<sepolicy>
|
||||||
|
<version>31.0</version>
|
||||||
|
</sepolicy>
|
||||||
|
<kernel target-level="6"/>
|
||||||
|
</manifest>
|
42
recovery/root/vendor/etc/vintf/manifest/android.hardware.security.keymint-service-qti.xml
vendored
Normal file
42
recovery/root/vendor/etc/vintf/manifest/android.hardware.security.keymint-service-qti.xml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
<!-- Copyright (c) 2021 Qualcomm Technologies, Inc.
|
||||||
|
All Rights Reserved.
|
||||||
|
Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||||
|
|
||||||
|
Not a Contribution.
|
||||||
|
|
||||||
|
This file is copied from
|
||||||
|
1) https://source.codeaurora.org/quic/la/platform/hardware/interfaces/tree/security/keymint/aidl/default/android.hardware.security.keymint-service.xml?h=aosp-new/simpleperf-release
|
||||||
|
2) https://source.codeaurora.org/quic/la/platform/hardware/interfaces/tree/security/keymint/aidl/default/android.hardware.security.secureclock-service.xml?h=aosp-new/simpleperf-release
|
||||||
|
3) https://source.codeaurora.org/quic/la/platform/hardware/interfaces/tree/security/keymint/aidl/default/android.hardware.security.sharedsecret-service.xml?h=aosp-new/simpleperf-release
|
||||||
|
|
||||||
|
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.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<manifest version="1.0" type="device">
|
||||||
|
<hal format="aidl">
|
||||||
|
<name>android.hardware.security.keymint</name>
|
||||||
|
<fqname>IKeyMintDevice/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="aidl">
|
||||||
|
<name>android.hardware.security.sharedsecret</name>
|
||||||
|
<fqname>ISharedSecret/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="aidl">
|
||||||
|
<name>android.hardware.security.secureclock</name>
|
||||||
|
<fqname>ISecureClock/default</fqname>
|
||||||
|
</hal>
|
||||||
|
<hal format="aidl">
|
||||||
|
<name>android.hardware.security.keymint</name>
|
||||||
|
<fqname>IRemotelyProvisionedComponent/default</fqname>
|
||||||
|
</hal>
|
||||||
|
</manifest>
|
34
recovery/root/vendor/etc/vintf/manifest/vendor.qti.hardware.vibrator.service.xml
vendored
Normal file
34
recovery/root/vendor/etc/vintf/manifest/vendor.qti.hardware.vibrator.service.xml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<!-- Copyright (c) 2020-2021 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 "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.
|
||||||
|
-->
|
||||||
|
<manifest version="1.0" type="device">
|
||||||
|
<hal format="aidl">
|
||||||
|
<name>android.hardware.vibrator</name>
|
||||||
|
<version>2</version>
|
||||||
|
<fqname>IVibrator/default</fqname>
|
||||||
|
</hal>
|
||||||
|
</manifest>
|
BIN
recovery/root/vendor/lib64/android.hardware.secure_element@1.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/android.hardware.secure_element@1.0.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/android.hardware.secure_element@1.1.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/android.hardware.secure_element@1.1.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/android.hardware.secure_element@1.2.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/android.hardware.secure_element@1.2.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/hw/android.hardware.boot@1.0-impl-1.2-qti.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/hw/android.hardware.boot@1.0-impl-1.2-qti.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/hw/android.hardware.gatekeeper@1.0-impl-qti.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/hw/android.hardware.gatekeeper@1.0-impl-qti.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/hw/android.hardware.health@2.0-impl-2.1-qti.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/hw/android.hardware.health@2.0-impl-2.1-qti.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/hw/vendor.qti.hardware.qteeconnector@1.0-impl.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/hw/vendor.qti.hardware.qteeconnector@1.0-impl.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libGPQTEEC_vendor.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libGPQTEEC_vendor.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libGPTEE_vendor.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libGPTEE_vendor.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libGPreqcancel.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libGPreqcancel.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libGPreqcancel_svc.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libGPreqcancel_svc.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libQSEEComAPI.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libQSEEComAPI.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libQTEEConnector_listener.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libQTEEConnector_listener.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libQTEEConnector_vendor.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libQTEEConnector_vendor.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libaacvibrator.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libaacvibrator.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libboot_control_qti.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libboot_control_qti.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdiag.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdiag.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdisplayconfig.qti.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdisplayconfig.qti.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdisplaydebug.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdisplaydebug.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdrm.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdrm.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdrmfs.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdrmfs.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdrmtime.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdrmtime.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdrmutils.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdrmutils.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libdsutils.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libdsutils.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libidl.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libidl.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libkeymasterdeviceutils.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libkeymasterdeviceutils.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libkeymasterprovision.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libkeymasterprovision.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libkeymasterutils.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libkeymasterutils.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libkeystore-engine-wifi-hidl.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libkeystore-engine-wifi-hidl.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libkeystore-wifi-hidl.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libkeystore-wifi-hidl.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libmdmdetect.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libmdmdetect.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libminkdescriptor.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libminkdescriptor.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libminksocket_vendor.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libminksocket_vendor.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libops.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libops.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqcbor.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqcbor.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqdutils.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqdutils.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqisl.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqisl.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqmi_cci.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqmi_cci.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqmi_client_qmux.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqmi_client_qmux.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqmi_common_so.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqmi_common_so.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqmi_csi.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqmi_csi.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqmi_encdec.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqmi_encdec.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqmiservices.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqmiservices.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqrtr.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqrtr.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqservice.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqservice.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqti-util.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqti-util.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqti-utils.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqti-utils.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqtikeymaster4.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqtikeymaster4.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqtikeymint.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqtikeymint.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libqtivibratoreffect.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libqtivibratoreffect.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/librecovery_updater.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/librecovery_updater.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/librecovery_updater_msm.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/librecovery_updater_msm.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/librpmb.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/librpmb.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libsoc_helper.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libsoc_helper.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libsoc_helper_jni.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libsoc_helper_jni.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libspcom.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libspcom.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libspl.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libspl.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libssd.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libssd.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libthermalclient.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libthermalclient.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libtime_genoff.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libtime_genoff.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/libvmmem.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/libvmmem.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.aac.hardware.richtap.vibrator-V1-ndk_platform.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.aac.hardware.richtap.vibrator-V1-ndk_platform.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.display.config@1.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.display.config@1.0.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.display.config@2.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.display.config@2.0.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.qteeconnector@1.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.qteeconnector@1.0.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.tui_comm@1.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.tui_comm@1.0.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.vibrator.impl.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.vibrator.impl.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.wifi.keystore@1.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.qti.hardware.wifi.keystore@1.0.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.qti.spu@1.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.qti.spu@1.0.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.qti.spu@1.1.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.qti.spu@1.1.so
vendored
Normal file
Binary file not shown.
BIN
recovery/root/vendor/lib64/vendor.qti.spu@2.0.so
vendored
Normal file
BIN
recovery/root/vendor/lib64/vendor.qti.spu@2.0.so
vendored
Normal file
Binary file not shown.
537
recovery/root/vendor/ueventd.rc
vendored
Normal file
537
recovery/root/vendor/ueventd.rc
vendored
Normal file
|
@ -0,0 +1,537 @@
|
||||||
|
# Copyright (c) 2012-2015, 2017-2021, The Linux Foundation. All rights reserved.
|
||||||
|
#
|
||||||
|
# Copyright (c) 2022 Qualcomm Innovation Center, Inc. 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Firmware directory Path
|
||||||
|
# Below macro will be read by uevent and path will
|
||||||
|
# be added to search path for firmware loading
|
||||||
|
firmware_directories /vendor/firmware_mnt/image/
|
||||||
|
|
||||||
|
subsystem dma_heap
|
||||||
|
devname uevent_devpath
|
||||||
|
dirname /dev/dma_heap
|
||||||
|
|
||||||
|
subsystem mem_buf_vm
|
||||||
|
devname uevent_devpath
|
||||||
|
dirname /dev/mem_buf_vm
|
||||||
|
|
||||||
|
# the DIAG device node is not world writable/readable.
|
||||||
|
/dev/diag 0660 system oem_2901
|
||||||
|
/dev/mhi_*_pipe_4 0660 system system
|
||||||
|
|
||||||
|
/dev/genlock 0666 system system
|
||||||
|
/dev/wlan 0660 wifi wifi
|
||||||
|
/dev/kgsl 0666 system system
|
||||||
|
/dev/kgsl-3d0 0666 system system
|
||||||
|
/dev/kgsl-2d0 0666 root root
|
||||||
|
/dev/kgsl-2d1 0666 root root
|
||||||
|
/dev/ion 0664 system system
|
||||||
|
/dev/membuf 0664 system system
|
||||||
|
/dev/mem_buf_vm/* 0444 system system
|
||||||
|
/dev/dma_heap/qcom,* 0444 system system
|
||||||
|
/dev/rtc0 0660 system system
|
||||||
|
/dev/smd0 0660 system system
|
||||||
|
/dev/smd4 0660 system system
|
||||||
|
/dev/smd_cxm_qmi 0640 radio radio
|
||||||
|
/dev/smd5 0660 system system
|
||||||
|
/dev/smd6 0660 system system
|
||||||
|
/dev/smd7 0660 bluetooth bluetooth
|
||||||
|
/dev/ccid_bridge 0660 system system
|
||||||
|
/dev/ipa 0660 radio radio
|
||||||
|
/dev/wwan_ioctl 0660 radio radio
|
||||||
|
/dev/ipa_lnx_stats_ioctl 0640 radio radio
|
||||||
|
/dev/ipaNatTable 0660 radio radio
|
||||||
|
/dev/rmnet_ctrl 0660 usb usb
|
||||||
|
/dev/dpl_ctrl 0660 usb usb
|
||||||
|
/dev/ipa_odl_ctl 0660 radio radio
|
||||||
|
/dev/ipa_adpl 0660 system oem_2905
|
||||||
|
/dev/synx_device 0660 root camera
|
||||||
|
/dev/hab 0666 system system
|
||||||
|
/dev/iio:device* 0664 system system
|
||||||
|
|
||||||
|
#permissions for UFS RPMB BSG device node
|
||||||
|
/dev/0:0:0:49476 0600 system system
|
||||||
|
|
||||||
|
#permissions for CSVT
|
||||||
|
/dev/smd11 0660 radio radio
|
||||||
|
|
||||||
|
#permsissions for BT/FM
|
||||||
|
/dev/smd2 0660 bluetooth bluetooth
|
||||||
|
/dev/smd3 0660 bluetooth bluetooth
|
||||||
|
/dev/btpower 0660 bluetooth system
|
||||||
|
|
||||||
|
#permissions for pta
|
||||||
|
/dev/pta 0660 system system
|
||||||
|
|
||||||
|
/dev/radio0 0640 system system
|
||||||
|
/dev/rfcomm0 0660 bluetooth bluetooth
|
||||||
|
/dev/ttyUSB0 0660 bluetooth bluetooth
|
||||||
|
/dev/smdcntl0 0640 radio radio
|
||||||
|
/dev/smdcntl1 0640 radio radio
|
||||||
|
/dev/smdcntl2 0640 radio radio
|
||||||
|
/dev/smdcntl3 0640 radio radio
|
||||||
|
/dev/smdcntl4 0640 radio radio
|
||||||
|
/dev/smdcntl5 0640 radio radio
|
||||||
|
/dev/smdcntl6 0640 radio radio
|
||||||
|
/dev/smdcntl7 0640 radio radio
|
||||||
|
/dev/smdcntl8 0640 radio radio
|
||||||
|
/dev/smdcnt_rev0 0640 radio radio
|
||||||
|
/dev/smdcnt_rev1 0640 radio radio
|
||||||
|
/dev/smdcnt_rev2 0640 radio radio
|
||||||
|
/dev/smdcnt_rev3 0640 radio radio
|
||||||
|
/dev/smdcnt_rev4 0640 radio radio
|
||||||
|
/dev/smdcnt_rev5 0640 radio radio
|
||||||
|
/dev/smdcnt_rev6 0640 radio radio
|
||||||
|
/dev/smdcnt_rev7 0640 radio radio
|
||||||
|
/dev/smdcnt_rev8 0640 radio radio
|
||||||
|
/dev/smuxctl32 0640 radio radio
|
||||||
|
/dev/sdioctl0 0640 radio radio
|
||||||
|
/dev/sdioctl1 0640 radio radio
|
||||||
|
/dev/sdioctl2 0640 radio radio
|
||||||
|
/dev/sdioctl3 0640 radio radio
|
||||||
|
/dev/sdioctl4 0640 radio radio
|
||||||
|
/dev/sdioctl5 0640 radio radio
|
||||||
|
/dev/sdioctl6 0640 radio radio
|
||||||
|
/dev/sdioctl7 0640 radio radio
|
||||||
|
/dev/sdioctl8 0640 radio radio
|
||||||
|
/dev/rmnet_mux_ctrl 0640 radio radio
|
||||||
|
/dev/hsicctl0 0640 radio radio
|
||||||
|
/dev/hsicctl1 0640 radio radio
|
||||||
|
/dev/hsicctl2 0640 radio radio
|
||||||
|
/dev/hsicctl3 0640 radio radio
|
||||||
|
/dev/hsicctl4 0640 radio radio
|
||||||
|
/dev/hsicctl5 0640 radio radio
|
||||||
|
/dev/hsicctl6 0640 radio radio
|
||||||
|
/dev/hsicctl7 0640 radio radio
|
||||||
|
/dev/hsicctl8 0640 radio radio
|
||||||
|
/dev/hsicctl9 0640 radio radio
|
||||||
|
/dev/hsicctl10 0640 radio radio
|
||||||
|
/dev/hsicctl11 0640 radio radio
|
||||||
|
/dev/hsicctl12 0640 radio radio
|
||||||
|
/dev/hsicctl13 0640 radio radio
|
||||||
|
/dev/hsicctl14 0640 radio radio
|
||||||
|
/dev/hsicctl15 0640 radio radio
|
||||||
|
/dev/hsicctl16 0640 radio radio
|
||||||
|
/dev/mhi_*_pipe_14 0640 radio radio
|
||||||
|
/dev/mhi_*_pipe_16 0640 radio radio
|
||||||
|
/dev/mhi_*_pipe_32 0640 radio radio
|
||||||
|
/dev/at_usb0 0640 radio radio
|
||||||
|
/dev/at_mdm0 0640 radio radio
|
||||||
|
/dev/video* 0660 system camera
|
||||||
|
/dev/cvp* 0660 system camera
|
||||||
|
/dev/media* 0660 system camera
|
||||||
|
/dev/v4l-subdev* 0660 system camera
|
||||||
|
/dev/qseecom 0660 system drmrpc
|
||||||
|
/dev/qce 0660 system drmrpc
|
||||||
|
/dev/smcinvoke 0660 system drmrpc
|
||||||
|
/dev/qsee_ipc_irq_spss 0660 system drmrpc
|
||||||
|
/dev/seemplog 0660 system system
|
||||||
|
/dev/pft 0660 system drmrpc
|
||||||
|
/dev/spcom 0660 system system
|
||||||
|
/dev/spss_utils 0660 system system
|
||||||
|
/dev/sp_kernel 0660 system system
|
||||||
|
/dev/sp_nvm 0660 system system
|
||||||
|
/dev/sp_ssr 0660 system system
|
||||||
|
/dev/sp_keymaster 0660 system system
|
||||||
|
/dev/sp_keymaster_ssr 0660 system system
|
||||||
|
/dev/sec_nvm_* 0660 system system
|
||||||
|
/dev/cryptoapp 0660 system system
|
||||||
|
/dev/spdaemon_ssr 0660 system system
|
||||||
|
/dev/spu_hal_ssr 0660 system system
|
||||||
|
/dev/iuicc* 0660 system system
|
||||||
|
/dev/gemini0 0660 system camera
|
||||||
|
/dev/jpeg0 0660 system camera
|
||||||
|
/dev/jpeg1 0660 system camera
|
||||||
|
/dev/jpeg2 0660 system camera
|
||||||
|
/dev/jpeg3 0660 system camera
|
||||||
|
/dev/adsprpc-smd 0664 system system
|
||||||
|
/dev/adsprpc-smd-secure 0644 system system
|
||||||
|
/dev/system_health_monitor 0644 radio system
|
||||||
|
/dev/mdss_rotator 0664 system system
|
||||||
|
/dev/spec_sync 0660 system system
|
||||||
|
|
||||||
|
#QDSS
|
||||||
|
/dev/byte-cntr 0660 system oem_2902
|
||||||
|
/dev/mhi_qdss 0660 system oem_2902
|
||||||
|
/sys/class/qdss_bridge/mhi_qdss mode 0660 system oem_2902
|
||||||
|
|
||||||
|
#qg
|
||||||
|
/dev/qg 0660 system system
|
||||||
|
/dev/qg_battery 0660 system system
|
||||||
|
|
||||||
|
#qvr
|
||||||
|
/dev/qvr_external_sensor_ioctl 0660 system system
|
||||||
|
/sys/kernel/qvr_external_sensor/fd 0660 system system
|
||||||
|
/dev/bus/usb/* 0660 root usb
|
||||||
|
/dev/hidraw* 0660 root usb
|
||||||
|
|
||||||
|
# wlan
|
||||||
|
/dev/wcnss_wlan 0660 system system
|
||||||
|
/dev/wcnss_ctrl 0660 system system
|
||||||
|
/sys/devices/soc/a000000.qcom,wcnss-wlan/net/wlan0/queues/rx-* rps_cpus 0660 system system
|
||||||
|
/sys/devices/soc/a000000.qcom,wcnss-wlan/net/p2p0/queues/rx-* rps_cpus 0660 system system
|
||||||
|
/sys/devices/platform/soc/18800000.qcom,icnss/net/wlan*/queues/rx-* rps_cpus 0660 system system
|
||||||
|
/sys/devices/platform/soc/1c00000.qcom,pcie/pci0000:00/0000:00:00.0/0000:01:00.0/net/wlan*/queues/rx-* rps_cpus 0660 system system
|
||||||
|
/dev/spidev0.0 0660 system audio
|
||||||
|
/dev/i2c-7 0660 system audio
|
||||||
|
/dev/msm_camera/* 0660 system camera
|
||||||
|
/dev/gemini/ 0660 system camera
|
||||||
|
/dev/mercury0 0660 system camera
|
||||||
|
/dev/msm_vidc_reg 0660 system audio
|
||||||
|
/dev/msm_vidc_dec 0660 system audio
|
||||||
|
/dev/msm_vidc_dec_sec 0660 system audio
|
||||||
|
/dev/msm_vidc_enc 0660 system audio
|
||||||
|
/dev/msm_rotator 0660 system system
|
||||||
|
/dev/hw_random 0600 root root
|
||||||
|
/dev/sdsprpc-smd 0660 system system
|
||||||
|
|
||||||
|
#permissions for audio
|
||||||
|
/dev/wcd_dsp0_control 0660 system audio
|
||||||
|
/dev/wcd-dsp-glink 0660 system audio
|
||||||
|
/dev/audio_slimslave 0660 system audio
|
||||||
|
/dev/msm_qcelp 0660 system audio
|
||||||
|
/dev/msm_evrc 0660 system audio
|
||||||
|
/dev/msm_wma 0660 system audio
|
||||||
|
/dev/msm_wmapro 0660 system audio
|
||||||
|
/dev/msm_alac 0660 system audio
|
||||||
|
/dev/msm_ape 0660 system audio
|
||||||
|
/dev/msm_amrnb 0660 system audio
|
||||||
|
/dev/msm_amrwb 0660 system audio
|
||||||
|
/dev/msm_amrwbplus 0660 system audio
|
||||||
|
/dev/msm_aac 0660 system audio
|
||||||
|
/dev/msm_multi_aac 0660 system audio
|
||||||
|
/dev/msm_aac_in 0660 system audio
|
||||||
|
/dev/msm_qcelp_in 0660 system audio
|
||||||
|
/dev/msm_evrc_in 0660 system audio
|
||||||
|
/dev/msm_amrnb_in 0660 system audio
|
||||||
|
/dev/msm_amrwb_in 0660 system audio
|
||||||
|
/dev/msm_a2dp_in 0660 system audio
|
||||||
|
/dev/msm_ac3 0660 system audio
|
||||||
|
/dev/msm_audio_cal 0660 system audio
|
||||||
|
/dev/msm_hweffects 0660 system audio
|
||||||
|
/dev/msm_cad 0660 system audio
|
||||||
|
/dev/msm_fm 0660 system audio
|
||||||
|
/dev/msm_mvs 0660 system audio
|
||||||
|
/dev/msm_pcm_lp_dec 0660 system audio
|
||||||
|
/dev/msm_preproc_ctl 0660 system audio
|
||||||
|
/dev/msm_rtac 0660 system audio
|
||||||
|
/dev/msm_voicememo 0660 system audio
|
||||||
|
/dev/aud_pasthru_adsp 0660 system audio
|
||||||
|
/dev/msm_audio_ion_cma 0660 system audio
|
||||||
|
/dev/msm_audio_ion 0660 system audio
|
||||||
|
/dev/ttyHSL1 0660 system system
|
||||||
|
/dev/ttyHS1 0660 system system
|
||||||
|
/dev/mdm 0660 system radio
|
||||||
|
/sys/devices/virtual/smdpkt/smdcntl* open_timeout 0664 radio radio
|
||||||
|
/dev/sdio_tty_ciq_00 0660 system system
|
||||||
|
/dev/tty_sdio_00 0660 system system
|
||||||
|
/dev/ttyGS0 0660 system system
|
||||||
|
/dev/i2c-5 0660 media media
|
||||||
|
/dev/avtimer 0660 system audio
|
||||||
|
/dev/spidev2.0 0660 system audio
|
||||||
|
/dev/msm_adsp_sleepmon 0660 system audio
|
||||||
|
|
||||||
|
# DVB devices
|
||||||
|
/dev/dvb/adapter0/demux* 0440 media media
|
||||||
|
/dev/dvb/adapter0/dvr* 0660 media media
|
||||||
|
/dev/dvb/adapter0/video* 0660 media media
|
||||||
|
|
||||||
|
# Broadcast devices
|
||||||
|
/dev/tsc_mux0 0660 media media
|
||||||
|
/dev/tsc_ci0 0660 media media
|
||||||
|
|
||||||
|
# sensors
|
||||||
|
/dev/sensors 0660 system system
|
||||||
|
/sys/devices/i2c-12/12-* pollrate_ms 0664 system system
|
||||||
|
/sys/devices/f9925000.i2c/i2c-0/0-* enable 0660 input system
|
||||||
|
/sys/devices/f9925000.i2c/i2c-0/0-* poll_delay 0660 input system
|
||||||
|
/sys/devices/soc.0/78b6000.i2c/i2c-0/0-* enable 0660 input system
|
||||||
|
/sys/devices/soc.0/78b6000.i2c/i2c-0/0-* poll_delay 0660 input system
|
||||||
|
/sys/devices/soc.0/78b6000.i2c/i2c-0/0-* enable_wakeup 0660 input system
|
||||||
|
/sys/devices/soc.0/78b6000.i2c/i2c-0/0-* max_latency 0660 input system
|
||||||
|
/sys/devices/soc.0/78b6000.i2c/i2c-0/0-* flush 0660 input system
|
||||||
|
/sys/devices/soc.0/78b6000.i2c/i2c-0/0-* calibrate 0660 input system
|
||||||
|
/sys/devices/soc.0/78b5000.i2c/i2c-1/1-* enable 0660 input system
|
||||||
|
/sys/devices/soc.0/78b5000.i2c/i2c-1/1-* poll_delay 0660 input system
|
||||||
|
/sys/devices/soc.0/78b5000.i2c/i2c-1/1-* enable_wakeup 0660 input system
|
||||||
|
/sys/devices/soc.0/78b5000.i2c/i2c-1/1-* max_latency 0660 input system
|
||||||
|
/sys/devices/soc.0/78b5000.i2c/i2c-1/1-* flush 0660 input system
|
||||||
|
/sys/devices/soc.0/78b5000.i2c/i2c-1/1-* calibrate 0660 input system
|
||||||
|
/sys/devices/virtual/optical_sensors/proximity ps_adc 0660 input system
|
||||||
|
/sys/devices/virtual/optical_sensors/proximity ps_poll_delay 0660 input system
|
||||||
|
/sys/devices/virtual/optical_sensors/lightsensor ls_auto 0660 input system
|
||||||
|
/sys/devices/virtual/optical_sensors/lightsensor ls_poll_delay 0660 input system
|
||||||
|
/sys/devices/virtual/input/input* poll 0660 input system
|
||||||
|
/sys/devices/virtual/input/input* pollrate_ms 0660 input system
|
||||||
|
/sys/devices/soc/78b7000.i2c/i2c-3/3-0020/input/input* secure_touch 0440 system drmrpc
|
||||||
|
/sys/devices/soc/78b7000.i2c/i2c-3/3-0020/input/input* secure_touch_enable 0660 system drmrpc
|
||||||
|
/sys/devices/soc/78b7000.i2c/i2c-3/3-0038/input/input* secure_touch 0440 system drmrpc
|
||||||
|
/sys/devices/soc/78b7000.i2c/i2c-3/3-0038/input/input* secure_touch_enable 0660 system drmrpc
|
||||||
|
/sys/devices/soc/78b7000.i2c/i2c-3/3-004b/input/input* secure_touch 0440 system drmrpc
|
||||||
|
/sys/devices/soc/78b7000.i2c/i2c-3/3-004b/input/input* secure_touch_enable 0660 system drmrpc
|
||||||
|
/sys/devices/soc/c179000.i2c/i2c-5/5-0020/input/input* secure_touch 0440 system drmrpc
|
||||||
|
/sys/devices/soc/c179000.i2c/i2c-5/5-0020/input/input* secure_touch_enable 0660 system drmrpc
|
||||||
|
/sys/devices/platform/soc/a98000.i2c/i2c-2/2-0020/input/input* secure_touch 0440 system drmrpc
|
||||||
|
/sys/devices/platform/soc/a98000.i2c/i2c-2/2-0020/input/input* secure_touch_enable 0660 system drmrpc
|
||||||
|
/sys/devices/platform/soc/a84000.i2c/i2c-2/2-0020/input/input* secure_touch 0440 system drmrpc
|
||||||
|
/sys/devices/platform/soc/a84000.i2c/i2c-2/2-0020/input/input* secure_touch_enable 0660 system drmrpc
|
||||||
|
|
||||||
|
# GNSS Device premissions
|
||||||
|
/dev/gnss_sirf 0660 gps gps
|
||||||
|
|
||||||
|
# laser sensor access
|
||||||
|
/sys/devices/virtual/input/input* enable_ps_sensor 0660 system input
|
||||||
|
/sys/devices/virtual/input/input* set_delay_ms 0660 system input
|
||||||
|
/sys/devices/virtual/input/input* do_flush 0660 system input
|
||||||
|
|
||||||
|
# vm_bms
|
||||||
|
/dev/vm_bms 0660 system system
|
||||||
|
/dev/battery_data 0660 system system
|
||||||
|
|
||||||
|
# wlan
|
||||||
|
/dev/wcnss_wlan 0660 system system
|
||||||
|
/dev/wcnss_ctrl 0660 system system
|
||||||
|
/sys/devices/soc/600000.qcom,pcie/pci0000:00/0000:00:00.0/0000:01:00.0/net/wlan0/queues/rx-* rps_cpus 0660 system system
|
||||||
|
/sys/devices/soc/600000.qcom,pcie/pci0000:00/0000:00:00.0/0000:01:00.0/net/p2p0/queues/rx-* rps_cpus 0660 system system
|
||||||
|
|
||||||
|
# wigig
|
||||||
|
/sys/bus/pci/drivers/wil6210* 0000:01:00.0/wil6210/fst_link_loss 0660 wifi wifi
|
||||||
|
/sys/bus/pci/drivers/wil6210* 0000:01:00.0/wil6210/thermal_throttling 0660 system system
|
||||||
|
/sys/bus/pci/drivers/wil6210* 0000:01:00.0/wil6210/snr_thresh 0660 wifi wifi
|
||||||
|
/sys/bus/pci/drivers/wil6210* 0000:01:00.0/net/wigig0/queues/rx-0/rps_cpus 0660 system system
|
||||||
|
/sys/bus/pci/drivers/wil6210* 0000:01:00.0/net/wigig0/gro_flush_timeout 0660 system system
|
||||||
|
/sys/devices/virtual/net/bond0 queues/rx-0/rps_cpus 0660 system system
|
||||||
|
|
||||||
|
#nfc permissions
|
||||||
|
/dev/nfc-nci 0660 nfc nfc
|
||||||
|
/dev/nq-nci 0660 nfc nfc
|
||||||
|
/dev/assd 0660 nfc nfc
|
||||||
|
|
||||||
|
# UIO devices
|
||||||
|
/dev/uio0 0660 system system
|
||||||
|
/dev/uio1 0660 system system
|
||||||
|
/dev/uio2 0660 system system
|
||||||
|
|
||||||
|
# SSR devices
|
||||||
|
/dev/subsys_* 0640 system system
|
||||||
|
|
||||||
|
# remoteproc devices
|
||||||
|
/dev/remoteproc* 0640 system system
|
||||||
|
|
||||||
|
# Ultrasound device
|
||||||
|
/dev/usf1 0660 system system
|
||||||
|
|
||||||
|
# Ramdump devices
|
||||||
|
/dev/ramdump* 0640 system system
|
||||||
|
|
||||||
|
# Fingerprint device
|
||||||
|
/dev/qbt* 0660 system system
|
||||||
|
/sys/class/fts/touch_aoi aoi_set 0660 root system
|
||||||
|
/sys/class/fts/touch_aoi power_set 0660 root system
|
||||||
|
|
||||||
|
# Goodix fingerprint device
|
||||||
|
/dev/goodix_fp 0660 system system
|
||||||
|
|
||||||
|
# EgisTech fingerprint device
|
||||||
|
/dev/esfp0 0660 system system
|
||||||
|
|
||||||
|
# Change permission for FPC fingerprint
|
||||||
|
/sys/class/fingerprint/fpc1020 nav 0440 system system
|
||||||
|
/sys/class/fingerprint/fpc1020 irq 0440 system system
|
||||||
|
/sys/class/fingerprint/fpc1020 irq_cnt 0440 system system
|
||||||
|
/sys/class/fingerprint/fpc1020 dev_enable 0220 system system
|
||||||
|
/sys/class/fingerprint/fpc1020 vendor 0444 system system
|
||||||
|
/sys/class/fingerprint/fpc1020 hw_reset 0220 system system
|
||||||
|
|
||||||
|
/sys/devices/platform/soc/soc\:fpc_fpc1020 irq 0440 system system
|
||||||
|
/sys/devices/platform/soc/soc\:fpc_fpc1020 irq_cnt 0440 system system
|
||||||
|
/sys/devices/platform/soc/soc\:fpc_fpc1020 dev_enable 0220 system system
|
||||||
|
/sys/devices/platform/soc/soc\:fpc_fpc1020 hw_reset 0220 system system
|
||||||
|
|
||||||
|
#ImproveTouch device
|
||||||
|
/dev/hbtp_input 0660 system system
|
||||||
|
/dev/hbtp_vm 0660 system system
|
||||||
|
|
||||||
|
# Add device block for FRP
|
||||||
|
/dev/block/platform/soc/7824900.sdhci/by-name/config 0600 system system
|
||||||
|
/dev/block/platform/soc/7464900.sdhci/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/624000.ufshc/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/1da4000.ufshc/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/c0c4000.sdhci/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/1d84000.ufshc/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/7c4000.sdhci/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/4744000.sdhci/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/4804000.ufshc/by-name/frp 0600 system system
|
||||||
|
/dev/block/platform/soc/7c4000.sdhci/by-name/rawdump 0660 root system
|
||||||
|
/dev/block/platform/soc/1d84000.ufshc/by-name/rawdump 0660 root system
|
||||||
|
|
||||||
|
# This is temporary while using SD card for initial bring-up
|
||||||
|
/dev/block/platform/soc/8804000.sdhci/by-name/frp 0600 system system
|
||||||
|
|
||||||
|
# Add device block for MISC
|
||||||
|
/dev/block/platform/soc/7464900.sdhci/by-name/misc 0660 root system
|
||||||
|
/dev/block/platform/soc/624000.ufshc/by-name/misc 0660 root system
|
||||||
|
/dev/block/platform/soc/1da4000.ufshc/by-name/misc 0660 root system
|
||||||
|
/dev/block/platform/soc/c0c4000.sdhci/by-name/misc 0660 root system
|
||||||
|
/dev/block/platform/soc/1d84000.ufshc/by-name/misc 0660 root system
|
||||||
|
/dev/block/platform/soc/7c4000.sdhci/by-name/misc 0660 root system
|
||||||
|
/dev/block/platform/soc/4744000.sdhci/by-name/misc 0660 root system
|
||||||
|
/dev/block/platform/soc/4804000.ufshc/by-name/misc 0660 root system
|
||||||
|
|
||||||
|
# Kmsg device
|
||||||
|
/dev/kmsg 0620 root system
|
||||||
|
|
||||||
|
# LED class devices
|
||||||
|
/sys/class/leds/red delay_on 0640 system system
|
||||||
|
/sys/class/leds/red delay_off 0640 system system
|
||||||
|
/sys/class/leds/red breath 0640 system system
|
||||||
|
/sys/class/leds/red trigger 0640 system system
|
||||||
|
/sys/class/leds/green delay_on 0640 system system
|
||||||
|
/sys/class/leds/green delay_off 0640 system system
|
||||||
|
/sys/class/leds/green breath 0640 system system
|
||||||
|
/sys/class/leds/green trigger 0640 system system
|
||||||
|
/sys/class/leds/blue delay_on 0640 system system
|
||||||
|
/sys/class/leds/blue delay_off 0640 system system
|
||||||
|
/sys/class/leds/blue breath 0640 system system
|
||||||
|
/sys/class/leds/blue trigger 0640 system system
|
||||||
|
|
||||||
|
# NPU device
|
||||||
|
/dev/msm_npu 0644 system system
|
||||||
|
|
||||||
|
# USB role switch
|
||||||
|
/sys/class/dual_role_usb/* data_role 0660 system system
|
||||||
|
/sys/class/dual_role_usb/* power_role 0660 system system
|
||||||
|
/sys/class/dual_role_usb/* mode 0660 system system
|
||||||
|
|
||||||
|
#Memory Offline
|
||||||
|
/sys/devices/system/memory/memory* state 0660 system system
|
||||||
|
|
||||||
|
/sys/devices/virtual/hdcp/msm_hdcp min_level_change 0664 system graphics
|
||||||
|
|
||||||
|
#KGSL
|
||||||
|
/sys/class/kgsl/kgsl-3d0 perfcounter 0660 root shell
|
||||||
|
|
||||||
|
# sys-fs display
|
||||||
|
/sys/class/graphics/fb* hpd 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* res_info 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* vendor_name 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* product_description 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* video_mode 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* format_3d 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* s3d_mode 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* dynamic_fps 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* msm_fb_dfps_mode 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* hdr_stream 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* cec/enable 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* cec/logical_addr 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* cec/rd_msg 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* pa 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* cec/wr_msg 0600 system graphics
|
||||||
|
/sys/class/graphics/fb* hdcp/tp 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* hdcp2p2/min_level_change 0660 system graphics
|
||||||
|
/sys/class/graphics/fb* hdmi_audio_cb 0600 audioserver audio
|
||||||
|
|
||||||
|
/sys/class/graphics/fb* lineptr_value 0664 system graphics
|
||||||
|
/sys/class/graphics/fb* msm_fb_persist_mode 0664 system graphics
|
||||||
|
|
||||||
|
/sys/class/graphics/fb0 idle_time 0664 system graphics
|
||||||
|
/sys/class/graphics/fb0 dynamic_fps 0664 system graphics
|
||||||
|
/sys/class/graphics/fb0 dyn_pu 0664 system graphics
|
||||||
|
/sys/class/graphics/fb0 modes 0664 system graphics
|
||||||
|
/sys/class/graphics/fb0 mode 0664 system graphics
|
||||||
|
/sys/class/graphics/fb0 msm_cmd_autorefresh_en 0664 system graphics
|
||||||
|
*/
|
||||||
|
|
||||||
|
/sys/devices/platform/soc/ae00000.qcom,mdss_mdp power/control 0664 system graphics
|
||||||
|
|
||||||
|
#asm330 sensor
|
||||||
|
#common sensors files
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* buffer/enable 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* buffer/length 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* buffer/watermark 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* discharded_samples 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* current_timestamp_clock 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* hwfifo_flush 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* hwfifo_watermark 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* hwfifo_watermark_max 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* mount_matrix 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* name 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* sampling_frequency 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* sampling_frequency_available 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_timestamp_en 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_timestamp_index 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_timestamp_type 0664 system system
|
||||||
|
|
||||||
|
# standard iio accel attributes
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_accel_scale_available 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_accel_x_raw 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_accel_x_scale 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_accel_y_raw 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_accel_y_scale 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_accel_z_raw 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_accel_z_scale 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_x_en 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_x_index 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_x_type 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_y_en 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_y_index 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_y_type 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_z_en 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_z_index 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_accel_z_type 0664 system system
|
||||||
|
|
||||||
|
# standard iio gyro attributes
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_anglvel_scale_available 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_anglvel_x_raw 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_anglvel_x_scale 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_anglvel_y_raw 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_anglvel_y_scale 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_anglvel_z_raw 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_anglvel_z_scale 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_x_en 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_x_index 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_x_type 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_y_en 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_y_index 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_y_type 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_z_en 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_z_index 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* scan_elements/in_anglvel_z_type 0664 system system
|
||||||
|
|
||||||
|
|
||||||
|
# standard iio temp attributes
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_temp_offset 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_temp_raw 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_temp_scale 0664 system system
|
||||||
|
/sys/devices/platform/soc/*.i2c/i2c-*/*-*/iio:device* in_temp_scale_available 0664 system system
|
||||||
|
|
||||||
|
# devcoredump data attributes
|
||||||
|
/sys/class/devcoredump/devcd* data 0600 system system
|
||||||
|
|
||||||
|
# Motorola: Add for HIDRAW to access the glass usb device
|
||||||
|
/dev/hidraw* 0660 uhid uhid
|
Loading…
Reference in a new issue