Compare commits
10 Commits
c2734ed986
...
e58aaaa2ef
Author | SHA1 | Date | |
---|---|---|---|
e58aaaa2ef | |||
f09e486236 | |||
f7a6ad4a2f | |||
c5fdab27ed | |||
cf9c975ee9 | |||
6bc23c7966 | |||
3edbd5ae8a | |||
6f04fd558a | |||
1b32755991 | |||
ab202c0405 |
35
Android.bp
35
Android.bp
@ -14,4 +14,39 @@ soong_namespace {
|
||||
"vendor/qcom/opensource/usb/etc",
|
||||
"vendor/qcom/opensource/commonsys-intf/display",
|
||||
]
|
||||
}
|
||||
|
||||
install_symlink {
|
||||
name: "firmware_WCNSS_qcom_cfg.ini_symlink",
|
||||
vendor: true,
|
||||
installed_location: "firmware/wlan/qca_cld/WCNSS_qcom_cfg.ini",
|
||||
symlink_target: "/vendor/etc/wifi/WCNSS_qcom_cfg.ini",
|
||||
}
|
||||
|
||||
install_symlink {
|
||||
name: "firmware_qca6490_WCNSS_qcom_cfg.ini_symlink",
|
||||
vendor: true,
|
||||
installed_location: "firmware/wlan/qca_cld/qca6490/WCNSS_qcom_cfg.ini",
|
||||
symlink_target: "/vendor/etc/wifi/qca6490/WCNSS_qcom_cfg.ini",
|
||||
}
|
||||
|
||||
install_symlink {
|
||||
name: "firmware_qca6490_wlan_mac.bin_symlink",
|
||||
vendor: true,
|
||||
installed_location: "firmware/wlan/qca_cld/qca6490/wlan_mac.bin",
|
||||
symlink_target: "/mnt/vendor/persist/qca6490/wlan_mac.bin",
|
||||
}
|
||||
|
||||
install_symlink {
|
||||
name: "firmware_qca6750_WCNSS_qcom_cfg.ini_symlink",
|
||||
vendor: true,
|
||||
installed_location: "firmware/wlan/qca_cld/qca6750/WCNSS_qcom_cfg.ini",
|
||||
symlink_target: "/vendor/etc/wifi/qca6750/WCNSS_qcom_cfg.ini",
|
||||
}
|
||||
|
||||
install_symlink {
|
||||
name: "firmware_qca6750_wlan_mac.bin_symlink",
|
||||
vendor: true,
|
||||
installed_location: "firmware/wlan/qca_cld/qca6750/wlan_mac.bin",
|
||||
symlink_target: "/mnt/vendor/persist/qca6750/wlan_mac.bin",
|
||||
}
|
@ -53,6 +53,7 @@ BOARD_SUPPORTS_OPENSOURCE_STHAL := true
|
||||
|
||||
# Bootloader
|
||||
TARGET_BOOTLOADER_BOARD_NAME := taro
|
||||
TARGET_NO_BOOTLOADER := true
|
||||
|
||||
# Display
|
||||
TARGET_SCREEN_DENSITY := 440
|
||||
@ -60,6 +61,9 @@ TARGET_SCREEN_DENSITY := 440
|
||||
# Filesystem
|
||||
TARGET_FS_CONFIG_GEN := $(DEVICE_PATH)/configs/config.fs
|
||||
|
||||
# GPS
|
||||
BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE := default
|
||||
|
||||
# Kernel
|
||||
BOARD_INCLUDE_DTB_IN_BOOTIMG := true
|
||||
BOARD_RAMDISK_USE_LZ4 := true
|
||||
@ -93,6 +97,7 @@ BOARD_KERNEL_CMDLINE := \
|
||||
BOARD_BOOTCONFIG := \
|
||||
androidboot.hardware=qcom \
|
||||
androidboot.memcg=1 \
|
||||
androidboot.selinux=permissive \
|
||||
androidboot.usbcontroller=a600000.dwc3
|
||||
|
||||
# Kernel modules
|
||||
@ -164,6 +169,13 @@ TARGET_COPY_OUT_VENDOR_DLKM := vendor_dlkm
|
||||
BOARD_USES_QCOM_HARDWARE := true
|
||||
TARGET_BOARD_PLATFORM := taro
|
||||
|
||||
# Properties
|
||||
TARGET_ODM_PROP += $(DEVICE_PATH)/properties/odm.prop
|
||||
TARGET_PRODUCT_PROP += $(DEVICE_PATH)/properties/product.prop
|
||||
TARGET_SYSTEM_PROP += $(DEVICE_PATH)/properties/system.prop
|
||||
TARGET_SYSTEM_EXT_PROP += $(DEVICE_PATH)/properties/system_ext.prop
|
||||
TARGET_VENDOR_PROP += $(DEVICE_PATH)/properties/vendor.prop
|
||||
|
||||
# Recovery
|
||||
BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE := true
|
||||
TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/recovery.fstab
|
||||
@ -171,6 +183,19 @@ TARGET_RECOVERY_PIXEL_FORMAT := RGBX_8888
|
||||
TARGET_USERIMAGES_USE_EXT4 := true
|
||||
TARGET_USERIMAGES_USE_F2FS := true
|
||||
|
||||
# RIL
|
||||
ENABLE_VENDOR_RIL_SERVICE := true
|
||||
|
||||
# Security patch level
|
||||
VENDOR_SECURITY_PATCH := 2025-05-01
|
||||
|
||||
# SEPolicy
|
||||
include device/qcom/sepolicy_vndr/SEPolicy.mk
|
||||
include device/lineage/sepolicy/libperfmgr/sepolicy.mk
|
||||
# BOARD_VENDOR_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy/vendor
|
||||
# SYSTEM_EXT_PUBLIC_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy/public
|
||||
# SYSTEM_EXT_PRIVATE_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy/private
|
||||
|
||||
# Verified Boot
|
||||
BOARD_AVB_ENABLE := true
|
||||
BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --flags 3
|
||||
@ -193,7 +218,41 @@ BOARD_AVB_VBMETA_VENDOR_ALGORITHM := SHA256_RSA2048
|
||||
BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP)
|
||||
BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION := 3
|
||||
|
||||
# VINTF
|
||||
DEVICE_MATRIX_FILE := hardware/qcom-caf/common/compatibility_matrix.xml
|
||||
|
||||
DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE := \
|
||||
$(DEVICE_PATH)/device_framework_matrix.xml \
|
||||
hardware/qcom-caf/common/vendor_framework_compatibility_matrix.xml \
|
||||
hardware/xiaomi/vintf/xiaomi_framework_compatibility_matrix.xml \
|
||||
vendor/lineage/config/device_framework_matrix.xml
|
||||
|
||||
DEVICE_FRAMEWORK_MANIFEST_FILE += $(DEVICE_PATH)/framework_manifest.xml
|
||||
|
||||
DEVICE_MANIFEST_FILE += \
|
||||
$(DEVICE_PATH)/manifest.xml
|
||||
|
||||
# Use sha256 for dm-verity partitions
|
||||
BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += --hash_algorithm sha256
|
||||
BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += --hash_algorithm sha256
|
||||
BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += --hash_algorithm sha256
|
||||
BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += --hash_algorithm sha256
|
||||
|
||||
# WiFi
|
||||
BOARD_WLAN_DEVICE := qcwcn
|
||||
BOARD_HOSTAPD_DRIVER := NL80211
|
||||
BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE)
|
||||
BOARD_WPA_SUPPLICANT_DRIVER := NL80211
|
||||
BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE)
|
||||
CONFIG_IEEE80211AX := true
|
||||
# (1 STA + 1 AP) or (1 STA + 1 of (P2P or NAN)) or (2 AP) or (2 STA)
|
||||
WIFI_HAL_INTERFACE_COMBINATIONS := {{{STA}, 1}, {{AP}, 1}}, {{{STA}, 1}, {{P2P, NAN}, 1}}, {{{AP}, 2}}, {{{STA}, 2}}
|
||||
WIFI_DRIVER_BUILT := qca_cld3
|
||||
WIFI_DRIVER_DEFAULT := qca_cld3
|
||||
WIFI_DRIVER_STATE_CTRL_PARAM := "/dev/wlan"
|
||||
WIFI_DRIVER_STATE_OFF := "OFF"
|
||||
WIFI_DRIVER_STATE_ON := "ON"
|
||||
WIFI_HIDL_UNIFIED_SUPPLICANT_SERVICE_RC_ENTRY := true
|
||||
WPA_SUPPLICANT_VERSION := VER_0_8_X
|
||||
|
||||
# Include the proprietary files BoardConfig.
|
||||
include vendor/xiaomi/marble/BoardConfigVendor.mk
|
11
configs/public.libraries.txt
Normal file
11
configs/public.libraries.txt
Normal file
@ -0,0 +1,11 @@
|
||||
libqti-perfd-client.so
|
||||
libadsprpc.so
|
||||
libcdsprpc.so
|
||||
libsdsprpc.so
|
||||
libfastcvopt.so
|
||||
libOpenCL.so
|
||||
libSNPE.so
|
||||
libmialgo_ai_vision.so
|
||||
libmialgo_utils.so
|
||||
libxmi_slow_motion_mein.so
|
||||
libomp.so
|
322
device.mk
322
device.mk
@ -79,6 +79,63 @@ PRODUCT_PACKAGES += \
|
||||
android.hardware.boot-service.qti \
|
||||
android.hardware.boot-service.qti.recovery
|
||||
|
||||
$(call soong_config_set, ufsbsg, ufsframework, bsg)
|
||||
|
||||
# Camera
|
||||
$(call soong_config_set,camera,override_format_from_reserved,true)
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.camera.flash-autofocus.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.flash-autofocus.xml \
|
||||
frameworks/native/data/etc/android.hardware.camera.front.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.front.xml \
|
||||
frameworks/native/data/etc/android.hardware.camera.full.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.full.xml \
|
||||
frameworks/native/data/etc/android.hardware.camera.raw.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.raw.xml
|
||||
|
||||
# Configstore
|
||||
PRODUCT_PACKAGES += \
|
||||
disable_configstore
|
||||
|
||||
# Display
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.graphics.mapper@4.0-impl-qti-display \
|
||||
vendor.qti.hardware.display.allocator-service \
|
||||
vendor.qti.hardware.display.composer-service
|
||||
|
||||
PRODUCT_PACKAGES += \
|
||||
init.qti.display_boot.rc \
|
||||
init.qti.display_boot.sh
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
hardware/qcom-caf/sm8450/display/config/snapdragon_color_libs_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/snapdragon_color_libs_config.xml
|
||||
|
||||
# DRM
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.drm-service.clearkey
|
||||
|
||||
# GPS
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.gnss@2.1-impl-qti \
|
||||
android.hardware.gnss-aidl-impl-qti \
|
||||
android.hardware.gnss-aidl-service-qti
|
||||
|
||||
PRODUCT_PACKAGES += \
|
||||
libbatching \
|
||||
libgeofencing \
|
||||
libgnss
|
||||
|
||||
$(call soong_config_set, qtilocation, feature_nhz, false)
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.location.gps.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.location.gps.xml
|
||||
|
||||
# Graphics
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.opengles.aep.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.opengles.aep.xml \
|
||||
frameworks/native/data/etc/android.hardware.vulkan.compute-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.compute-0.xml \
|
||||
frameworks/native/data/etc/android.hardware.vulkan.level-1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.level-1.xml \
|
||||
frameworks/native/data/etc/android.hardware.vulkan.version-1_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version-1_1.xml \
|
||||
frameworks/native/data/etc/android.software.opengles.deqp.level-2021-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.opengles.deqp.level.xml \
|
||||
frameworks/native/data/etc/android.software.vulkan.deqp.level-2021-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.vulkan.deqp.level.xml
|
||||
|
||||
# Fstab
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(LOCAL_PATH)/rootdir/etc/charger_fw_fstab.qti:$(TARGET_COPY_OUT_VENDOR)/etc/charger_fw_fstab.qti
|
||||
@ -94,18 +151,150 @@ PRODUCT_PACKAGES += \
|
||||
libvndfwk_detect_jni.qti \
|
||||
libvndfwk_detect_jni.qti.vendor
|
||||
|
||||
# Fingerprint
|
||||
ifneq ($(TARGET_IS_TABLET),true)
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.biometrics.fingerprint-service.xiaomi
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml
|
||||
|
||||
ifeq ($(TARGET_HAS_UDFPS),true)
|
||||
PRODUCT_PACKAGES += \
|
||||
libudfpshandler
|
||||
endif
|
||||
endif
|
||||
|
||||
# Health
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.health-service.qti
|
||||
|
||||
ifneq ($(TARGET_IS_VAB),true)
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.health-service.qti_recovery
|
||||
endif
|
||||
|
||||
# IFAAService
|
||||
PRODUCT_PACKAGES += \
|
||||
IFAAService
|
||||
|
||||
# IPACM
|
||||
PRODUCT_PACKAGES += \
|
||||
ipacm \
|
||||
IPACM_cfg.xml \
|
||||
IPACM_Filter_cfg.xml
|
||||
|
||||
# IR
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.ir-service.lineage
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.consumerir.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.consumerir.xml
|
||||
|
||||
# Input
|
||||
PRODUCT_PACKAGES += \
|
||||
uinput-fpc.kl \
|
||||
uinput-goodix.kl
|
||||
|
||||
PRODUCT_PACKAGES += \
|
||||
uinput-fpc.idc \
|
||||
uinput-goodix.idc
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(LOCAL_PATH)/idc/uinput-fpc.idc:$(TARGET_COPY_OUT_SYSTEM)/usr/idc/uinput-fpc.idc \
|
||||
$(LOCAL_PATH)/idc/uinput-goodix.idc:$(TARGET_COPY_OUT_SYSTEM)/usr/idc/uinput-goodix.idc \
|
||||
$(LOCAL_PATH)/keylayout/uinput-fpc.kl:$(TARGET_COPY_OUT_SYSTEM)/usr/keylayout/uinput-fpc.kl \
|
||||
$(LOCAL_PATH)/keylayout/uinput-goodix.kl:$(TARGET_COPY_OUT_SYSTEM)/usr/keylayout/uinput-goodix.kl
|
||||
|
||||
# Kernel
|
||||
PRODUCT_SET_DEBUGFS_RESTRICTIONS := true
|
||||
|
||||
# Keymaster
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.keystore.app_attest_key.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.keystore.app_attest_key.xml
|
||||
|
||||
# Lights
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.light-service.lineage
|
||||
|
||||
# Lineage Health
|
||||
PRODUCT_PACKAGES += \
|
||||
vendor.lineage.health-service.default
|
||||
|
||||
$(call soong_config_set,lineage_health,charging_control_supports_bypass,false)
|
||||
|
||||
# Media - Dolby vision
|
||||
PRODUCT_PACKAGES += \
|
||||
libcodec2_hidl_shim.vendor
|
||||
|
||||
# Network
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.software.ipsec_tunnel_migration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.ipsec_tunnel_migration.xml \
|
||||
frameworks/native/data/etc/android.software.ipsec_tunnels.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.ipsec_tunnels.xml
|
||||
|
||||
# NFC / Secure Element
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.nfc-service.nxp \
|
||||
com.android.nfc_extras
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.se.omapi.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.se.omapi.uicc.xml
|
||||
|
||||
ifeq ($(TARGET_NFC_SUPPORTED_SKUS),)
|
||||
TARGET_COPY_OUT_NFC_SKU_PERMISSIONS := $(TARGET_COPY_OUT_VENDOR)/etc/permissions/
|
||||
else
|
||||
$(foreach sku, $(TARGET_NFC_SUPPORTED_SKUS), \
|
||||
$(eval TARGET_COPY_OUT_NFC_SKU_PERMISSIONS += $(TARGET_COPY_OUT_ODM)/etc/permissions/sku_$(sku)))
|
||||
endif
|
||||
|
||||
$(foreach sku_out, $(TARGET_COPY_OUT_NFC_SKU_PERMISSIONS), \
|
||||
$(eval PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.nfc.ese.xml:$(sku_out)/android.hardware.nfc.ese.xml \
|
||||
frameworks/native/data/etc/android.hardware.nfc.hce.xml:$(sku_out)/android.hardware.nfc.hce.xml \
|
||||
frameworks/native/data/etc/android.hardware.nfc.hcef.xml:$(sku_out)/android.hardware.nfc.hcef.xml \
|
||||
frameworks/native/data/etc/android.hardware.nfc.uicc.xml:$(sku_out)/android.hardware.nfc.uicc.xml \
|
||||
frameworks/native/data/etc/android.hardware.nfc.xml:$(sku_out)/android.hardware.nfc.xml \
|
||||
frameworks/native/data/etc/android.hardware.se.omapi.ese.xml:$(sku_out)/etc/permissions/android.hardware.se.omapi.ese.xml \
|
||||
frameworks/native/data/etc/com.android.nfc_extras.xml:$(sku_out)/com.android.nfc_extras.xml \
|
||||
frameworks/native/data/etc/com.nxp.mifare.xml:$(sku_out)/com.nxp.mifare.xml))
|
||||
|
||||
# OMX
|
||||
TARGET_SUPPORTS_OMX_SERVICE := false
|
||||
|
||||
# Partitions
|
||||
PRODUCT_PACKAGES += \
|
||||
vendor_bt_firmware_mountpoint \
|
||||
vendor_dsp_mountpoint \
|
||||
vendor_firmware_mnt_mountpoint
|
||||
vendor_firmware_mnt_mountpoint \
|
||||
vendor_vm-system_mountpoint
|
||||
|
||||
PRODUCT_USE_DYNAMIC_PARTITIONS := true
|
||||
|
||||
# Power
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.power-service-qti
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
vendor/qcom/opensource/power/config/taro/powerhint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/powerhint.xml
|
||||
|
||||
# Powershare
|
||||
$(call soong_config_set,lineage_powershare,powershare_path,/sys/class/qcom-battery/reverse_chg_mode)
|
||||
|
||||
# Public libraries
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(LOCAL_PATH)/configs/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt
|
||||
|
||||
# QMI
|
||||
PRODUCT_PACKAGES += \
|
||||
libvndfwk_detect_jni.qti_vendor # Needed by CNE app
|
||||
|
||||
# Recovery
|
||||
PRODUCT_PACKAGES += \
|
||||
fastbootd
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(LOCAL_PATH)/rootdir/etc/init.recovery.qcom.rc:$(TARGET_COPY_OUT_RECOVERY)/root/init.recovery.qcom.rc
|
||||
|
||||
# Rootdir
|
||||
PRODUCT_PACKAGES += \
|
||||
fstab.qcom
|
||||
@ -123,11 +312,74 @@ PRODUCT_PACKAGES += \
|
||||
init.target.rc \
|
||||
ueventd.qcom.rc
|
||||
|
||||
# Sensors
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.sensors-service.xiaomi-multihal
|
||||
|
||||
PRODUCT_PACKAGES += \
|
||||
sensors.xiaomi.v2
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(LOCAL_PATH)/sensors/hals.conf:$(TARGET_COPY_OUT_ODM)/etc/sensors/hals.conf
|
||||
|
||||
$(foreach sku, taro diwali cape ukee, \
|
||||
$(eval PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/sku_$(sku)/android.hardware.sensor.accelerometer.xml \
|
||||
frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/sku_$(sku)/android.hardware.sensor.compass.xml \
|
||||
frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/sku_$(sku)/android.hardware.sensor.gyroscope.xml \
|
||||
frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/sku_$(sku)/android.hardware.sensor.light.xml \
|
||||
frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/sku_$(sku)/android.hardware.sensor.proximity.xml \
|
||||
frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/sku_$(sku)/android.hardware.sensor.stepcounter.xml \
|
||||
frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/sku_$(sku)/android.hardware.sensor.stepdetector.xml \
|
||||
))
|
||||
|
||||
# Soong namespaces
|
||||
PRODUCT_SOONG_NAMESPACES += \
|
||||
$(LOCAL_PATH) \
|
||||
hardware/xiaomi
|
||||
|
||||
# Telephony
|
||||
PRODUCT_PACKAGES += \
|
||||
extphonelib \
|
||||
extphonelib-product \
|
||||
extphonelib.xml \
|
||||
extphonelib_product.xml \
|
||||
ims-ext-common \
|
||||
ims_ext_common.xml \
|
||||
qti-telephony-hidl-wrapper \
|
||||
qti-telephony-hidl-wrapper-prd \
|
||||
qti_telephony_hidl_wrapper.xml \
|
||||
qti_telephony_hidl_wrapper_prd.xml \
|
||||
qti-telephony-utils \
|
||||
qti-telephony-utils-prd \
|
||||
qti_telephony_utils.xml \
|
||||
qti_telephony_utils_prd.xml \
|
||||
telephony-ext \
|
||||
xiaomi-telephony-stub
|
||||
|
||||
PRODUCT_BOOT_JARS += \
|
||||
telephony-ext \
|
||||
xiaomi-telephony-stub
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.telephony.cdma.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.cdma.xml \
|
||||
frameworks/native/data/etc/android.hardware.telephony.gsm.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.gsm.xml \
|
||||
frameworks/native/data/etc/android.hardware.telephony.ims.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.xml \
|
||||
frameworks/native/data/etc/android.software.sip.voip.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.sip.voip.xml
|
||||
|
||||
# Thermal
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.thermal-service.qti
|
||||
|
||||
# Touchscreen
|
||||
PRODUCT_PACKAGES += \
|
||||
vendor.lineage.touch-service.xiaomi
|
||||
|
||||
$(call soong_config_set, XIAOMI_TOUCH, HIGH_TOUCH_POLLING_PATH, /sys/devices/virtual/touch/touch_dev/bump_sample_rate)
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml
|
||||
|
||||
# Ueventd
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(LOCAL_PATH)/rootdir/etc/ueventd-odm.rc:$(TARGET_COPY_OUT_ODM)/etc/ueventd.rc
|
||||
@ -141,7 +393,73 @@ PRODUCT_PACKAGES += \
|
||||
PRODUCT_PACKAGES_DEBUG += \
|
||||
update_engine_client
|
||||
|
||||
# WiFi Display
|
||||
# USB
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.usb-service.qti \
|
||||
android.hardware.usb.gadget-service.qti
|
||||
|
||||
PRODUCT_PACKAGES += \
|
||||
init.qcom.usb.rc \
|
||||
init.qcom.usb.sh \
|
||||
usb_compositions.conf
|
||||
|
||||
PRODUCT_SOONG_NAMESPACES += vendor/qcom/opensource/usb/etc
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \
|
||||
frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml
|
||||
|
||||
# Vendor service manager
|
||||
PRODUCT_PACKAGES += \
|
||||
vndservicemanager
|
||||
|
||||
# Vibrator
|
||||
PRODUCT_PACKAGES += \
|
||||
vendor.qti.hardware.vibrator.service
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
vendor/qcom/opensource/vibrator/excluded-input-devices.xml:$(TARGET_COPY_OUT_VENDOR)/etc/excluded-input-devices.xml
|
||||
|
||||
# Wi-Fi
|
||||
PRODUCT_PACKAGES += \
|
||||
android.hardware.wifi-service \
|
||||
android.hardware.wifi.hostapd@1.0.vendor \
|
||||
hostapd \
|
||||
hostapd_cli \
|
||||
libwifi-hal-ctrl \
|
||||
libwifi-hal-qcom \
|
||||
wpa_supplicant \
|
||||
wpa_supplicant.conf
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
$(LOCAL_PATH)/wlan/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf \
|
||||
$(LOCAL_PATH)/wlan/qca6490/WCNSS_qcom_cfg.ini:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/qca6490/WCNSS_qcom_cfg.ini \
|
||||
$(LOCAL_PATH)/wlan/qca6750/WCNSS_qcom_cfg.ini:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/qca6750/WCNSS_qcom_cfg.ini \
|
||||
$(LOCAL_PATH)/wlan/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf
|
||||
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/native/data/etc/android.hardware.wifi.aware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.aware.xml \
|
||||
frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \
|
||||
frameworks/native/data/etc/android.hardware.wifi.passpoint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.passpoint.xml \
|
||||
frameworks/native/data/etc/android.hardware.wifi.rtt.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.rtt.xml \
|
||||
frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml
|
||||
|
||||
# Wi-Fi Display
|
||||
PRODUCT_PACKAGES += \
|
||||
libwfdaac_vendor
|
||||
|
||||
PRODUCT_BOOT_JARS += \
|
||||
WfdCommon
|
||||
|
||||
# WiFi firmware symlinks
|
||||
PRODUCT_PACKAGES += \
|
||||
firmware_WCNSS_qcom_cfg.ini_symlink \
|
||||
firmware_qca6490_WCNSS_qcom_cfg.ini_symlink \
|
||||
firmware_qca6490_wlan_mac.bin_symlink \
|
||||
firmware_qca6750_WCNSS_qcom_cfg.ini_symlink \
|
||||
firmware_qca6750_wlan_mac.bin_symlink
|
||||
|
||||
# Misc
|
||||
PRODUCT_PACKAGES += \
|
||||
libavservices_minijail \
|
||||
libgui_shim \
|
||||
|
2413
device_framework_matrix.xml
Normal file
2413
device_framework_matrix.xml
Normal file
File diff suppressed because it is too large
Load Diff
0
extract-files.py
Normal file → Executable file
0
extract-files.py
Normal file → Executable file
39
framework_manifest.xml
Normal file
39
framework_manifest.xml
Normal file
@ -0,0 +1,39 @@
|
||||
<!-- Copyright (c) 2019, 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.
|
||||
-->
|
||||
<manifest version="1.0" type="framework">
|
||||
<!-- atfwd -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.atcmdfwd</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IAtCmdFwd</name>
|
||||
<instance>AtCmdFwdService</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
</manifest>
|
11
idc/Android.bp
Normal file
11
idc/Android.bp
Normal file
@ -0,0 +1,11 @@
|
||||
prebuilt_usr_idc {
|
||||
name: "uinput-fpc.idc",
|
||||
src: "uinput-fpc.idc",
|
||||
vendor: true,
|
||||
}
|
||||
|
||||
prebuilt_usr_idc {
|
||||
name: "uinput-goodix.idc",
|
||||
src: "uinput-goodix.idc",
|
||||
vendor: true,
|
||||
}
|
16
idc/uinput-fpc.idc
Normal file
16
idc/uinput-fpc.idc
Normal file
@ -0,0 +1,16 @@
|
||||
# MIUI ADD:Fingerprint_MIUIFingerprintFrame
|
||||
# FPC1020 Touch sensor driver
|
||||
#
|
||||
# Copyright (c) 2013,2014 Fingerprint Cards AB <tech@fingerprints.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License Version 2
|
||||
# as published by the Free Software Foundation.
|
||||
#
|
||||
|
||||
device.internal = 1
|
||||
|
||||
keyboard.layout = uinput-fpc
|
||||
keyboard.builtIn = 1
|
||||
keyboard.orientationAware = 1
|
||||
#END Fingerprint_MIUIFingerprintFrame
|
16
idc/uinput-goodix.idc
Normal file
16
idc/uinput-goodix.idc
Normal file
@ -0,0 +1,16 @@
|
||||
# MIUI ADD:Fingerprint_MIUIFingerprintFrame
|
||||
# FPC1020 Touch sensor driver
|
||||
#
|
||||
# Copyright (c) 2013,2014 Fingerprint Cards AB <tech@fingerprints.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License Version 2
|
||||
# as published by the Free Software Foundation.
|
||||
#
|
||||
|
||||
device.internal = 1
|
||||
|
||||
keyboard.layout = uinput-goodix
|
||||
keyboard.builtIn = 1
|
||||
keyboard.orientationAware = 1
|
||||
#END Fingerprint_MIUIFingerprintFrame
|
11
keylayout/Android.bp
Normal file
11
keylayout/Android.bp
Normal file
@ -0,0 +1,11 @@
|
||||
prebuilt_usr_keylayout {
|
||||
name: "uinput-fpc.kl",
|
||||
src: "uinput-fpc.kl",
|
||||
vendor: true,
|
||||
}
|
||||
|
||||
prebuilt_usr_keylayout {
|
||||
name: "uinput-goodix.kl",
|
||||
src: "uinput-goodix.kl",
|
||||
vendor: true,
|
||||
}
|
29
keylayout/uinput-fpc.kl
Normal file
29
keylayout/uinput-fpc.kl
Normal file
@ -0,0 +1,29 @@
|
||||
# MIUI ADD:Fingerprint_MIUIFingerprintFrame
|
||||
# FPC1020 Touch sensor driver
|
||||
#
|
||||
# Copyright (c) 2013,2014 Fingerprint Cards AB <tech@fingerprints.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License Version 2
|
||||
# as published by the Free Software Foundation.
|
||||
#
|
||||
|
||||
#key 304 DPAD_CENTER VIRTUAL
|
||||
#key 102 HOME VIRTUAL
|
||||
#key 108 SYSTEM_NAVIGATION_DOWN
|
||||
#key 103 SYSTEM_NAVIGATION_DOWN
|
||||
# Swipe Up
|
||||
#key 103 DPAD_UP VIRTUAL
|
||||
|
||||
# Swipe Down
|
||||
#key 108 DPAD_DOWN VIRTUAL
|
||||
|
||||
# Single Tap
|
||||
key 105 DPAD_CENTER VIRTUAL
|
||||
|
||||
# Double Tap
|
||||
key 106 BUTTON_C VIRTUAL
|
||||
|
||||
# Keymap between kernel and framework.
|
||||
# Refer to input-event-codes.h(kernel) and KeyEvent.java(framework) for more details.
|
||||
#END Fingerprint_MIUIFingerprintFrame
|
19
keylayout/uinput-goodix.kl
Normal file
19
keylayout/uinput-goodix.kl
Normal file
@ -0,0 +1,19 @@
|
||||
# MIUI ADD:Fingerprint_MIUIFingerprintFrame
|
||||
# FPC1020 Touch sensor driver
|
||||
#
|
||||
# Copyright (c) 2013,2014 Fingerprint Cards AB <tech@fingerprints.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License Version 2
|
||||
# as published by the Free Software Foundation.
|
||||
#
|
||||
|
||||
#single click
|
||||
key 353 DPAD_CENTER VIRTUAL
|
||||
#double click
|
||||
key 306 BUTTON_C VIRTUAL
|
||||
# HOME --> DPAD_CENTER
|
||||
key 102 DPAD_CENTER VIRTUAL
|
||||
#key 105 DPAD_LEFT VIRTUAL
|
||||
#key 106 DPAD_RIGHT VIRTUAL
|
||||
#END Fingerprint_MIUIFingerprintFrame
|
18
lineage.dependencies
Normal file
18
lineage.dependencies
Normal file
@ -0,0 +1,18 @@
|
||||
[
|
||||
{
|
||||
"repository": "android_hardware_xiaomi",
|
||||
"target_path": "hardware/xiaomi"
|
||||
},
|
||||
{
|
||||
"repository": "android_kernel_xiaomi_sm8450",
|
||||
"target_path": "kernel/xiaomi/sm8450"
|
||||
},
|
||||
{
|
||||
"repository": "android_kernel_xiaomi_sm8450-devicetrees",
|
||||
"target_path": "kernel/xiaomi/sm8450-devicetrees"
|
||||
},
|
||||
{
|
||||
"repository": "android_kernel_xiaomi_sm8450-modules",
|
||||
"target_path": "kernel/xiaomi/sm8450-modules"
|
||||
}
|
||||
]
|
742
manifest.xml
Normal file
742
manifest.xml
Normal file
@ -0,0 +1,742 @@
|
||||
<!-- Copyright (c) 2019-2021 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.
|
||||
-->
|
||||
<manifest version="1.0" type="device" target-level="6">
|
||||
<kernel target-level="6"/>
|
||||
<!-- CapabilityConfigStore HAL Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.capabilityconfigstore</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>ICapabilityConfigStore</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.audio</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>7.0</version>
|
||||
<interface>
|
||||
<name>IDevicesFactory</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.audio.effect</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>7.0</version>
|
||||
<interface>
|
||||
<name>IEffectsFactory</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- DSP Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.dsp</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IDspService</name>
|
||||
<instance>dspservice</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- WFD HAL Service -->
|
||||
<hal format="hidl" optional="true">
|
||||
<name>vendor.qti.hardware.wifidisplaysession</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IWifiDisplaySession</name>
|
||||
<instance>wifidisplaysession</instance>
|
||||
</interface>
|
||||
<interface>
|
||||
<name>IWifiDisplaySessionVideoTrack</name>
|
||||
<instance>wifidisplaysessionvideotrack</instance>
|
||||
</interface>
|
||||
<interface>
|
||||
<name>IWifiDisplaySessionAudioTrack</name>
|
||||
<instance>wifidisplaysessionaudiotrack</instance>
|
||||
</interface>
|
||||
<interface>
|
||||
<name>IWifiDisplaySessionImageTrack</name>
|
||||
<instance>wifidisplaysessionimagetrack</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- fingerprint hal: using remote service instead of Google's default service-->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.fingerprint</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IQtiExtendedFingerprint</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.keymaster</name>
|
||||
<transport>hwbinder</transport>
|
||||
<fqname>@4.1::IKeymasterDevice/default</fqname>
|
||||
<fqname>@4.0::IKeymasterDevice/strongbox</fqname>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.gatekeeper</name>
|
||||
<transport>hwbinder</transport>
|
||||
<impl level="generic"></impl>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IGatekeeper</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- NFC HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.nfc</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.2</version>
|
||||
<interface>
|
||||
<name>INfc</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.nxp.hardware.nfc</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.0</version>
|
||||
<interface>
|
||||
<name>INqNfc</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- secure element -->
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.secure_element</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.2</version>
|
||||
<interface>
|
||||
<name>ISecureElement</name>
|
||||
<instance>eSE1</instance>
|
||||
<instance>SIM1</instance>
|
||||
<instance>SIM2</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- eSEPowerManager -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.esepowermanager</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IEsePowerManager</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- QSEECom HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.qseecom</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IQSEECom</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- QTEEConnector HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.qteeconnector</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IAppConnector</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
<interface>
|
||||
<name>IGPAppConnector</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.drm</name>
|
||||
<transport>hwbinder</transport>
|
||||
<fqname>@1.3::ICryptoFactory/wfdhdcp</fqname>
|
||||
<fqname>@1.3::IDrmFactory/wfdhdcp</fqname>
|
||||
</hal>
|
||||
<!-- SensorCal HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.sensorscalibrate</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>ISensorsCalibrate</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- IRADIO -->
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.radio</name>
|
||||
<transport>hwbinder</transport>
|
||||
<fqname>@1.6::IRadio/slot1</fqname>
|
||||
<fqname>@1.6::IRadio/slot2</fqname>
|
||||
<fqname>@1.2::ISap/slot1</fqname>
|
||||
<fqname>@1.2::ISap/slot2</fqname>
|
||||
</hal>
|
||||
<!-- RADIO CONFIG -->
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.radio.config</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.3</version>
|
||||
<interface>
|
||||
<name>IRadioConfig</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- RIL AUDIO HAL -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.am</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IQcRilAudio</name>
|
||||
<instance>slot1</instance>
|
||||
<instance>slot2</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- dpm QMI hal service -->
|
||||
<hal format="hidl">
|
||||
<name>com.qualcomm.qti.dpm.api</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IdpmQmi</name>
|
||||
<instance>dpmQmiService</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- qcrilhook -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.qcrilhook</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IQtiOemHook</name>
|
||||
<instance>oemhook0</instance>
|
||||
<instance>oemhook1</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- RIL UIM REMOTE CLIENT -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.uim_remote_client</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IUimRemoteServiceClient</name>
|
||||
<instance>uimRemoteClient0</instance>
|
||||
<instance>uimRemoteClient1</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- RIL UIM REMOTE SERVER -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.uim_remote_server</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IUimRemoteServiceServer</name>
|
||||
<instance>uimRemoteServer0</instance>
|
||||
<instance>uimRemoteServer1</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- RIL UIM LPA -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.lpa</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.2</version>
|
||||
<interface>
|
||||
<name>IUimLpa</name>
|
||||
<instance>UimLpa0</instance>
|
||||
<instance>UimLpa1</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- RIL UIM -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.uim</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.2</version>
|
||||
<interface>
|
||||
<name>IUim</name>
|
||||
<instance>Uim0</instance>
|
||||
<instance>Uim1</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.qtiradio</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IQtiRadio</name>
|
||||
<instance>slot1</instance>
|
||||
<instance>slot2</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- deviceInfo HAL -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.internal.deviceinfo</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IDeviceInfo</name>
|
||||
<instance>deviceinfo</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- IMS RTP Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.imsrtpservice</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>3.0</version>
|
||||
<interface>
|
||||
<name>IRTPService</name>
|
||||
<instance>imsrtpservice</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Hidl service for 5G network apis -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.radio.qtiradio</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.6</version>
|
||||
<interface>
|
||||
<name>IQtiRadio</name>
|
||||
<instance>slot1</instance>
|
||||
<instance>slot2</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- IMS UCE Service -->
|
||||
<hal format="hidl">
|
||||
<name>com.qualcomm.qti.uceservice</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.3</version>
|
||||
<interface>
|
||||
<name>IUceService</name>
|
||||
<instance>com.qualcomm.qti.uceservice</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- IMS callinfo Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.ims.callinfo</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IService</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- IMS CM Service -->
|
||||
<hal format="hidl">
|
||||
<name>com.qualcomm.qti.imscmservice</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.2</version>
|
||||
<interface>
|
||||
<name>IImsCmService</name>
|
||||
<instance>qti.ims.connectionmanagerservice</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.ims.factory</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<version>2.1</version>
|
||||
<interface>
|
||||
<name>IImsFactory</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.data.factory</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.5</version>
|
||||
<interface>
|
||||
<name>IFactory</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Tether Offload -->
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.tetheroffload.config</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IOffloadConfig</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.tetheroffload.control</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IOffloadControl</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.data.iwlan</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IIWlan</name>
|
||||
<instance>slot1</instance>
|
||||
<instance>slot2</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Data Link Latency -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.data.latency</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>ILinkLatency</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.data.connection</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IDataConnection</name>
|
||||
<instance>slot1</instance>
|
||||
<instance>slot2</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.cacert</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IService</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Factory HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.factory</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IFactory</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- IOP HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.iop</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.0</version>
|
||||
<interface>
|
||||
<name>IIop</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Secure image data processor HAL Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.secureprocessor.device</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>ISecureProcessor</name>
|
||||
<instance>qti-tee</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- bluetooth -->
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.bluetooth</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IBluetoothHci</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.bluetooth.audio</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.0</version>
|
||||
<interface>
|
||||
<name>IBluetoothAudioProvidersFactory</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.bluetooth_audio</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.1</version>
|
||||
<interface>
|
||||
<name>IBluetoothAudioProvidersFactory</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.btconfigstore</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.0</version>
|
||||
<interface>
|
||||
<name>IBTConfigStore</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- fm -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.fm</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IFmHci</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!--ANT-->
|
||||
<hal format="hidl">
|
||||
<name>com.dsi.ant</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IAnt</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!--ANT-->
|
||||
<!--TuiComm-->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.tui_comm</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>ITuiComm</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!--TuiComm-->
|
||||
<!-- Soter service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.soter</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>ISoter</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Eid service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.eid</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IEid</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Alarm HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.alarm</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IAlarm</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- Camera PostProcessing service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.camera.postproc</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IPostProcService</name>
|
||||
<instance>camerapostprocservice</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- Camera AON service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.camera.aon</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IAONService</name>
|
||||
<instance>aoncameraservice</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<hal format="hidl">
|
||||
<name>android.hardware.camera.provider</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.7</version>
|
||||
<interface>
|
||||
<name>ICameraProvider</name>
|
||||
<instance>legacy/1</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
|
||||
<!-- WifiStats HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.wifi.wifilearner</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IWifiStats</name>
|
||||
<instance>wifiStats</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- QSPM-HAL service-->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.qspmhal</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IQspmhal</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Trusted UI HAL Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.trustedui</name>
|
||||
<transport>hwbinder</transport>
|
||||
<fqname>@1.2::ITrustedUI/default</fqname>
|
||||
<fqname>@1.2::ITrustedUI/qtee-vm</fqname>
|
||||
<fqname>@1.1::ITrustedInput/default</fqname>
|
||||
<fqname>@1.1::ITrustedInput/qtee-vm</fqname>
|
||||
</hal>
|
||||
<!-- BluetoothSar service-->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.bluetooth_sar</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IBluetoothSar</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- AGM service-->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.AGMIPC</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IAGM</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- Audio PAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.pal</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IPAL</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
<fqname>@1.0::IPAL/default</fqname>
|
||||
</hal>
|
||||
<!-- SPU service-->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.spu</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>ISPUManager</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.spu</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>2.0</version>
|
||||
<interface>
|
||||
<name>ISPUManager</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- QCC HAL Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.qccvndhal</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IQccvndhal</name>
|
||||
<instance>qccvndhal</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- eMBMS HAL Service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.embmssl</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IEmbms</name>
|
||||
<instance>embmsslServer0</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- DpmService HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.dpmservice</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IDpmService</name>
|
||||
<instance>DpmService</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- QESDK HAL service -->
|
||||
<hal format="hidl" optional="true">
|
||||
<name>vendor.qti.qesdhal</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.1</version>
|
||||
<interface>
|
||||
<name>IQesdhal</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<!-- MwqemAdapter HAL service -->
|
||||
<hal format="hidl">
|
||||
<name>vendor.qti.hardware.mwqemadapter</name>
|
||||
<transport>hwbinder</transport>
|
||||
<version>1.0</version>
|
||||
<interface>
|
||||
<name>IMwqemAdapter</name>
|
||||
<instance>MwqemAdapter</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
</manifest>
|
2
properties/odm.prop
Normal file
2
properties/odm.prop
Normal file
@ -0,0 +1,2 @@
|
||||
# Qti
|
||||
ro.vendor.qti.va_odm.support=1
|
166
properties/product.prop
Normal file
166
properties/product.prop
Normal file
@ -0,0 +1,166 @@
|
||||
####################################
|
||||
# from variable PRODUCT_PRODUCT_PROPERTIES
|
||||
####################################
|
||||
# Removed by post_process_props.py because overridden by ro.miui.ui.version.code=816
|
||||
#ro.miui.ui.version.code?=15
|
||||
# Removed by post_process_props.py because overridden by ro.miui.ui.version.name=V816
|
||||
#ro.miui.ui.version.name?=V150
|
||||
ro.com.agoda.consumer.preload=/cust/etc/agoda.aid
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.booking.channel.path=/cust/etc/.booking.data.aid
|
||||
ro.netflix.channel=004ee050-1a17-11e9-bb61-6f1da27fb55b
|
||||
ro.netflix.signup=1
|
||||
ro.microsoft.onedrive_partner_code=/cust/etc/onedrive_token.txt
|
||||
ro.wps.prop.channel.path=/cust/etc/wps.prop
|
||||
ro.trackingId.com.lzd.appid=/cust/etc/lazadaconfiginfo
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.csc.spotify.music.referrerid=xiaomi_mobile
|
||||
ro.csc.spotify.music.partnerid=xiaomi_mobile
|
||||
ro.com.agoda.consumer.preload=/cust/etc/agoda.aid
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.booking.channel.path=/cust/etc/.booking.data.aid
|
||||
ro.netflix.channel=004ee050-1a17-11e9-bb61-6f1da27fb55b
|
||||
ro.netflix.signup=1
|
||||
ro.microsoft.onedrive_partner_code=/cust/etc/onedrive_token.txt
|
||||
ro.wps.prop.channel.path=/cust/etc/wps.prop
|
||||
ro.trackingId.com.lzd.appid=/cust/etc/lazadaconfiginfo
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.csc.spotify.music.referrerid=xiaomi_mobile
|
||||
ro.csc.spotify.music.partnerid=xiaomi_mobile
|
||||
ro.com.agoda.consumer.preload=/cust/etc/agoda.aid
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.booking.channel.path=/cust/etc/.booking.data.aid
|
||||
ro.netflix.channel=004ee050-1a17-11e9-bb61-6f1da27fb55b
|
||||
ro.netflix.signup=1
|
||||
ro.microsoft.onedrive_partner_code=/cust/etc/onedrive_token.txt
|
||||
ro.wps.prop.channel.path=/cust/etc/wps.prop
|
||||
ro.trackingId.com.lzd.appid=/cust/etc/lazadaconfiginfo
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.csc.spotify.music.referrerid=xiaomi_mobile
|
||||
ro.csc.spotify.music.partnerid=xiaomi_mobile
|
||||
ro.com.agoda.consumer.preload=/cust/etc/agoda.aid
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.booking.channel.path=/cust/etc/.booking.data.aid
|
||||
ro.netflix.channel=004ee050-1a17-11e9-bb61-6f1da27fb55b
|
||||
ro.netflix.signup=1
|
||||
ro.microsoft.onedrive_partner_code=/cust/etc/onedrive_token.txt
|
||||
ro.wps.prop.channel.path=/cust/etc/wps.prop
|
||||
ro.trackingId.com.lzd.appid=/cust/etc/lazadaconfiginfo
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.csc.spotify.music.referrerid=xiaomi_mobile
|
||||
ro.csc.spotify.music.partnerid=xiaomi_mobile
|
||||
ro.com.agoda.consumer.preload=/cust/etc/agoda.aid
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.booking.channel.path=/cust/etc/.booking.data.aid
|
||||
ro.netflix.channel=004ee050-1a17-11e9-bb61-6f1da27fb55b
|
||||
ro.netflix.signup=1
|
||||
ro.microsoft.onedrive_partner_code=/cust/etc/onedrive_token.txt
|
||||
ro.wps.prop.channel.path=/cust/etc/wps.prop
|
||||
ro.trackingId.com.lzd.appid=/cust/etc/lazadaconfiginfo
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.csc.spotify.music.referrerid=xiaomi_mobile
|
||||
ro.csc.spotify.music.partnerid=xiaomi_mobile
|
||||
ro.com.agoda.consumer.preload=/cust/etc/agoda.aid
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.booking.channel.path=/cust/etc/.booking.data.aid
|
||||
ro.netflix.channel=004ee050-1a17-11e9-bb61-6f1da27fb55b
|
||||
ro.netflix.signup=1
|
||||
ro.microsoft.onedrive_partner_code=/cust/etc/onedrive_token.txt
|
||||
ro.wps.prop.channel.path=/cust/etc/wps.prop
|
||||
ro.trackingId.com.lzd.appid=/cust/etc/lazadaconfiginfo
|
||||
ro.zalo.tracking=/cust/etc/zalo_appchannel.in
|
||||
ro.csc.spotify.music.referrerid=xiaomi_mobile
|
||||
ro.csc.spotify.music.partnerid=xiaomi_mobile
|
||||
ro.com.android.dataroaming=false
|
||||
debug.sf.disable_backpressure=1
|
||||
ro.miui.ui.version.code=816
|
||||
ro.miui.ui.version.name=V816
|
||||
ro.setupwizard.rotation_locked=true
|
||||
ro.opa.eligible_device=true
|
||||
ro.com.google.gmsversion=15_202501
|
||||
setupwizard.feature.baseline_setupwizard_enabled=true
|
||||
bluetooth.profile.asha.central.enabled=true
|
||||
bluetooth.profile.a2dp.source.enabled=true
|
||||
bluetooth.profile.avrcp.target.enabled=true
|
||||
bluetooth.profile.bap.broadcast.assist.enabled=false
|
||||
bluetooth.profile.bap.unicast.client.enabled=false
|
||||
bluetooth.profile.bap.broadcast.source.enabled=false
|
||||
# Removed by post_process_props.py because overridden by bluetooth.profile.bas.client.enabled=true
|
||||
#bluetooth.profile.bas.client.enabled?=true
|
||||
bluetooth.profile.ccp.server.enabled=false
|
||||
bluetooth.profile.csip.set_coordinator.enabled=false
|
||||
bluetooth.profile.gatt.enabled=true
|
||||
bluetooth.profile.hap.client.enabled=false
|
||||
bluetooth.profile.hfp.ag.enabled=true
|
||||
bluetooth.profile.hid.host.enabled=true
|
||||
bluetooth.profile.mcp.server.enabled=false
|
||||
bluetooth.profile.opp.enabled=true
|
||||
bluetooth.profile.pan.nap.enabled=true
|
||||
bluetooth.profile.pan.panu.enabled=true
|
||||
bluetooth.profile.vcp.controller.enabled=false
|
||||
persist.vendor.bt.a2dp.samplerate=true
|
||||
persist.vendor.adapt.sampler=true
|
||||
ro.vendor.audio.ring.filter=false
|
||||
persist.sys.sf_charge_anim_supported=true
|
||||
dalvik.vm.ps-min-first-save-ms=8000
|
||||
persist.sys.hyper_transition=true
|
||||
persist.sys.element_transition_supported=true
|
||||
remote_provisioning.enable_rkpd=true
|
||||
remote_provisioning.hostname=remoteprovisioning.googleapis.com
|
||||
persist.wm.extensions.enabled=true
|
||||
vendor.audio_hal.period_size=192
|
||||
vendor.audio.tunnel.encode=false
|
||||
vendor.audio.offload.buffer.size.kb=32
|
||||
vendor.voice.path.for.pcm.voip=true
|
||||
vendor.audio.offload.multiaac.enable=true
|
||||
vendor.audio.parser.ip.buffer.size=262144
|
||||
vendor.audio.flac.sw.decoder.24bit=true
|
||||
vendor.audio.use.sw.alac.decoder=true
|
||||
vendor.audio.use.sw.ape.decoder=true
|
||||
vendor.audio.hw.aac.encoder=true
|
||||
af.fast_track_multiplier=1
|
||||
audio.offload.video=true
|
||||
audio.deep_buffer.media=true
|
||||
audio.sys.noisy.broadcast.delay=500
|
||||
audio.sys.mute.latency.factor=2
|
||||
audio.sys.routing.latency=0
|
||||
audio.offload.min.duration.secs=30
|
||||
audio.sys.offload.pstimeout.secs=3
|
||||
ro.af.client_heap_size_kbyte=7168
|
||||
media.stagefright.audio.deep=false
|
||||
aaudio.mmap_exclusive_policy=2
|
||||
aaudio.hw_burst_min_usec=2000
|
||||
persist.sys.offlinelog.bootlog=true
|
||||
bluetooth.profile.a2dp.source.enabled=true
|
||||
bluetooth.profile.avrcp.target.enabled=true
|
||||
bluetooth.profile.avrcp.controller.enabled=false
|
||||
bluetooth.profile.hfp.ag.enabled=true
|
||||
bluetooth.profile.gatt.enabled=true
|
||||
bluetooth.profile.hid.host.enabled=true
|
||||
bluetooth.profile.hid.device.enabled=true
|
||||
bluetooth.profile.map.server.enabled=true
|
||||
bluetooth.profile.opp.enabled=true
|
||||
bluetooth.profile.pan.nap.enabled=true
|
||||
bluetooth.profile.pan.panu.enabled=true
|
||||
bluetooth.profile.pbap.server.enabled=true
|
||||
bluetooth.profile.bas.client.enabled=true
|
||||
bluetooth.device_id.vendor_id=0x001D
|
||||
persist.sys.debug.enable_scout_memory_monitor=true
|
||||
persist.sys.debug.enable_scout_memory_resume=true
|
||||
persist.sys.debug.scout_memory_disable_kgsl=true
|
||||
persist.sys.scout_dumpbysocket=true
|
||||
persist.sys.scout_binder_gki=true
|
||||
persist.sys.device_config_gki=true
|
||||
persist.sys.mmms.lowmem.wmark.boost.factor=1
|
||||
persist.sys.mms.compact_enable=true
|
||||
persist.sys.spc.enabled=true
|
||||
ro.vendor.radio.5g=3
|
||||
ro.vendor.radio.features_common=3
|
||||
persist.vendor.radio.enable_temp_dds=true
|
||||
# end of file
|
234
properties/system.prop
Normal file
234
properties/system.prop
Normal file
@ -0,0 +1,234 @@
|
||||
####################################
|
||||
# from device/xiaomi/missi/system.prop
|
||||
####################################
|
||||
#
|
||||
# system.prop for qssi
|
||||
#
|
||||
rild.libpath=/vendor/lib64/libril-qc-hal-qmi.so
|
||||
#rild.libargs=-d /dev/smd0
|
||||
persist.rild.nitz_plmn=
|
||||
persist.rild.nitz_long_ons_0=
|
||||
persist.rild.nitz_long_ons_1=
|
||||
persist.rild.nitz_long_ons_2=
|
||||
persist.rild.nitz_long_ons_3=
|
||||
persist.rild.nitz_short_ons_0=
|
||||
persist.rild.nitz_short_ons_1=
|
||||
persist.rild.nitz_short_ons_2=
|
||||
persist.rild.nitz_short_ons_3=
|
||||
ril.subscription.types=NV,RUIM
|
||||
DEVICE_PROVISIONED=1
|
||||
# Set network mode to (NR_LTE_TDSCDMA_CDMA_EVDO_GSM_WCDMA, NR_LTE_TDSCDMA_CDMA_EVDO_GSM_WCDMA) for 8+8 mode device on DSDS mode
|
||||
ro.telephony.default_network=33,33
|
||||
dalvik.vm.heapsize=36m
|
||||
dalvik.vm.dex2oat64.enabled=true
|
||||
dev.pm.dyn_samplingrate=1
|
||||
#ro.hdmi.enable=true
|
||||
#persist.speaker.prot.enable=false
|
||||
qcom.hw.aac.encoder=true
|
||||
#
|
||||
# system props for the cne module
|
||||
#
|
||||
persist.vendor.cne.feature=1
|
||||
#system props for the MM modules
|
||||
media.stagefright.enable-player=true
|
||||
media.stagefright.enable-http=true
|
||||
media.stagefright.enable-aac=true
|
||||
media.stagefright.enable-qcp=true
|
||||
media.stagefright.enable-fma2dp=true
|
||||
media.stagefright.enable-scan=true
|
||||
media.stagefright.thumbnail.prefer_hw_codecs=true
|
||||
mmp.enable.3g2=true
|
||||
media.aac_51_output_enabled=true
|
||||
media.settings.xml=/vendor/etc/media_profiles_vendor.xml
|
||||
#16777215 is decimal sum of supported codecs in AAL
|
||||
#codecs:(PARSER_)AAC AC3 AMR_NB AMR_WB ASF AVI DTS FLV 3GP 3G2 MKV MP2PS MP2TS MP3 OGG QCP WAV FLAC AIFF APE DSD MOV MHAS
|
||||
vendor.mm.enable.qcom_parser=16777215
|
||||
persist.mm.enable.prefetch=true
|
||||
#
|
||||
# system props for the data modules
|
||||
#
|
||||
ro.vendor.use_data_netmgrd=true
|
||||
persist.vendor.data.mode=concurrent
|
||||
#system props for time-services
|
||||
persist.timed.enable=true
|
||||
#
|
||||
# system prop for opengles version
|
||||
#
|
||||
# 196608 is decimal for 0x30000 to report version 3
|
||||
# 196609 is decimal for 0x30001 to report version 3.1
|
||||
# 196610 is decimal for 0x30002 to report version 3.2
|
||||
ro.opengles.version=196610
|
||||
#
|
||||
# System props for telephony
|
||||
# System prop to turn on CdmaLTEPhone always
|
||||
telephony.lteOnCdmaDevice=1
|
||||
#Simulate sdcard on /data/media
|
||||
#
|
||||
persist.fuse_sdcard=true
|
||||
#System props for BT
|
||||
ro.bluetooth.library_name=libbluetooth.so
|
||||
persist.vendor.btstack.aac_frm_ctl.enabled=true
|
||||
# MIUI ADD: BT_MIUIBluetoothFrame
|
||||
persist.vendor.service.bdroid.soc.alwayson=true
|
||||
#system prop for wipower support
|
||||
ro.bluetooth.emb_wp_mode=false
|
||||
ro.bluetooth.wipower=false
|
||||
# END BT_MIUIBluetoothFrame
|
||||
#system prop for RmNet Data
|
||||
persist.rmnet.data.enable=true
|
||||
persist.data.wda.enable=true
|
||||
persist.data.df.dl_mode=5
|
||||
persist.data.df.ul_mode=5
|
||||
persist.data.df.agg.dl_pkt=10
|
||||
persist.data.df.agg.dl_size=4096
|
||||
persist.data.df.mux_count=8
|
||||
persist.data.df.iwlan_mux=9
|
||||
persist.data.df.dev_name=rmnet_usb0
|
||||
#property to enable user to access Google WFD settings
|
||||
persist.debug.wfd.enable=1
|
||||
##property to choose between virtual/external wfd display
|
||||
persist.sys.wfd.virtual=0
|
||||
#property to enable HWC for VDS
|
||||
debug.sf.enable_hwc_vds=0
|
||||
#property to latch unsignaled buffer
|
||||
debug.sf.latch_unsignaled=1
|
||||
# enable tunnel encoding for amrwb
|
||||
tunnel.audio.encode=true
|
||||
#enable voice path for PCM VoIP by default
|
||||
use.voice.path.for.pcm.voip=true
|
||||
# system prop for NFC DT
|
||||
ro.nfc.port=I2C
|
||||
#initialize QCA1530 detection
|
||||
sys.qca1530=detect
|
||||
#Enable stm events
|
||||
persist.debug.coresight.config=stm-events
|
||||
#hwui properties
|
||||
ro.hwui.texture_cache_size=72
|
||||
ro.hwui.layer_cache_size=48
|
||||
ro.hwui.r_buffer_cache_size=8
|
||||
ro.hwui.path_cache_size=32
|
||||
ro.hwui.gradient_cache_size=1
|
||||
ro.hwui.drop_shadow_cache_size=6
|
||||
ro.hwui.texture_cache_flushrate=0.4
|
||||
ro.hwui.text_small_cache_width=1024
|
||||
ro.hwui.text_small_cache_height=1024
|
||||
ro.hwui.text_large_cache_width=2048
|
||||
ro.hwui.text_large_cache_height=1024
|
||||
debug.hwui.skia_atrace_enabled=false
|
||||
config.disable_rtt=true
|
||||
#Bringup properties
|
||||
persist.sys.force_sw_gles=1
|
||||
persist.vendor.radio.atfwd.start=true
|
||||
ro.kernel.qemu.gles=0
|
||||
qemu.hw.mainkeys=0
|
||||
#Expose aux camera for below packages
|
||||
vendor.camera.aux.packagelist=org.codeaurora.snapcam,com.xiaomi.runin,com.xiaomi.cameratest,com.xiaomi.factory.mmi
|
||||
vendor.camera.aux.packagelistext=com.xiaomi.factory.CameraTestItem,com.firefightcam1
|
||||
#Add snapcam in privapp list
|
||||
persist.vendor.camera.privapp.list=org.codeaurora.snapcam
|
||||
#enable IZat OptInApp overlay
|
||||
persist.vendor.overlay.izat.optin=rro
|
||||
# Property for backup NTP Server
|
||||
persist.backup.ntpServer="0.pool.ntp.org"
|
||||
#Partition source order for Product/Build properties pickup.
|
||||
ro.product.property_source_order=odm,vendor,product,system_ext,system
|
||||
#Property to enable Codec2 for audio and OMX for Video
|
||||
debug.stagefright.ccodec=1
|
||||
#Property to set native recorder's maximum base layer fps
|
||||
ro.media.recorder-max-base-layer-fps=60
|
||||
#Battery Property
|
||||
ro.charger.enable_suspend=1
|
||||
#Disable MTE Async for system server
|
||||
arm64.memtag.process.system_server=off
|
||||
# Disable blur on app launch
|
||||
ro.launcher.blur.appLaunch=0
|
||||
#button jack mode & switch
|
||||
persist.audio.button_jack.profile=volume
|
||||
persist.audio.button_jack.switch=0
|
||||
# MIUI ADD: Performance_AppInstallEnhance
|
||||
ro.miui.enable_cloud_verify=true
|
||||
#enable speed install
|
||||
ro.miui.pm.install.speedinstall=/data/apk-tmp
|
||||
# END Performance_AppInstallEnhance
|
||||
# xiaomi ugd
|
||||
ro.gfx.driver.0=com.xiaomi.ugd
|
||||
# enable modem dump
|
||||
persist.vendor.ssr.enable_ramdumps=1
|
||||
####################################
|
||||
# from device/xiaomi/missi/system_fraction.prop
|
||||
####################################
|
||||
# This file is used to distinguish the file difference of system.prop between Qualcomm qssi and qssi_64
|
||||
# Only adapter groups can modify this file during the upgrade baseline
|
||||
####################################
|
||||
# from variable ADDITIONAL_SYSTEM_PROPERTIES
|
||||
####################################
|
||||
ro.vendor.qti.va_aosp.support=1
|
||||
####################################
|
||||
# from variable PRODUCT_SYSTEM_PROPERTIES
|
||||
####################################
|
||||
persist.sys.gps.selfRecovery=3
|
||||
ro.com.google.lens.oem_camera_package=com.android.camera
|
||||
ro.com.google.lens.oem_image_package=com.miui.gallery
|
||||
ro.com.android.mobiledata=false
|
||||
sys.dfcservice.ctrl=false
|
||||
sys.dfcservice.compress.prog=0
|
||||
sys.dfcservice.enablelog.ctrl=false
|
||||
ro.miui.shell_anim_enable_fcb=true
|
||||
persist.hyper.barfollow_anim=true
|
||||
debug.atrace.tags.enableflags=0
|
||||
persist.traced.enable=1
|
||||
dalvik.vm.image-dex2oat-Xms=64m
|
||||
dalvik.vm.image-dex2oat-Xmx=64m
|
||||
dalvik.vm.dex2oat-Xms=64m
|
||||
dalvik.vm.dex2oat-Xmx=512m
|
||||
dalvik.vm.usejit=true
|
||||
dalvik.vm.dexopt.secondary=true
|
||||
dalvik.vm.dexopt.thermal-cutoff=2
|
||||
dalvik.vm.appimageformat=lz4
|
||||
ro.dalvik.vm.native.bridge=0
|
||||
pm.dexopt.boot-after-ota.concurrency=4
|
||||
pm.dexopt.post-boot=verify
|
||||
pm.dexopt.first-boot=verify
|
||||
pm.dexopt.boot-after-ota=verify
|
||||
pm.dexopt.boot-after-mainline-update=verify
|
||||
pm.dexopt.install=speed-profile
|
||||
pm.dexopt.install-fast=skip
|
||||
pm.dexopt.install-bulk=speed-profile
|
||||
pm.dexopt.install-bulk-secondary=verify
|
||||
pm.dexopt.install-bulk-downgraded=verify
|
||||
pm.dexopt.install-bulk-secondary-downgraded=verify
|
||||
pm.dexopt.bg-dexopt=speed-profile
|
||||
pm.dexopt.ab-ota=speed-profile
|
||||
pm.dexopt.inactive=verify
|
||||
pm.dexopt.cmdline=verify
|
||||
pm.dexopt.first-use=speed-profile
|
||||
pm.dexopt.install-create-dm=speed-profile
|
||||
pm.dexopt.baseline=speed-profile
|
||||
pm.dexopt.secondary=verify
|
||||
pm.dexopt.shared=speed
|
||||
dalvik.vm.dex2oat-resolve-startup-strings=true
|
||||
dalvik.vm.dex2oat-max-image-block-size=524288
|
||||
dalvik.vm.minidebuginfo=true
|
||||
dalvik.vm.dex2oat-minidebuginfo=true
|
||||
dalvik.vm.madvise.vdexfile.size=104857600
|
||||
dalvik.vm.madvise.odexfile.size=104857600
|
||||
dalvik.vm.madvise.artfile.size=4294967295
|
||||
dalvik.vm.usap_pool_enabled=false
|
||||
dalvik.vm.usap_refill_threshold=1
|
||||
dalvik.vm.usap_pool_size_max=3
|
||||
dalvik.vm.usap_pool_size_min=1
|
||||
dalvik.vm.usap_pool_refill_delay_ms=3000
|
||||
dalvik.vm.useartservice=true
|
||||
dalvik.vm.enable_pr_dexopt=true
|
||||
ro.apex.updatable=true
|
||||
ro.hwui.max_texture_allocation_size=209715200
|
||||
persist.vendor.connsysfw.enable=true
|
||||
ro.radio.device_type=1
|
||||
ro.miui.support_audiorecord_compress=true
|
||||
ro.miui.allow_app_playbackcapture=true
|
||||
persist.device_config.runtime_native_boot.iorap_perfetto_enable=true
|
||||
ro.vendor.audio.notification.single=true
|
||||
####################################
|
||||
# from variable PRODUCT_SYSTEM_DEFAULT_PROPERTIES
|
||||
####################################
|
||||
# end of file
|
20
properties/system_ext.prop
Normal file
20
properties/system_ext.prop
Normal file
@ -0,0 +1,20 @@
|
||||
ro.support_one_handed_mode=true
|
||||
persist.sys.support_view_smoothcorner=true
|
||||
persist.sys.support_window_smoothcorner=true
|
||||
ro.config.isolated_compilation_enabled=true
|
||||
ro.audio.ihaladaptervendorextension_enabled=true
|
||||
bluetooth.profile.sap.server.enabled=false
|
||||
bluetooth.profile.pbap.sim.enabled=true
|
||||
bluetooth.hfp.codec_aptx_voice.enabled=true
|
||||
ro.bluetooth.leaudio_offload.supported=true
|
||||
bluetooth.device.class_of_device=90,2,12
|
||||
persist.bluetooth.leaudio_offload.disabled=false
|
||||
persist.bluetooth.leaudio.allow.multiple.context=false
|
||||
persist.bluetooth.leaudio.bypass_allow_list=true
|
||||
bluetooth.leaudio.dual_bidirection_swb.supported=true
|
||||
persist.bluetooth.leaudio.notify.idle.during.call=true
|
||||
persist.vendor.bluetooth.haltest=true
|
||||
persist.vendor.dpm.feature=11
|
||||
ro.telephony.sim_slots.count=2
|
||||
telephony.active_modems.max_count=2
|
||||
persist.sys.qseelogd=true
|
588
properties/vendor.prop
Normal file
588
properties/vendor.prop
Normal file
@ -0,0 +1,588 @@
|
||||
####################################
|
||||
# from device/xiaomi/marble/special_rw.prop
|
||||
####################################
|
||||
#enable sar feature
|
||||
persist.vendor.radio.dynamic_sar=1
|
||||
#support high temp dialog
|
||||
persist.vendor.hightemp.notice=true
|
||||
#support battery health
|
||||
persist.vendor.battery.health=true
|
||||
#camera wechat beauty
|
||||
persist.vendor.vcb.ability=true
|
||||
persist.vendor.vcb.enable=false
|
||||
#enable sensor event to onetrack
|
||||
persist.vendor.sensor.onetrack=true
|
||||
#enable device orient event to onetrack
|
||||
persist.vendor.sensor.deviceorient=true
|
||||
#enable ssr
|
||||
persist.vendor.ssr.restart_level=ALL_ENABLE
|
||||
####################################
|
||||
# from variable PRODUCT_VENDOR_PROPERTIES
|
||||
####################################
|
||||
ro.virtual_ab.enabled=true
|
||||
external_storage.projid.enabled=1
|
||||
external_storage.casefold.enabled=1
|
||||
external_storage.sdcardfs.enabled=0
|
||||
ro.zygote=zygote64_32
|
||||
keyguard.no_require_sim=true
|
||||
ro.com.android.dataroaming=true
|
||||
ro.config.ringtone=Ring_Synth_04.ogg
|
||||
ro.logd.size.stats=64K
|
||||
log.tag.stats_log=I
|
||||
ro.carrier=unknown
|
||||
ro.config.notification_sound=OnTheHunt.ogg
|
||||
ro.config.alarm_alert=Alarm_Classic.ogg
|
||||
ro.mediaserver.64b.enable=true
|
||||
graphics.gpu.profiler.support=true
|
||||
ro.apex.updatable=true
|
||||
ro.telephony.default_network=33,33
|
||||
####################################
|
||||
# from variable PRODUCT_DEFAULT_PROPERTY_OVERRIDES
|
||||
####################################
|
||||
ro.oem_unlock_supported=1
|
||||
ro.surface_flinger.use_color_management=true
|
||||
ro.surface_flinger.protected_contents=true
|
||||
ro.surface_flinger.use_content_detection_for_refresh_rate=true
|
||||
ro.surface_flinger.set_touch_timer_ms=200
|
||||
ro.surface_flinger.force_hwc_copy_for_virtual_displays=true
|
||||
ro.surface_flinger.max_frame_buffer_acquired_buffers=3
|
||||
ro.surface_flinger.max_virtual_display_dimension=4096
|
||||
ro.surface_flinger.supports_background_blur=1
|
||||
ro.surface_flinger.has_wide_color_display=true
|
||||
ro.surface_flinger.has_HDR_display=true
|
||||
ro.surface_flinger.wcg_composition_dataspace=143261696
|
||||
####################################
|
||||
# from variable PRODUCT_PROPERTY_OVERRIDES
|
||||
####################################
|
||||
ro.soc.manufacturer=QTI
|
||||
ro.rom.zone=2
|
||||
ro.build.recovery.version.release=15
|
||||
ro.control_privapp_permissions=enforce
|
||||
persist.vendor.qcomsysd.enabled=1
|
||||
vendor.power.pasr.enabled=false
|
||||
vendor.pasr.activemode.enabled=false
|
||||
persist.backup.ntpServer=0.pool.ntp.org
|
||||
sys.vendor.shutdown.waittime=500
|
||||
ro.frp.pst=/dev/block/bootdevice/by-name/frp
|
||||
ro.vendor.beluga.p=0x3
|
||||
ro.vendor.beluga.c=0x4800
|
||||
ro.vendor.beluga.s=0x900
|
||||
ro.vendor.beluga.t=0x240
|
||||
wifi.aware.interface=wifi-aware0
|
||||
ro.incremental.enable=yes
|
||||
persist.vendor.radio.ecc_cloud=true
|
||||
drm.service.enabled=true
|
||||
camera.disable_zsl_mode=true
|
||||
persist.vendor.qfp=true
|
||||
ro.vendor.qspm.enable=true
|
||||
persist.vendor.radio.enableadvancedscan=true
|
||||
persist.sys.fuse.passthrough.enable=true
|
||||
ro.vendor.miui.build.region=global
|
||||
ro.vendor.radio.build_profile=v-stable
|
||||
vendor.hw.fm.init=0
|
||||
vendor.mm.enable.qcom_parser=16777215
|
||||
ro.hardware.vulkan=adreno
|
||||
ro.hardware.egl=adreno
|
||||
ro.gfx.driver.1=com.qualcomm.qti.gpudrivers.taro.api32
|
||||
ro.opengles.version=196610
|
||||
af.fast_track_multiplier=1
|
||||
ro.audio.flinger_standbytime_ms=2000
|
||||
vendor.audio_hal.period_size=192
|
||||
vendor.audio.ull_record_period_multiplier=2
|
||||
persist.vendor.audio.ambisonic.capture=false
|
||||
persist.vendor.audio.ambisonic.auto.profile=false
|
||||
persist.vendor.audio.apptype.multirec.enabled=false
|
||||
ro.vendor.audio.sdk.fluencetype=none
|
||||
persist.vendor.audio.fluence.voicecall=true
|
||||
persist.vendor.audio.fluence.voicerec=false
|
||||
persist.vendor.audio.fluence.speaker=true
|
||||
persist.vendor.audio.fluence.tmic.enabled=false
|
||||
ro.qc.sdk.audio.ssr=false
|
||||
ro.qc.sdk.audio.fluencetype=none
|
||||
persist.audio.fluence.voicecall=true
|
||||
persist.audio.fluence.voicerec=false
|
||||
persist.audio.fluence.speaker=true
|
||||
persist.vendor.audio.spv3.enable=true
|
||||
persist.vendor.audio.avs.afe_api_version=2
|
||||
vendor.audio.tunnel.encode=false
|
||||
persist.vendor.audio.ras.enabled=false
|
||||
vendor.audio.offload.buffer.size.kb=32
|
||||
audio.offload.video=true
|
||||
audio.deep_buffer.media=true
|
||||
vendor.voice.path.for.pcm.voip=true
|
||||
vendor.audio.offload.multiaac.enable=true
|
||||
vendor.audio.dolby.ds2.enabled=false
|
||||
vendor.audio.dolby.ds2.hardbypass=false
|
||||
vendor.audio.offload.multiple.enabled=false
|
||||
vendor.audio.offload.passthrough=false
|
||||
ro.vendor.audio.sdk.ssr=false
|
||||
vendor.audio.offload.gapless.enabled=true
|
||||
vendor.audio.safx.pbe.enabled=false
|
||||
vendor.audio.parser.ip.buffer.size=262144
|
||||
vendor.audio.flac.sw.decoder.24bit=true
|
||||
vendor.audio.hal.boot.timeout.ms=20000
|
||||
persist.vendor.bt.a2dp_offload_cap=sbc-aptx-aptxtws-aptxhd-aac-ldac-lhdc
|
||||
ro.bluetooth.a2dp_offload.supported=true
|
||||
persist.bluetooth.a2dp_offload.disabled=false
|
||||
persist.bluetooth.a2dp_offload.cap=sbc-aac-aptx-aptxhd-ldac-lhdc
|
||||
vendor.audio.use.sw.alac.decoder=true
|
||||
vendor.audio.use.sw.ape.decoder=true
|
||||
vendor.audio.use.sw.mpegh.decoder=true
|
||||
vendor.audio.hw.aac.encoder=false
|
||||
audio.sys.noisy.broadcast.delay=600
|
||||
audio.sys.offload.pstimeout.secs=3
|
||||
ro.af.client_heap_size_kbyte=7168
|
||||
vendor.audio_hal.in_period_size=144
|
||||
vendor.audio_hal.period_multiplier=3
|
||||
vendor.audio.adm.buffering.ms=2
|
||||
vendor.audio.volume.headset.gain.depcal=true
|
||||
persist.audio.fluence.voicecomm=true
|
||||
vendor.audio.c2.preferred=true
|
||||
debug.c2.use_dmabufheaps=1
|
||||
vendor.qc2audio.suspend.enabled=true
|
||||
vendor.qc2audio.per_frame.flac.dec.enabled=true
|
||||
debug.stagefright.omx_default_rank=0
|
||||
vendor.audio.hal.output.suspend.supported=true
|
||||
aaudio.mmap_policy=1
|
||||
aaudio.mmap_exclusive_policy=2
|
||||
aaudio.hw_burst_min_usec=2000
|
||||
vendor.audio.enable.mirrorlink=false
|
||||
persist.vendor.audio.voicecall.speaker.stereo=true
|
||||
persist.vendor.bt.aac_frm_ctl.enabled=true
|
||||
persist.vendor.bt.aac_vbr_frm_ctl.enabled=true
|
||||
persist.vendor.audio.ha_proxy.enabled=true
|
||||
vendor.audio.feature.a2dp_offload.enable=true
|
||||
vendor.audio.feature.afe_proxy.enable=true
|
||||
vendor.audio.feature.anc_headset.enable=false
|
||||
vendor.audio.feature.battery_listener.enable=true
|
||||
vendor.audio.feature.compr_cap.enable=false
|
||||
vendor.audio.feature.compress_in.enable=true
|
||||
vendor.audio.feature.compress_meta_data.enable=true
|
||||
vendor.audio.feature.compr_voip.enable=false
|
||||
vendor.audio.feature.concurrent_capture.enable=true
|
||||
vendor.audio.feature.custom_stereo.enable=true
|
||||
vendor.audio.feature.display_port.enable=true
|
||||
vendor.audio.feature.dsm_feedback.enable=false
|
||||
vendor.audio.feature.dynamic_ecns.enable=true
|
||||
vendor.audio.feature.ext_hw_plugin.enable=false
|
||||
vendor.audio.feature.external_dsp.enable=false
|
||||
vendor.audio.feature.external_speaker.enable=false
|
||||
vendor.audio.feature.external_speaker_tfa.enable=false
|
||||
vendor.audio.feature.fluence.enable=true
|
||||
vendor.audio.feature.fm.enable=true
|
||||
vendor.audio.feature.hdmi_edid.enable=true
|
||||
vendor.audio.feature.hdmi_passthrough.enable=true
|
||||
vendor.audio.feature.hfp.enable=true
|
||||
vendor.audio.feature.hifi_audio.enable=false
|
||||
vendor.audio.feature.hwdep_cal.enable=false
|
||||
vendor.audio.feature.incall_music.enable=true
|
||||
vendor.audio.feature.multi_voice_session.enable=true
|
||||
vendor.audio.feature.keep_alive.enable=true
|
||||
vendor.audio.feature.kpi_optimize.enable=true
|
||||
vendor.audio.feature.maxx_audio.enable=false
|
||||
vendor.audio.feature.ras.enable=true
|
||||
vendor.audio.feature.record_play_concurency.enable=false
|
||||
vendor.audio.feature.src_trkn.enable=true
|
||||
vendor.audio.feature.spkr_prot.enable=true
|
||||
vendor.audio.feature.ssrec.enable=true
|
||||
vendor.audio.feature.usb_offload.enable=true
|
||||
vendor.audio.feature.usb_offload_burst_mode.enable=true
|
||||
vendor.audio.feature.usb_offload_sidetone_volume.enable=false
|
||||
vendor.audio.feature.deepbuffer_as_primary.enable=false
|
||||
vendor.audio.feature.vbat.enable=true
|
||||
vendor.audio.feature.wsa.enable=false
|
||||
vendor.audio.feature.audiozoom.enable=false
|
||||
vendor.audio.feature.snd_mon.enable=true
|
||||
vendor.audio.feature.dmabuf.cma.memory.enable=true
|
||||
vendor.audio.hdr.record.enable=false
|
||||
ro.audio.monitorRotation=true
|
||||
ro.vendor.audio.spk.stereo=true
|
||||
ro.vendor.audio.voice.change.support=true
|
||||
ro.vendor.audio.voice.change.youme.support=true
|
||||
ro.vendor.audio.voice.change.version=2
|
||||
ro.vendor.audio.sos=true
|
||||
ro.vendor.audio.multiroute=true
|
||||
ro.vendor.audio.game.mode=true
|
||||
ro.vendor.audio.policy.engine.odm=true
|
||||
ro.vendor.audio.aiasst.support=true
|
||||
persist.audio.button_jack.profile=volume
|
||||
persist.audio.button_jack.switch=0
|
||||
ro.config.media_vol_steps=150
|
||||
ro.config.media_vol_default=100
|
||||
ro.config.vc_call_vol_steps=11
|
||||
ro.config.alarm_vol_steps=15
|
||||
ro.config.system_vol_steps=15
|
||||
vendor.audio.lowpower=true
|
||||
vendor.audio.spkcal.copy.inhal=true
|
||||
ro.vendor.audio.ring.filter=true
|
||||
ro.vendor.dolby.dax.version=DAX3_3.6.1.6_r1
|
||||
ro.vendor.audio.dolby.dax.support=true
|
||||
persist.vendor.audio.misound.disable=true
|
||||
ro.vendor.audio.dolby.surround.enable=true
|
||||
persist.vendor.audio.auto.scenario=true
|
||||
ro.vendor.audio.miui.karaoke.show=false
|
||||
ro.vendor.audio.miui.karaoke.tencent.show=false
|
||||
ro.vendor.audio.feature.fade=true
|
||||
ro.vendor.audio.extendtonecallendedlength=true
|
||||
ro.vendor.audio.notify5Point1InUse=true
|
||||
persist.vendor.qcom.bluetooth.a2dp_offload_cap=sbc-aptx-aptxtws-aptxhd-aac-ldac-aptxadaptiver2
|
||||
persist.vendor.qcom.bluetooth.aac_frm_ctl.enabled=true
|
||||
persist.vendor.qcom.bluetooth.twsp_state.enabled=false
|
||||
persist.vendor.qcom.bluetooth.a2dp_mcast_test.enabled=false
|
||||
persist.vendor.qcom.bluetooth.scram.enabled=false
|
||||
persist.vendor.qcom.bluetooth.aac_vbr_ctl.enabled=true
|
||||
persist.vendor.qcom.bluetooth.aptxadaptiver2_1_support=true
|
||||
persist.sys.fflag.override.settings_bluetooth_hearing_aid=true
|
||||
ro.vendor.bluetooth.csip_qti=true
|
||||
bluetooth.profile.asha.central.enabled=true
|
||||
ro.camera.enableCamera1MaxZsl=1
|
||||
drm.service.enabled=true
|
||||
persist.demo.hdmirotationlock=false
|
||||
persist.sys.sf.color_saturation=1.0
|
||||
persist.sys.sf.color_mode=0
|
||||
debug.sf.hw=0
|
||||
debug.egl.hw=0
|
||||
debug.sf.latch_unsignaled=1
|
||||
debug.sf.auto_latch_unsignaled=0
|
||||
debug.sf.high_fps_late_app_phase_offset_ns=1000000
|
||||
debug.mdpcomp.logs=0
|
||||
vendor.gralloc.disable_ubwc=0
|
||||
vendor.display.disable_scaler=0
|
||||
vendor.display.disable_excl_rect=0
|
||||
vendor.display.disable_excl_rect_partial_fb=1
|
||||
vendor.display.comp_mask=0
|
||||
vendor.display.enable_optimize_refresh=0
|
||||
vendor.display.use_smooth_motion=0
|
||||
debug.sf.high_fps_late_sf_phase_offset_ns=-2000000
|
||||
debug.sf.high_fps_early_phase_offset_ns=-4000000
|
||||
debug.sf.high_fps_early_gl_phase_offset_ns=-2000000
|
||||
debug.sf.disable_client_composition_cache=1
|
||||
debug.sf.enable_gl_backpressure=1
|
||||
debug.sf.enable_advanced_sf_phase_offset=1
|
||||
debug.sf.predict_hwc_composition_strategy=0
|
||||
debug.sf.treat_170m_as_sRGB=1
|
||||
vendor.display.enable_async_vds_creation=1
|
||||
vendor.display.disable_sdr_dimming=1
|
||||
vendor.display.enable_rc_support=1
|
||||
vendor.display.disable_sdr_histogram=1
|
||||
vendor.display.enable_hdr10_gpu_target=1
|
||||
vendor.display.enable_display_extensions=1
|
||||
vendor.display.disable_offline_rotator=1
|
||||
vendor.display.enable_async_powermode=0
|
||||
debug.sf.enable_hwc_vds=0
|
||||
vendor.display.vds_allow_hwc=true
|
||||
vendor.display.enable_dpps_dynamic_fps=1
|
||||
vendor.display.disable_hw_recovery_dump=1
|
||||
vendor.display.enable_early_wakeup=1
|
||||
persist.vendor.dpm.vndr.idletimer.mode=default
|
||||
persist.vendor.dpm.vndr.halservice.enable=1
|
||||
persist.vendor.dpm.vndr.feature=1
|
||||
persist.vendor.rcs.singlereg.feature=1
|
||||
ro.hardware.keystore_desede=true
|
||||
vendor.gatekeeper.disable_spu=true
|
||||
debug.stagefright.c2inputsurface=-1
|
||||
ro.vendor.extension_library=libqti-perfd-client.so
|
||||
ro.vendor.perf-hal.ver=2.3
|
||||
ro.vendor.perf.scroll_opt=1
|
||||
ro.vendor.perf.scroll_opt.heavy_app=2
|
||||
persist.vendor.radio.apm_sim_not_pwdn=1
|
||||
persist.vendor.radio.sib16_support=1
|
||||
persist.vendor.radio.custom_ecc=1
|
||||
persist.vendor.radio.procedure_bytes=SKIP
|
||||
vendor.usb.use_gadget_hal=0
|
||||
vendor.usb.rndis.func.name=gsi
|
||||
vendor.usb.rmnet.func.name=gsi
|
||||
vendor.usb.rmnet.inst.name=rmnet
|
||||
vendor.usb.dpl.inst.name=dpl
|
||||
vendor.usb.qdss.inst.name=qdss_sw
|
||||
vendor.usb.diag.func.name=ffs
|
||||
vendor.usb.use_ffs_mtp=1
|
||||
sys.usb.mtp.batchcancel=1
|
||||
debug.stagefright.ccodec=4
|
||||
ro.vendor.touchfeature.type=115
|
||||
ro.hardware.camera=xiaomi
|
||||
persist.radio.multisim.config=dsds
|
||||
ro.hardware.wlan.vendor=qcom
|
||||
ro.hardware.wlan.chip=qca6490
|
||||
ro.hardware.wlan.mimo=1
|
||||
ro.hardware.wlan.dbs=2
|
||||
ro.vendor.displayfeature.dump=true
|
||||
ro.surface_flinger.enable_frame_rate_override=false
|
||||
ro.vendor.colorpick_adjust=true
|
||||
ro.vendor.all_modes.colorpick_adjust=true
|
||||
ro.vendor.display.type=oled
|
||||
ro.vendor.xiaomi.bl.poll=true
|
||||
ro.vendor.whitepoint_calibration_enable=false
|
||||
ro.vendor.histogram.enable=true
|
||||
ro.vendor.cabc.enable=fasle
|
||||
ro.vendor.bcbc.enable=true
|
||||
ro.vendor.dfps.enable=false
|
||||
ro.vendor.fps.switch.default=true
|
||||
ro.vendor.gcp.enable=1
|
||||
ro.vendor.display.default_fps=60
|
||||
ro.vendor.sre.enable=true
|
||||
ro.vendor.localhbm.enable=true
|
||||
ro.vendor.video_box.version=2
|
||||
ro.vendor.soft_backlight.enable=true
|
||||
ro.vendor.hbm_backlight.enable=true
|
||||
ro.vendor.display.nature_mode.enable=true
|
||||
ro.vendor.display.ai_disp.enable=true
|
||||
ro.vendor.standard.video.enable=true
|
||||
vendor.display.use_layer_ext=0
|
||||
ro.vendor.display.mi_calib.enable=true
|
||||
ro.vendor.thermal.dimming.enable=true
|
||||
sys.displayfeature_hidl=true
|
||||
sys.displayfeature.entry.enable=true
|
||||
persist.vendor.dc_backlight.enable=false
|
||||
persist.vendor.dc_backlight.threshold=0
|
||||
vendor.display.enable_fb_scaling=1
|
||||
ro.vendor.display.touch.idle.enable=true
|
||||
ro.vendor.display.idle_default_fps=60
|
||||
ro.vendor.fps.switch.thermal=true
|
||||
vendor.display.disable_3d_adaptive_tm=0
|
||||
persist.vendor.disable_idle_fps=true
|
||||
persist.vendor.disable_idle_fps.threshold=1350
|
||||
ro.vendor.display.dolbyvision.support=true
|
||||
ro.vendor.display.papercontrast.opt=true
|
||||
vendor.display.idle_time=0
|
||||
vendor.display.disable_dynamic_sf_idle=1
|
||||
ro.vendor.display.hwc_thermal_dimming=false
|
||||
ro.vendor.display.framework_thermal_dimming=true
|
||||
vendor.display.enable_fp_monitor=1
|
||||
vendor.display.enable_hist_intr=1
|
||||
ro.vendor.mi_sf.ultimate.perf.support=true
|
||||
ro.vendor.mi_sf.skip_90hz_forVrrVote=true
|
||||
ro.vendor.mi_sf.is_side_fingerprint=true
|
||||
vendor.display.disable_stc_dimming=1
|
||||
ro.vendor.display.video_or_camera_fps.support=true
|
||||
ro.vendor.display.set_fps_stat_timer_ms=1000
|
||||
debug.sf.set_idle_timer_ms=1100
|
||||
persist.sys.miui_resolution=1080,2400,420
|
||||
ro.hardware.fp.sideCap=true
|
||||
af.fast_track_multiplier=1
|
||||
ro.audio.flinger_standbytime_ms=2000
|
||||
vendor.audio_hal.period_size=192
|
||||
vendor.audio.ull_record_period_multiplier=2
|
||||
persist.vendor.audio.ambisonic.capture=false
|
||||
persist.vendor.audio.ambisonic.auto.profile=false
|
||||
persist.vendor.audio.apptype.multirec.enabled=false
|
||||
ro.vendor.audio.sdk.fluencetype=none
|
||||
persist.vendor.audio.fluence.voicecall=true
|
||||
persist.vendor.audio.fluence.voicerec=false
|
||||
persist.vendor.audio.fluence.speaker=true
|
||||
persist.vendor.audio.fluence.tmic.enabled=false
|
||||
ro.qc.sdk.audio.ssr=false
|
||||
ro.qc.sdk.audio.fluencetype=none
|
||||
persist.audio.fluence.voicecall=true
|
||||
persist.audio.fluence.voicerec=false
|
||||
persist.audio.fluence.speaker=true
|
||||
persist.vendor.audio.spv3.enable=true
|
||||
persist.vendor.audio.avs.afe_api_version=2
|
||||
vendor.audio.tunnel.encode=false
|
||||
persist.vendor.audio.ras.enabled=false
|
||||
vendor.audio.offload.buffer.size.kb=32
|
||||
audio.offload.video=true
|
||||
audio.deep_buffer.media=true
|
||||
vendor.voice.path.for.pcm.voip=true
|
||||
vendor.audio.offload.multiaac.enable=true
|
||||
vendor.audio.dolby.ds2.enabled=false
|
||||
vendor.audio.dolby.ds2.hardbypass=false
|
||||
vendor.audio.offload.multiple.enabled=false
|
||||
vendor.audio.offload.passthrough=false
|
||||
ro.vendor.audio.sdk.ssr=false
|
||||
vendor.audio.offload.gapless.enabled=true
|
||||
vendor.audio.safx.pbe.enabled=false
|
||||
vendor.audio.parser.ip.buffer.size=262144
|
||||
vendor.audio.flac.sw.decoder.24bit=true
|
||||
vendor.audio.hal.boot.timeout.ms=20000
|
||||
persist.vendor.bt.a2dp_offload_cap=sbc-aptx-aptxtws-aptxhd-aac-ldac-lhdc
|
||||
ro.bluetooth.a2dp_offload.supported=true
|
||||
persist.bluetooth.a2dp_offload.disabled=false
|
||||
persist.bluetooth.a2dp_offload.cap=sbc-aac-aptx-aptxhd-ldac-lhdc
|
||||
vendor.audio.use.sw.alac.decoder=true
|
||||
vendor.audio.use.sw.ape.decoder=true
|
||||
vendor.audio.use.sw.mpegh.decoder=true
|
||||
vendor.audio.hw.aac.encoder=false
|
||||
audio.sys.noisy.broadcast.delay=600
|
||||
audio.sys.offload.pstimeout.secs=3
|
||||
ro.af.client_heap_size_kbyte=7168
|
||||
vendor.audio_hal.in_period_size=144
|
||||
vendor.audio_hal.period_multiplier=3
|
||||
vendor.audio.adm.buffering.ms=2
|
||||
vendor.audio.volume.headset.gain.depcal=true
|
||||
persist.audio.fluence.voicecomm=true
|
||||
vendor.audio.c2.preferred=true
|
||||
debug.c2.use_dmabufheaps=1
|
||||
vendor.qc2audio.suspend.enabled=true
|
||||
vendor.qc2audio.per_frame.flac.dec.enabled=true
|
||||
debug.stagefright.omx_default_rank=0
|
||||
vendor.audio.hal.output.suspend.supported=true
|
||||
aaudio.mmap_policy=1
|
||||
aaudio.mmap_exclusive_policy=2
|
||||
aaudio.hw_burst_min_usec=2000
|
||||
vendor.audio.enable.mirrorlink=false
|
||||
persist.vendor.audio.voicecall.speaker.stereo=true
|
||||
persist.vendor.bt.aac_frm_ctl.enabled=true
|
||||
persist.vendor.bt.aac_vbr_frm_ctl.enabled=true
|
||||
persist.vendor.audio.ha_proxy.enabled=true
|
||||
vendor.audio.feature.a2dp_offload.enable=true
|
||||
vendor.audio.feature.afe_proxy.enable=true
|
||||
vendor.audio.feature.anc_headset.enable=false
|
||||
vendor.audio.feature.battery_listener.enable=true
|
||||
vendor.audio.feature.compr_cap.enable=false
|
||||
vendor.audio.feature.compress_in.enable=true
|
||||
vendor.audio.feature.compress_meta_data.enable=true
|
||||
vendor.audio.feature.compr_voip.enable=false
|
||||
vendor.audio.feature.concurrent_capture.enable=true
|
||||
vendor.audio.feature.custom_stereo.enable=true
|
||||
vendor.audio.feature.display_port.enable=true
|
||||
vendor.audio.feature.dsm_feedback.enable=false
|
||||
vendor.audio.feature.dynamic_ecns.enable=true
|
||||
vendor.audio.feature.ext_hw_plugin.enable=false
|
||||
vendor.audio.feature.external_dsp.enable=false
|
||||
vendor.audio.feature.external_speaker.enable=false
|
||||
vendor.audio.feature.external_speaker_tfa.enable=false
|
||||
vendor.audio.feature.fluence.enable=true
|
||||
vendor.audio.feature.fm.enable=true
|
||||
vendor.audio.feature.hdmi_edid.enable=true
|
||||
vendor.audio.feature.hdmi_passthrough.enable=true
|
||||
vendor.audio.feature.hfp.enable=true
|
||||
vendor.audio.feature.hifi_audio.enable=false
|
||||
vendor.audio.feature.hwdep_cal.enable=false
|
||||
vendor.audio.feature.incall_music.enable=true
|
||||
vendor.audio.feature.multi_voice_session.enable=true
|
||||
vendor.audio.feature.keep_alive.enable=true
|
||||
vendor.audio.feature.kpi_optimize.enable=true
|
||||
vendor.audio.feature.maxx_audio.enable=false
|
||||
vendor.audio.feature.ras.enable=true
|
||||
vendor.audio.feature.record_play_concurency.enable=false
|
||||
vendor.audio.feature.src_trkn.enable=true
|
||||
vendor.audio.feature.spkr_prot.enable=true
|
||||
vendor.audio.feature.ssrec.enable=true
|
||||
vendor.audio.feature.usb_offload.enable=true
|
||||
vendor.audio.feature.usb_offload_burst_mode.enable=true
|
||||
vendor.audio.feature.usb_offload_sidetone_volume.enable=false
|
||||
vendor.audio.feature.deepbuffer_as_primary.enable=false
|
||||
vendor.audio.feature.vbat.enable=true
|
||||
vendor.audio.feature.wsa.enable=false
|
||||
vendor.audio.feature.audiozoom.enable=false
|
||||
vendor.audio.feature.snd_mon.enable=true
|
||||
vendor.audio.feature.dmabuf.cma.memory.enable=true
|
||||
vendor.audio.hdr.record.enable=false
|
||||
ro.audio.monitorRotation=true
|
||||
ro.vendor.audio.spk.stereo=true
|
||||
ro.vendor.audio.voice.change.support=true
|
||||
ro.vendor.audio.voice.change.youme.support=true
|
||||
ro.vendor.audio.voice.change.version=2
|
||||
ro.vendor.audio.sos=true
|
||||
ro.vendor.audio.multiroute=true
|
||||
ro.vendor.audio.game.mode=true
|
||||
ro.vendor.audio.policy.engine.odm=true
|
||||
ro.vendor.audio.aiasst.support=true
|
||||
persist.audio.button_jack.profile=volume
|
||||
persist.audio.button_jack.switch=0
|
||||
ro.config.media_vol_steps=150
|
||||
ro.config.media_vol_default=100
|
||||
ro.config.vc_call_vol_steps=11
|
||||
ro.config.alarm_vol_steps=15
|
||||
ro.config.system_vol_steps=15
|
||||
vendor.audio.lowpower=true
|
||||
vendor.audio.spkcal.copy.inhal=true
|
||||
ro.vendor.audio.ring.filter=true
|
||||
ro.vendor.audio.dolby.dax.support=true
|
||||
persist.vendor.audio.misound.disable=true
|
||||
ro.vendor.audio.dolby.surround.enable=true
|
||||
persist.vendor.audio.auto.scenario=true
|
||||
ro.vendor.audio.miui.karaoke.show=false
|
||||
ro.vendor.audio.miui.karaoke.tencent.show=false
|
||||
ro.vendor.audio.feature.fade=true
|
||||
ro.vendor.audio.extendtonecallendedlength=true
|
||||
ro.vendor.audio.notify5Point1InUse=true
|
||||
ro.vendor.audio.us.proximity=false
|
||||
vendor.audio.ultrasound.stoplatency=60
|
||||
vendor.audio.ultrasound.usync=1000
|
||||
ro.vendor.audio.soundtrigger=sva
|
||||
ro.vendor.audio.soundtrigger.lowpower=true
|
||||
ro.vendor.audio.soundtrigger.training.level=50
|
||||
ro.vendor.audio.soundtrigger.xanzn.gmm.level=80
|
||||
ro.vendor.audio.soundtrigger.xanzn.gmm.user.level=80
|
||||
ro.vendor.audio.soundtrigger.xanzn.cnn.level=158
|
||||
ro.vendor.audio.soundtrigger.xanzn.vop.level=41
|
||||
ro.vendor.audio.soundtrigger.xatx.gmm.level=54
|
||||
ro.vendor.audio.soundtrigger.xatx.gmm.user.level=54
|
||||
ro.vendor.audio.soundtrigger.xatx.cnn.level=95
|
||||
ro.vendor.audio.soundtrigger.xatx.vop.level=0
|
||||
ro.vendor.audio.soundtrigger.appdefine.gmm.level=65
|
||||
ro.vendor.audio.soundtrigger.appdefine.gmm.user.level=55
|
||||
ro.vendor.audio.soundtrigger.appdefine.cnn.level=45
|
||||
ro.vendor.audio.soundtrigger.appdefine.vop.level=10
|
||||
ro.vendor.audio.soundtrigger.snr=16
|
||||
persist.vendor.audio.spf_restart=true
|
||||
ro.vendor.audio.soundtrigger.xiaomievent=1
|
||||
ro.vendor.audio.soundtrigger.pangaea=1
|
||||
ro.vendor.audio.soundtrigger.sva-6.0=1
|
||||
ro.vendor.audio.soundfx.type=mi
|
||||
ro.vendor.audio.sfx.earadj=true
|
||||
ro.vendor.audio.sfx.scenario=true
|
||||
ro.vendor.audio.soundfx.usb=true
|
||||
ro.vendor.audio.surround.headphone.only=true
|
||||
ro.vendor.audio.shortvideo.index=65
|
||||
ro.vendor.audio.camera.loopback.support=false
|
||||
ro.vendor.audio.gain.support=true
|
||||
ro.vendor.audio.dolby.vision.support=true
|
||||
ro.vendor.audio.feature.spatial=7
|
||||
ro.vendor.audio.multichannel.5point1.headset=true
|
||||
ro.vendor.audio.multi.channel=true
|
||||
ro.vendor.audio.videobox.switch=true
|
||||
ro.vendor.audio.multichannel.5point1=true
|
||||
ro.vendor.audio.misound.bluetooth.enable=true
|
||||
ro.vendor.audio.support.sound.id=true
|
||||
ro.vendor.audio.dolby.eq.half=true
|
||||
ro.vendor.audio.ce.compensation.need=true
|
||||
ro.vendor.audio.ce.compensation.value=5
|
||||
ro.vendor.se.type=HCE,UICC
|
||||
ro.vendor.se.chip.model=SN110T
|
||||
ro.vendor.nfc.repair=1
|
||||
ro.vendor.nfc.disable.i2c=true
|
||||
ro.vendor.nfc.dispatch_optim=1
|
||||
ro.vendor.nfc.debounce_field_on=1
|
||||
ro.vendor.nfc.field_on_debounce=200
|
||||
ro.rom.zone=2
|
||||
ro.miui.support.enable_new_factory_reset=1
|
||||
ro.build.recovery.version.release=15
|
||||
sys.haptic.motor=linear
|
||||
sys.haptic.infinitelevel=true
|
||||
sys.haptic.dynamiceffect=true
|
||||
sys.haptic.dynamiceffect.richtap=true
|
||||
sys.haptic.down.weak=0
|
||||
sys.haptic.down.normal=2
|
||||
sys.haptic.down.strong=5
|
||||
sys.haptic.down=5,2
|
||||
sys.haptic.tap.normal=3,2
|
||||
sys.haptic.tap.light=5,2
|
||||
sys.haptic.flick=5,2
|
||||
sys.haptic.flick.light=7,2
|
||||
sys.haptic.switch=9,2
|
||||
sys.haptic.mesh.heavy=8,2
|
||||
sys.haptic.mesh.normal=5,2
|
||||
sys.haptic.mesh.light=5,1
|
||||
sys.haptic.long.press=0,1
|
||||
sys.haptic.popup.normal=6,2
|
||||
sys.haptic.popup.light=6,1
|
||||
sys.haptic.pickup=2,2
|
||||
sys.haptic.scroll.edge=7,0
|
||||
sys.haptic.trigger.drawer=2,0
|
||||
sys.haptic.hold=4,0
|
||||
sys.haptic.runin=13
|
||||
sys.haptic.intensityforkeyboard=true
|
||||
persist.sys.mms.compact_enable=true
|
||||
persist.sys.spc.enabled=true
|
||||
persist.sys.use_mi_new_strategy=true
|
||||
persist.sys.mmms.switch=true
|
||||
persist.sys.mmms.reclaim_switch=0
|
||||
ro.sf.lcd_density=440
|
||||
persist.sys.miui.camera.version=2.7
|
||||
persist.sys.miui.camera.boost.killAdj_threshold=100
|
||||
debug.config.media.video.dolby_vision_suports=true
|
||||
# end of file
|
||||
|
@ -1709,20 +1709,10 @@ vendor/bin/slim_daemon
|
||||
vendor/bin/xtra-daemon
|
||||
vendor/bin/xtwifi-client
|
||||
vendor/bin/xtwifi-inet-agent
|
||||
vendor/etc/init/android.hardware.gnss-aidl-service-qti.rc
|
||||
vendor/etc/init/init.qdmastats.rc
|
||||
vendor/etc/init/loc-launcher.rc
|
||||
vendor/etc/seccomp_policy/gnss@2.0-base.policy
|
||||
vendor/etc/seccomp_policy/gnss@2.0-xtra-daemon.policy
|
||||
vendor/etc/seccomp_policy/gnss@2.0-xtwifi-client.policy
|
||||
vendor/etc/vintf/manifest/android.hardware.gnss-aidl-service-qti.xml
|
||||
vendor/etc/vintf/manifest/android.hardware.gnss@2.1-service-qti.xml
|
||||
vendor/etc/vintf/manifest/vendor.qti.gnss-service.xml
|
||||
vendor/etc/apdr.conf
|
||||
vendor/etc/batching.conf
|
||||
vendor/etc/izat.conf
|
||||
vendor/etc/lowi.conf
|
||||
vendor/etc/sap.conf
|
||||
vendor/etc/sec_config
|
||||
vendor/etc/xtwifi.conf
|
||||
vendor/lib/hw/android.hardware.gnss-aidl-impl-qti.so
|
||||
@ -1822,11 +1812,6 @@ vendor/lib64/vendor.qti.gnss-V3-ndk_platform.so
|
||||
vendor/lib64/vendor.qti.gnss-service.so
|
||||
|
||||
# GNSS configs
|
||||
vendor/etc/apdr.conf
|
||||
vendor/etc/gps.conf
|
||||
vendor/etc/izat.conf
|
||||
vendor/etc/lowi.conf
|
||||
vendor/etc/sap.conf
|
||||
vendor/etc/xtwifi.conf
|
||||
|
||||
# Health
|
||||
@ -1849,8 +1834,6 @@ vendor/lib64/libqtiidentitycredential.so
|
||||
# IPA
|
||||
vendor/bin/ipacm-diag
|
||||
vendor/etc/init/ipacm-diag.rc
|
||||
vendor/lib64/libnetfilter_conntrack.so
|
||||
vendor/lib64/libnfnetlink.so
|
||||
|
||||
# IPA firmware
|
||||
vendor/etc/init/ipa_fws.rc
|
||||
@ -3033,7 +3016,6 @@ vendor/etc/init/trusteduilistener.rc
|
||||
vendor/bin/hw/vendor.xiaomi.hardware.vibratorfeature.service
|
||||
vendor/etc/init/vendor.xiaomi.hardware.vibratorfeature.service.rc
|
||||
vendor/etc/init/vendor.xiaomi.hardware.vibratorfeature@1.0-service.rc
|
||||
vendor/etc/vintf/manifest/vendor.xiaomi.hardware.vibratorfeature.service.xml
|
||||
vendor/lib/hw/vibrator.default.so
|
||||
vendor/lib64/hw/vibrator.default.so
|
||||
vendor/lib64/vendor.hardware.vibratorfeature.IVibratorExt-V1-ndk_platform.so
|
||||
@ -3293,7 +3275,6 @@ vendor/etc/wifi/icm.conf
|
||||
vendor/etc/wifi/p2p_supplicant_overlay.conf
|
||||
vendor/etc/wifi/passpointProfile.conf
|
||||
vendor/etc/wifi/vendor_cmd.xml
|
||||
vendor/etc/wifi/wpa_supplicant.conf
|
||||
vendor/etc/wifi/wpa_supplicant_overlay.conf
|
||||
|
||||
# WiFi Display
|
||||
|
1
sensors/hals.conf
Normal file
1
sensors/hals.conf
Normal file
@ -0,0 +1 @@
|
||||
sensors.xiaomi.v2.so
|
0
setup-makefiles.py
Normal file → Executable file
0
setup-makefiles.py
Normal file → Executable file
0
sort-blobs-list.sh
Normal file → Executable file
0
sort-blobs-list.sh
Normal file → Executable file
11
wlan/p2p_supplicant_overlay.conf
Normal file
11
wlan/p2p_supplicant_overlay.conf
Normal file
@ -0,0 +1,11 @@
|
||||
disable_scan_offload=1
|
||||
p2p_no_group_iface=1
|
||||
persistent_reconnect=1
|
||||
bss_max_count=400
|
||||
p2p_go_ht40=1
|
||||
p2p_go_vht=1
|
||||
p2p_go_he=1
|
||||
p2p_chan_list_dfs_disable=0
|
||||
p2p_chan_list_only_sta_dfs_enable=0
|
||||
p2p_pref_list_dfs_disable=0
|
||||
p2p_go_dfs_disable=0
|
236
wlan/qca6490/WCNSS_qcom_cfg.ini
Normal file
236
wlan/qca6490/WCNSS_qcom_cfg.ini
Normal file
@ -0,0 +1,236 @@
|
||||
# This file allows user to override the factory
|
||||
# defaults for the WLAN Driver
|
||||
|
||||
gDot11Mode=0
|
||||
InfraUapsdVoSrvIntv=0
|
||||
InfraUapsdViSrvIntv=0
|
||||
InfraUapsdBeSrvIntv=0
|
||||
InfraUapsdBkSrvIntv=0
|
||||
gAddTSWhenACMIsOff=1
|
||||
gEnableApOBSSProt=1
|
||||
RTSThreshold=1048576
|
||||
g11dSupportEnabled=0
|
||||
gEnableDFSMasterCap=1
|
||||
gNeighborScanTimerPeriod=200
|
||||
gNeighborLookupThreshold=76
|
||||
FastRoamEnabled=1
|
||||
RoamRssiDiff=5
|
||||
gChannelBondingMode5GHz=1
|
||||
gAllowDFSChannelRoam=1
|
||||
gSetTxChainmask1x1=1
|
||||
gSetRxChainmask1x1=1
|
||||
gActiveMaxChannelTime=40
|
||||
gWlanMccToSccSwitchMode = 3
|
||||
gEnableTXSTBC=1
|
||||
gEnableTxBFeeSAP=1
|
||||
gEnableTxBFin20MHz=1
|
||||
gEnableTxSUBeamformer=1
|
||||
gRrmEnable=1
|
||||
gVhtAmpduLenExponent=7
|
||||
gVhtMpduLen=2
|
||||
isP2pDeviceAddrAdministrated=0
|
||||
gEnableVhtFor24GHzBand=1
|
||||
gEnableLpassSupport=1
|
||||
gCountryCodePriority=1
|
||||
gEnableMuBformee=1
|
||||
gTDLSExternalControl=1
|
||||
gEnableTDLSOffChannel=1
|
||||
|
||||
################ Datapath feature set Begin ################
|
||||
gVhtRxMCS=2
|
||||
gVhtTxMCS=2
|
||||
gEnable2x2=1
|
||||
gVhtRxMCS2x2=2
|
||||
gVhtTxMCS2x2=2
|
||||
gIPAConfig=0
|
||||
gIPADescSize=800
|
||||
dp_tx_ring_size=5120
|
||||
dp_tx_compl_ring_size=8192
|
||||
dp_tx_desc=6144
|
||||
dp_tx_ext_desc=6144
|
||||
rx_mode=20
|
||||
gEnableFastPath=1
|
||||
TSOEnable=1
|
||||
GROEnable=3
|
||||
ght_mpdu_density=5
|
||||
gEnableFlowSteering=1
|
||||
maxMSDUsPerRxInd=8
|
||||
#gEnableNUDTracking=1
|
||||
dp_rx_fisa_enable=1
|
||||
dp_rx_flow_search_table_size=128
|
||||
rpsRxQueueCpuMapList=f3
|
||||
legacy_mode_csum_disable=1
|
||||
icmp_req_to_fw_mark_interval=200
|
||||
gBusBandwidthVeryHighThreshold=10000
|
||||
|
||||
################ Datapath feature set End ################
|
||||
|
||||
adaptive_dwell_mode_enabled=1
|
||||
hostscan_adaptive_dwell_mode=1
|
||||
enable_rtt_mac_randomization=1
|
||||
gEnableSNRMonitoring=1
|
||||
gWmiCreditCount=1
|
||||
acs_with_more_param=1
|
||||
AutoChannelSelectWeight=0x00fafafa
|
||||
bcast_twt=1
|
||||
gRuntimePM=2
|
||||
gRuntimePMDelay=500
|
||||
gEnablePacketLog=0
|
||||
oem_6g_support_disable=1
|
||||
|
||||
#active_max_channel_time_2g=80
|
||||
#gActiveMaxChannelTime=60
|
||||
active_max_channel_time_6g=60
|
||||
passive_max_channel_time_6g=60
|
||||
|
||||
#####################################Xiaomi ADD: START
|
||||
|
||||
# Channel Rrequency Response
|
||||
# Bitmap denoting the PDEVs for which CFR needs to be disabled
|
||||
cfr_disable=7
|
||||
|
||||
# configure MAC address from the cfg file wlan_mac.bin
|
||||
read_mac_addr_from_mac_file=1
|
||||
|
||||
# Set 2.4g channel scan time to 40
|
||||
active_max_channel_time_2g=80
|
||||
gActiveMaxChannelTime=40
|
||||
|
||||
# WLM flags setting for ultralow level, bit9 for BMPS disabled
|
||||
# bit 0: Avoid scan request from HLOS if setting
|
||||
# bit 1: Skip DFS channel SCAN if setting
|
||||
# bit 19/20: 1 to set PCIE in L1SS state(low power mode), 0 to set PCIE in L0 state(active mode)
|
||||
wlm_latency_flags_ultralow=0x180003
|
||||
|
||||
#APF: Android Packet Filter
|
||||
gActiveMcBcBpfMode=1
|
||||
|
||||
# Assoc failure timeout value
|
||||
# Code default is 2000
|
||||
assoc_failure_timeout=5000
|
||||
|
||||
# Enable NUD tracking feature
|
||||
# 0 - disable(default),1 - trigger disconnect, 2 - trigger roaming,
|
||||
# 3 - trigger roaming, but if roam fails, disconnection
|
||||
gEnableNUDTracking=3
|
||||
|
||||
# Enable ETSI SRD channels by Xiaomi. Qualcom default value is disable
|
||||
# * BIT 0:- Enable/Disable SRD channels for SAP.
|
||||
# * BIT 1:- Enable/Disable SRD channels for P2P-GO.
|
||||
# * BIT 2:- Enable/Disable SRD channels for NAN.
|
||||
# Code default value is 6.
|
||||
etsi13_srd_chan_in_master_mode=7
|
||||
|
||||
#####Roaming
|
||||
# Sets RSSI preference for 5GHz over 2.4GHz AP
|
||||
gSelect5GHzMargin=5
|
||||
|
||||
# Candidate AP minimum RSSI for beacon miss roam trigger
|
||||
# Code default is -70
|
||||
candidate_min_rssi_for_beacon_miss=-83
|
||||
|
||||
# Dense traffic threshold in kBps
|
||||
# Code default is 400
|
||||
gtraffic_threshold=50
|
||||
|
||||
#enable/disable FT open feature
|
||||
# Code default is 1
|
||||
enable_ftopen=0
|
||||
|
||||
# Stop auto-creating twt session
|
||||
twt_congestion_timeout=0
|
||||
|
||||
#VTS SAR test fail as sar version is not match
|
||||
gEnableSARV1toSARV2=1
|
||||
|
||||
# This ini is used to give higher priority for 5g scc than dbs.
|
||||
# It is bitmap per enum policy_mgr_con_mode.
|
||||
# For example in GO+STA(5G) mode, when TPUT is onfigured as wlan system
|
||||
# preference option, If 5G SCC needs higher priority than dbs, set it as 8.
|
||||
g_prefer_5g_scc_to_dbs=8
|
||||
|
||||
# set modulated DTIM interval
|
||||
gEnableModulatedDTIM=3
|
||||
gMaxLIModulatedDTIM=3
|
||||
|
||||
# Enable modulated DTIM only for System suspend wow.
|
||||
# For RTPM wow, the device will stay in DTIM 1 (non-modulated DTIM).
|
||||
enable_mod_dtim_on_system_suspend=1
|
||||
|
||||
# Reduce the expiry time for avoid list and black list in drv.
|
||||
avoid_list_expiry_time=3
|
||||
black_list_expiry_time=5
|
||||
# Improve threshold to move the Ap from avoid to blacklist
|
||||
bad_bssid_counter_thresh=7
|
||||
|
||||
# Enable SoftAP on indoor channel, but Xiaomi's patch in driver only
|
||||
# allow this when STA was connected on the same indoor channel.
|
||||
gindoor_channel_support=1
|
||||
|
||||
#Enable max link speed
|
||||
gReportMaxLinkSpeed=2
|
||||
|
||||
#perform RX pending check before entering WoW mode
|
||||
wow_check_rx_pending_enable=1
|
||||
|
||||
#Disable vht mcs 10, 11 support
|
||||
enable_vhtmcs_10_11_support=0
|
||||
|
||||
#Enable bus suspend in SAP mode
|
||||
enable_bus_suspend_in_sap_mode=1
|
||||
|
||||
#Enable bus suspend in P2PGO mode
|
||||
enable_bus_suspend_in_go_mode=1
|
||||
|
||||
# Set Max peers connected for SAP to 20
|
||||
gSoftApMaxPeers=20
|
||||
|
||||
# Override 11n/11ac to 11ac 80M for P2P GO
|
||||
gGO11ACOverride=1
|
||||
|
||||
# diable bssid hint priority
|
||||
is_bssid_hint_priority=0
|
||||
|
||||
# Disable triggers of data rssi threshold for roam.
|
||||
# Sometimes have big gap between data rssi and beacon rssi,
|
||||
# this triggers will Interfere and delay the normal roam.
|
||||
roam_data_rssi_threshold_triggers=0
|
||||
|
||||
# disable twt responder
|
||||
twt_responder=0
|
||||
|
||||
# enable Self Recovery
|
||||
gEnableSelfRecovery=1
|
||||
|
||||
#####################################Xiaomi ADD: END
|
||||
|
||||
|
||||
# MIUI:ADD:
|
||||
# Add for optimize download performance in noisy env.
|
||||
|
||||
# used to specify AP OUIs. The station's EDCA should follow
|
||||
# the APs' when connecting to those AP, even if the
|
||||
# gEnableEdcaParams is set.
|
||||
# Huawei OUI:ac:85:3d
|
||||
gActionOUIDisableAggressiveEDCA=ac853d 00 01 0017f2 07 06010103010000 fe 01
|
||||
# Enable edca parameter
|
||||
gEnableEdcaParams=1
|
||||
gEdcaVoCwmin=2
|
||||
gEdcaViCwmin=2
|
||||
gEdcaBkCwmin=2
|
||||
gEdcaBeCwmin=2
|
||||
|
||||
gEdcaVoCwmax=3
|
||||
gEdcaViCwmax=3
|
||||
gEdcaBkCwmax=3
|
||||
gEdcaBeCwmax=3
|
||||
|
||||
gEdcaVoAifs=2
|
||||
gEdcaViAifs=2
|
||||
gEdcaBkAifs=2
|
||||
gEdcaBeAifs=2
|
||||
|
||||
END
|
||||
|
||||
# Note: Configuration parser would not read anything past the END marker
|
||||
|
140
wlan/qca6750/WCNSS_qcom_cfg.ini
Normal file
140
wlan/qca6750/WCNSS_qcom_cfg.ini
Normal file
@ -0,0 +1,140 @@
|
||||
# This file allows user to override the factory
|
||||
# defaults for the WLAN Driver
|
||||
|
||||
gDot11Mode=0
|
||||
InfraUapsdVoSrvIntv=0
|
||||
InfraUapsdViSrvIntv=0
|
||||
InfraUapsdBeSrvIntv=0
|
||||
InfraUapsdBkSrvIntv=0
|
||||
gAddTSWhenACMIsOff=1
|
||||
gEnableApOBSSProt=1
|
||||
RTSThreshold=1048576
|
||||
g11dSupportEnabled=0
|
||||
gEnableDFSMasterCap=1
|
||||
gNeighborScanTimerPeriod=200
|
||||
gNeighborLookupThreshold=76
|
||||
FastRoamEnabled=1
|
||||
RoamRssiDiff=5
|
||||
gChannelBondingMode5GHz=1
|
||||
gAllowDFSChannelRoam=1
|
||||
gSetTxChainmask1x1=1
|
||||
gSetRxChainmask1x1=1
|
||||
gWlanMccToSccSwitchMode = 3
|
||||
gEnableTXSTBC=1
|
||||
gEnableTxBFeeSAP=1
|
||||
gEnableTxBFin20MHz=1
|
||||
gEnableTxSUBeamformer=1
|
||||
gRrmEnable=1
|
||||
gVhtAmpduLenExponent=7
|
||||
gVhtMpduLen=2
|
||||
isP2pDeviceAddrAdministrated=0
|
||||
gEnableVhtFor24GHzBand=1
|
||||
gEnableLpassSupport=1
|
||||
gCountryCodePriority=1
|
||||
gEnableMuBformee=1
|
||||
gTDLSExternalControl=1
|
||||
gEnableTDLSOffChannel=1
|
||||
gThermalMitigationEnable=0
|
||||
|
||||
################ Datapath feature set Begin ################
|
||||
gVhtRxMCS=2
|
||||
gVhtTxMCS=2
|
||||
gEnable2x2=1
|
||||
gVhtRxMCS2x2=2
|
||||
gVhtTxMCS2x2=2
|
||||
dp_tx_ring_size=3072
|
||||
rx_mode=20
|
||||
gEnableFastPath=1
|
||||
TSOEnable=1
|
||||
GROEnable=1
|
||||
ght_mpdu_density=5
|
||||
gEnableFlowSteering=1
|
||||
maxMSDUsPerRxInd=8
|
||||
dp_rx_fisa_enable=1
|
||||
dp_rx_flow_search_table_size=128
|
||||
rpsRxQueueCpuMapList=07
|
||||
legacy_mode_csum_disable=0
|
||||
|
||||
################ Datapath feature set End ################
|
||||
|
||||
adaptive_dwell_mode_enabled=1
|
||||
hostscan_adaptive_dwell_mode=1
|
||||
enable_rtt_mac_randomization=1
|
||||
gEnableSNRMonitoring=1
|
||||
gWmiCreditCount=1
|
||||
AutoChannelSelectWeight=0x00fafafa
|
||||
bcast_twt=1
|
||||
gRuntimePM=2
|
||||
gRuntimePMDelay=500
|
||||
oem_6g_support_disable=0
|
||||
|
||||
gEnableSWLM=1
|
||||
g_enable_pci_gen=1
|
||||
ssdp=0
|
||||
gRArateLimitInterval=600
|
||||
gEnableSifsBurst=1
|
||||
gIbssTxSpEndInactivityTime=10
|
||||
RX_THREAD_UL_CPU_AFFINITY_MASK=0xc0
|
||||
dp_rx_buff_prealloc_pool=1
|
||||
dp_rx_refill_buff_pool=1
|
||||
dp_rx_fst_in_cmem=1
|
||||
|
||||
################ XIAOMI ADD ######################
|
||||
|
||||
gActiveMaxChannelTime=40
|
||||
gIPAConfig=0
|
||||
gIPADescSize=800
|
||||
active_max_channel_time_2g=80
|
||||
wlm_latency_flags_ultralow=0x180003
|
||||
gActiveMcBcBpfMode=1
|
||||
assoc_failure_timeout=5000
|
||||
gEnableNUDTracking=3
|
||||
etsi13_srd_chan_in_master_mode=7
|
||||
gSelect5GHzMargin=5
|
||||
candidate_min_rssi_for_beacon_miss=-83
|
||||
gtraffic_threshold=50
|
||||
enable_ftopen=0
|
||||
twt_congestion_timeout=0
|
||||
gEnableSARV1toSARV2=1
|
||||
g_prefer_5g_scc_to_dbs=8
|
||||
gEnableModulatedDTIM=3
|
||||
gMaxLIModulatedDTIM=3
|
||||
enable_mod_dtim_on_system_suspend=1
|
||||
avoid_list_expiry_time=3
|
||||
black_list_expiry_time=5
|
||||
bad_bssid_counter_thresh=7
|
||||
gindoor_channel_support=1
|
||||
gReportMaxLinkSpeed=2
|
||||
icmp_req_to_fw_mark_interval=200
|
||||
twt_responder=0
|
||||
|
||||
|
||||
# MIUI:ADD:
|
||||
# Add for optimize download performance in noisy env.
|
||||
|
||||
# used to specify AP OUIs. The station's EDCA should follow
|
||||
# the APs' when connecting to those AP, even if the
|
||||
# gEnableEdcaParams is set.
|
||||
# Huawei OUI:ac:85:3d
|
||||
gActionOUIDisableAggressiveEDCA=ac853d 00 01 0017f2 07 06010103010000 fe 01
|
||||
# Enable edca parameter
|
||||
gEnableEdcaParams=1
|
||||
gEdcaVoCwmin=2
|
||||
gEdcaViCwmin=2
|
||||
gEdcaBkCwmin=2
|
||||
gEdcaBeCwmin=2
|
||||
|
||||
gEdcaVoCwmax=3
|
||||
gEdcaViCwmax=3
|
||||
gEdcaBkCwmax=3
|
||||
gEdcaBeCwmax=3
|
||||
|
||||
gEdcaVoAifs=2
|
||||
gEdcaViAifs=2
|
||||
gEdcaBkAifs=2
|
||||
gEdcaBeAifs=2
|
||||
|
||||
END
|
||||
|
||||
# Note: Configuration parser would not read anything past the END marker
|
||||
|
12
wlan/wpa_supplicant_overlay.conf
Normal file
12
wlan/wpa_supplicant_overlay.conf
Normal file
@ -0,0 +1,12 @@
|
||||
disable_scan_offload=1
|
||||
p2p_disabled=1
|
||||
tdls_external_control=1
|
||||
wowlan_triggers=magic_pkt
|
||||
bss_max_count=400
|
||||
interworking=1
|
||||
config_methods=virtual_display virtual_push_button keypad
|
||||
driver_param="no_rrm=1"
|
||||
p2p_chan_list_dfs_disable=0
|
||||
p2p_chan_list_only_sta_dfs_enable=0
|
||||
p2p_pref_list_dfs_disable=0
|
||||
p2p_go_dfs_disable=0
|
Reference in New Issue
Block a user