Sanders : Regen and Update of blobs from LA.UM.8.6.r1-02600-89xx.0

Update FM blobs
Update Graphics (SDM) blobs
Update Time services blobs
Cleanup some old blobs
Change-Id: I54725529af1e5ecf4fdb914ec7005ad199af5687
Signed-off-by: ashwatthama <sai404142@gmail.com>
This commit is contained in:
kubersharma001
2020-02-28 08:06:23 +01:00
committed by ashwatthama
parent ef20dbe278
commit ec330ead67
7 changed files with 81 additions and 4 deletions

70
proprietary/vendor/bin/init.qti.fm.sh vendored Executable file
View File

@@ -0,0 +1,70 @@
#!/vendor/bin/sh
# Copyright (c) 2019 Qualcomm Technologies, Inc.
# All Rights Reserved.
# Confidential and Proprietary - Qualcomm Technologies, Inc.
#
# Copyright (c) 2009-2011, 2015, 2017 The Linux Foundation. All rights reserved.
#
setprop vendor.hw.fm.init 0
mode=`getprop vendor.hw.fm.mode`
version=199217
LOG_TAG="qti-fm"
LOG_NAME="${0}:"
loge ()
{
/vendor/bin/log -t $LOG_TAG -p e "$LOG_NAME $@"
}
logi ()
{
/vendor/bin/log -t $LOG_TAG -p i "$LOG_NAME $@"
}
failed ()
{
loge "$1: exit code $2"
exit $2
}
logi "In FM shell Script"
logi "mode: $mode"
logi "Version : $version"
#$fm_qsoc_patches <fm_chipVersion> <enable/disable WCM>
#
case $mode in
"normal")
logi "inserting the radio transport module"
echo 1 > /sys/module/radio_iris_transport/parameters/fmsmd_set
/vendor/bin/fm_qsoc_patches $version 0
;;
"wa_enable")
/vendor/bin/fm_qsoc_patches $version 1
;;
"wa_disable")
/vendor/bin/fm_qsoc_patches $version 2
;;
*)
logi "Shell: Default case"
/vendor/bin/fm_qsoc_patches $version 0
;;
esac
exit_code_fm_qsoc_patches=$?
case $exit_code_fm_qsoc_patches in
0)
logi "FM QSoC calibration and firmware download succeeded"
;;
*)
failed "FM QSoC firmware download and/or calibration failed" $exit_code_fm_qsoc_patches
;;
esac
setprop vendor.hw.fm.init 1
exit 0

View File

@@ -0,0 +1,6 @@
service fm_dl /vendor/bin/init.qti.fm.sh
class late_start
user system
group system
disabled
oneshot

BIN
proprietary/vendor/lib/libpdmapper.so vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
proprietary/vendor/lib64/libpdmapper.so vendored Normal file

Binary file not shown.