sdm660-common: use perfconfigstore instead of properties
Change-Id: I71461329a7ddfc56a124c342e7ac8697e86d69bf
This commit is contained in:
parent
5dd7ed0bc3
commit
0bb6dd3fb4
3 changed files with 37 additions and 2 deletions
|
@ -245,7 +245,6 @@ PRODUCT_PROPERTY_OVERRIDES += \
|
|||
persist.vendor.cne.feature=1 \
|
||||
persist.vendor.dpm.feature=1 \
|
||||
persist.vendor.qcomsysd.enabled=1 \
|
||||
ro.vendor.at_library=libqti-at.so \
|
||||
ro.vendor.extension_library=libqti-perfd-client.so
|
||||
|
||||
# QTI
|
||||
|
|
35
configs/perf/perfconfigstore.xml
Normal file
35
configs/perf/perfconfigstore.xml
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
* Copyright (c) 2019 Qualcomm Technologies, Inc.
|
||||
* All Rights Reserved.
|
||||
* Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
-->
|
||||
|
||||
<!-- This is PerfConfigsStore file which returns the value when a
|
||||
particular property name is invoked -->
|
||||
|
||||
<!-- This file supports only Prop tag, which has the following fields
|
||||
* Name, to identify the name of the property. The names of the
|
||||
properties have been classified into Vendor and System property.
|
||||
* Value, the new value to be returned as string when respective
|
||||
property Name is called. -->
|
||||
|
||||
<PerfConfigsStore>
|
||||
<PerfConfigs>
|
||||
|
||||
<!--Vendor Properties -->
|
||||
<Prop Name="vendor.iop.enable_iop" Value="0" />
|
||||
<Prop Name="vendor.iop.enable_uxe" Value="0" />
|
||||
<Prop Name="vendor.perf.iop_v3.enable" Value="0" />
|
||||
<Prop Name="vendor.perf.iop_v3.enable.debug" Value="0" />
|
||||
<Prop Name="vendor.enable.prefetch" Value="0" />
|
||||
<Prop Name="vendor.iop.enable_prefetch_ofr" Value="0" />
|
||||
|
||||
<!--System Properties -->
|
||||
<Prop Name="ro.vendor.qti.sys.fw.bg_apps_limit" Value="60" />
|
||||
<Prop Name="ro.vendor.at_library" Value="libqti-at.so" />
|
||||
<Prop Name="ro.lmk.enable_userspace_lmk" Value="false" />
|
||||
<Prop Name="vendor.perf.gestureflingboost.enable" Value="true" />
|
||||
|
||||
</PerfConfigs>
|
||||
</PerfConfigsStore>
|
|
@ -454,7 +454,8 @@ PRODUCT_PACKAGES += \
|
|||
|
||||
# QTI Performance
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(COMMON_PATH)/configs/perf/perf-profile0.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile0.conf
|
||||
$(COMMON_PATH)/configs/perf/perf-profile0.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile0.conf \
|
||||
$(COMMON_PATH)/configs/perf/perfconfigstore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perfconfigstore.xml
|
||||
|
||||
# RCS
|
||||
PRODUCT_PACKAGES += \
|
||||
|
|
Loading…
Reference in a new issue