2020-04-17 07:47:23 -04:00
|
|
|
# Copyright (c) 2013-2018, 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.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
on init
|
2020-04-13 16:58:04 -04:00
|
|
|
wait /dev/block/platform/soc/1d84000.ufshc
|
|
|
|
symlink /dev/block/platform/soc/1d84000.ufshc /dev/block/bootdevice
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
write /sys/module/qpnp_rtc/parameters/poweron_alarm 1
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-03-28 07:15:48 -04:00
|
|
|
# Boot time fs tuning
|
|
|
|
write /sys/block/sda/queue/iostats 0
|
|
|
|
write /sys/block/sda/queue/scheduler cfq
|
|
|
|
write /sys/block/sda/queue/iosched/slice_idle 0
|
|
|
|
write /sys/block/sda/queue/read_ahead_kb 2048
|
|
|
|
write /sys/block/sda/queue/nr_requests 256
|
|
|
|
write /sys/block/sde/queue/iostats 0
|
|
|
|
write /sys/block/sde/queue/scheduler cfq
|
|
|
|
write /sys/block/sde/queue/iosched/slice_idle 0
|
|
|
|
write /sys/block/sde/queue/read_ahead_kb 2048
|
|
|
|
write /sys/block/sde/queue/nr_requests 256
|
|
|
|
|
2019-12-26 20:39:08 -05:00
|
|
|
# Add a cpuset for the camera daemon
|
|
|
|
mkdir /dev/cpuset/camera-daemon
|
|
|
|
write /dev/cpuset/camera-daemon/cpus 0-7
|
|
|
|
write /dev/cpuset/camera-daemon/mems 0
|
|
|
|
chown cameraserver cameraserver /dev/cpuset/camera-daemon
|
|
|
|
chown cameraserver cameraserver /dev/cpuset/camera-daemon/tasks
|
|
|
|
chmod 0660 /dev/cpuset/camera-daemon/tasks
|
|
|
|
|
2020-04-13 18:55:34 -04:00
|
|
|
# Camera motor
|
|
|
|
chown system camera /dev/drv8846_dev
|
|
|
|
chown system camera /dev/akm09970
|
|
|
|
chmod 0660 /dev/drv8846_dev
|
|
|
|
chmod 0660 /dev/akm09970
|
|
|
|
|
2020-04-17 07:47:23 -04:00
|
|
|
on fs
|
|
|
|
mount_all /vendor/etc/fstab.qcom --early
|
2020-04-13 16:58:04 -04:00
|
|
|
|
2020-04-17 07:47:23 -04:00
|
|
|
restorecon_recursive /mnt/vendor/persist
|
|
|
|
mkdir /mnt/vendor/persist/data 0700 system system
|
|
|
|
mkdir /mnt/vendor/persist/audio 0755 system system
|
|
|
|
mkdir /mnt/vendor/persist/camera 0777 root root
|
|
|
|
|
|
|
|
on late-fs
|
|
|
|
mount_all /vendor/etc/fstab.qcom --late
|
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
wait_for_prop hwservicemanager.ready true
|
|
|
|
exec_start wait_for_keymaster
|
2020-04-17 07:47:23 -04:00
|
|
|
|
|
|
|
on post-fs-data
|
|
|
|
mkdir /data/vendor/nnhal 0700 system system
|
|
|
|
mkdir /data/vendor/nfc 0770 nfc nfc
|
|
|
|
mkdir /data/vendor/thermal 0771 root system
|
|
|
|
mkdir /data/vendor/thermal/config 0771 root system
|
|
|
|
|
|
|
|
on boot
|
|
|
|
start rmt_storage
|
|
|
|
start rfs_access
|
2020-04-13 16:58:04 -04:00
|
|
|
|
2019-12-26 20:39:08 -05:00
|
|
|
chown system system /sys/class/thermal/thermal_message/sconfig
|
|
|
|
|
|
|
|
on property:sys.boot_completed=1
|
2020-03-28 07:15:48 -04:00
|
|
|
# Runtime fs tuning
|
|
|
|
write /sys/block/sda/queue/read_ahead_kb 128
|
|
|
|
write /sys/block/sda/queue/nr_requests 128
|
|
|
|
write /sys/block/sda/queue/iostats 1
|
|
|
|
write /sys/block/sde/queue/read_ahead_kb 128
|
|
|
|
write /sys/block/sde/queue/nr_requests 128
|
|
|
|
write /sys/block/sde/queue/iostats 1
|
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
# First setup runtime cpusets only for silver cpus
|
2020-04-17 07:47:23 -04:00
|
|
|
write /dev/cpuset/top-app/cpus 0-3
|
|
|
|
write /dev/cpuset/foreground/cpus 0-3
|
|
|
|
write /dev/cpuset/background/cpus 0-3
|
|
|
|
write /dev/cpuset/system-background/cpus 0-3
|
2020-04-13 16:58:04 -04:00
|
|
|
|
|
|
|
# Setup runtime cpusets
|
2020-04-17 07:47:23 -04:00
|
|
|
write /dev/cpuset/top-app/cpus 0-7
|
|
|
|
write /dev/cpuset/foreground/cpus 0-7
|
|
|
|
write /dev/cpuset/background/cpus 0-7
|
|
|
|
write /dev/cpuset/system-background/cpus 0-7
|
2020-04-13 16:58:04 -04:00
|
|
|
|
2020-04-17 07:47:23 -04:00
|
|
|
service vendor.pd_mapper /vendor/bin/pd-mapper
|
|
|
|
class core
|
|
|
|
user system
|
|
|
|
group system
|
|
|
|
|
|
|
|
service vendor.per_mgr /vendor/bin/pm-service
|
|
|
|
class core
|
|
|
|
user system
|
|
|
|
group system
|
|
|
|
ioprio rt 4
|
|
|
|
|
|
|
|
service vendor.per_proxy /vendor/bin/pm-proxy
|
|
|
|
class core
|
|
|
|
user system
|
|
|
|
group system
|
|
|
|
disabled
|
|
|
|
|
|
|
|
on property:init.svc.vendor.per_mgr=running
|
|
|
|
start vendor.per_proxy
|
|
|
|
|
|
|
|
on property:sys.shutdown.requested=*
|
|
|
|
stop vendor.per_proxy
|
|
|
|
|
|
|
|
on charger
|
2020-04-13 17:43:49 -04:00
|
|
|
wait /dev/block/platform/soc/1da4000.ufshc/by-name/system
|
|
|
|
mount ext4 /dev/block/platform/soc/1da4000.ufshc/by-name/system / ro barrier=1
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
wait /dev/block/platform/soc/1da4000.ufshc/by-name/persist
|
2020-04-13 17:43:49 -04:00
|
|
|
mount ext4 /dev/block/bootdevice/by-name/persist /mnt/vendor/persist nosuid nodev barrier=1
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
start vendor.hvdcp_opti
|
|
|
|
start vendor.thermal-engine
|
2020-04-13 17:43:49 -04:00
|
|
|
start vendor.qcom-post-boot
|
2020-04-13 16:58:04 -04:00
|
|
|
start vendor.power_off_alarm
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
service vendor.thermal-engine /vendor/bin/thermal-engine
|
2020-04-17 07:47:23 -04:00
|
|
|
class main
|
2020-04-13 16:58:04 -04:00
|
|
|
user root
|
|
|
|
socket thermal-send-client stream 0666 system system
|
|
|
|
socket thermal-recv-client stream 0660 system system
|
|
|
|
socket thermal-recv-passive-client stream 0666 system system
|
|
|
|
socket thermal-send-rule stream 0660 system system
|
|
|
|
group root
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-04-13 16:23:56 -04:00
|
|
|
service vendor.hvdcp_opti /vendor/bin/hvdcp_opti
|
|
|
|
class main
|
|
|
|
user root
|
|
|
|
group system wakelock
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
service vendor.remosaic_daemon /vendor/bin/remosaic_daemon
|
2020-04-17 07:47:23 -04:00
|
|
|
class late_start
|
2020-04-13 16:58:04 -04:00
|
|
|
user camera
|
|
|
|
group camera
|
2020-04-17 07:47:23 -04:00
|
|
|
|
2020-04-13 16:58:04 -04:00
|
|
|
service vendor.nv_mac /vendor/bin/nv_mac
|
2019-08-15 16:03:38 -04:00
|
|
|
class main
|
2020-04-13 16:22:58 -04:00
|
|
|
user system
|
|
|
|
group system inet net_admin wifi net_raw
|
|
|
|
oneshot
|
2020-04-13 18:55:34 -04:00
|
|
|
|
|
|
|
service vendor.motor /vendor/bin/hw/vendor.xiaomi.hardware.motor@1.0-service
|
|
|
|
class hal
|
|
|
|
user system
|
|
|
|
group system
|