├── board-info.txt ├── Android.bp ├── rro_overlays ├── HaydnCNWifiOverlay │ ├── Android.bp │ ├── res │ │ └── values │ │ │ └── config.xml │ └── AndroidManifest.xml ├── HaydnGLWifiOverlay │ ├── Android.bp │ ├── res │ │ └── values │ │ │ └── config.xml │ └── AndroidManifest.xml ├── HaydnINWifiOverlay │ ├── Android.bp │ ├── res │ │ └── values │ │ │ └── config.xml │ └── AndroidManifest.xml ├── HaydnproCNWifiOverlay │ ├── Android.bp │ ├── res │ │ └── values │ │ │ └── config.xml │ └── AndroidManifest.xml ├── HaydnCNSettingsProviderOverlay │ ├── Android.bp │ ├── res │ │ └── values │ │ │ └── defaults.xml │ └── AndroidManifest.xml ├── HaydnGLSettingsProviderOverlay │ ├── Android.bp │ ├── res │ │ └── values │ │ │ └── defaults.xml │ └── AndroidManifest.xml ├── HaydnINSettingsProviderOverlay │ ├── Android.bp │ ├── res │ │ └── values │ │ │ └── defaults.xml │ └── AndroidManifest.xml └── HaydnproCNSettingsProviderOverlay │ ├── Android.bp │ ├── res │ └── values │ │ └── defaults.xml │ └── AndroidManifest.xml ├── Android.mk ├── AndroidProducts.mk ├── overlay ├── packages │ └── apps │ │ ├── Nfc │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── Settings │ │ └── res │ │ └── values │ │ └── config.xml └── frameworks │ └── base │ ├── packages │ └── SystemUI │ │ └── res │ │ ├── drawable │ │ ├── rounded_corner_bottom.xml │ │ └── rounded_corner_top.xml │ │ └── values │ │ ├── config.xml │ │ └── dimens.xml │ └── core │ └── res │ └── res │ ├── values │ ├── dimens.xml │ └── config.xml │ └── xml │ └── power_profile.xml ├── setup-makefiles.sh ├── hidl └── manifest.xml ├── camera ├── megvii_shim.cpp └── Android.bp ├── README.md ├── BoardConfig.mk ├── superior_haydn.mk ├── superior.dependencies ├── extract-files.sh ├── rootdir └── etc │ └── init.haydn.rc ├── device.mk ├── audio ├── mixer_paths_overlay_dynamic.xml ├── sound_trigger_mixer_paths.xml ├── sound_trigger_platform_info.xml └── audio_platform_info_intcodec.xml └── proprietary-files.txt /board-info.txt: -------------------------------------------------------------------------------- 1 | require board=haydn|haydnin 2 | -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace { 2 | imports: [ 3 | "device/xiaomi/sm8350-common", 4 | ], 5 | } 6 | -------------------------------------------------------------------------------- /rro_overlays/HaydnCNWifiOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnCNWifiOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /rro_overlays/HaydnGLWifiOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnGLWifiOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /rro_overlays/HaydnINWifiOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnINWifiOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /rro_overlays/HaydnproCNWifiOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnproCNWifiOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /rro_overlays/HaydnCNSettingsProviderOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnCNSettingsProviderOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /rro_overlays/HaydnGLSettingsProviderOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnGLSettingsProviderOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /rro_overlays/HaydnINSettingsProviderOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnINSettingsProviderOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /rro_overlays/HaydnproCNSettingsProviderOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | runtime_resource_overlay { 2 | name: "HaydnproCNSettingsProviderOverlay", 3 | vendor: true 4 | } 5 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2021 The LineageOS Project 3 | # 4 | # SPDX-License-Identifier: Apache-2.0 5 | # 6 | 7 | LOCAL_PATH := $(call my-dir) 8 | 9 | ifeq ($(TARGET_DEVICE),haydn) 10 | 11 | include $(call all-makefiles-under,$(LOCAL_PATH)) 12 | 13 | endif 14 | -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2021 The LineageOS Project 3 | # 4 | # SPDX-License-Identifier: Apache-2.0 5 | # 6 | 7 | PRODUCT_MAKEFILES := \ 8 | $(LOCAL_DIR)/superior_haydn.mk 9 | 10 | COMMON_LUNCH_CHOICES := \ 11 | superior_haydn-user \ 12 | superior_haydn-userdebug \ 13 | superior_haydn-eng 14 | -------------------------------------------------------------------------------- /overlay/packages/apps/Nfc/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | haydn 6 | haydnpro 7 | 8 | 9 | -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Copyright (C) 2020 The LineageOS Project 4 | # 5 | # SPDX-License-Identifier: Apache-2.0 6 | # 7 | 8 | set -e 9 | 10 | # Required! 11 | export DEVICE=haydn 12 | export DEVICE_COMMON=sm8350-common 13 | export VENDOR=xiaomi 14 | 15 | "./../../${VENDOR}/${DEVICE_COMMON}/setup-makefiles.sh" "$@" 16 | -------------------------------------------------------------------------------- /rro_overlays/HaydnGLSettingsProviderOverlay/res/values/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Mi 11i 9 | 10 | -------------------------------------------------------------------------------- /rro_overlays/HaydnINSettingsProviderOverlay/res/values/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Mi 11X Pro 9 | 10 | -------------------------------------------------------------------------------- /rro_overlays/HaydnCNSettingsProviderOverlay/res/values/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Redmi K40 Pro 9 | 10 | -------------------------------------------------------------------------------- /rro_overlays/HaydnproCNSettingsProviderOverlay/res/values/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Redmi K40 Pro+ 9 | 10 | -------------------------------------------------------------------------------- /hidl/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | vendor.xiaomi.hardware.cameraperf 4 | hwbinder 5 | 1.0 6 | 7 | IMiCameraPerfService 8 | default 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /rro_overlays/HaydnGLWifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Mi 11i 9 | 10 | -------------------------------------------------------------------------------- /rro_overlays/HaydnINWifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Mi 11X Pro 9 | 10 | -------------------------------------------------------------------------------- /rro_overlays/HaydnCNWifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Redmi K40 Pro 9 | 10 | -------------------------------------------------------------------------------- /rro_overlays/HaydnproCNWifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Redmi K40 Pro+ 9 | 10 | -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | true 10 | true 11 | 12 | -------------------------------------------------------------------------------- /rro_overlays/HaydnCNSettingsProviderOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /rro_overlays/HaydnGLSettingsProviderOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /rro_overlays/HaydnINSettingsProviderOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /rro_overlays/HaydnproCNSettingsProviderOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /camera/megvii_shim.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2020 The LineageOS Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | namespace android { 18 | extern "C" void mg_facepp() {} 19 | } 20 | -------------------------------------------------------------------------------- /rro_overlays/HaydnCNWifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 11 | 18 | 19 | -------------------------------------------------------------------------------- /rro_overlays/HaydnGLWifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 11 | 18 | 19 | -------------------------------------------------------------------------------- /rro_overlays/HaydnINWifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 11 | 18 | 19 | -------------------------------------------------------------------------------- /rro_overlays/HaydnproCNWifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 11 | 18 | 19 | -------------------------------------------------------------------------------- /camera/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020 The LineageOS Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | 16 | cc_library_shared { 17 | name: "libshim_megvii", 18 | srcs: ["megvii_shim.cpp"], 19 | compile_multilib: "64", 20 | vendor: true, 21 | } 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Copyright © 2021 PixelExperience 2 | 3 | Device configuration for Xiaomi Mi 11i / Xiaomi Mi11X Pro / Redmi K40 Pro / Pro+ 4 | ========================================= 5 | 6 | The Xiaomi Mi 11i / Xiaomi Mi11X Pro / Redmi K40 Pro / Pro+ (codenamed _"haydn/haydnin/haydnpro"_) is a high-end smartphone from Xiaomi's sub-brand Redmi. 7 | 8 | It was announced in February 2021. Release date was in March 2021. 9 | 10 | ## Device specifications 11 | 12 | Basic | Spec Sheet 13 | -------:|:------------------------- 14 | CPU | Octa-core (1x2.84 GHz Kryo 680 & 3x2.4GHz Kryo 680 & 4x1.8GHz Kryo 680) 15 | Chipset | Qualcomm SM8350 Snapdragon 888 16 | GPU | Adreno 660 17 | Memory | 6/8/12 GB RAM 18 | Shipped Android Version | 11.0 19 | Storage | 128/256 GB (UFS 3.1) 20 | Battery | Non-removable Li-Po 4520 mAh 21 | Display | 2400 x 1080 pixels, 6.67 inches (~395 ppi pixel density) 22 | Camera | 108MP/64MP(Primary), 8MP(Ultrawide), 5MP(Macro), single LED flash, 20MP(Selfie) 23 | 24 | ## Device picture 25 | 26 | 27 | ![Redmi K40 Pro Series](https://cdn.cnbj0.fds.api.mi-img.com/b2c-shopapi-pms/pms_1614153658.41363669.jpg "Redmi K40 Pro Series") 28 | -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2021 The LineageOS Project 3 | # 4 | # SPDX-License-Identifier: Apache-2.0 5 | # 6 | 7 | DEVICE_PATH := device/xiaomi/haydn 8 | 9 | # Inherit from sm8350-common 10 | include device/xiaomi/sm8350-common/BoardConfigCommon.mk 11 | 12 | # Assert 13 | TARGET_OTA_ASSERT_DEVICE := haydn,haydnin 14 | 15 | # Board 16 | TARGET_BOOTLOADER_BOARD_NAME := haydn 17 | 18 | # HIDL 19 | DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/hidl/manifest.xml 20 | 21 | # Kernel 22 | TARGET_KERNEL_CONFIG += vendor/haydn_QGKI.config 23 | 24 | # Kernel modules 25 | BOOT_KERNEL_MODULES := \ 26 | focaltech_touch.ko \ 27 | hwid.ko \ 28 | msm_drm.ko \ 29 | xiaomi_touch.ko 30 | 31 | BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD := $(BOOT_KERNEL_MODULES) 32 | 33 | # Partitions 34 | BOARD_DTBOIMG_PARTITION_SIZE := 25165824 35 | 36 | # Vibrator 37 | SOONG_CONFIG_xiaomiSm8350Vars_vibrator_use_effect_stream := true 38 | 39 | # Include proprietary files 40 | include vendor/xiaomi/haydn/BoardConfigVendor.mk 41 | 42 | # Firmware 43 | include vendor/xiaomi/haydn-firmware/BoardConfigVendor.mk 44 | 45 | # Inherit from proprietary files for Leica Camera 46 | -include vendor/xiaomi/haydn-miuicamera/products/board.mk 47 | -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/drawable/rounded_corner_bottom.xml: -------------------------------------------------------------------------------- 1 | 11 | 16 | 17 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/drawable/rounded_corner_top.xml: -------------------------------------------------------------------------------- 1 | 11 | 16 | 17 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /superior_haydn.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2021 The LineageOS Project 3 | # 4 | # SPDX-License-Identifier: Apache-2.0 5 | # 6 | 7 | # Inherit from those products. Most specific first. 8 | $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) 9 | $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) 10 | 11 | # Inherit from haydn device 12 | $(call inherit-product, device/xiaomi/haydn/device.mk) 13 | 14 | # Inherit some common SuperiorOS stuff. 15 | $(call inherit-product, vendor/superior/config/common.mk) 16 | 17 | PRODUCT_BRAND := Xiaomi 18 | PRODUCT_DEVICE := haydn 19 | PRODUCT_MANUFACTURER := Xiaomi 20 | PRODUCT_MODEL := M2012K11G 21 | PRODUCT_NAME := superior_haydn 22 | 23 | PRODUCT_SYSTEM_NAME := haydn_global 24 | PRODUCT_SYSTEM_DEVICE := haydn 25 | 26 | # superiorOS additions 27 | TARGET_BOOT_ANIMATION_RES := 1080 28 | TARGET_FACE_UNLOCK_SUPPORTED := true 29 | TARGET_ENABLE_BLUR := false 30 | 31 | PRODUCT_BUILD_PROP_OVERRIDES += \ 32 | PRIVATE_BUILD_DESC="haydn_global-user 13 TKQ1.220829.002 V14.0.7.0.TKKMIXM release-keys" \ 33 | TARGET_DEVICE=$(PRODUCT_SYSTEM_DEVICE) \ 34 | TARGET_PRODUCT=$(PRODUCT_SYSTEM_NAME) 35 | 36 | BUILD_FINGERPRINT := Xiaomi/haydn_global/haydn:13/TKQ1.220829.002/V14.0.7.0.TKKMIXM:user/release-keys 37 | 38 | PRODUCT_GMS_CLIENTID_BASE := android-xiaomi 39 | -------------------------------------------------------------------------------- /superior.dependencies: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "repository": "device_xiaomi_haydn-common", 4 | "target_path": "device/xiaomi/sm8350-common", 5 | "branch": "fourteen", 6 | "remote": "SuperiorOS-Devices" 7 | }, 8 | { 9 | "repository": "kernel_xiaomi_haydn", 10 | "target_path": "kernel/xiaomi/sm8350", 11 | "branch": "fourteen", 12 | "remote": "SuperiorOS-Devices" 13 | }, 14 | { 15 | "repository": "vendor_xiaomi_haydn", 16 | "target_path": "vendor/xiaomi/haydn", 17 | "branch": "fourteen", 18 | "remote": "SuperiorOS-Devices" 19 | }, 20 | { 21 | "repository": "vendor_xiaomi_haydn-common", 22 | "target_path": "vendor/xiaomi/sm8350-common", 23 | "branch": "fourteen", 24 | "remote": "SuperiorOS-Devices" 25 | }, 26 | { 27 | "repository": "Alucard_Storm/vendor_xiaomi_haydn-firmware", 28 | "target_path": "vendor/xiaomi/haydn-firmware", 29 | "branch": "thirteen", 30 | "remote": "gitlab" 31 | }, 32 | { 33 | "repository": "Alucard_Storm/haydn-miuicamera", 34 | "target_path": "vendor/xiaomi/haydn-miuicamera", 35 | "branch": "fourteen-leica", 36 | "remote": "gitlab" 37 | }, 38 | { 39 | "repository": "1xtAsh/android_hardware_xiaomi", 40 | "target_path": "hardware/xiaomi", 41 | "branch": "lineage-21", 42 | "remote": "github" 43 | } 44 | ] 45 | -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Copyright (C) 2020 The LineageOS Project 4 | # 5 | # SPDX-License-Identifier: Apache-2.0 6 | # 7 | 8 | function blob_fixup() { 9 | case "${1}" in 10 | vendor/etc/camera/pureShot_parameter.xml) 11 | sed -i 's/=\([0-9]\+\)>/="\1">/g' "${2}" 12 | ;; 13 | vendor/lib64/hw/camera.qcom.so) 14 | sed -i "s/\x73\x74\x5F\x6C\x69\x63\x65\x6E\x73\x65\x2E\x6C\x69\x63/\x63\x61\x6D\x65\x72\x61\x5F\x63\x6E\x66\x2E\x74\x78\x74/g" "${2}" 15 | "${PATCHELF}" --remove-needed "libMegviiFacepp-0.5.2.so" "${2}" 16 | "${PATCHELF}" --remove-needed "libmegface.so" "${2}" 17 | "${PATCHELF}" --add-needed "libshim_megvii.so" "${2}" 18 | ;; 19 | vendor/lib64/hw/camera.xiaomi.so) 20 | "${SIGSCAN}" -p "52 07 00 94" -P "1F 20 03 D5" -f "${2}" 21 | ;; 22 | vendor/lib64/vendor.xiaomi.hardware.cameraperf@1.0-impl.so) 23 | "${SIGSCAN}" -p "21 00 80 52 7c 00 00 94" -P "21 00 80 52 1F 20 03 D5" -f "${2}" 24 | ;; 25 | esac 26 | } 27 | 28 | # If we're being sourced by the common script that we called, 29 | # stop right here. No need to go down the rabbit hole. 30 | if [ "${BASH_SOURCE[0]}" != "${0}" ]; then 31 | return 32 | fi 33 | 34 | set -e 35 | 36 | # Required! 37 | export DEVICE=haydn 38 | export DEVICE_COMMON=sm8350-common 39 | export VENDOR=xiaomi 40 | 41 | "./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@" 42 | -------------------------------------------------------------------------------- /rootdir/etc/init.haydn.rc: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2021 The LineageOS Project 3 | # 4 | # SPDX-License-Identifier: Apache-2.0 5 | # 6 | 7 | service qti_esepowermanager_service_1_1 /vendor/bin/hw/vendor.qti.esepowermanager@1.1-service 8 | override 9 | class hal 10 | user system 11 | group nfc system 12 | disabled 13 | 14 | service secureelement-hal_1_2 /vendor/bin/hw/vendor.qti.secure_element@1.2-service 15 | override 16 | class hal 17 | user system 18 | group system 19 | disabled 20 | 21 | service vendor.nfc_hal_service /vendor/bin/hw/android.hardware.nfc-service.nxp 22 | override 23 | class early_hal 24 | user nfc 25 | group nfc 26 | disabled 27 | 28 | on boot && property:ro.boot.product.hardware.sku=haydn 29 | enable qti_esepowermanager_service_1_1 30 | enable secureelement-hal_1_2 31 | enable vendor.nfc_hal_service 32 | 33 | on boot && property:ro.boot.product.hardware.sku=haydnpro 34 | enable qti_esepowermanager_service_1_1 35 | enable secureelement-hal_1_2 36 | enable vendor.nfc_hal_service 37 | 38 | on boot && property:ro.boot.hwc=CN 39 | setprop bluetooth.device.default_name "Redmi K40 Pro" 40 | 41 | on boot && property:ro.boot.hwc=CN && property:ro.boot.hardware.sku=haydnpro 42 | setprop bluetooth.device.default_name "Redmi K40 Pro +" 43 | 44 | on boot && property:ro.boot.hwc=GL 45 | setprop bluetooth.device.default_name "Mi 11i" 46 | 47 | on boot && property:ro.boot.hwc=IN 48 | setprop bluetooth.device.default_name "Mi 11X Pro" 49 | -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 9 | 90px 10 | 11 | 13 | 90px 14 | 15 | 18 | 38dp 19 | 28dp 20 | @dimen/status_bar_height_default 21 | 22 | 23 | @dimen/status_bar_height_default 24 | 25 | 26 | 126px 27 | 28 | 29 | 22px 30 | 31 | -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 16 | M 500 52 a 37 37 0 1 0 82 0 a 37 37 0 1 0 -82 0 Z 17 | 18 | 19 | 1 20 | 21 | 22 | true 23 | 24 | 28 | M22,0C19.94,0.01 18.83,0.04 17.73,0.11C16.91,0.17 16.09,0.25 15.3,0.36C14.5,0.48 13.72,0.62 12.95,0.81C11.42,1.19 9.97,1.72 8.65,2.43C7.32,3.14 6.12,4.02 5.08,5.07C4.04,6.11 3.15,7.31 2.44,8.64C1.73,9.97 1.19,11.42 0.82,12.94C0.63,13.7 0.48,14.49 0.37,15.29C0.25,16.09 0.17,16.9 0.12,17.72C0.05,18.82 0.02,19.93 0.01,21.55 29 | 30 | -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 156px 9 | 156px 10 | 156px 11 | 12 | 13 | 1px 14 | 15 | 16 | 55px 17 | 18 | 23 | 1080px 24 | 25 | 27 | 1060px 28 | 29 | 33 | @dimen/physical_power_button_center_screen_location_y 34 | 35 | -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2021 The LineageOS Project 3 | # 4 | # SPDX-License-Identifier: Apache-2.0 5 | # 6 | 7 | # Inherit from sm8350-common 8 | $(call inherit-product, device/xiaomi/sm8350-common/common.mk) 9 | 10 | # Audio 11 | PRODUCT_COPY_FILES += \ 12 | $(LOCAL_PATH)/audio/audio_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/audio_platform_info.xml \ 13 | $(LOCAL_PATH)/audio/audio_platform_info_intcodec.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/audio_platform_info_intcodec.xml \ 14 | $(LOCAL_PATH)/audio/mixer_paths.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/mixer_paths.xml \ 15 | $(LOCAL_PATH)/audio/mixer_paths_overlay_dynamic.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/mixer_paths_overlay_dynamic.xml \ 16 | $(LOCAL_PATH)/audio/mixer_paths_overlay_static.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/mixer_paths_overlay_static.xml \ 17 | $(LOCAL_PATH)/audio/sound_trigger_mixer_paths.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/sound_trigger_mixer_paths.xml \ 18 | $(LOCAL_PATH)/audio/sound_trigger_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/sound_trigger_platform_info.xml 19 | 20 | # Camera 21 | PRODUCT_PACKAGES += \ 22 | libshim_megvii 23 | 24 | # Init 25 | PRODUCT_COPY_FILES += \ 26 | $(LOCAL_PATH)/rootdir/etc/init.haydn.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.haydn.rc 27 | 28 | # Overlays 29 | DEVICE_PACKAGE_OVERLAYS += \ 30 | $(LOCAL_PATH)/overlay 31 | 32 | # Overlays-RRO 33 | PRODUCT_PACKAGES += \ 34 | HaydnCNSettingsProviderOverlay \ 35 | HaydnCNWifiOverlay \ 36 | HaydnGLSettingsProviderOverlay \ 37 | HaydnGLWifiOverlay \ 38 | HaydnINSettingsProviderOverlay \ 39 | HaydnINWifiOverlay \ 40 | HaydnproCNSettingsProviderOverlay \ 41 | HaydnproCNWifiOverlay 42 | 43 | # Soong namespaces 44 | PRODUCT_SOONG_NAMESPACES += \ 45 | $(LOCAL_PATH) 46 | 47 | # Call the proprietary setup 48 | $(call inherit-product, vendor/xiaomi/haydn/haydn-vendor.mk) 49 | 50 | # Call the Leica Camera setup 51 | $(call inherit-product-if-exists, vendor/xiaomi/haydn-miuicamera/products/miuicamera.mk) 52 | -------------------------------------------------------------------------------- /audio/mixer_paths_overlay_dynamic.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 42.66 4 | 450 5 | 6 | 4 7 | 3 8 | 1 9 | 10 | 11 | 300000 12 | 403200 13 | 499200 14 | 595200 15 | 691200 16 | 806400 17 | 902400 18 | 998400 19 | 1094400 20 | 1209600 21 | 1305600 22 | 1401600 23 | 1497600 24 | 1612800 25 | 1708800 26 | 1804800 27 | 28 | 29 | 52.69 30 | 55.27 31 | 56.89 32 | 57.78 33 | 58.74 34 | 59 35 | 61.27 36 | 62.18 37 | 66.47 38 | 67.9 39 | 69.84 40 | 72.88 41 | 75.6 42 | 82.77 43 | 88.81 44 | 93.9 45 | 46 | 47 | 710400 48 | 844800 49 | 960000 50 | 1075200 51 | 1209600 52 | 1324800 53 | 1440000 54 | 1555200 55 | 1670400 56 | 1766400 57 | 1881600 58 | 1996800 59 | 2112000 60 | 2227200 61 | 2342400 62 | 2419200 63 | 64 | 65 | 85.49 66 | 93.22 67 | 101.57 68 | 110.04 69 | 118.4 70 | 128.47 71 | 145.77 72 | 155.31 73 | 165.04 74 | 182.13 75 | 219.51 76 | 237.33 77 | 241.47 78 | 285.3 79 | 296.41 80 | 333.27 81 | 82 | 83 | 844800 84 | 960000 85 | 1075200 86 | 1190400 87 | 1305600 88 | 1420800 89 | 1555200 90 | 1670400 91 | 1785600 92 | 1900800 93 | 2035200 94 | 2150400 95 | 2265600 96 | 2380800 97 | 2496000 98 | 2592000 99 | 2688000 100 | 2764800 101 | 2841600 102 | 103 | 104 | 113.11 105 | 123.4 106 | 130.59 107 | 146.34 108 | 157.03 109 | 167.9 110 | 191.7 111 | 207.12 112 | 221.61 113 | 257.45 114 | 281.14 115 | 309.94 116 | 349.99 117 | 402.18 118 | 424.84 119 | 466.33 120 | 535.7 121 | 585.37 122 | 616.37 123 | 124 | 7.6 125 | 8.43 126 | 0 127 | 4520 128 | 1.27 129 | 268 130 | 43.47 131 | 24 132 | 60 133 | 150 134 | 724 135 | 10 136 | 285.75 137 | 18.68 138 | 139 | 1.48 140 | 1.3 141 | 142 | 6 143 | 180 144 | 186 145 | 3700 146 | 147 | 17 148 | 149 | 1 150 | 152 151 | 190 152 | 1 153 | 3700 154 | 155 | .0001 156 | .001 157 | .01 158 | .1 159 | 1 160 | 161 | 15.58 162 | 0.77 163 | 3700 164 | 165 | -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 19 | 20 | 4.5 21 | 6.6 22 | 8.0 23 | 20.0 24 | 24.3 25 | 29.7 26 | 34.0 27 | 46.0 28 | 59.0 29 | 76.0 30 | 81.0 31 | 82.0 32 | 82.0 33 | 82.0 34 | 83.0 35 | 83.0 36 | 83.0 37 | 84.0 38 | 84.0 39 | 85.0 40 | 85.0 41 | 85.0 42 | 85.0 43 | 86.0 44 | 86.0 45 | 87.0 46 | 89.0 47 | 90.0 48 | 91.0 49 | 93.0 50 | 94.0 51 | 96.0 52 | 97.0 53 | 99.0 54 | 100.0 55 | 101.0 56 | 104.0 57 | 105.0 58 | 106.0 59 | 108.0 60 | 109.0 61 | 111.0 62 | 112.0 63 | 114.0 64 | 116.0 65 | 137.0 66 | 157.0 67 | 180.0 68 | 205.0 69 | 226.0 70 | 257.0 71 | 280.0 72 | 295.0 73 | 369.0 74 | 400.0 75 | 416.7 76 | 433.3 77 | 450.0 78 | 466.7 79 | 483.3 80 | 500.0 81 | 512.5 82 | 525.0 83 | 537.5 84 | 550.0 85 | 562.5 86 | 575.0 87 | 587.5 88 | 600.0 89 | 610.0 90 | 620.0 91 | 630.0 92 | 640.0 93 | 650.0 94 | 660.0 95 | 670.0 96 | 680.0 97 | 690.0 98 | 700.0 99 | 705.0 100 | 710.0 101 | 715.0 102 | 720.0 103 | 725.0 104 | 730.0 105 | 735.0 106 | 740.0 107 | 745.0 108 | 750.0 109 | 755.0 110 | 760.0 111 | 765.0 112 | 770.0 113 | 775.0 114 | 800.0 115 | 816.7 116 | 833.3 117 | 850.0 118 | 866.7 119 | 883.3 120 | 900.0 121 | 914.3 122 | 928.6 123 | 942.9 124 | 957.1 125 | 971.4 126 | 985.7 127 | 1000.0 128 | 129 | 130 | 146 | 147 | 1 148 | 2 149 | 4 150 | 6 151 | 8 152 | 10 153 | 15 154 | 20 155 | 25 156 | 30 157 | 35 158 | 40 159 | 45 160 | 50 161 | 55 162 | 60 163 | 65 164 | 70 165 | 75 166 | 80 167 | 85 168 | 90 169 | 95 170 | 100 171 | 120 172 | 140 173 | 160 174 | 180 175 | 200 176 | 220 177 | 240 178 | 260 179 | 280 180 | 300 181 | 320 182 | 340 183 | 360 184 | 380 185 | 400 186 | 420 187 | 440 188 | 460 189 | 480 190 | 500 191 | 700 192 | 900 193 | 1100 194 | 1300 195 | 1500 196 | 1700 197 | 1900 198 | 2000 199 | 2500 200 | 3000 201 | 3500 202 | 4000 203 | 4500 204 | 5000 205 | 5500 206 | 6000 207 | 6500 208 | 7000 209 | 7500 210 | 8000 211 | 8500 212 | 9000 213 | 9500 214 | 10000 215 | 10500 216 | 11000 217 | 11500 218 | 12000 219 | 12500 220 | 13000 221 | 13500 222 | 14000 223 | 14500 224 | 15000 225 | 16000 226 | 17000 227 | 18000 228 | 19000 229 | 20000 230 | 21000 231 | 22000 232 | 23000 233 | 24000 234 | 25000 235 | 26000 236 | 27000 237 | 28000 238 | 29000 239 | 30000 240 | 35000 241 | 40000 242 | 45000 243 | 50000 244 | 55000 245 | 60000 246 | 65000 247 | 70000 248 | 75000 249 | 80000 250 | 85000 251 | 90000 252 | 95000 253 | 100000 254 | 255 | 256 | 259 | 260 | 1 261 | 255 262 | 263 | 264 | 270 | 271 | 4.5 272 | 1000 273 | 274 | 275 | 277 | 100% 278 | 279 | 284 | 1000 285 | 1000 286 | 287 | 304 | 305 | 309 | M -24.5 51.75 a 24.5 24.5 0 1 0 49 0 a 24.5 24.5 0 1 0 -49 0 Z 310 | 311 | 317 | M 0,0 H -31 V 80 H 31 V 0 H 0 Z 318 | 319 | 322 | true 323 | 324 | 325 | 326 | 0 327 | 1 328 | 75 329 | 76 330 | 331 | 332 | 333 | 334 | 0 335 | 30 336 | 45 337 | 53 338 | 339 | 340 | 342 | 0 343 | 344 | 345 | 120 346 | 347 | 348 | true 349 | 350 | 353 | 354 | @array/config_sfps_sensor_props_0 355 | 356 | 357 | 358 | local:4630946736638489730 359 | 1080 360 | 970 361 | 200 362 | 363 | 364 | 365 | 366 | com.android.nfc 367 | com.android.se 368 | com.android.apps.tag 369 | com.google.android.tag 370 | 371 | 372 | 373 | haydn 374 | haydnpro 375 | 376 | 377 | -------------------------------------------------------------------------------- /audio/sound_trigger_mixer_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- 1 | # All unpinned blobs below are extracted from haydn V14.0.7.0.TKKMIXM 2 | 3 | # ACDB 4 | vendor/etc/acdbdata/Forte/Forte_Bluetooth_cal.acdb 5 | vendor/etc/acdbdata/Forte/Forte_General_cal.acdb 6 | vendor/etc/acdbdata/Forte/Forte_Global_cal.acdb 7 | vendor/etc/acdbdata/Forte/Forte_Handset_cal.acdb 8 | vendor/etc/acdbdata/Forte/Forte_Hdmi_cal.acdb 9 | vendor/etc/acdbdata/Forte/Forte_Headset_cal.acdb 10 | vendor/etc/acdbdata/Forte/Forte_Speaker_cal.acdb 11 | vendor/etc/acdbdata/Forte/Forte_workspaceFile.qwsp 12 | vendor/etc/acdbdata/adsp_avs_config.acdb 13 | vendor/etc/acdbdata/nn_ns_models/fai__2.0.0_0.1__3.0.0_0.0__eai_1.00.pmd 14 | vendor/etc/acdbdata/nn_ns_models/fai__2.0.0_0.1__3.0.0_0.0__eai_1.10.pmd 15 | vendor/etc/acdbdata/nn_ns_models/fai__2.3.0_0.1__3.0.0_0.0__eai_1.00.pmd 16 | vendor/etc/acdbdata/nn_ns_models/fai__2.3.0_0.1__3.0.0_0.0__eai_1.10.pmd 17 | vendor/etc/acdbdata/nn_vad_models/fai_3.0.0_0.0_eai_1.00.pmd 18 | vendor/etc/acdbdata/nn_vad_models/fai__3.0.0_0.0__eai_1.10.pmd 19 | 20 | # ACDB libraries 21 | vendor/lib/libacdb-fts.so 22 | vendor/lib/libacdbloader.so 23 | vendor/lib/libacdbrtac.so 24 | vendor/lib/libadiertac.so 25 | vendor/lib/libaudcal.so 26 | 27 | # ADSP modules 28 | vendor/lib/rfsa/adsp/capi_v2_aptX_CLHDADV_Encoder.so 29 | vendor/lib/rfsa/adsp/capi_v2_aptX_CLHDAD_Speech_Decoder.so 30 | vendor/lib/rfsa/adsp/capi_v2_cirrus_sp.so 31 | vendor/lib/rfsa/adsp/capi_v2_dap_cpdp.so 32 | vendor/lib/rfsa/adsp/hrtf5c.bin 33 | vendor/lib/rfsa/adsp/libMIAIHDR_skel.so 34 | vendor/lib/rfsa/adsp/libQ6MSFR_manager_skel.so 35 | vendor/lib/rfsa/adsp/libQnnHtpAltPrepSkel.so 36 | vendor/lib/rfsa/adsp/libQnnHtpSkel.so 37 | vendor/lib/rfsa/adsp/libVppAisQnnHtp.so 38 | vendor/lib/rfsa/adsp/libVppQnnHtp.so 39 | vendor/lib/rfsa/adsp/libadsp_jpege_skel.so 40 | vendor/lib/rfsa/adsp/libapps_mem_heap.so 41 | vendor/lib/rfsa/adsp/libarcsoft_hdrplus_hvx_skel.so 42 | vendor/lib/rfsa/adsp/libbitml_nsp_skel.so 43 | vendor/lib/rfsa/adsp/libbitml_nsp_v2_skel.so 44 | vendor/lib/rfsa/adsp/libcamera_nn_skel.so 45 | vendor/lib/rfsa/adsp/libcvpdsp_2_1.so 46 | vendor/lib/rfsa/adsp/libdspCV_skel.so 47 | vendor/lib/rfsa/adsp/libdsp_streamer_binning.so 48 | vendor/lib/rfsa/adsp/libfastcvadsp.so 49 | vendor/lib/rfsa/adsp/libfastcvdsp_skel.so 50 | vendor/lib/rfsa/adsp/libhap_blink_skel.so 51 | vendor/lib/rfsa/adsp/libhdr_skel.so 52 | vendor/lib/rfsa/adsp/libmctfengine_skel.so 53 | vendor/lib/rfsa/adsp/libmialgo_basic_cdsp_skel.so 54 | vendor/lib/rfsa/adsp/libmialgo_mfnr_cdsp_skel.so 55 | vendor/lib/rfsa/adsp/libmialgo_rfs_cdsp_skel.so 56 | vendor/lib/rfsa/adsp/libmialgo_sfnr_cdsp_skel.so 57 | vendor/lib/rfsa/adsp/libscveObjectSegmentation_skel.so 58 | vendor/lib/rfsa/adsp/libscveT2T_skel.so 59 | vendor/lib/rfsa/adsp/libsnpe_htp_v65_skel.so 60 | vendor/lib/rfsa/adsp/libsnpe_htp_v66_skel.so 61 | vendor/lib/rfsa/adsp/libsnpe_htp_v68_skel.so 62 | vendor/lib/rfsa/adsp/libsns_device_mode_skel.so 63 | vendor/lib/rfsa/adsp/libsns_low_lat_stream_skel.so 64 | vendor/lib/rfsa/adsp/libsuper_res_networks.so 65 | vendor/lib/rfsa/adsp/libvpp_ais_networks.so 66 | vendor/lib/rfsa/adsp/libvpt_action_recognition.so 67 | vendor/lib/rfsa/adsp/misound_karaoke_res.bin 68 | vendor/lib/rfsa/adsp/misound_karaokemix_res.bin 69 | vendor/lib/rfsa/adsp/misound_res_headphone.bin 70 | vendor/lib/rfsa/adsp/misound_res_spk.bin 71 | 72 | # Audio (Firmware) 73 | vendor/firmware/cs35l41-dsp1-diag-revb2.wmfw 74 | vendor/firmware/cs35l41-dsp1-diag-z-RCV-revb2.bin 75 | vendor/firmware/cs35l41-dsp1-diag-z-revb2.bin 76 | vendor/firmware/cs35l41-dsp1-diag-z-revb2.wmfw 77 | vendor/firmware/cs35l41-dsp1-diag-z.bin 78 | vendor/firmware/cs35l41-dsp1-diag-z.wmfw 79 | vendor/firmware/cs35l41-dsp1-diag.wmfw 80 | vendor/firmware/cs35l41-dsp1-spk-prot-RCV-revb2.bin 81 | vendor/firmware/cs35l41-dsp1-spk-prot-RCV.bin 82 | vendor/firmware/cs35l41-dsp1-spk-prot-revb2.bin 83 | vendor/firmware/cs35l41-dsp1-spk-prot-revb2.wmfw 84 | vendor/firmware/cs35l41-dsp1-spk-prot.bin 85 | vendor/firmware/cs35l41-dsp1-spk-prot.wmfw 86 | vendor/firmware/rcv_voice_delta.txt 87 | vendor/firmware/spk1_playback_delta.txt 88 | vendor/firmware/spk1_voice_delta.txt 89 | vendor/firmware/spk2_playback_delta.txt 90 | vendor/firmware/spk2_voice_delta.txt 91 | 92 | # Audio HAL 93 | vendor/lib/hw/audio.primary.lahaina.so 94 | vendor/lib/vndk/libxlog.so 95 | vendor/lib/liba2dpoffload.so 96 | vendor/lib/libadm.so 97 | vendor/lib/libaudio_log_utils.so 98 | vendor/lib/libaudiocloudctrl.so 99 | vendor/lib/libaudioroute_ext.so 100 | vendor/lib/libbatterylistener.so 101 | vendor/lib/libfcsam.so 102 | vendor/lib/libhdmiedid.so 103 | vendor/lib/libhdmipassthru.so 104 | vendor/lib/libhfp.so 105 | vendor/lib/libqtigef.so 106 | vendor/lib/libresampler.so 107 | vendor/lib/libsndmonitor.so 108 | vendor/lib/libssrec.so 109 | 110 | # Camera 111 | vendor/lib/libcamxexternalformatutils.so 112 | vendor/lib/libcamxfacialfeatures.so 113 | vendor/lib/libcamxfdalgo.so 114 | vendor/lib/libcamxfdengine.so 115 | vendor/lib/libcamxifestriping.so 116 | vendor/lib/libcamximageformatutils.so 117 | vendor/lib/libcamxqsatalgo.so 118 | vendor/lib/libcamxstatscore.so 119 | vendor/lib/libcamxswispiqmodule.so 120 | vendor/lib/libcamxswprocessalgo.so 121 | vendor/lib/libcamxtintlessalgo.so 122 | vendor/lib64/HDR10plus.so 123 | vendor/lib64/camera/fdconfigpreview.bin 124 | vendor/lib64/camera/fdconfigpreviewlite.bin 125 | vendor/lib64/camera/fdconfigvideo.bin 126 | vendor/lib64/camera/fdconfigvideolite.bin 127 | vendor/lib64/camera/plugins/com.qcom.plugin.gpu.so 128 | vendor/lib64/camera/plugins/com.qcom.plugin.jpegencode.so 129 | vendor/lib64/camera/plugins/com.qcom.plugin.offlinepostproc.so 130 | vendor/lib64/camera/plugins/com.xiaomi.plugin.bodyslim.so 131 | vendor/lib64/camera/plugins/com.xiaomi.plugin.capbokeh.so 132 | vendor/lib64/camera/plugins/com.xiaomi.plugin.dc.so 133 | vendor/lib64/camera/plugins/com.xiaomi.plugin.depurple.so 134 | vendor/lib64/camera/plugins/com.xiaomi.plugin.ellc.so 135 | vendor/lib64/camera/plugins/com.xiaomi.plugin.fusion.so 136 | vendor/lib64/camera/plugins/com.xiaomi.plugin.hdr.so 137 | vendor/lib64/camera/plugins/com.xiaomi.plugin.ldc.so 138 | vendor/lib64/camera/plugins/com.xiaomi.plugin.memcpy.so 139 | vendor/lib64/camera/plugins/com.xiaomi.plugin.miaideblur.so 140 | vendor/lib64/camera/plugins/com.xiaomi.plugin.miaiie.so 141 | vendor/lib64/camera/plugins/com.xiaomi.plugin.mibokeh.so 142 | vendor/lib64/camera/plugins/com.xiaomi.plugin.misegment.so 143 | vendor/lib64/camera/plugins/com.xiaomi.plugin.rearsupernight.so 144 | vendor/lib64/camera/plugins/com.xiaomi.plugin.sigframe.so 145 | vendor/lib64/camera/plugins/com.xiaomi.plugin.skinbeautifier.so 146 | vendor/lib64/camera/plugins/com.xiaomi.plugin.sr.so 147 | vendor/lib64/camera/plugins/com.xiaomi.plugin.supermoon.so 148 | vendor/lib64/camera/plugins/com.xiaomi.plugin.supernight.so 149 | vendor/lib64/com.qti.chiusecaseselector.so 150 | vendor/lib64/com.qti.feature2.anchorsync.so 151 | vendor/lib64/com.qti.feature2.demux.so 152 | vendor/lib64/com.qti.feature2.derivedoffline.so 153 | vendor/lib64/com.qti.feature2.frameselect.so 154 | vendor/lib64/com.qti.feature2.fusion.so 155 | vendor/lib64/com.qti.feature2.generic.so 156 | vendor/lib64/com.qti.feature2.gs.sm8350.so 157 | vendor/lib64/com.qti.feature2.hdr.so 158 | vendor/lib64/com.qti.feature2.mcreprocrt.so 159 | vendor/lib64/com.qti.feature2.memcpy.so 160 | vendor/lib64/com.qti.feature2.mfsr.so 161 | vendor/lib64/com.qti.feature2.ml.so 162 | vendor/lib64/com.qti.feature2.mux.so 163 | vendor/lib64/com.qti.feature2.parallelVTCam.so 164 | vendor/lib64/com.qti.feature2.pureShot.so 165 | vendor/lib64/com.qti.feature2.pureShotPre.so 166 | vendor/lib64/com.qti.feature2.qcfa.so 167 | vendor/lib64/com.qti.feature2.qllimagedump.so 168 | vendor/lib64/com.qti.feature2.rawhdr.so 169 | vendor/lib64/com.qti.feature2.rawsuperiq.so 170 | vendor/lib64/com.qti.feature2.rawsupernight.so 171 | vendor/lib64/com.qti.feature2.realtimeserializer.so 172 | vendor/lib64/com.qti.feature2.rt.so 173 | vendor/lib64/com.qti.feature2.rtmcx.so 174 | vendor/lib64/com.qti.feature2.serializer.so 175 | vendor/lib64/com.qti.feature2.statsregeneration.so 176 | vendor/lib64/com.qti.feature2.stub.so 177 | vendor/lib64/com.qti.feature2.swmf.so 178 | vendor/lib64/com.qti.settings.kamorta.so 179 | vendor/lib64/com.qti.settings.mannar.so 180 | vendor/lib64/com.qti.settings.sdm865.so 181 | vendor/lib64/com.qti.settings.sm8350.so 182 | vendor/lib64/com.qti.stats.common.so 183 | vendor/lib64/com.qualcomm.mcx.distortionmapper.so 184 | vendor/lib64/com.qualcomm.mcx.linearmapper.so 185 | vendor/lib64/com.qualcomm.mcx.policy.mfl.so 186 | vendor/lib64/com.qualcomm.qti.mcx.usecase.extension.so 187 | vendor/lib64/hw/camera.qcom.so 188 | vendor/lib64/hw/camera.xiaomi.so 189 | vendor/lib64/hw/com.qti.chi.override.so 190 | vendor/lib64/libAF.so 191 | vendor/lib64/libBlinkStub.so 192 | vendor/lib64/libFlickerDet.so 193 | vendor/lib64/libI420colorconvert.so 194 | vendor/lib64/libSNPE.so 195 | vendor/lib64/lib_sr_models.so 196 | vendor/lib64/libaidenoiser.so 197 | vendor/lib64/libalAILDC.so 198 | vendor/lib64/libalCFR.so 199 | vendor/lib64/libalLDC.so 200 | vendor/lib64/libalhLDC.so 201 | vendor/lib64/libanc_dc_base.so 202 | vendor/lib64/libanc_hdr.so 203 | vendor/lib64/libancbase.so 204 | vendor/lib64/libarcsoft_beautyshot.so 205 | vendor/lib64/libarcsoft_bodyslim.so 206 | vendor/lib64/libarcsoft_distortion_correction.so 207 | vendor/lib64/libarcsoft_dual_sat.so 208 | vendor/lib64/libarcsoft_dual_zoomtranslator.so 209 | vendor/lib64/libarcsoft_dualcam_refocus_image.so 210 | vendor/lib64/libarcsoft_dualcam_refocus_video.so 211 | vendor/lib64/libarcsoft_hdrplus_hvx_stub.so 212 | vendor/lib64/libarcsoft_portrait_lighting.so 213 | vendor/lib64/libarcsoft_portrait_lighting_c.so 214 | vendor/lib64/libarcsoft_super_night_raw.so 215 | vendor/lib64/libarcsoft_triple_sat.so 216 | vendor/lib64/libarcsoft_triple_zoomtranslator.so 217 | vendor/lib64/libbitmlengine.so 218 | vendor/lib64/libblink.so 219 | vendor/lib64/libc++_shared.so 220 | vendor/lib64/libcamera_dirty.so 221 | vendor/lib64/libcamera_nn_stub.so 222 | vendor/lib64/libcamera_scene.so 223 | vendor/lib64/libcamerapostproc.so 224 | vendor/lib64/libcamxexternalformatutils.so 225 | vendor/lib64/libcamxfacialfeatures.so 226 | vendor/lib64/libcamxfdalgo.so 227 | vendor/lib64/libcamxfdengine.so 228 | vendor/lib64/libcamxifestriping.so 229 | vendor/lib64/libcamximageformatutils.so 230 | vendor/lib64/libcamxqsatalgo.so 231 | vendor/lib64/libcamxstatscore.so 232 | vendor/lib64/libcamxswispiqmodule.so 233 | vendor/lib64/libcamxswprocessalgo.so 234 | vendor/lib64/libcamxtintlessalgo.so 235 | vendor/lib64/libcapiv2svacnn.so 236 | vendor/lib64/libcapiv2svarnn.so 237 | vendor/lib64/libcapiv2vop.so 238 | vendor/lib64/libchilog.so 239 | vendor/lib64/libcom.qti.chinodeutils.so 240 | vendor/lib64/libcom.xiaomi.debug.so 241 | vendor/lib64/libcom.xiaomi.grallocutils.so 242 | vendor/lib64/libcom.xiaomi.metadatautils.so 243 | vendor/lib64/libcom.xiaomi.pluginutils.so 244 | vendor/lib64/libcvface_api.so 245 | vendor/lib64/libdualcam_optical_zoom_control.so 246 | vendor/lib64/libdualcam_video_optical_zoom.so 247 | vendor/lib64/libellc.so 248 | vendor/lib64/libfocus.so 249 | vendor/lib64/libhdrdynamic.so 250 | vendor/lib64/libhdrdynamicootf.so 251 | vendor/lib64/libhexagon_controller.so 252 | vendor/lib64/libipebpsstriping.so 253 | vendor/lib64/libmiai_deblur.so 254 | vendor/lib64/libmiai_portraitsupernight.so 255 | vendor/lib64/libmialgo_ai_vision.so 256 | vendor/lib64/libmialgo_basic.so 257 | vendor/lib64/libmialgo_ie_capture.so 258 | vendor/lib64/libmialgo_ie_preview.so 259 | vendor/lib64/libmialgo_image_colourkeeping.so 260 | vendor/lib64/libmialgo_pureShot.so 261 | vendor/lib64/libmialgo_rfs.so 262 | vendor/lib64/libmialgo_sd.so 263 | vendor/lib64/libmialgo_utils.so 264 | vendor/lib64/libmialgo_video_colourkeeping.so 265 | vendor/lib64/libmialgo_video_enhance.so 266 | vendor/lib64/libmialgo_video_seg.so 267 | vendor/lib64/libmialgo_vn_clk.so 268 | vendor/lib64/libmialgoengine.so 269 | vendor/lib64/libmibokeh_845_video.so 270 | vendor/lib64/libmibokeh_855.so 271 | vendor/lib64/libmibokeh_mask_dsp.so 272 | vendor/lib64/libmiphone_preview_bokeh.so 273 | vendor/lib64/libmm-color-convertor.so 274 | vendor/lib64/libmpbase.so 275 | vendor/lib64/libnanopb.so 276 | vendor/lib64/libofflinedump.so 277 | vendor/lib64/libofflinelog.so 278 | vendor/lib64/libopencv.so 279 | vendor/lib64/libopestriping.so 280 | vendor/lib64/libos.so 281 | vendor/lib64/libqll10.so 282 | vendor/lib64/libqllengine.so 283 | vendor/lib64/librelight_only.so 284 | vendor/lib64/libremosaic_wrapper.so 285 | vendor/lib64/libremosaiclib.so 286 | vendor/lib64/libsdk_sr.so 287 | vendor/lib64/libsnpe_htp.so 288 | vendor/lib64/libsns_device_mode_stub.so 289 | vendor/lib64/libsns_fastRPC_util.so 290 | vendor/lib64/libsns_low_lat_stream_stub.so 291 | vendor/lib64/libsns_registry_skel.so 292 | vendor/lib64/libsnsapi.so 293 | vendor/lib64/libsnsdiaglog.so 294 | vendor/lib64/libsupermoon.so 295 | vendor/lib64/libswregistrationalgo.so 296 | vendor/lib64/libsynx.so 297 | vendor/lib64/libtfestriping.so 298 | vendor/lib64/libthreadutils.so 299 | vendor/lib64/libtriplecam_optical_zoom_control.so 300 | vendor/lib64/libtriplecam_video_optical_zoom.so 301 | vendor/lib64/libvideoBokeh.so 302 | vendor/lib64/libvideofilter_only.so 303 | vendor/lib64/libvidhance.so 304 | vendor/lib64/libwa_opticalzoom_fusion.so 305 | vendor/lib64/libxmi_hdr_checker.so 306 | vendor/lib64/libxmi_high_dynamic_range.so 307 | vendor/lib64/vendor.qti.hardware.camera.postproc@1.0-service-impl.so 308 | vendor/lib64/vendor.xiaomi.hardware.cameraperf@1.0-impl.so 309 | vendor/lib64/vendor.xiaomi.hardware.cameraperf@1.0.so 310 | vendor/lib64/vendor.xiaomi.hardware.campostproc@1.0-service-impl.so 311 | vendor/lib64/vendor.xiaomi.hardware.campostproc@1.0.so 312 | 313 | # Camera-firmware 314 | vendor/firmware/CAMERA_ICP.elf 315 | 316 | # Camera-sensors 317 | vendor/lib/libjpege.so 318 | vendor/lib/libmctfengine_stub.so 319 | vendor/lib/libmmcamera_bestats.so 320 | vendor/lib/libmmcamera_cac3.so 321 | vendor/lib/libmmcamera_faceproc.so 322 | vendor/lib/libmmcamera_faceproc2.so 323 | vendor/lib/libmmcamera_lscv35.so 324 | vendor/lib/libmmcamera_mfnr.so 325 | vendor/lib/libmmcamera_mfnr_t4.so 326 | vendor/lib/libmmcamera_pdpc.so 327 | vendor/lib64/camera/com.qti.eeprom.haydn_ofilm_imx355_bl24s64_ultra_eeprom.so 328 | vendor/lib64/camera/com.qti.eeprom.haydn_sunny_imx686_gt24p128e_wide_eeprom.so 329 | vendor/lib64/camera/com.qti.eeprom.haydn_sunny_s5k3t2_p24c64f_front_eeprom.so 330 | vendor/lib64/camera/com.qti.eeprom.haydn_sunny_s5k5e9yx04_p24c64f_macro_eeprom.so 331 | vendor/lib64/camera/com.qti.eeprom.haydn_sunny_s5khm2_gt24p128e_wide_eeprom.so 332 | vendor/lib64/camera/com.qti.sensor.haydn_ofilm_imx355_ultra.so 333 | vendor/lib64/camera/com.qti.sensor.haydn_sunny_imx686_wide.so 334 | vendor/lib64/camera/com.qti.sensor.haydn_sunny_s5k3t2_front.so 335 | vendor/lib64/camera/com.qti.sensor.haydn_sunny_s5k5e9yx04_macro.so 336 | vendor/lib64/camera/com.qti.sensor.haydn_sunny_s5khm2_wide.so 337 | vendor/lib64/camera/com.qti.sensormodule.haydn_ofilm_imx355_ultra.bin 338 | vendor/lib64/camera/com.qti.sensormodule.haydn_sunny_imx686_wide.bin 339 | vendor/lib64/camera/com.qti.sensormodule.haydn_sunny_s5k3t2_front.bin 340 | vendor/lib64/camera/com.qti.sensormodule.haydn_sunny_s5k5e9yx04_macro.bin 341 | vendor/lib64/camera/com.qti.sensormodule.haydn_sunny_s5khm2_wide.bin 342 | vendor/lib64/camera/com.qti.tuned.default.bin 343 | vendor/lib64/camera/com.qti.tuned.haydn_ofilm_imx355_ultra.bin 344 | vendor/lib64/camera/com.qti.tuned.haydn_sunny_imx686_wide.bin 345 | vendor/lib64/camera/com.qti.tuned.haydn_sunny_s5k3t2_front.bin 346 | vendor/lib64/camera/com.qti.tuned.haydn_sunny_s5k5e9yx04_macro.bin 347 | vendor/lib64/camera/com.qti.tuned.haydn_sunny_s5khm2_wide.bin 348 | vendor/lib64/libjpege.so 349 | vendor/lib64/libmctfengine_stub.so 350 | vendor/lib64/libmmcamera_bestats.so 351 | vendor/lib64/libmmcamera_cac3.so 352 | vendor/lib64/libmmcamera_faceproc.so 353 | vendor/lib64/libmmcamera_faceproc2.so 354 | vendor/lib64/libmmcamera_lscv35.so 355 | vendor/lib64/libmmcamera_mfnr.so 356 | vendor/lib64/libmmcamera_mfnr_t4.so 357 | vendor/lib64/libmmcamera_pdpc.so 358 | 359 | # Camera components 360 | vendor/lib64/camera/components/com.mi.node.AIIE.so 361 | vendor/lib64/camera/components/com.mi.node.aiasd.so 362 | vendor/lib64/camera/components/com.mi.node.bodyslim.so 363 | vendor/lib64/camera/components/com.mi.node.distortioncorrection.so 364 | vendor/lib64/camera/components/com.mi.node.hdr.so 365 | vendor/lib64/camera/components/com.mi.node.mimovie.so 366 | vendor/lib64/camera/components/com.mi.node.mipitounpacketraw.so 367 | vendor/lib64/camera/components/com.mi.node.pureShot.so 368 | vendor/lib64/camera/components/com.mi.node.realtimebokeh.so 369 | vendor/lib64/camera/components/com.mi.node.rearvideo.so 370 | vendor/lib64/camera/components/com.mi.node.skinbeautifier.so 371 | vendor/lib64/camera/components/com.mi.node.superiq.so 372 | vendor/lib64/camera/components/com.mi.node.superlowlightraw.so 373 | vendor/lib64/camera/components/com.mi.node.videobokeh.so 374 | vendor/lib64/camera/components/com.mi.node.videonight.so 375 | vendor/lib64/camera/components/com.qti.camx.chiiqutils.so 376 | vendor/lib64/camera/components/com.qti.eisv2.so 377 | vendor/lib64/camera/components/com.qti.eisv3.so 378 | vendor/lib64/camera/components/com.qti.hvx.addconstant.so 379 | vendor/lib64/camera/components/com.qti.hvx.binning.so 380 | vendor/lib64/camera/components/com.qti.node.customhwnode.so 381 | vendor/lib64/camera/components/com.qti.node.depth.so 382 | vendor/lib64/camera/components/com.qti.node.dewarp.so 383 | vendor/lib64/camera/components/com.qti.node.dummyrtb.so 384 | vendor/lib64/camera/components/com.qti.node.eisv2.so 385 | vendor/lib64/camera/components/com.qti.node.eisv3.so 386 | vendor/lib64/camera/components/com.qti.node.fcv.so 387 | vendor/lib64/camera/components/com.qti.node.formatconversion.so 388 | vendor/lib64/camera/components/com.qti.node.gpu.so 389 | vendor/lib64/camera/components/com.qti.node.hdr10plushist.so 390 | vendor/lib64/camera/components/com.qti.node.hdr10plusmeta.so 391 | vendor/lib64/camera/components/com.qti.node.ldc.so 392 | vendor/lib64/camera/components/com.qti.node.memcpy.so 393 | vendor/lib64/camera/components/com.qti.node.ml.so 394 | vendor/lib64/camera/components/com.qti.node.remosaic.so 395 | vendor/lib64/camera/components/com.qti.node.stich.so 396 | vendor/lib64/camera/components/com.qti.node.swaidenoiser.so 397 | vendor/lib64/camera/components/com.qti.node.swbestats.so 398 | vendor/lib64/camera/components/com.qti.node.swcac.so 399 | vendor/lib64/camera/components/com.qti.node.swlsc.so 400 | vendor/lib64/camera/components/com.qti.node.swmctf.so 401 | vendor/lib64/camera/components/com.qti.node.swmfnr.so 402 | vendor/lib64/camera/components/com.qti.node.swpdpc.so 403 | vendor/lib64/camera/components/com.qti.node.swpreprocess.so 404 | vendor/lib64/camera/components/com.qti.node.swregistration.so 405 | vendor/lib64/camera/components/com.qti.stats.aec.so 406 | vendor/lib64/camera/components/com.qti.stats.aecwrapper.so 407 | vendor/lib64/camera/components/com.qti.stats.aecxcore.so 408 | vendor/lib64/camera/components/com.qti.stats.af.so 409 | vendor/lib64/camera/components/com.qti.stats.afd.so 410 | vendor/lib64/camera/components/com.qti.stats.afwrapper.so 411 | vendor/lib64/camera/components/com.qti.stats.asd.so 412 | vendor/lib64/camera/components/com.qti.stats.awb.so 413 | vendor/lib64/camera/components/com.qti.stats.awbwrapper.so 414 | vendor/lib64/camera/components/com.qti.stats.cnndriver.so 415 | vendor/lib64/camera/components/com.qti.stats.haf.so 416 | vendor/lib64/camera/components/com.qti.stats.hafoverride.so 417 | vendor/lib64/camera/components/com.qti.stats.pdlib.so 418 | vendor/lib64/camera/components/com.qti.stats.pdlibsony.so 419 | vendor/lib64/camera/components/com.qti.stats.pdlibwrapper.so 420 | vendor/lib64/camera/components/com.qti.stats.tracker.so 421 | vendor/lib64/camera/components/com.qtistatic.stats.aec.so 422 | vendor/lib64/camera/components/com.qtistatic.stats.af.so 423 | vendor/lib64/camera/components/com.qtistatic.stats.awb.so 424 | vendor/lib64/camera/components/com.qtistatic.stats.pdlib.so 425 | vendor/lib64/camera/components/com.vidhance.node.eis.so 426 | vendor/lib64/camera/components/com.vidhance.node.ica.so 427 | vendor/lib64/camera/components/com.vidhance.stats.aec_dmbr.so 428 | vendor/lib64/camera/components/com.xiaomi.node.mibokeh.so 429 | vendor/lib64/camera/components/com.xiaomi.node.mifilter.so 430 | vendor/lib64/camera/components/com.xiaomi.node.misegment.so 431 | vendor/lib64/camera/components/com.xiaomi.node.smooth_transition.so 432 | vendor/lib64/camera/components/com.xiaomi.node.tracker.so 433 | vendor/lib64/camera/components/libdepthmapwrapper_secure.so 434 | 435 | # Camera configs 436 | vendor/etc/camera/CFR_para_MACRO_V01.bin 437 | vendor/etc/camera/CFR_para_MACRO_V01_L.bin 438 | vendor/etc/camera/CFR_para_MACRO_V01_SN.bin 439 | vendor/etc/camera/CFR_para_MACRO_V01_SN_L.bin 440 | vendor/etc/camera/CFR_para_UW_V01.bin 441 | vendor/etc/camera/CFR_para_UW_V01_L.bin 442 | vendor/etc/camera/CFR_para_UW_V01_SN.bin 443 | vendor/etc/camera/CFR_para_UW_V01_SN_L.bin 444 | vendor/etc/camera/CFR_para_W_V01.bin 445 | vendor/etc/camera/CFR_para_W_V01_HD.bin 446 | vendor/etc/camera/CFR_para_W_V01_HD_L.bin 447 | vendor/etc/camera/CFR_para_W_V01_IZOOM.bin 448 | vendor/etc/camera/CFR_para_W_V01_IZOOM_L.bin 449 | vendor/etc/camera/CFR_para_W_V01_L.bin 450 | vendor/etc/camera/CFR_para_W_V01_SN.bin 451 | vendor/etc/camera/CFR_para_W_V01_SN_L.bin 452 | vendor/etc/camera/GpuKernelRepo.pb 453 | vendor/etc/camera/LDC_FPC_TUNING_DATA.bin 454 | vendor/etc/camera/LDC_FPC_TUNING_DATA_AI.bin 455 | vendor/etc/camera/LDC_PACKDATA_VENDORID_0x01.bin 456 | vendor/etc/camera/LDC_PACKDATA_VENDORID_0x03.bin 457 | vendor/etc/camera/LDC_PACKDATA_VENDORID_0x07.bin 458 | vendor/etc/camera/MobNetv2TF_0.35_iter200000_zoom2.5x_h1500w2000.dlc 459 | vendor/etc/camera/ai_enhance.dlc 460 | vendor/etc/camera/aivsParams.json 461 | vendor/etc/camera/bokehParams.json 462 | vendor/etc/camera/cache 463 | vendor/etc/camera/camxoverridesettings.txt 464 | vendor/etc/camera/camxoverridesettingsOfPro.txt 465 | vendor/etc/camera/com.xiaomi.dcal.wu.fake 466 | vendor/etc/camera/com.xiaomi.dcal.wu.golden 467 | vendor/etc/camera/com.xiaomi.dcal.wu.pro.fake 468 | vendor/etc/camera/com.xiaomi.dcal.wu.pro.golden 469 | vendor/etc/camera/deblur_chess_gpu.dlc 470 | vendor/etc/camera/deblur_nonchess_gpu.dlc 471 | vendor/etc/camera/deblur_txt_gpu.dlc 472 | vendor/etc/camera/deblur_wood_gpu.dlc 473 | vendor/etc/camera/det_quantize.dlc 474 | vendor/etc/camera/eisoverridesettings.txt 475 | vendor/etc/camera/ellc.bin 476 | vendor/etc/camera/fusion_models/fusion_cache 477 | vendor/etc/camera/fusion_models/fusion_model 478 | vendor/etc/camera/fusion_models/fusion_policy 479 | vendor/etc/camera/mibokeh_855_opencl.bin 480 | vendor/etc/camera/mibokeh_855_parameter.bin 481 | vendor/etc/camera/model1.dlc 482 | vendor/etc/camera/model2.dlc 483 | vendor/etc/camera/model3.dlc 484 | vendor/etc/camera/model4.dlc 485 | vendor/etc/camera/model_ai_dxo.dlc 486 | vendor/etc/camera/model_back.dlc 487 | vendor/etc/camera/model_front.dlc 488 | vendor/etc/camera/model_front_mibokeh_video.dlc 489 | vendor/etc/camera/model_glass.dlc 490 | vendor/etc/camera/person_det_dsp.dlc 491 | vendor/etc/camera/person_reid_gpu.dlc 492 | vendor/etc/camera/preview_bokeh_params.json 493 | vendor/etc/camera/pureShot_parameter.xml 494 | vendor/etc/camera/reid_float.dlc 495 | vendor/etc/camera/sceneDetection.xml 496 | vendor/etc/camera/seg_quantized.dlc 497 | vendor/etc/camera/siq_ocl_cache 498 | vendor/etc/camera/sr_params.xml 499 | vendor/etc/camera/superiq_model 500 | vendor/etc/camera/vidhance_calibration 501 | vendor/etc/camera/xiaomi/dualbokehjpegsnapshot.json 502 | vendor/etc/camera/xiaomi/dualbokehsnapshot.json 503 | vendor/etc/camera/xiaomi/frontbokehsnapshot.json 504 | vendor/etc/camera/xiaomi/frontsinglesnapshot.json 505 | vendor/etc/camera/xiaomi/frontsupernightsnapshot.json 506 | vendor/etc/camera/xiaomi/frontsupernightsnapshotjpeg.json 507 | vendor/etc/camera/xiaomi/manualsnapshot.json 508 | vendor/etc/camera/xiaomi/miviinfo.json 509 | vendor/etc/camera/xiaomi/mivisettings.txt 510 | vendor/etc/camera/xiaomi/normalsnapshot.json 511 | vendor/etc/camera/xiaomi/rearsupernightsnapshot.json 512 | vendor/etc/camera/xiaomi/satsnapshot.json 513 | vendor/etc/camera/xiaomi/superhdsnapshot.json 514 | vendor/etc/camera/xiaomi/thirdpartydualbokehyuvsnapshot.json 515 | vendor/etc/camera/xiaomi/thirdpartyjpegsnapshot.json 516 | vendor/etc/camera/xiaomi/thirdpartysnapshot.json 517 | 518 | # Charger (Mi Turbo Charge) 519 | vendor/bin/batterysecret 520 | 521 | # Computer Vision firmware 522 | vendor/firmware/evass-lt.b00 523 | vendor/firmware/evass-lt.b01 524 | vendor/firmware/evass-lt.b02 525 | vendor/firmware/evass-lt.b03 526 | vendor/firmware/evass-lt.b04 527 | vendor/firmware/evass-lt.b05 528 | vendor/firmware/evass-lt.b06 529 | vendor/firmware/evass-lt.b07 530 | vendor/firmware/evass-lt.b08 531 | vendor/firmware/evass-lt.b09 532 | vendor/firmware/evass-lt.b10 533 | vendor/firmware/evass-lt.b11 534 | vendor/firmware/evass-lt.b12 535 | vendor/firmware/evass-lt.b13 536 | vendor/firmware/evass-lt.b14 537 | vendor/firmware/evass-lt.b15 538 | vendor/firmware/evass-lt.b16 539 | vendor/firmware/evass-lt.b17 540 | vendor/firmware/evass-lt.b18 541 | vendor/firmware/evass-lt.b19 542 | vendor/firmware/evass-lt.mbn 543 | vendor/firmware/evass-lt.mdt 544 | vendor/firmware/evass.b00 545 | vendor/firmware/evass.b01 546 | vendor/firmware/evass.b02 547 | vendor/firmware/evass.b03 548 | vendor/firmware/evass.b04 549 | vendor/firmware/evass.b05 550 | vendor/firmware/evass.b06 551 | vendor/firmware/evass.b07 552 | vendor/firmware/evass.b08 553 | vendor/firmware/evass.b09 554 | vendor/firmware/evass.b10 555 | vendor/firmware/evass.b11 556 | vendor/firmware/evass.b12 557 | vendor/firmware/evass.b13 558 | vendor/firmware/evass.b14 559 | vendor/firmware/evass.b15 560 | vendor/firmware/evass.b16 561 | vendor/firmware/evass.b17 562 | vendor/firmware/evass.b18 563 | vendor/firmware/evass.b19 564 | vendor/firmware/evass.mbn 565 | vendor/firmware/evass.mdt 566 | 567 | # Display calibration 568 | vendor/etc/ltm_config_xiaomi_38_08_0a_cmd_mode_dsc_dsi_panel.xml 569 | vendor/etc/mdss_dsi_k11_38_08_0a_dsc_cmd_mi.xml 570 | vendor/etc/qdcm_calib_data_xiaomi_38_08_0a_cmd_mode_dsc_dsi_panel.xml 571 | 572 | # Fingerprint 573 | vendor/lib64/hw/fingerprint.fpc.so:vendor/lib64/hw/fingerprint.fpc.lahaina.so 574 | 575 | # Graphics firmware 576 | vendor/firmware/a660_gmu.bin 577 | vendor/firmware/a660_sqe.fw 578 | vendor/firmware/a660_zap.b00 579 | vendor/firmware/a660_zap.b01 580 | vendor/firmware/a660_zap.b02 581 | vendor/firmware/a660_zap.elf 582 | vendor/firmware/a660_zap.mdt 583 | 584 | # IPA firmware 585 | vendor/etc/init/ipa_fws.rc 586 | vendor/firmware/ipa_fws.b00 587 | vendor/firmware/ipa_fws.b01 588 | vendor/firmware/ipa_fws.b02 589 | vendor/firmware/ipa_fws.b03 590 | vendor/firmware/ipa_fws.b04 591 | vendor/firmware/ipa_fws.elf 592 | vendor/firmware/ipa_fws.mdt 593 | 594 | # Media (VPU firmware) 595 | vendor/firmware/vpu20_2v.b00 596 | vendor/firmware/vpu20_2v.b01 597 | vendor/firmware/vpu20_2v.b02 598 | vendor/firmware/vpu20_2v.b03 599 | vendor/firmware/vpu20_2v.b04 600 | vendor/firmware/vpu20_2v.b05 601 | vendor/firmware/vpu20_2v.b06 602 | vendor/firmware/vpu20_2v.b07 603 | vendor/firmware/vpu20_2v.b08 604 | vendor/firmware/vpu20_2v.b09 605 | vendor/firmware/vpu20_2v.b10 606 | vendor/firmware/vpu20_2v.b11 607 | vendor/firmware/vpu20_2v.b12 608 | vendor/firmware/vpu20_2v.b13 609 | vendor/firmware/vpu20_2v.b14 610 | vendor/firmware/vpu20_2v.b15 611 | vendor/firmware/vpu20_2v.b16 612 | vendor/firmware/vpu20_2v.b17 613 | vendor/firmware/vpu20_2v.b18 614 | vendor/firmware/vpu20_2v.b19 615 | vendor/firmware/vpu20_2v.mbn 616 | vendor/firmware/vpu20_2v.mdt 617 | vendor/firmware/vpu20_2v_unsigned.mbn 618 | vendor/firmware/vpu20_4v.b00 619 | vendor/firmware/vpu20_4v.b01 620 | vendor/firmware/vpu20_4v.b02 621 | vendor/firmware/vpu20_4v.b03 622 | vendor/firmware/vpu20_4v.b04 623 | vendor/firmware/vpu20_4v.b05 624 | vendor/firmware/vpu20_4v.b06 625 | vendor/firmware/vpu20_4v.b07 626 | vendor/firmware/vpu20_4v.b08 627 | vendor/firmware/vpu20_4v.b09 628 | vendor/firmware/vpu20_4v.b10 629 | vendor/firmware/vpu20_4v.b11 630 | vendor/firmware/vpu20_4v.b12 631 | vendor/firmware/vpu20_4v.b13 632 | vendor/firmware/vpu20_4v.b14 633 | vendor/firmware/vpu20_4v.b15 634 | vendor/firmware/vpu20_4v.b16 635 | vendor/firmware/vpu20_4v.b17 636 | vendor/firmware/vpu20_4v.b18 637 | vendor/firmware/vpu20_4v.b19 638 | vendor/firmware/vpu20_4v.mbn 639 | vendor/firmware/vpu20_4v.mdt 640 | vendor/firmware/vpu20_4v_unsigned.mbn 641 | 642 | # NFC configs 643 | vendor/etc/libnfc-nci.conf 644 | vendor/etc/libnfc-nxp.conf 645 | vendor/etc/libnfc-nxp_RF.conf:vendor/libnfc-nxp_RF.conf 646 | 647 | # Sensors 648 | vendor/bin/init.qcom.sensors.sh 649 | vendor/bin/sensors.qti 650 | vendor/bin/sscrpcd 651 | vendor/etc/init/init.vendor.sensors.rc 652 | vendor/etc/init/vendor.sensors.qti.rc 653 | vendor/etc/init/vendor.sensors.sscrpcd.rc 654 | vendor/lib64/libnotifyaudiohal.so 655 | vendor/lib64/libsensorcal.so 656 | vendor/lib64/libsensorslog.so 657 | vendor/lib64/libsns_api.so 658 | vendor/lib64/libssc.so 659 | vendor/lib64/libssc_default_listener.so 660 | vendor/lib64/libssccalapi.so 661 | vendor/lib64/libultrasound.so 662 | vendor/lib64/sensors.mius.proximity.so 663 | vendor/lib64/sensors.ssc.so 664 | vendor/lib64/sensors.touch.detect.so 665 | 666 | # Sensors configs 667 | vendor/etc/sensors/config/ak991x_dri_0.json 668 | vendor/etc/sensors/config/bmp285_0.json 669 | vendor/etc/sensors/config/bu27030_0.json 670 | vendor/etc/sensors/config/bu27030_0_back.json 671 | vendor/etc/sensors/config/lsm6dso_0.json 672 | vendor/etc/sensors/config/sm8350_ak991x_0.json 673 | vendor/etc/sensors/config/sm8350_bmp285_0.json 674 | vendor/etc/sensors/config/sm8350_bu27030_0.json 675 | vendor/etc/sensors/config/sm8350_bu27030_0_back.json 676 | vendor/etc/sensors/config/sm8350_bu52053nvx_0.json 677 | vendor/etc/sensors/config/sm8350_default_sensors.json 678 | vendor/etc/sensors/config/sm8350_dynamic_sensors.json 679 | vendor/etc/sensors/config/sm8350_irq.json 680 | vendor/etc/sensors/config/sm8350_lsm6dso_0.json 681 | vendor/etc/sensors/config/sm8350_lsm6dst_0.json 682 | vendor/etc/sensors/config/sm8350_lsm6dst_1.json 683 | vendor/etc/sensors/config/sm8350_power_0.json 684 | vendor/etc/sensors/config/sm8350_sx932x_0.json 685 | vendor/etc/sensors/config/sm8350_sx932x_1.json 686 | vendor/etc/sensors/config/sm8350_tcs3408.json 687 | vendor/etc/sensors/config/sm8350_tcs3701.json 688 | vendor/etc/sensors/config/sm8350_tmd3719.json 689 | vendor/etc/sensors/config/sm8350_vl53l1_tof_0.json 690 | vendor/etc/sensors/config/sns_amd.json 691 | vendor/etc/sensors/config/sns_amd_sw_disabled.json 692 | vendor/etc/sensors/config/sns_amd_sw_enabled.json 693 | vendor/etc/sensors/config/sns_aod.json 694 | vendor/etc/sensors/config/sns_aont.json 695 | vendor/etc/sensors/config/sns_basic_gestures.json 696 | vendor/etc/sensors/config/sns_bring_to_ear.json 697 | vendor/etc/sensors/config/sns_ccd.json 698 | vendor/etc/sensors/config/sns_ccd_v2_walk.json 699 | vendor/etc/sensors/config/sns_ccd_v3_1_walk.json 700 | vendor/etc/sensors/config/sns_ccd_v3_walk.json 701 | vendor/etc/sensors/config/sns_cm.json 702 | vendor/etc/sensors/config/sns_dae.json 703 | vendor/etc/sensors/config/sns_dbtap.json 704 | vendor/etc/sensors/config/sns_device_orient.json 705 | vendor/etc/sensors/config/sns_diag_filter.json 706 | vendor/etc/sensors/config/sns_distance_bound.json 707 | vendor/etc/sensors/config/sns_dpc.json 708 | vendor/etc/sensors/config/sns_facing.json 709 | vendor/etc/sensors/config/sns_fmv.json 710 | vendor/etc/sensors/config/sns_geomag_rv.json 711 | vendor/etc/sensors/config/sns_gyro_cal.json 712 | vendor/etc/sensors/config/sns_heart_rate.json 713 | vendor/etc/sensors/config/sns_mag_cal.json 714 | vendor/etc/sensors/config/sns_mag_cal_legacy.json 715 | vendor/etc/sensors/config/sns_multishake.json 716 | vendor/etc/sensors/config/sns_nonui.json 717 | vendor/etc/sensors/config/sns_pedometer.json 718 | vendor/etc/sensors/config/sns_rmd.json 719 | vendor/etc/sensors/config/sns_rotv.json 720 | vendor/etc/sensors/config/sns_sar_algo.json 721 | vendor/etc/sensors/config/sns_sar_algo_1.json 722 | vendor/etc/sensors/config/sns_smd.json 723 | vendor/etc/sensors/config/sns_tilt.json 724 | vendor/etc/sensors/config/sns_tilt_sw_disabled.json 725 | vendor/etc/sensors/config/sns_tilt_sw_enabled.json 726 | vendor/etc/sensors/config/sns_tilt_to_wake.json 727 | vendor/etc/sensors/config/sns_wrist_pedo.json 728 | vendor/etc/sensors/config/sx932x_0.json 729 | vendor/etc/sensors/config/sx932x_1.json 730 | vendor/etc/sensors/config/tcs3408.json 731 | vendor/etc/sensors/config/tcs3701.json 732 | vendor/etc/sensors/config/tmd3719.json 733 | vendor/etc/sensors/config/vl53l1_tof_0.json 734 | vendor/etc/sensors/hals.conf 735 | vendor/etc/sensors/judge_calibrated.json 736 | vendor/etc/sensors/sns_reg_config 737 | 738 | # Thermal config 739 | vendor/etc/thermal-class0.conf 740 | vendor/etc/thermal-engine.conf 741 | vendor/etc/thermal-india-camera.conf 742 | vendor/etc/thermal-india-class0.conf 743 | vendor/etc/thermal-india-mgame.conf 744 | vendor/etc/thermal-india-navigation.conf 745 | vendor/etc/thermal-india-nolimits.conf 746 | vendor/etc/thermal-india-normal.conf 747 | vendor/etc/thermal-india-phone.conf 748 | vendor/etc/thermal-india-tgame.conf 749 | vendor/etc/thermal-india-video.conf 750 | vendor/etc/thermal-map-india.conf 751 | vendor/etc/thermal-map.conf 752 | vendor/etc/thermal-mgame.conf 753 | vendor/etc/thermal-navigation.conf 754 | vendor/etc/thermal-nolimits.conf 755 | vendor/etc/thermal-normal.conf 756 | vendor/etc/thermal-per-camera.conf 757 | vendor/etc/thermal-per-class0.conf 758 | vendor/etc/thermal-per-navigation.conf 759 | vendor/etc/thermal-per-normal.conf 760 | vendor/etc/thermal-per-video.conf 761 | vendor/etc/thermal-phone.conf 762 | vendor/etc/thermal-region-map.conf 763 | vendor/etc/thermal-tgame.conf 764 | vendor/etc/thermal-video.conf 765 | vendor/etc/thermald-devices.conf 766 | 767 | # Touchscreen firmware 768 | vendor/firmware/focaltech_ts_fw.bin 769 | vendor/firmware/focaltech_ts_ht_fw.bin 770 | 771 | # Vibrator effects 772 | vendor/firmware/0_click_P_RTP.bin 773 | vendor/firmware/1_doubelClick_P_RTP.bin 774 | vendor/firmware/2_tick_P_RTP.bin 775 | vendor/firmware/3_thud_P_RTP.bin 776 | vendor/firmware/4_pop_P_RTP.bin 777 | vendor/firmware/5_heavyClick_P_RTP.bin 778 | -------------------------------------------------------------------------------- /audio/sound_trigger_platform_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | -------------------------------------------------------------------------------- /audio/audio_platform_info_intcodec.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 383 | 388 | 393 | 394 | 395 | 396 | 397 | 398 | 400 | 402 | 404 | 405 | 406 | 408 | 409 | 410 | 412 | 413 | 414 | 416 | 417 | 418 | 420 | 421 | 422 | 424 | 425 | 426 | 428 | 430 | 431 | 432 | 434 | 436 | 437 | 438 | 440 | 442 | 444 | 445 | 446 | 448 | 450 | 451 | 452 | 454 | 456 | 457 | 458 | 460 | 462 | 463 | 464 | 466 | 468 | 469 | 470 | 472 | 474 | 476 | 477 | 478 | 480 | 482 | 484 | 485 | 486 | 488 | 490 | 492 | 493 | 494 | 496 | 498 | 500 | 501 | 502 | 504 | 506 | 508 | 509 | 510 | 512 | 514 | 516 | 517 | 518 | 520 | 521 | 522 | 524 | 526 | 527 | 528 | 530 | 532 | 534 | 535 | 536 | 538 | 540 | 541 | 542 | 544 | 546 | 548 | 549 | 550 | 551 | 552 | 553 | --------------------------------------------------------------------------------