vendor: display: Import 5.10 component
Change-Id: I2d0a6e7947bb19d1c2fb0e370bce2a967b7a269d
This commit is contained in:
parent
6d70a5a246
commit
65420a00d2
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" ?>
|
||||
<!--
|
||||
Copyright (c) 2020-2022 Qualcomm Technologies, Inc.
|
||||
All Rights Reserved.
|
||||
Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
-->
|
||||
<AdvancedSfOffsetSetting>
|
||||
<DeviceSettingList>
|
||||
<DefaultDevice version="1"/>
|
||||
<Device version="1">
|
||||
<FpsOffsetMap fps="90" advancedSfOffsetPercentage="36"/>
|
||||
<FpsOffsetMap fps="120" advancedSfOffsetPercentage="48"/>
|
||||
<FpsOffsetMap fps="144" advancedSfOffsetPercentage="40"/>
|
||||
</Device>
|
||||
<Device version="2">
|
||||
<FpsOffsetMap fps="90" advancedSfOffsetPercentage="45"/>
|
||||
<FpsOffsetMap fps="120" advancedSfOffsetPercentage="48"/>
|
||||
<FpsOffsetMap fps="144" advancedSfOffsetPercentage="40"/>
|
||||
<FpsOffsetMap fps="180" advancedSfOffsetPercentage="40"/>
|
||||
</Device>
|
||||
<Device version="3">
|
||||
<FpsOffsetMap fps="90" advancedSfOffsetPercentage="36"/>
|
||||
<FpsOffsetMap fps="120" advancedSfOffsetPercentage="48"/>
|
||||
<FpsOffsetMap fps="144" advancedSfOffsetPercentage="57"/>
|
||||
</Device>
|
||||
</DeviceSettingList>
|
||||
</AdvancedSfOffsetSetting>
|
|
@ -0,0 +1,31 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Copyright (C) 2021 Paranoid Android
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
# If we're being sourced by the common script that we called,
|
||||
# stop right here. No need to go down the rabbit hole.
|
||||
if [ "${BASH_SOURCE[0]}" != "${0}" ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
# Required!
|
||||
export COMPONENT=display
|
||||
export VENDOR=qcom/common/vendor
|
||||
export KERNEL_VERSION=5.10
|
||||
|
||||
"../../extract-files.sh" "$@"
|
|
@ -0,0 +1,45 @@
|
|||
vendor/bin/feature_enabler_client
|
||||
vendor/bin/hw/vendor.display.color@1.0-service
|
||||
vendor/bin/ppd
|
||||
vendor/bin/qdcmss
|
||||
vendor/bin/ubwcconvert
|
||||
vendor/etc/display/DPU660.xml
|
||||
vendor/etc/display/DPU670.xml
|
||||
vendor/etc/display/DPU720.xml
|
||||
vendor/etc/display/DPU7__.xml
|
||||
vendor/etc/display/DPU820.xml
|
||||
vendor/etc/display/DPU830.xml
|
||||
vendor/etc/display/DPU860.xml
|
||||
vendor/etc/display/DPU8__.xml
|
||||
vendor/etc/display/DPU9__.xml
|
||||
vendor/etc/display/advanced_sf_offsets.xml
|
||||
vendor/etc/display/thermallevel_to_fps.xml
|
||||
vendor/etc/init/feature_enabler_client.rc
|
||||
vendor/etc/init/qdcmss.rc
|
||||
vendor/etc/init/vendor.display.color@1.0-service.rc
|
||||
vendor/lib64/libbacklight-calib.so
|
||||
vendor/lib64/libcolor-default.so
|
||||
vendor/lib64/libdigital-dimming.so
|
||||
vendor/lib64/libdisp-aba.so
|
||||
vendor/lib64/libdisplayqos.so
|
||||
vendor/lib64/libdisplayskuutils.so
|
||||
vendor/lib64/libdpps.so
|
||||
vendor/lib64/libgame_enhance.so
|
||||
vendor/lib64/libhdr_backlight_adapter.so
|
||||
vendor/lib64/libhdr_tm.so
|
||||
vendor/lib64/libmemutils.so
|
||||
vendor/lib64/libmm-hdcpmgr.so
|
||||
vendor/lib64/libqdcm-algo.so
|
||||
vendor/lib64/libqdcm-json-mode-parser.so
|
||||
vendor/lib64/libqdcm-mode-parser.so
|
||||
vendor/lib64/libqrtrclient.so
|
||||
vendor/lib64/libqseed3.so
|
||||
vendor/lib64/librcmask.so
|
||||
vendor/lib64/libsdm-color.so
|
||||
vendor/lib64/libsdm-colormgr-algo.so
|
||||
vendor/lib64/libsdm-disp-vndapis.so
|
||||
vendor/lib64/libsdmextension.so
|
||||
vendor/lib64/libsnapdragoncolor-manager.so
|
||||
vendor/lib64/libsnapdragoncolor-qdcm.so
|
||||
vendor/lib64/libtestutils.so
|
||||
vendor/lib64/libtinyxml2_1.so
|
|
@ -0,0 +1,25 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Copyright (C) 2021 Paranoid Android
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
set -e
|
||||
|
||||
# Required!
|
||||
export COMPONENT=display
|
||||
export VENDOR=qcom/common/vendor
|
||||
export KERNEL_VERSION=5.10
|
||||
|
||||
"../../setup-makefiles.sh" "$@"
|
Loading…
Reference in New Issue