sdm660-common: use perfconfigstore instead of properties

Change-Id: I71461329a7ddfc56a124c342e7ac8697e86d69bf
This commit is contained in:
Stylogey 2020-05-07 09:04:21 +02:00 committed by OdSazib
parent 5dd7ed0bc3
commit 0bb6dd3fb4
No known key found for this signature in database
GPG key ID: CB336514F9F5CF69
3 changed files with 37 additions and 2 deletions

View file

@ -245,7 +245,6 @@ PRODUCT_PROPERTY_OVERRIDES += \
persist.vendor.cne.feature=1 \ persist.vendor.cne.feature=1 \
persist.vendor.dpm.feature=1 \ persist.vendor.dpm.feature=1 \
persist.vendor.qcomsysd.enabled=1 \ persist.vendor.qcomsysd.enabled=1 \
ro.vendor.at_library=libqti-at.so \
ro.vendor.extension_library=libqti-perfd-client.so ro.vendor.extension_library=libqti-perfd-client.so
# QTI # QTI

View 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>

View file

@ -454,7 +454,8 @@ PRODUCT_PACKAGES += \
# QTI Performance # QTI Performance
PRODUCT_COPY_FILES += \ 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 # RCS
PRODUCT_PACKAGES += \ PRODUCT_PACKAGES += \