├── configs └── sensors │ ├── hals.conf │ └── sensor_def_qcomdev.conf ├── vendorsetup.sh ├── sepolicy ├── service_contexts ├── file.te ├── hal_fingerprint_default.te ├── keystore.te ├── tee.te ├── file_contexts └── gx_fpd.te ├── wifi └── WCNSS_qcom_wlan_nv.bin ├── keylayout ├── msm8976-tashalite-snd-card_Button_Jack.kl ├── uinput-fpc.kl ├── Atmel_maXTouch_Touchscreen.kl ├── gpio-keys.kl └── ft5x06_ts.kl ├── prebuilt └── etc │ └── init.d │ └── 89bsod ├── rootdir ├── Android.mk └── etc │ └── init.kenzo.rc ├── idc └── uinput-fpc.idc ├── AndroidProducts.mk ├── README.mkdn ├── superior.dependencies ├── extract-files.sh ├── setup-makefiles.sh ├── Android.mk ├── full_kenzo.mk ├── system.prop ├── superior_kenzo.mk ├── BoardConfig.mk ├── bluetooth └── bdroid_buildcfg.h ├── device.mk ├── audio ├── audio_platform_info_extcodec.xml └── mixer_paths_wcd9326.xml ├── patch └── frameworks_av.patch ├── overlay └── frameworks │ └── base │ └── core │ └── res │ └── res │ └── xml │ └── power_profile.xml └── proprietary-files.txt /configs/sensors/hals.conf: -------------------------------------------------------------------------------- 1 | sensors.ssc.so 2 | -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- 1 | add_lunch_combo superior_kenzo-userdebug 2 | add_lunch_combo superior_kenzo-eng 3 | -------------------------------------------------------------------------------- /sepolicy/service_contexts: -------------------------------------------------------------------------------- 1 | # Goodix Fingerprint 2 | goodix.fp u:object_r:gx_fpd_service:s0 3 | -------------------------------------------------------------------------------- /wifi/WCNSS_qcom_wlan_nv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorOS-Devices/device_xiaomi_kenzo/pie/wifi/WCNSS_qcom_wlan_nv.bin -------------------------------------------------------------------------------- /keylayout/msm8976-tashalite-snd-card_Button_Jack.kl: -------------------------------------------------------------------------------- 1 | key 226 HEADSETHOOK 2 | key 257 VOLUME_UP 3 | key 258 VOLUME_DOWN 4 | -------------------------------------------------------------------------------- /sepolicy/file.te: -------------------------------------------------------------------------------- 1 | type fpc_data_file, file_type, data_file_type; 2 | type fpc_socket, file_type; 3 | type fpc_sysfs, fs_type, sysfs_type; 4 | -------------------------------------------------------------------------------- /sepolicy/hal_fingerprint_default.te: -------------------------------------------------------------------------------- 1 | allow hal_fingerprint_default gx_fpd_service:service_manager { find }; 2 | 3 | binder_call(hal_fingerprint_default, gx_fpd) 4 | -------------------------------------------------------------------------------- /sepolicy/keystore.te: -------------------------------------------------------------------------------- 1 | allow keystore hal_fingerprint_default:dir { search }; 2 | allow keystore hal_fingerprint_default:file r_file_perms; 3 | allow keystore hal_fingerprint_default:process { getattr }; 4 | -------------------------------------------------------------------------------- /prebuilt/etc/init.d/89bsod: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | # 3 | # Copyright (c) 2015 Mattia "AntaresOne" D'Alleva 4 | # Copyright (c) 2015 JDCTeam 5 | # 6 | # BSOD Killer - prevent ROM's black screen of death and data lose. 7 | 8 | rm -rf /data/system/recent* 9 | -------------------------------------------------------------------------------- /sepolicy/tee.te: -------------------------------------------------------------------------------- 1 | # /data/goodix labeling 2 | type_transition tee system_data_file:{ dir file } gx_fpd_data_file; 3 | 4 | allow tee gx_fpd_data_file:dir create_dir_perms; 5 | allow tee gx_fpd_data_file:file create_file_perms; 6 | allow tee system_data_file:dir create_dir_perms; 7 | -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH:= $(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | LOCAL_MODULE := init.kenzo.rc 5 | LOCAL_MODULE_TAGS := optional eng 6 | LOCAL_MODULE_CLASS := ETC 7 | LOCAL_SRC_FILES := etc/init.kenzo.rc 8 | LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_ETC)/init 9 | include $(BUILD_PREBUILT) 10 | -------------------------------------------------------------------------------- /keylayout/uinput-fpc.kl: -------------------------------------------------------------------------------- 1 | # 2 | # FPC1020 Touch sensor driver 3 | # 4 | # Copyright (c) 2013,2014 Fingerprint Cards AB 5 | # 6 | # This program is free software; you can redistribute it and/or 7 | # modify it under the terms of the GNU General Public License Version 2 8 | # as published by the Free Software Foundation. 9 | # 10 | 11 | #key 96 DPAD_CENTER 12 | #key 102 HOME 13 | #key 105 DPAD_LEFT 14 | #key 106 DPAD_RIGHT 15 | -------------------------------------------------------------------------------- /idc/uinput-fpc.idc: -------------------------------------------------------------------------------- 1 | # 2 | # FPC1020 Touch sensor driver 3 | # 4 | # Copyright (c) 2013,2014 Fingerprint Cards AB 5 | # 6 | # This program is free software; you can redistribute it and/or 7 | # modify it under the terms of the GNU General Public License Version 2 8 | # as published by the Free Software Foundation. 9 | # 10 | 11 | device.internal = 1 12 | 13 | keyboard.layout = uinput-fpc 14 | keyboard.builtIn = 1 15 | keyboard.orientationAware = 1 16 | -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2017 Android Open Source 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 | PRODUCT_MAKEFILES := \ 17 | $(LOCAL_DIR)/superior_kenzo.mk 18 | -------------------------------------------------------------------------------- /README.mkdn: -------------------------------------------------------------------------------- 1 | Device Tree for Xiaomi Redmi Note 3 (kenzo) 2 | =========================================== 3 | 4 | Basic | Spec Sheet 5 | -------:|:------------------------- 6 | CPU | Quad-core 1.4 GHz Cortex-A53 & Dual-core 1.8 GHz Cortex-A72 7 | Chipset | Qualcomm MSM8956 Snapdragon 650 8 | GPU | Adreno 510 9 | Memory | 2GB/3GB DDR3 Dual-channel 10 | Storage | 16GB/32GB 11 | MicroSD | Up to 32GB 12 | Battery | Non-removable Li-Po 4050 mAh battery 13 | Display | 1920x1080 pixels, 5.5 inches (~401 ppi pixel density) 14 | Camera | Primary: 16 MP, f/2.0, phase detection autofocus, dual-LED (dual tone) flash 15 | | Secondary: 5 MP, f/2.0, 1080p 16 | 17 | ![Xiaomi Redmi Note 3](http://cdn2.gsmarena.com/vv/pics/xiaomi/xiaomi-redmi-note-3-1.jpg "Xiaomi Redmi Note 3") 18 | -------------------------------------------------------------------------------- /superior.dependencies: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "remote": "github", 4 | "repository": "device_xiaomi_msm8956-common", 5 | "target_path": "device/xiaomi/msm8956-common", 6 | "branch": "pie" 7 | }, 8 | { 9 | "remote": "github", 10 | "repository": "kernel_xiaomi_msm8956", 11 | "target_path": "kernel/xiaomi/msm8956", 12 | "branch": "pie" 13 | }, 14 | { 15 | "remote": "github", 16 | "repository": "vendor_xiaomi_kenzo", 17 | "target_path": "vendor/xiaomi", 18 | "branch": "pie" 19 | }, 20 | { 21 | "remote": "github", 22 | "repository": "LineageOS/android_packages_resources_devicesettings", 23 | "target_path": "packages/resources/devicesettings", 24 | "branch": "lineage-16.0" 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Copyright (C) 2016 The CyanogenMod Project 4 | # Copyright (C) 2017 The LineageOS Project 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | set -e 20 | 21 | # Required! 22 | export DEVICE=kenzo 23 | export DEVICE_COMMON=msm8956-common 24 | export VENDOR=xiaomi 25 | 26 | export DEVICE_BRINGUP_YEAR=2016 27 | 28 | ./../../$VENDOR/$DEVICE_COMMON/extract-files.sh $@ 29 | -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Copyright (C) 2016 The CyanogenMod Project 4 | # Copyright (C) 2017 The LineageOS Project 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | set -e 20 | 21 | # Required! 22 | export DEVICE=kenzo 23 | export DEVICE_COMMON=msm8956-common 24 | export VENDOR=xiaomi 25 | 26 | export DEVICE_BRINGUP_YEAR=2016 27 | 28 | ./../../$VENDOR/$DEVICE_COMMON/setup-makefiles.sh $@ 29 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2016 The CyanogenMod 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 | # WARNING: Everything listed here will be built on ALL platforms, 17 | # including x86, the emulator, and the SDK. Modules must be uniquely 18 | # named (liblights.tuna), and must build everywhere, or limit themselves 19 | # to only building on ARM if they include assembly. Individual makefiles 20 | # are responsible for having their own logic, for fine-grained control. 21 | 22 | LOCAL_PATH := $(call my-dir) 23 | 24 | ifeq ($(TARGET_DEVICE),kenzo) 25 | include $(call all-makefiles-under,$(LOCAL_PATH)) 26 | endif 27 | -------------------------------------------------------------------------------- /full_kenzo.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2015 The CyanogenMod 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 | # Inherit from those products. Most specific first. 18 | $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) 19 | $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) 20 | 21 | # Inherit from kipper device 22 | $(call inherit-product, device/xiaomi/kenzo/device.mk) 23 | 24 | # Device identifier. This must come after all inclusions 25 | PRODUCT_DEVICE := kenzo 26 | PRODUCT_NAME := full_kenzo 27 | PRODUCT_BRAND := Xiaomi 28 | PRODUCT_MODEL := kenzo 29 | PRODUCT_MANUFACTURER := Xiaomi 30 | -------------------------------------------------------------------------------- /sepolicy/file_contexts: -------------------------------------------------------------------------------- 1 | # Fingerprint 2 | /dev/socket/fpce u:object_r:fpc_socket:s0 3 | /data/fpc(/.*)? u:object_r:fpc_data_file:s0 4 | /sys/devices/soc.0/fpc_fpc1020.*/hw_reset u:object_r:fpc_sysfs:s0 5 | /sys/devices/soc.0/fpc_fpc1020.*/irq u:object_r:fpc_sysfs:s0 6 | /sys/devices/soc.0/fpc_fpc1020.*/wakeup_enable u:object_r:fpc_sysfs:s0 7 | 8 | # Goodix 9 | /dev/gf66xx-spi u:object_r:gx_fpd_device:s0 10 | /dev/ttyACM[0-9]* u:object_r:gx_fpd_device:s0 11 | /dev/goodix_fp* u:object_r:gx_fpd_device:s0 12 | /system/bin/gx_fpd u:object_r:gx_fpd_exec:s0 13 | /data/system/fingerprint(/.*)? u:object_r:gx_fpd_data_file:s0 14 | /persist/data/gxfp(/.*)? u:object_r:gx_fpd_data_file:s0 15 | /data/goodix(/.*)? u:object_r:gx_fpd_data_file:s0 16 | -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- 1 | # Audio 2 | audio.offload.disable=1 3 | audio.offload.pcm.16bit.enable=true 4 | audio.offload.pcm.24bit.enable=true 5 | audio.offload.video=true 6 | persist.vendor.audio.fluence.audiorec=false 7 | persist.audio.fluence.spk.mono=true 8 | persist.vendor.audio.fluence.voicerec=false 9 | vendor.voice.voip.conc.disabled=true 10 | audio.offload.multiaac.enable=true 11 | 12 | 13 | # Radio 14 | persist.radio.cs_srv_type=1 15 | persist.radio.force_on_dc=true 16 | persist.radio.redir_party_num=0 17 | persist.radio.start_ota_daemon=1 18 | 19 | # Camera Force HAL1 in these packages 20 | camera.hal1.packagelist=com.skype.raider,com.google.android.GoogleCamera,com.tencent.mm 21 | 22 | # Codecs: (PARSER_) AAC AC3 AMR_NB AMR_WB ASF AVI DTS FLV 3GP 3G2 MKV MP2PS MP2TS MP3 OGG QCP WAV FLAC AIFF APE 23 | mm.enable.qcom_parser=1048575 24 | persist.mm.enable.prefetch=true 25 | av.debug.disable.pers.cache=true 26 | media.stagefright.enable-player=true 27 | media.stagefright.enable-http=true 28 | media.stagefright.enable-aac=true 29 | media.stagefright.enable-qcp=true 30 | media.stagefright.enable-fma2dp=true 31 | media.stagefright.enable-scan=true 32 | 33 | # System prop for RmNet Data 34 | persist.rmnet.data.enable=true 35 | persist.data.wda.enable=true 36 | persist.data.df.dl_mode=5 37 | persist.data.df.ul_mode=5 38 | persist.data.df.agg.dl_pkt=10 39 | persist.data.df.agg.dl_size=4096 40 | persist.data.df.mux_count=8 41 | persist.data.df.iwlan_mux=9 42 | persist.data.df.dev_name=rmnet_usb0 43 | 44 | -------------------------------------------------------------------------------- /sepolicy/gx_fpd.te: -------------------------------------------------------------------------------- 1 | type gx_fpd, domain; 2 | type gx_fpd_exec, exec_type, file_type; 3 | type gx_fpd_device, dev_type; 4 | type gx_fpd_service, service_manager_type; 5 | type gx_fpd_data_file, file_type, data_file_type; 6 | 7 | # gx_fpd 8 | init_daemon_domain(gx_fpd) 9 | binder_use(gx_fpd) 10 | 11 | # need to find KeyStore and add self 12 | allow gx_fpd gx_fpd_service:service_manager { add find }; 13 | 14 | # allow HAL module to read dir contents 15 | allow gx_fpd gx_fpd_data_file:file create_file_perms; 16 | 17 | # allow HAL module to read/write/unlink contents of this dir 18 | allow gx_fpd gx_fpd_data_file:dir create_dir_perms; 19 | 20 | # Need to add auth tokens to KeyStore 21 | use_keystore(gx_fpd) 22 | allow gx_fpd keystore:keystore_key { add_auth }; 23 | 24 | # For permissions checking 25 | binder_call(gx_fpd, system_server); 26 | allow gx_fpd permission_service:service_manager find; 27 | 28 | #Allow access to goodix device 29 | allow gx_fpd gx_fpd_device:chr_file rw_file_perms; 30 | 31 | #Allow access to tee device 32 | allow gx_fpd tee_device:chr_file rw_file_perms; 33 | 34 | # Allow access to ion device 35 | allow gx_fpd ion_device:chr_file rw_file_perms; 36 | 37 | #allow create socket 38 | allow gx_fpd self:{ netlink_socket netlink_generic_socket } create_socket_perms_no_ioctl; 39 | 40 | #allow read/write property 41 | set_prop(gx_fpd, system_prop) 42 | 43 | allow gx_fpd gx_fpd_service:service_manager { add find }; 44 | 45 | r_dir_file(gx_fpd, firmware_file) 46 | binder_call(gx_fpd, hal_fingerprint_default) 47 | -------------------------------------------------------------------------------- /superior_kenzo.mk: -------------------------------------------------------------------------------- 1 | # Copyright 2017 Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # 15 | 16 | $(call inherit-product, device/xiaomi/kenzo/full_kenzo.mk) 17 | 18 | 19 | # Inherit some common superior stuff. 20 | $(call inherit-product, vendor/superior/config/common.mk) 21 | 22 | 23 | # Set those variables here to overwrite the inherited values. 24 | BOARD_VENDOR := Xiaomi 25 | PRODUCT_BRAND := Xiaomi 26 | PRODUCT_DEVICE := kenzo 27 | PRODUCT_NAME := superior_kenzo 28 | PRODUCT_MANUFACTURER := Xiaomi 29 | PRODUCT_MODEL := Redmi Note 3 30 | TARGET_VENDOR := Xiaomi 31 | 32 | PRODUCT_GMS_CLIENTID_BASE := android-xiaomi 33 | 34 | # Use the latest approved GMS identifiers unless running a signed build 35 | PRODUCT_BUILD_PROP_OVERRIDES += \ 36 | PRIVATE_BUILD_DESC="kenzo-user 6.0.1 MMB29M V8.2.1.0.MHOCNDL release-keys" 37 | 38 | BUILD_FINGERPRINT=Xiaomi/kenzo/kenzo:6.0.1/MMB29M/V8.2.1.0.MHOCNDL:user/release-keys 39 | 40 | # Product packages 41 | TARGET_USE_JELLY := true 42 | -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2016 The CyanogenMod Project 3 | # Copyright (C) 2017 The LineageOS Project 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | 17 | # inherit from common msm8956-common 18 | -include device/xiaomi/msm8956-common/BoardConfigCommon.mk 19 | 20 | DEVICE_PATH := device/xiaomi/kenzo 21 | 22 | # Assertions 23 | TARGET_OTA_ASSERT_DEVICE := kate,kenzo 24 | 25 | # Bluetooth 26 | BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := $(DEVICE_PATH)/bluetooth 27 | 28 | # Filesystem 29 | BOARD_SYSTEMIMAGE_PARTITION_SIZE := 2684354560 30 | BOARD_USERDATAIMAGE_PARTITION_SIZE := 26838785024 # 26838801408 - 16384 31 | 32 | # Kernel 33 | TARGET_KERNEL_CONFIG := lineageos_kenzo_defconfig 34 | 35 | # Properties 36 | TARGET_SYSTEM_PROP += $(DEVICE_PATH)/system.prop 37 | 38 | # Sepolicy 39 | #BOARD_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy 40 | 41 | # Enable real time lockscreen charging current values 42 | BOARD_GLOBAL_CFLAGS += -DBATTERY_REAL_INFO 43 | 44 | 45 | # inherit from the proprietary version 46 | -include vendor/xiaomi/kenzo/BoardConfigVendor.mk 47 | -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright (c) 2013, The Linux Foundation. All rights reserved. 4 | * Not a Contribution, Apache license notifications and license are retained 5 | * for attribution purposes only. 6 | * 7 | * Copyright (C) 2012 The Android Open Source Project 8 | * 9 | * Licensed under the Apache License, Version 2.0 (the "License"); 10 | * you may not use this file except in compliance with the License. 11 | * You may obtain a copy of the License at 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | * 15 | * Unless required by applicable law or agreed to in writing, software 16 | * distributed under the License is distributed on an "AS IS" BASIS, 17 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 | * See the License for the specific language governing permissions and 19 | * limitations under the License. 20 | */ 21 | 22 | #ifndef _BDROID_BUILDCFG_H 23 | #define _BDROID_BUILDCFG_H 24 | #define BTM_DEF_LOCAL_NAME "Xiaomi HM Note3" 25 | // Disables read remote device feature 26 | #define BTA_SKIP_BLE_READ_REMOTE_FEAT FALSE 27 | #define MAX_ACL_CONNECTIONS 16 28 | #define MAX_L2CAP_CHANNELS 16 29 | #define BLE_VND_INCLUDED TRUE 30 | 31 | // skips conn update at conn completion 32 | #define BTA_BLE_SKIP_CONN_UPD FALSE 33 | #define BLE_PERIPHERAL_ADV_NAME FALSE 34 | #define BTM_LE_SECURE_CONN TRUE 35 | #define BT_CLEAN_TURN_ON_DISABLED 1 36 | #define BTM_WBS_INCLUDED TRUE /* Enable WBS */ 37 | #define BTIF_HF_WBS_PREFERRED TRUE /* Use WBS */ 38 | #define BTM_SCO_ENHANCED_SYNC_DISABLED TRUE 39 | 40 | /* Increasing SEPs to 12 from 6 to support SHO/MCast i.e. two streams per codec */ 41 | #define AVDT_NUM_SEPS 12 42 | #endif 43 | -------------------------------------------------------------------------------- /keylayout/Atmel_maXTouch_Touchscreen.kl: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2012, The Linux Foundation. All rights reserved. 2 | # 3 | # Redistribution and use in source and binary forms, with or without 4 | # modification, are permitted provided that the following conditions are 5 | # met: 6 | # * Redistributions of source code must retain the above copyright 7 | # notice, this list of conditions and the following disclaimer. 8 | # * Redistributions in binary form must reproduce the above 9 | # copyright notice, this list of conditions and the following 10 | # disclaimer in the documentation and/or other materials provided 11 | # with the distribution. 12 | # * Neither the name of The Linux Foundation nor the names of its 13 | # contributors may be used to endorse or promote products derived 14 | # from this software without specific prior written permission. 15 | # 16 | # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 17 | # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 19 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 20 | # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 23 | # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24 | # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 25 | # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 26 | 27 | key 139 APP_SWITCH VIRTUAL 28 | key 172 HOME VIRTUAL 29 | key 158 BACK VIRTUAL 30 | key 217 SEARCH VIRTUAL 31 | -------------------------------------------------------------------------------- /keylayout/gpio-keys.kl: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014, The Linux Foundation. All rights reserved. 2 | # 3 | # Redistribution and use in source and binary forms, with or without 4 | # modification, are permitted provided that the following conditions are 5 | # met: 6 | # * Redistributions of source code must retain the above copyright 7 | # notice, this list of conditions and the following disclaimer. 8 | # * Redistributions in binary form must reproduce the above 9 | # copyright notice, this list of conditions and the following 10 | # disclaimer in the documentation and/or other materials provided 11 | # with the distribution. 12 | # * Neither the name of The Linux Foundation nor the names of its 13 | # contributors may be used to endorse or promote products derived 14 | # from this software without specific prior written permission. 15 | # 16 | # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 17 | # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 19 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 20 | # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 23 | # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24 | # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 25 | # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 26 | # IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | 28 | key 115 VOLUME_UP 29 | key 114 VOLUME_DOWN 30 | key 102 HOME 31 | key 528 FOCUS 32 | key 766 CAMERA 33 | -------------------------------------------------------------------------------- /keylayout/ft5x06_ts.kl: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014, The Linux Foundation. All rights reserved. 2 | # 3 | # Redistribution and use in source and binary forms, with or without 4 | # modification, are permitted provided that the following conditions are 5 | # met: 6 | # * Redistributions of source code must retain the above copyright 7 | # notice, this list of conditions and the following disclaimer. 8 | # * Redistributions in binary form must reproduce the above 9 | # copyright notice, this list of conditions and the following 10 | # disclaimer in the documentation and/or other materials provided 11 | # with the distribution. 12 | # * Neither the name of The Linux Foundation nor the names of its 13 | # contributors may be used to endorse or promote products derived 14 | # from this software without specific prior written permission. 15 | # 16 | # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 17 | # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 19 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 20 | # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 23 | # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24 | # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 25 | # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 26 | # IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | 28 | key 158 BACK VIRTUAL 29 | key 139 APP_SWITCH VIRTUAL 30 | key 172 HOME VIRTUAL 31 | key 217 SEARCH VIRTUAL 32 | -------------------------------------------------------------------------------- /rootdir/etc/init.kenzo.rc: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014-2016, The Linux Foundation. All rights reserved. 2 | # 3 | # Redistribution and use in source and binary forms, with or without 4 | # modification, are permitted provided that the following conditions are 5 | # met: 6 | # * Redistributions of source code must retain the above copyright 7 | # notice, this list of conditions and the following disclaimer. 8 | # * Redistributions in binary form must reproduce the above 9 | # copyright notice, this list of conditions and the following 10 | # disclaimer in the documentation and/or other materials provided 11 | # with the distribution. 12 | # * Neither the name of The Linux Foundation nor the names of its 13 | # contributors may be used to endorse or promote products derived 14 | # from this software without specific prior written permission. 15 | # 16 | # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 17 | # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 19 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 20 | # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 23 | # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24 | # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 25 | # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 26 | # IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | # 28 | # 29 | 30 | on post-fs-data 31 | mkdir /data/goodix 0700 system system 32 | 33 | on boot 34 | chown system system /dev/goodix_fp 35 | chmod 0644 /dev/goodix_fp 36 | 37 | on property:ro.boot.fpsensor=fpc 38 | setprop persist.sys.fp.goodix 0 39 | setprop ro.hardware.fingerprint fpc 40 | 41 | on property:ro.boot.fpsensor=gdx 42 | setprop persist.sys.fp.goodix 1 43 | setprop ro.hardware.fingerprint gdx 44 | 45 | service gx_fpd /system/bin/gx_fpd 46 | class late_start 47 | user system 48 | group system 49 | disabled 50 | writepid /dev/cpuset/system-background/tasks 51 | 52 | on property:persist.sys.fp.goodix=0 53 | stop gx_fpd 54 | 55 | on property:persist.sys.fp.goodix=1 56 | start gx_fpd 57 | -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2016 The CyanogenMod 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 | # Overlays 18 | DEVICE_PACKAGE_OVERLAYS += $(LOCAL_PATH)/overlay 19 | 20 | # call the proprietary setup 21 | $(call inherit-product-if-exists, vendor/xiaomi/kenzo/kenzo-vendor.mk) 22 | 23 | # Audio 24 | PRODUCT_COPY_FILES += \ 25 | $(LOCAL_PATH)/audio/audio_platform_info_extcodec.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_platform_info_extcodec.xml \ 26 | $(LOCAL_PATH)/audio/mixer_paths_wcd9326.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mixer_paths_wcd9326.xml 27 | 28 | 29 | 30 | # Fingerprint 31 | PRODUCT_PACKAGES += \ 32 | fingerprint.msm8952 33 | 34 | # BSOD Killer 35 | PRODUCT_COPY_FILES += \ 36 | $(LOCAL_PATH)/prebuilt/etc/init.d/89bsod:system/etc/init.d/89bsod 37 | 38 | # Input 39 | PRODUCT_COPY_FILES += \ 40 | $(LOCAL_PATH)/idc/uinput-fpc.idc:system/usr/idc/uinput-fpc.idc 41 | 42 | PRODUCT_COPY_FILES += \ 43 | $(LOCAL_PATH)/keylayout/Atmel_maXTouch_Touchscreen.kl:system/usr/keylayout/Atmel_maXTouch_Touchscreen.kl \ 44 | $(LOCAL_PATH)/keylayout/ft5x06_ts.kl:system/usr/keylayout/ft5x06_ts.kl \ 45 | $(LOCAL_PATH)/keylayout/gpio-keys.kl:system/usr/keylayout/gpio-keys.kl \ 46 | $(LOCAL_PATH)/keylayout/msm8976-tashalite-snd-card_Button_Jack.kl:system/usr/keylayout/msm8976-tashalite-snd-card_Button_Jack.kl \ 47 | $(LOCAL_PATH)/keylayout/uinput-fpc.kl:system/usr/keylayout/uinput-fpc.kl 48 | 49 | # Ramdisk 50 | PRODUCT_PACKAGES += \ 51 | init.kenzo.rc 52 | 53 | # Sensors 54 | PRODUCT_COPY_FILES += \ 55 | $(LOCAL_PATH)/configs/sensors/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf \ 56 | $(LOCAL_PATH)/configs/sensors/sensor_def_qcomdev.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/sensor_def_qcomdev.conf 57 | 58 | # Wifi 59 | PRODUCT_COPY_FILES += \ 60 | $(LOCAL_PATH)/wifi/WCNSS_qcom_wlan_nv.bin:system/etc/firmware/wlan/prima/WCNSS_qcom_wlan_nv.bin 61 | 62 | # Inherit from msm8956-common 63 | $(call inherit-product, device/xiaomi/msm8956-common/msm8956.mk) 64 | -------------------------------------------------------------------------------- /audio/audio_platform_info_extcodec.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 | -------------------------------------------------------------------------------- /patch/frameworks_av.patch: -------------------------------------------------------------------------------- 1 | diff --git a/media/libstagefright/CameraSource.cpp b/media/libstagefright/CameraSource.cpp 2 | index 893da89..29a8f7b 100644 3 | --- a/media/libstagefright/CameraSource.cpp 4 | +++ b/media/libstagefright/CameraSource.cpp 5 | @@ -313,6 +313,12 @@ status_t CameraSource::isCameraColorFormatSupported( 6 | return OK; 7 | } 8 | 9 | +static int32_t getHighSpeedFrameRate(const CameraParameters& params) { 10 | + const char* hsr = params.get("video-hsr"); 11 | + int32_t rate = (hsr != NULL && strncmp(hsr, "off", 3)) ? atoi(hsr) : 0; 12 | + return rate > 120 ? 120 : rate; 13 | +} 14 | + 15 | /* 16 | * Configure the camera to use the requested video size 17 | * (width and height) and/or frame rate. If both width and 18 | @@ -365,6 +371,10 @@ status_t CameraSource::configureCamera( 19 | params->get(CameraParameters::KEY_SUPPORTED_PREVIEW_FRAME_RATES); 20 | CHECK(supportedFrameRates != NULL); 21 | ALOGV("Supported frame rates: %s", supportedFrameRates); 22 | + if (getHighSpeedFrameRate(*params)) { 23 | + ALOGI("Use default 30fps for HighSpeed %dfps", frameRate); 24 | + frameRate = 30; 25 | + } 26 | char buf[4]; 27 | snprintf(buf, 4, "%d", frameRate); 28 | if (strstr(supportedFrameRates, buf) == NULL) { 29 | @@ -466,6 +476,8 @@ status_t CameraSource::checkFrameRate( 30 | ALOGE("Failed to retrieve preview frame rate (%d)", frameRateActual); 31 | return UNKNOWN_ERROR; 32 | } 33 | + int32_t highSpeedRate = getHighSpeedFrameRate(params); 34 | + frameRateActual = highSpeedRate ? highSpeedRate : frameRateActual; 35 | 36 | // Check the actual video frame rate against the target/requested 37 | // video frame rate. 38 | diff --git a/media/libstagefright/CameraSourceTimeLapse.cpp b/media/libstagefright/CameraSourceTimeLapse.cpp 39 | index 390c556..8ad6018 100644 40 | --- a/media/libstagefright/CameraSourceTimeLapse.cpp 41 | +++ b/media/libstagefright/CameraSourceTimeLapse.cpp 42 | @@ -296,6 +296,12 @@ bool CameraSourceTimeLapse::skipFrameAndModifyTimeStamp(int64_t *timestampUs) { 43 | 44 | mLastTimeLapseFrameRealTimestampUs = *timestampUs; 45 | *timestampUs = mLastFrameTimestampUs + mTimeBetweenTimeLapseVideoFramesUs; 46 | + // Update start-time once the captured-time reaches the expected start-time. 47 | + // Not doing so will result in CameraSource always dropping frames since 48 | + // updated-timestamp will never intersect start-timestamp 49 | + if ((mNumFramesReceived == 0 && mLastTimeLapseFrameRealTimestampUs >= mStartTimeUs)) { 50 | + mStartTimeUs = *timestampUs; 51 | + } 52 | return false; 53 | } 54 | return false; 55 | diff --git a/media/libstagefright/SurfaceMediaSource.cpp b/media/libstagefright/SurfaceMediaSource.cpp 56 | index 15ff569..0e33a85 100644 57 | --- a/media/libstagefright/SurfaceMediaSource.cpp 58 | +++ b/media/libstagefright/SurfaceMediaSource.cpp 59 | @@ -390,7 +390,7 @@ void SurfaceMediaSource::signalBufferReturned(MediaBuffer *buffer) { 60 | buffer_handle_t bufferHandle = getMediaBufferHandle(buffer); 61 | 62 | for (size_t i = 0; i < mCurrentBuffers.size(); i++) { 63 | - if (mCurrentBuffers[i]->handle == bufferHandle) { 64 | + if ((buffer_handle_t)mCurrentBuffers[i]->getNativeBuffer() == bufferHandle) { 65 | mCurrentBuffers.removeAt(i); 66 | foundBuffer = true; 67 | break; 68 | @@ -406,7 +406,7 @@ void SurfaceMediaSource::signalBufferReturned(MediaBuffer *buffer) { 69 | continue; 70 | } 71 | 72 | - if (bufferHandle == mSlots[id].mGraphicBuffer->handle) { 73 | + if (bufferHandle == (buffer_handle_t)mSlots[id].mGraphicBuffer->getNativeBuffer()) { 74 | ALOGV("Slot %d returned, matches handle = %p", id, 75 | mSlots[id].mGraphicBuffer->handle); 76 | 77 | diff --git a/services/camera/libcameraservice/api1/CameraClient.cpp b/services/camera/libcameraservice/api1/CameraClient.cpp 78 | index 266fb03..0172422 100644 79 | --- a/services/camera/libcameraservice/api1/CameraClient.cpp 80 | +++ b/services/camera/libcameraservice/api1/CameraClient.cpp 81 | @@ -57,6 +57,7 @@ CameraClient::CameraClient(const sp& cameraService, 82 | mOrientation = getOrientation(0, mCameraFacing == CAMERA_FACING_FRONT); 83 | mLegacyMode = legacyMode; 84 | mPlayShutterSound = true; 85 | + mBurstCnt = 0; 86 | LOG1("CameraClient::CameraClient X (pid %d, id %d)", callingPid, cameraId); 87 | } 88 | 89 | @@ -604,6 +605,11 @@ status_t CameraClient::takePicture(int msgType) { 90 | 91 | enableMsgType(picMsgType); 92 | 93 | + mBurstCnt = mHardware->getParameters().getInt("num-snaps-per-shutter"); 94 | + if(mBurstCnt <= 0) 95 | + mBurstCnt = 1; 96 | + LOG1("mBurstCnt = %d", mBurstCnt); 97 | + 98 | return mHardware->takePicture(); 99 | } 100 | 101 | @@ -931,7 +937,10 @@ void CameraClient::handleRawPicture(const sp& mem) { 102 | 103 | // picture callback - compressed picture ready 104 | void CameraClient::handleCompressedPicture(const sp& mem) { 105 | - disableMsgType(CAMERA_MSG_COMPRESSED_IMAGE); 106 | + if (mBurstCnt) 107 | + mBurstCnt--; 108 | + if (!mBurstCnt) 109 | + disableMsgType(CAMERA_MSG_COMPRESSED_IMAGE); 110 | 111 | sp c = mRemoteCallback; 112 | mLock.unlock(); 113 | diff --git a/services/camera/libcameraservice/api1/CameraClient.h b/services/camera/libcameraservice/api1/CameraClient.h 114 | index 4f46fc4..7795853 100644 115 | --- a/services/camera/libcameraservice/api1/CameraClient.h 116 | +++ b/services/camera/libcameraservice/api1/CameraClient.h 117 | @@ -172,6 +172,8 @@ private: 118 | // This function keeps trying to grab mLock, or give up if the message 119 | // is found to be disabled. It returns true if mLock is grabbed. 120 | bool lockIfMessageWanted(int32_t msgType); 121 | + 122 | + int mBurstCnt; 123 | }; 124 | 125 | } 126 | -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 0 23 | 24 | 25 | 50 26 | 27 | 29 | 240 30 | 31 | 32 | 1 33 | 34 | 35 | 120 36 | 37 | 38 | 88 39 | 40 | 44 | 600 45 | 46 | 47 | 200 48 | 49 | 50 | 27 51 | 52 | 53 | 55 | 56 | 400000 57 | 691200 58 | 806400 59 | 1017600 60 | 1190400 61 | 1305600 62 | 1382400 63 | 1401600 64 | 65 | 66 | 400000 67 | 883200 68 | 940800 69 | 998400 70 | 1056000 71 | 1113600 72 | 1190400 73 | 1248000 74 | 1305600 75 | 1382400 76 | 1612800 77 | 1747200 78 | 1804800 79 | 80 | 81 | 82 | 5 83 | 20 84 | 85 | 86 | 87 | 39 88 | 45 89 | 49 90 | 57 91 | 78 92 | 84 93 | 88 94 | 90 95 | 96 | 97 | 67 98 | 96 99 | 109 100 | 99 101 | 104 102 | 106 103 | 109 104 | 122 105 | 127 106 | 132 107 | 177 108 | 196 109 | 206 110 | 111 | 112 | 4 113 | 2 114 | 115 | 116 | 117 | 4050 118 | 119 | 120 | 121 | .0002 122 | .002 123 | .02 124 | .2 125 | 2 126 | 127 | 128 | -------------------------------------------------------------------------------- /configs/sensors/sensor_def_qcomdev.conf: -------------------------------------------------------------------------------- 1 | # 2 | # File: sensor_def_qcomdev.conf 3 | # 4 | # Tihs file contains default sensor registry values for Qualcomm development 5 | # test platforms. 6 | # 7 | # Copyright (c) 2013-2016 Qualcomm Technologies, Inc. 8 | # All Rights Reserved. 9 | # Confidential and Proprietary - Qualcomm Technologies, Inc. 10 | 11 | 12 | # File format: 13 | # 14 | # Lines starting with "#" are comments and ignored. 15 | # 16 | # File metadata uses this format: 17 | # :key value1 value2 18 | # 19 | # The following keys are defined: 20 | # - "version" : value1 is non-zero positive version number of the file. This 21 | # number will be stored in the sensors registry. It should be equal to the 22 | # largest version of any item. It will be saved in the sensors registry for 23 | # later use when initializing values. See the item format below. 24 | # This value should only be specified once in the file. 25 | # 26 | # - "hardware" : The value1 will be compared to the "Hardware" string from 27 | # the property of ro.board.platform. 28 | # Items will only be used as default values in the registry if the hardware 29 | # string value is a substring of the ro.board.platform string. 30 | # This metadata key can be used more than once, so that one file can support 31 | # more than one type of hardware. 32 | # The value may be NULL, indicating common item values for all hardware. 33 | # Common conf entries for multiple hardware can be mentioned as below. 34 | # configuration below this string is common for 8952,8956 and 8974 35 | # :hardware 8952 8956 8974 36 | # hardware list gets overwritten with the new one every time when "hardware" 37 | # tag appears while parsing conf file. 38 | # 39 | # - "platform" : Similar to the "hardware" key, but this string will need to 40 | # match the text of either /sys/devices/soc0/hw_platform or 41 | # /sys/devices/soc0/platform_subtype. 42 | # Common conf entries for multiple platform can be mentioned as below. 43 | # configuration below this string is common for MTP and QRD 44 | # :platfrom MTP QRD 45 | # platform list gets overwritten with the new one every time when "platfrom" 46 | # tag appears while parsing conf file. 47 | # 48 | # 49 | # - "soc_id" : Similar to the "hardware" key, but this string will need to 50 | # match the text of /sys/devices/soc0/soc_id. 51 | # Common conf entries for multiple soc_id can be mentioned as below. 52 | # configuration below this string is common for soc_id 264 and 278 53 | # :soc_id 264 278 54 | # soc_id list gets overwritten with the new one every time when "soc_id" 55 | # tag appears while parsing conf file. 56 | # 57 | # - "subtype" : Similar to the "hardware" key, but this string will need to 58 | # match the text of /sys/devices/soc0/platform_subtype. 59 | # Common conf entries for multiple subtype can be mentioned as below. 60 | # configuration below this string is common for subtype X and Y 61 | # :subtype X Y 62 | # subtype list gets overwritten with the new one every time when "subtype" 63 | # tag appears while parsing conf file. 64 | # 65 | # - "soc_rev" : Similar to the "hardware" key, but this string will need to 66 | # match the text of /sys/devices/soc0/revision. 67 | # Common conf entries for multiple soc_rev can be mentioned as below. 68 | # configuration below this string is common for soc_rev 1.0,2.0 and 3.0 69 | # :soc_rev 1.0 2.0 3.0 70 | # soc_rev list gets overwritten with the new one every time when "soc_rev" 71 | # tag appears while parsing conf file. 72 | # 73 | # - "property" : value1 is the Android system property key, and value2 is 74 | # the desired property value. If the system property value matches the 75 | # desired property value, then the following items will be applied. 76 | # This metadata key can be used more than once, in which case the new 77 | # property value overrides the old. 78 | # value1 and 2 may be NULL, indicating common item values for all properties. 79 | # 80 | # Registry items are in lines with the following format: 81 | # 82 | # Where: 83 | # itemID is the numeric item ID defined in sns_reg_api_v02.h 84 | # 85 | # "value" is the numeric value of the item. 86 | # 87 | # "version" is a non-zero version of the item value. 88 | # The version field will be compared against the previous saved 89 | # value in the sensors registry. If this value is greater than the 90 | # saved value, the default will be applied. Otherwise, the default 91 | # will be skipped. 92 | # 93 | # Registry item values will only be applied if the hardware, platform, and 94 | # property values match for the current hardware configuration. 95 | # 96 | # The numeric fields are parsed with the strtoull function, base 0. 97 | # 98 | 99 | :version 0x00010001 100 | 101 | ####################################################################### 102 | ### MSM8976,APQ8076 and MSM8956 Chipsets 103 | ####################################################################### 104 | # msm8976,apq8076 and msm8956 share the same property(ro.board.platfrom) 105 | # as msm8952. 106 | # use 8952 as hardware,8976,8076 and 8956 identification is done by 107 | # soc_id which is unique. 108 | :hardware 8952 109 | :platform 110 | :property 111 | # soc_id for msm8976 targets is 278 112 | # soc_id for apq8076 targets is 277 113 | # soc_id for msm8956 targets is 266 114 | # soc_id for apq8056 targets is 274 115 | # Below configuration is common for msm8976, apq8076, apq8056 & msm8956 116 | :soc_id 278 266 277 274 117 | # Orientation of sensors 118 | # accel x/y/z 119 | 700 -1 0x00010001 #accel-x-axis 120 | 701 2 0x00010001 #accel-y-axis 121 | 702 -3 0x00010001 #accel-z-axis 122 | # gyro x/y/z 123 | 800 -1 0x00010001 #gyro-x-axis 124 | 801 2 0x00010001 #gyro-y-axis 125 | 802 -3 0x00010001 #gyro-z-axis 126 | # mag x/y/z 127 | 900 2 0x00010001 #mag-x-axis 128 | 901 -1 0x00010001 #mag-y-axis 129 | 902 3 0x00010001 #mag-z-axis 130 | 131 | #for registry is equal 0 132 | 133 | 306 0 0x00011111 134 | 307 0 0x00011111 135 | 308 0 0x00011111 136 | 309 0 0x00011111 137 | 310 0 0x00011111 138 | 311 0 0x00011111 139 | 140 | 141 | # SSI SMGR Version 142 | 1900 0 0x00010001 #Maj Ver 143 | 1901 1 0x00010001 #Min Ver 144 | 145 | 146 | #ACCEL 2 147 | 2000 1 0x00010001 148 | 2001 2 0x00010001 149 | 150 | #GYRO 2 151 | 2100 1 0x00010001 152 | 2101 2 0x00010001 153 | 154 | #mag 2 155 | 2200 1 0x00010001 156 | 2201 2 0x00010001 157 | 158 | #P/L 2 159 | 2300 1 0x00010001 160 | 2301 2 0x00010001 161 | 162 | 163 | # 164 | # SAM config 165 | # 166 | 203 65536 0x10001 # AMD 167 | 225 983040 0x10001 # RMD 168 | 504 65536 0x10001 # Gyro Cal 169 | 1703 65536 0x10001 # Ped 170 | 2800 983040 0x10001 # basic ges 171 | 2900 983040 0x10001 # Facing 172 | 3400 65536 0x10001 # CMC 173 | 609 983040 0x10001 # FMV 174 | 1005 983040 0x10001 # Grav 175 | 1103 983040 0x10001 # orientation 176 | 3000 983040 0x10001 # gyro quat 177 | 3100 983040 0x10001 # rot vec 178 | 3500 983040 0x10001 # game rv 179 | 4112 65536 0x10001 # SMD 180 | 4103 5 0x10001 # SMD_ACC_WIN_TIME 181 | 182 | # SSI SMGR Cfg 0 BMI160 FIFO 183 | 2003 0x0f4d0fd654c7eab5 0x00010001 #UUID 184 | 2002 0xd646cb83ec0cd5a5 0x00010001 #UUID 185 | 2004 10000 0x00010001 #off_to_idle 186 | 2005 30000 0x00010001 #idle_to_ready 187 | 2006 138 0x00010001 #gpio1 188 | 2007 1000 0x00010001 #reg_group_id 189 | 2008 0 0x00010001 #cal_grp_id 190 | 2009 5 0x00010001 #i2c_bus 191 | 2010 0x68 0x00010001 #i2c_address 192 | 2011 1 0x00010001 #sens_default 193 | 2012 0xD0 0x00010001 #flags 194 | 195 | # SSI SMGR Cfg 1 BMI160 FIFO 196 | 2103 0x0f4d0fd654c7eab5 0x00010001 #UUID 197 | 2102 0xd646cb83ec0cd5a5 0x00010001 #UUID 198 | 2104 10000 0x00010001 #off_to_idle 199 | 2105 30000 0x00010001 #idle_to_ready 200 | 2106 139 0x00010001 #gpio1 201 | 2107 1010 0x00010001 #reg_group_id 202 | 2108 10 0x00010001 #cal_grp_id 203 | 2109 5 0x00010001 #i2c_bus 204 | 2110 0x68 0x00010001 #i2c_address 205 | 2111 4 0x00010001 #sens_default 206 | 2112 0xD0 0x00010001 #flags 207 | 208 | 209 | # SSI SMGR Cfg 0 LSM6DS3 FIFO 210 | 2014 0x1a0bd9d5956c508e 0x00010001 #UUID 211 | 2013 0x1246e1cb09a92baa 0x00010001 #UUID 212 | 2015 10000 0x00010001 #off_to_idle 213 | 2016 30000 0x00010001 #idle_to_ready 214 | 2017 138 0x00010001 #gpio1 215 | 2018 1000 0x00010001 #reg_group_id 216 | 2019 0 0x00010001 #cal_grp_id 217 | 2020 5 0x00010001 #i2c_bus 218 | 2021 0x6a 0x00010001 #i2c_address 219 | 2022 1 0x00010001 #sens_default 220 | 2023 0xD0 0x00010001 #flags 221 | 222 | # SSI SMGR Cfg 1 LSM6DS3 FIFO 223 | 2114 0x1a0bd9d5956c508e 0x00010001 #UUID 224 | 2113 0x1246e1cb09a92baa 0x00010001 #UUID 225 | 2115 10000 0x00010001 #off_to_idle 226 | 2116 30000 0x00010001 #idle_to_ready 227 | 2117 139 0x00010001 #gpio1 228 | 2118 1010 0x00010001 #reg_group_id 229 | 2119 10 0x00010001 #cal_grp_id 230 | 2120 5 0x00010001 #i2c_bus 231 | 2121 0x6a 0x00010001 #i2c_address 232 | 2122 4 0x00010001 #sens_default 233 | 2123 0xD0 0x00010001 #flags 234 | 235 | 236 | 237 | 238 | # SSI SMGR Cfg 3: YAS537 POLL 239 | 2214 0x1dc79ad346a827b3 0x00010001 #UUID 240 | 2213 0xbd403129b15b7905 0x00010001 #UUID 241 | 2215 3000 0x00010001 #off_to_idle 242 | 2216 10000 0x00010001 #idle_to_ready 243 | 2217 0xFFFF 0x00010001 #gpio1 244 | 2218 1020 0x00010001 #reg_group_id 245 | 2219 0xFFFF 0x00010001 #cal_grp_id 246 | 2220 5 0x00010001 #i2c_bus 247 | 2221 0x2e 0x00010001 #i2c_address 248 | 2222 0 0x00010001 #sens_default 249 | 2223 0x00 0x00010001 #flags 250 | 251 | 252 | 253 | # SSI SMGR Cfg 4: AKM09911 POLL 254 | 2203 0xf0d01b6a2181e767 0x00010001 #UUID 255 | 2202 0xa7a42bb985b38dcb 0x00010001 #UUID 256 | #2203 0x90611b98d561168f 0x00010001 #UUID 257 | #2202 0x564d2b94fe80aef6 0x00010001 #UUID 258 | 2204 3000 0x00010001 #off_to_idle 259 | 2205 10000 0x00010001 #idle_to_ready 260 | 2206 0xFFFF 0x00010001 #gpio1 261 | 2207 1020 0x00010001 #reg_group_id 262 | 2208 0xFFFF 0x00010001 #cal_grp_id 263 | 2209 5 0x00010001 #i2c_bus 264 | 2210 0x0c 0x00010001 #i2c_address 265 | 2211 0 0x00010001 #sens_default 266 | 2212 0x00 0x00010001 #flags 267 | 268 | 269 | # SSI SMGR Cfg 4: LTR55X POLL 270 | 2303 0x2f1531647b9aa8b3 0x00010001 #UUID 271 | 2302 0x194a7a549019f36d 0x00010001 #UUID 272 | 2304 5000 0x00010001 #off_to_idle 273 | 2305 0 0x00010001 #idle_to_ready 274 | 2306 0xFFFF 0x00010001 #gpio1 275 | 2307 1040 0x00010001 #reg_group_id 276 | 2308 0xFFFF 0x00010001 #cal_grp_id 277 | 2309 5 0x00010001 #i2c_bus 278 | 2310 0x23 0x00010001 #i2c_address 279 | 2311 0 0x00010001 #sens_default 280 | 2312 0x00 0x00010001 #flags 281 | 282 | 283 | # SSI SMGR Cfg 4: sensortek POLL 284 | 2314 0x0bd0c3512401a6a5 0x00010001 #UUID 285 | 2313 0xfe4aaf16ee837f5d 0x00010001 #UUID 286 | 2315 5000 0x00010001 #off_to_idle 287 | 2316 0 0x00010001 #idle_to_ready 288 | 2317 0xFFFF 0x00010001 #gpio1 289 | 2318 1040 0x00010001 #reg_group_id 290 | 2319 0xFFFF 0x00010001 #cal_grp_id 291 | 2320 5 0x00010001 #i2c_bus 292 | 2321 0x48 0x00010001 #i2c_address 293 | 2322 0 0x00010001 #sens_default 294 | 2323 0x00 0x00010001 #flags 295 | 296 | 297 | # SSI SMGR Version 298 | 3600 1 0x00010001 #Maj Ver 299 | 3601 1 0x00010001 #Min Ver 300 | 301 | # QMAG_CAL Configuration 302 | 3801 1 0x00010001 303 | 3804 0x000A0000 0x00010001 #Sample Rate 304 | 305 | # 306 | # SSI GPIO configuration 307 | #----------------------------- 308 | 2700 1 0x00010001 #maj ver 309 | 2701 1 0x00010001 #min ver 310 | 2702 136 0x00010001 #I2C SDA_1 311 | 2703 137 0x00010001 #I2C SCL_1 312 | 2704 0xFFFF 0x00010001 #I2C SDA_2 313 | 2705 0xFFFF 0x00010001 #I2C SCL_2 314 | 2706 142 0x00010001 #RESET pin 315 | 2709 138 0x00010001 #ACCEL DRI 316 | 2710 139 0x00010001 #GYRO DRI 317 | 2711 0xFFFF 0x00010001 #MAG DRI 318 | 2712 0xFFFF 0x00010001 #ALS/PRX INT 319 | 2714 0xFFFF 0x00010001 #PRESS INT 320 | 321 | # AMD Cfg 322 | 200 0x000A0000 0x00010001 #AMD Default Sample rate 323 | 201 0x00000CDC 0x00010001 #AMD INT Cfg param1 324 | 202 0x00008000 0x00010001 #AMD INT Cfg param2 325 | 326 | # RMD Cfg 327 | 220 0x001E0000 0x00010001 #RMD Default Sample rate 328 | 221 0X0001B333 0x00010001 #RMD INT Cfg param1 329 | 222 0x00003333 0x00010001 #RMD INT Cfg param2 330 | 223 0x00050000 0x00010001 #RMD INT Cfg param3 331 | 224 0x00003333 0x00010001 #RMD INT Cfg param4 332 | 333 | -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- 1 | # ACDB Data 2 | etc/acdbdata/MTP/msm8976-tasha-snd-card/MTP_WCD9335_Bluetooth_cal.acdb 3 | etc/acdbdata/MTP/msm8976-tasha-snd-card/MTP_WCD9335_General_cal.acdb 4 | etc/acdbdata/MTP/msm8976-tasha-snd-card/MTP_WCD9335_Global_cal.acdb 5 | etc/acdbdata/MTP/msm8976-tasha-snd-card/MTP_WCD9335_Handset_cal.acdb 6 | etc/acdbdata/MTP/msm8976-tasha-snd-card/MTP_WCD9335_Hdmi_cal.acdb 7 | etc/acdbdata/MTP/msm8976-tasha-snd-card/MTP_WCD9335_Headset_cal.acdb 8 | etc/acdbdata/MTP/msm8976-tasha-snd-card/MTP_WCD9335_Speaker_cal.acdb 9 | 10 | # Camera 11 | bin/mm-qcamera-daemon 12 | lib/libRecoFace.so 13 | vendor/lib/lib-imscamera.so 14 | vendor/lib/libarcsoft_beauty_shot.so 15 | vendor/lib/libFaceGrade.so 16 | vendor/lib/libFaceProc.so 17 | vendor/lib/libflash_pmic.so 18 | vendor/lib/libimscamera_jni.so 19 | vendor/lib/libjpegdhw.so 20 | vendor/lib/libjpegdmahw.so 21 | vendor/lib/libjpegehw.so 22 | vendor/lib/libmmcamera2_c2d_module.so 23 | vendor/lib/libmmcamera2_cpp_module.so 24 | vendor/lib/libmmcamera2_dcrf.so 25 | vendor/lib/libmmcamera2_frame_algorithm.so 26 | vendor/lib/libmmcamera2_iface_modules.so 27 | vendor/lib/libmmcamera2_imglib_modules.so 28 | vendor/lib/libmmcamera2_is.so 29 | vendor/lib/libmmcamera2_isp_modules.so 30 | vendor/lib/libmmcamera2_mct.so 31 | vendor/lib/libmmcamera2_pp_buf_mgr.so 32 | vendor/lib/libmmcamera2_pproc_modules.so 33 | vendor/lib/libmmcamera2_q3a_core.so 34 | vendor/lib/libmmcamera2_sensor_debug.so 35 | vendor/lib/libmmcamera2_sensor_modules.so|943bd5840adaef2020f4fbe625f8a20358a6c408 36 | vendor/lib/libmmcamera2_stats_algorithm.so 37 | vendor/lib/libmmcamera2_stats_modules.so 38 | vendor/lib/libmmcamera2_vpe_module.so 39 | vendor/lib/libmmcamera2_wnr_module.so 40 | vendor/lib/libmmcamera_chromaflash_lib.so 41 | vendor/lib/libmmcamera_csidtg.so 42 | vendor/lib/libmmcamera_dcrf_lib.so 43 | vendor/lib/libmmcamera_eeprom_util.so 44 | vendor/lib/libmmcamera_eztune_module.so 45 | vendor/lib/libmmcamera_faceproc.so 46 | vendor/lib/libmmcamera_hdr_gb_lib.so 47 | vendor/lib/libmmcamera_imglib.so 48 | vendor/lib/libmmcamera_isp_abf40.so 49 | vendor/lib/libmmcamera_isp_bcc40.so 50 | vendor/lib/libmmcamera_isp_be_stats44.so 51 | vendor/lib/libmmcamera_isp_bf_stats47.so 52 | vendor/lib/libmmcamera_isp_bg_stats44.so 53 | vendor/lib/libmmcamera_isp_bhist_stats44.so 54 | vendor/lib/libmmcamera_isp_bpc40.so 55 | vendor/lib/libmmcamera_isp_chroma_enhan40.so 56 | vendor/lib/libmmcamera_isp_chroma_suppress40.so 57 | vendor/lib/libmmcamera_isp_clamp_encoder40.so 58 | vendor/lib/libmmcamera_isp_clamp_video40.so 59 | vendor/lib/libmmcamera_isp_clamp_viewfinder40.so 60 | vendor/lib/libmmcamera_isp_color_correct40.so 61 | vendor/lib/libmmcamera_isp_color_xform_encoder40.so 62 | vendor/lib/libmmcamera_isp_color_xform_viewfinder40.so 63 | vendor/lib/libmmcamera_isp_cs_stats44.so 64 | vendor/lib/libmmcamera_isp_demosaic40.so 65 | vendor/lib/libmmcamera_isp_demux40.so 66 | vendor/lib/libmmcamera_isp_fovcrop_encoder40.so 67 | vendor/lib/libmmcamera_isp_fovcrop_viewfinder40.so 68 | vendor/lib/libmmcamera_isp_gamma40.so 69 | vendor/lib/libmmcamera_isp_ihist_stats44.so 70 | vendor/lib/libmmcamera_isp_linearization40.so 71 | vendor/lib/libmmcamera_isp_ltm44.so 72 | vendor/lib/libmmcamera_isp_luma_adaptation40.so 73 | vendor/lib/libmmcamera_isp_mce40.so 74 | vendor/lib/libmmcamera_isp_mesh_rolloff40.so 75 | vendor/lib/libmmcamera_isp_rs_stats44.so 76 | vendor/lib/libmmcamera_isp_scaler_encoder44.so 77 | vendor/lib/libmmcamera_isp_scaler_viewfinder44.so 78 | vendor/lib/libmmcamera_isp_sce40.so 79 | vendor/lib/libmmcamera_isp_sub_module.so 80 | vendor/lib/libmmcamera_isp_wb40.so 81 | vendor/lib/libmmcamera_optizoom_lib.so 82 | vendor/lib/libmmcamera_pdaf.so 83 | vendor/lib/libmmcamera_pdafcamif.so 84 | vendor/lib/libmmcamera_ppbase_module.so 85 | vendor/lib/libmmcamera_thread_services.so 86 | vendor/lib/libmmcamera_tintless_algo.so 87 | vendor/lib/libmmcamera_tintless_bg_pca_algo.so 88 | vendor/lib/libmmcamera_tuning.so 89 | vendor/lib/libmmcamera_tuning_lookup.so 90 | vendor/lib/libmmcamera_ubifocus_lib.so 91 | vendor/lib/libmmcamera_vpu_module.so 92 | vendor/lib/libmmjpeg.so 93 | vendor/lib/libmmqjpeg_codec.so 94 | vendor/lib/libmmqjpegdma.so 95 | vendor/lib/libmorpho_easy_hdr.so 96 | vendor/lib/libmorpho_hdr_checker.so 97 | vendor/lib/libmorpho_image_stab4.so 98 | vendor/lib/libmorpho_panorama_gp.so 99 | vendor/lib/libois_lc898122.so 100 | vendor/lib/libqomx_jpegdec.so 101 | vendor/lib/libqomx_jpegenc.so 102 | vendor/lib/libqomx_jpegenc_pipe.so 103 | -vendor/lib/libts_detected_face_hal.so 104 | -vendor/lib/libts_face_beautify_hal.so 105 | 106 | # Camera actuators 107 | vendor/lib/libactuator_ad5816g.so 108 | vendor/lib/libactuator_ad5823.so 109 | vendor/lib/libactuator_bu64244gwz.so 110 | vendor/lib/libactuator_bu64297.so 111 | vendor/lib/libactuator_dw9714.so 112 | vendor/lib/libactuator_dw9716.so 113 | vendor/lib/libactuator_dw9718s_f16s01c.so 114 | vendor/lib/libactuator_dw9718s_f16v01a.so 115 | vendor/lib/libactuator_dw9761b.so 116 | vendor/lib/libactuator_dw9761b_omida01.so 117 | vendor/lib/libactuator_dw9761b_omida05.so 118 | vendor/lib/libactuator_dw9763_f3p3man.so 119 | vendor/lib/libactuator_lc898122.so 120 | vendor/lib/libactuator_lc898212xd.so 121 | vendor/lib/libactuator_rohm_bu64243gwz.so 122 | 123 | # Camera chromatix 124 | vendor/lib/libchromatix_csidtg_common.so 125 | vendor/lib/libchromatix_csidtg_cpp_preview.so 126 | vendor/lib/libchromatix_csidtg_postproc.so 127 | vendor/lib/libchromatix_csidtg_preview.so 128 | vendor/lib/libchromatix_ov5670_a3_default_preview.so 129 | vendor/lib/libchromatix_ov5670_a3_default_video.so 130 | vendor/lib/libchromatix_ov5670_a3_hfr_60.so 131 | vendor/lib/libchromatix_ov5670_a3_hfr_90.so 132 | vendor/lib/libchromatix_ov5670_a3_hfr_120.so 133 | vendor/lib/libchromatix_ov5670_common.so 134 | vendor/lib/libchromatix_ov5670_cpp_ds_chromatix.so 135 | vendor/lib/libchromatix_ov5670_cpp_hfr_60.so 136 | vendor/lib/libchromatix_ov5670_cpp_hfr_90.so 137 | vendor/lib/libchromatix_ov5670_cpp_hfr_120.so 138 | vendor/lib/libchromatix_ov5670_cpp_liveshot.so 139 | vendor/lib/libchromatix_ov5670_cpp_preview.so 140 | vendor/lib/libchromatix_ov5670_cpp_snapshot.so 141 | vendor/lib/libchromatix_ov5670_cpp_us_chromatix.so 142 | vendor/lib/libchromatix_ov5670_cpp_video.so 143 | vendor/lib/libchromatix_ov5670_cpp_video_full.so 144 | vendor/lib/libchromatix_ov5670_d5v01g_a3_default_preview.so 145 | vendor/lib/libchromatix_ov5670_d5v01g_a3_default_video.so 146 | vendor/lib/libchromatix_ov5670_d5v01g_a3_hfr_60.so 147 | vendor/lib/libchromatix_ov5670_d5v01g_a3_hfr_90.so 148 | vendor/lib/libchromatix_ov5670_d5v01g_a3_hfr_120.so 149 | vendor/lib/libchromatix_ov5670_d5v01g_common.so 150 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_ds_chromatix.so 151 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_hfr_60.so 152 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_hfr_90.so 153 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_hfr_120.so 154 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_liveshot.so 155 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_preview.so 156 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_snapshot.so 157 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_us_chromatix.so 158 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_video.so 159 | vendor/lib/libchromatix_ov5670_d5v01g_cpp_video_full.so 160 | vendor/lib/libchromatix_ov5670_d5v01g_default_video.so 161 | vendor/lib/libchromatix_ov5670_d5v01g_hfr_60.so 162 | vendor/lib/libchromatix_ov5670_d5v01g_hfr_90.so 163 | vendor/lib/libchromatix_ov5670_d5v01g_hfr_120.so 164 | vendor/lib/libchromatix_ov5670_d5v01g_liveshot.so 165 | vendor/lib/libchromatix_ov5670_d5v01g_postproc.so 166 | vendor/lib/libchromatix_ov5670_d5v01g_preview.so 167 | vendor/lib/libchromatix_ov5670_d5v01g_snapshot.so 168 | vendor/lib/libchromatix_ov5670_d5v01g_video_full.so 169 | vendor/lib/libchromatix_ov5670_d5v01g_zsl_preview.so 170 | vendor/lib/libchromatix_ov5670_d5v01g_zsl_video.so 171 | vendor/lib/libchromatix_ov5670_default_video.so 172 | vendor/lib/libchromatix_ov5670_hfr_60.so 173 | vendor/lib/libchromatix_ov5670_hfr_90.so 174 | vendor/lib/libchromatix_ov5670_hfr_120.so 175 | vendor/lib/libchromatix_ov5670_liveshot.so 176 | vendor/lib/libchromatix_ov5670_omi5f06_a3_default_preview.so 177 | vendor/lib/libchromatix_ov5670_omi5f06_a3_default_video.so 178 | vendor/lib/libchromatix_ov5670_omi5f06_a3_hfr_60.so 179 | vendor/lib/libchromatix_ov5670_omi5f06_a3_hfr_90.so 180 | vendor/lib/libchromatix_ov5670_omi5f06_a3_hfr_120.so 181 | vendor/lib/libchromatix_ov5670_omi5f06_common.so 182 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_ds_chromatix.so 183 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_hfr_60.so 184 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_hfr_90.so 185 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_hfr_120.so 186 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_liveshot.so 187 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_preview.so 188 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_snapshot.so 189 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_us_chromatix.so 190 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_video.so 191 | vendor/lib/libchromatix_ov5670_omi5f06_cpp_video_full.so 192 | vendor/lib/libchromatix_ov5670_omi5f06_default_video.so 193 | vendor/lib/libchromatix_ov5670_omi5f06_hfr_60.so 194 | vendor/lib/libchromatix_ov5670_omi5f06_hfr_90.so 195 | vendor/lib/libchromatix_ov5670_omi5f06_hfr_120.so 196 | vendor/lib/libchromatix_ov5670_omi5f06_liveshot.so 197 | vendor/lib/libchromatix_ov5670_omi5f06_postproc.so 198 | vendor/lib/libchromatix_ov5670_omi5f06_preview.so 199 | vendor/lib/libchromatix_ov5670_omi5f06_snapshot.so 200 | vendor/lib/libchromatix_ov5670_omi5f06_video_full.so 201 | vendor/lib/libchromatix_ov5670_omi5f06_zsl_preview.so 202 | vendor/lib/libchromatix_ov5670_omi5f06_zsl_video.so 203 | vendor/lib/libchromatix_ov5670_polaris_a3_default_preview.so 204 | vendor/lib/libchromatix_ov5670_polaris_a3_default_video.so 205 | vendor/lib/libchromatix_ov5670_polaris_a3_hfr_60.so 206 | vendor/lib/libchromatix_ov5670_polaris_a3_hfr_90.so 207 | vendor/lib/libchromatix_ov5670_polaris_a3_hfr_120.so 208 | vendor/lib/libchromatix_ov5670_polaris_common.so 209 | vendor/lib/libchromatix_ov5670_polaris_cpp_ds_chromatix.so 210 | vendor/lib/libchromatix_ov5670_polaris_cpp_hfr_60.so 211 | vendor/lib/libchromatix_ov5670_polaris_cpp_hfr_90.so 212 | vendor/lib/libchromatix_ov5670_polaris_cpp_hfr_120.so 213 | vendor/lib/libchromatix_ov5670_polaris_cpp_liveshot.so 214 | vendor/lib/libchromatix_ov5670_polaris_cpp_preview.so 215 | vendor/lib/libchromatix_ov5670_polaris_cpp_snapshot.so 216 | vendor/lib/libchromatix_ov5670_polaris_cpp_us_chromatix.so 217 | vendor/lib/libchromatix_ov5670_polaris_cpp_video.so 218 | vendor/lib/libchromatix_ov5670_polaris_cpp_video_full.so 219 | vendor/lib/libchromatix_ov5670_polaris_default_video.so 220 | vendor/lib/libchromatix_ov5670_polaris_hfr_60.so 221 | vendor/lib/libchromatix_ov5670_polaris_hfr_90.so 222 | vendor/lib/libchromatix_ov5670_polaris_hfr_120.so 223 | vendor/lib/libchromatix_ov5670_polaris_liveshot.so 224 | vendor/lib/libchromatix_ov5670_polaris_postproc.so 225 | vendor/lib/libchromatix_ov5670_polaris_preview.so 226 | vendor/lib/libchromatix_ov5670_polaris_snapshot.so 227 | vendor/lib/libchromatix_ov5670_polaris_video_full.so 228 | vendor/lib/libchromatix_ov5670_polaris_zsl_preview.so 229 | vendor/lib/libchromatix_ov5670_polaris_zsl_video.so 230 | vendor/lib/libchromatix_ov5670_postproc.so 231 | vendor/lib/libchromatix_ov5670_preview.so 232 | vendor/lib/libchromatix_ov5670_snapshot.so 233 | vendor/lib/libchromatix_ov5670_video_full.so 234 | vendor/lib/libchromatix_ov5670_zsl_preview.so 235 | vendor/lib/libchromatix_ov5670_zsl_video.so 236 | vendor/lib/libchromatix_ov16880_f16v01a_common.so 237 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_ds_chromatix.so 238 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_hfr_60.so 239 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_hfr_90.so 240 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_hfr_120.so 241 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_liveshot.so 242 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_preview.so 243 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_snapshot.so 244 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_us_chromatix.so 245 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_video.so 246 | vendor/lib/libchromatix_ov16880_f16v01a_cpp_video_full.so 247 | vendor/lib/libchromatix_ov16880_f16v01a_default_preview_dw9718s_f16v01a.so 248 | vendor/lib/libchromatix_ov16880_f16v01a_default_video.so 249 | vendor/lib/libchromatix_ov16880_f16v01a_default_video_dw9718s_f16v01a.so 250 | vendor/lib/libchromatix_ov16880_f16v01a_hfr_60.so 251 | vendor/lib/libchromatix_ov16880_f16v01a_hfr_60_dw9718s_f16v01a.so 252 | vendor/lib/libchromatix_ov16880_f16v01a_hfr_90.so 253 | vendor/lib/libchromatix_ov16880_f16v01a_hfr_90_dw9718s_f16v01a.so 254 | vendor/lib/libchromatix_ov16880_f16v01a_hfr_120.so 255 | vendor/lib/libchromatix_ov16880_f16v01a_hfr_120_dw9718s_f16v01a.so 256 | vendor/lib/libchromatix_ov16880_f16v01a_liveshot.so 257 | vendor/lib/libchromatix_ov16880_f16v01a_postproc.so 258 | vendor/lib/libchromatix_ov16880_f16v01a_preview.so 259 | vendor/lib/libchromatix_ov16880_f16v01a_snapshot.so 260 | vendor/lib/libchromatix_ov16880_f16v01a_video_full.so 261 | vendor/lib/libchromatix_ov16880_f16v01a_zsl_preview_dw9718s_f16v01a.so 262 | vendor/lib/libchromatix_ov16880_f16v01a_zsl_video_dw9718s_f16v01a.so 263 | vendor/lib/libchromatix_ov16880_omida05_common.so 264 | vendor/lib/libchromatix_ov16880_omida05_cpp_ds_chromatix.so 265 | vendor/lib/libchromatix_ov16880_omida05_cpp_hfr_60.so 266 | vendor/lib/libchromatix_ov16880_omida05_cpp_hfr_90.so 267 | vendor/lib/libchromatix_ov16880_omida05_cpp_hfr_120.so 268 | vendor/lib/libchromatix_ov16880_omida05_cpp_liveshot.so 269 | vendor/lib/libchromatix_ov16880_omida05_cpp_preview.so 270 | vendor/lib/libchromatix_ov16880_omida05_cpp_snapshot.so 271 | vendor/lib/libchromatix_ov16880_omida05_cpp_us_chromatix.so 272 | vendor/lib/libchromatix_ov16880_omida05_cpp_video.so 273 | vendor/lib/libchromatix_ov16880_omida05_cpp_video_full.so 274 | vendor/lib/libchromatix_ov16880_omida05_default_preview_dw9761b_omida05.so 275 | vendor/lib/libchromatix_ov16880_omida05_default_video.so 276 | vendor/lib/libchromatix_ov16880_omida05_default_video_dw9761b_omida05.so 277 | vendor/lib/libchromatix_ov16880_omida05_hfr_60.so 278 | vendor/lib/libchromatix_ov16880_omida05_hfr_60_dw9761b_omida05.so 279 | vendor/lib/libchromatix_ov16880_omida05_hfr_90.so 280 | vendor/lib/libchromatix_ov16880_omida05_hfr_90_dw9761b_omida05.so 281 | vendor/lib/libchromatix_ov16880_omida05_hfr_120.so 282 | vendor/lib/libchromatix_ov16880_omida05_hfr_120_dw9761b_omida05.so 283 | vendor/lib/libchromatix_ov16880_omida05_liveshot.so 284 | vendor/lib/libchromatix_ov16880_omida05_postproc.so 285 | vendor/lib/libchromatix_ov16880_omida05_preview.so 286 | vendor/lib/libchromatix_ov16880_omida05_snapshot.so 287 | vendor/lib/libchromatix_ov16880_omida05_video_full.so 288 | vendor/lib/libchromatix_ov16880_omida05_zsl_preview_dw9761b_omida05.so 289 | vendor/lib/libchromatix_ov16880_omida05_zsl_video_dw9761b_omida05.so 290 | vendor/lib/libchromatix_s5k3p3_f3p3man_a3_default_preview_dw9714_q3p3maa.so 291 | vendor/lib/libchromatix_s5k3p3_f3p3man_a3_default_video_dw9714_q3p3maa.so 292 | vendor/lib/libchromatix_s5k3p3_f3p3man_a3_hfr_60_dw9714_q3p3maa.so 293 | vendor/lib/libchromatix_s5k3p3_f3p3man_a3_hfr_90_dw9714_q3p3maa.so 294 | vendor/lib/libchromatix_s5k3p3_f3p3man_a3_hfr_120_dw9714_q3p3maa.so 295 | vendor/lib/libchromatix_s5k3p3_f3p3man_a3_zsl_preview_dw9714_q3p3maa.so 296 | vendor/lib/libchromatix_s5k3p3_f3p3man_a3_zsl_video_dw9714_q3p3maa.so 297 | vendor/lib/libchromatix_s5k3p3_f3p3man_common.so 298 | vendor/lib/libchromatix_s5k3p3_f3p3man_cpp_hfr_60.so 299 | vendor/lib/libchromatix_s5k3p3_f3p3man_cpp_hfr_90.so 300 | vendor/lib/libchromatix_s5k3p3_f3p3man_cpp_hfr_120.so 301 | vendor/lib/libchromatix_s5k3p3_f3p3man_cpp_liveshot.so 302 | vendor/lib/libchromatix_s5k3p3_f3p3man_cpp_preview.so 303 | vendor/lib/libchromatix_s5k3p3_f3p3man_cpp_snapshot.so 304 | vendor/lib/libchromatix_s5k3p3_f3p3man_cpp_video.so 305 | vendor/lib/libchromatix_s5k3p3_f3p3man_default_video.so 306 | vendor/lib/libchromatix_s5k3p3_f3p3man_hfr_60.so 307 | vendor/lib/libchromatix_s5k3p3_f3p3man_hfr_90.so 308 | vendor/lib/libchromatix_s5k3p3_f3p3man_hfr_120.so 309 | vendor/lib/libchromatix_s5k3p3_f3p3man_liveshot.so 310 | vendor/lib/libchromatix_s5k3p3_f3p3man_postproc.so 311 | vendor/lib/libchromatix_s5k3p3_f3p3man_preview.so 312 | vendor/lib/libchromatix_s5k3p3_f3p3man_snapshot.so 313 | vendor/lib/libchromatix_s5k3p3_f16s01c_a3_default_preview_dw9718s.so 314 | vendor/lib/libchromatix_s5k3p3_f16s01c_a3_default_video_dw9718s.so 315 | vendor/lib/libchromatix_s5k3p3_f16s01c_a3_hfr_60_dw9718s.so 316 | vendor/lib/libchromatix_s5k3p3_f16s01c_a3_hfr_90_dw9718s.so 317 | vendor/lib/libchromatix_s5k3p3_f16s01c_a3_hfr_120_dw9718s.so 318 | vendor/lib/libchromatix_s5k3p3_f16s01c_a3_zsl_preview_dw9718s.so 319 | vendor/lib/libchromatix_s5k3p3_f16s01c_a3_zsl_video_dw9718s.so 320 | vendor/lib/libchromatix_s5k3p3_f16s01c_common.so 321 | vendor/lib/libchromatix_s5k3p3_f16s01c_cpp_hfr_60.so 322 | vendor/lib/libchromatix_s5k3p3_f16s01c_cpp_hfr_90.so 323 | vendor/lib/libchromatix_s5k3p3_f16s01c_cpp_hfr_120.so 324 | vendor/lib/libchromatix_s5k3p3_f16s01c_cpp_liveshot.so 325 | vendor/lib/libchromatix_s5k3p3_f16s01c_cpp_preview.so 326 | vendor/lib/libchromatix_s5k3p3_f16s01c_cpp_snapshot.so 327 | vendor/lib/libchromatix_s5k3p3_f16s01c_cpp_video.so 328 | vendor/lib/libchromatix_s5k3p3_f16s01c_default_video.so 329 | vendor/lib/libchromatix_s5k3p3_f16s01c_hfr_60.so 330 | vendor/lib/libchromatix_s5k3p3_f16s01c_hfr_90.so 331 | vendor/lib/libchromatix_s5k3p3_f16s01c_hfr_120.so 332 | vendor/lib/libchromatix_s5k3p3_f16s01c_liveshot.so 333 | vendor/lib/libchromatix_s5k3p3_f16s01c_postproc.so 334 | vendor/lib/libchromatix_s5k3p3_f16s01c_preview.so 335 | vendor/lib/libchromatix_s5k3p3_f16s01c_snapshot.so 336 | vendor/lib/libchromatix_s5k3p3_omida01_a3_default_preview_dw9714_q3p3maa.so 337 | vendor/lib/libchromatix_s5k3p3_omida01_a3_default_video_dw9714_q3p3maa.so 338 | vendor/lib/libchromatix_s5k3p3_omida01_a3_hfr_60_dw9714_q3p3maa.so 339 | vendor/lib/libchromatix_s5k3p3_omida01_a3_hfr_90_dw9714_q3p3maa.so 340 | vendor/lib/libchromatix_s5k3p3_omida01_a3_hfr_120_dw9714_q3p3maa.so 341 | vendor/lib/libchromatix_s5k3p3_omida01_a3_zsl_preview_dw9714_q3p3maa.so 342 | vendor/lib/libchromatix_s5k3p3_omida01_a3_zsl_video_dw9714_q3p3maa.so 343 | vendor/lib/libchromatix_s5k3p3_omida01_common.so 344 | vendor/lib/libchromatix_s5k3p3_omida01_cpp_hfr_60.so 345 | vendor/lib/libchromatix_s5k3p3_omida01_cpp_hfr_90.so 346 | vendor/lib/libchromatix_s5k3p3_omida01_cpp_hfr_120.so 347 | vendor/lib/libchromatix_s5k3p3_omida01_cpp_liveshot.so 348 | vendor/lib/libchromatix_s5k3p3_omida01_cpp_preview.so 349 | vendor/lib/libchromatix_s5k3p3_omida01_cpp_snapshot.so 350 | vendor/lib/libchromatix_s5k3p3_omida01_cpp_video.so 351 | vendor/lib/libchromatix_s5k3p3_omida01_default_video.so 352 | vendor/lib/libchromatix_s5k3p3_omida01_hfr_60.so 353 | vendor/lib/libchromatix_s5k3p3_omida01_hfr_90.so 354 | vendor/lib/libchromatix_s5k3p3_omida01_hfr_120.so 355 | vendor/lib/libchromatix_s5k3p3_omida01_liveshot.so 356 | vendor/lib/libchromatix_s5k3p3_omida01_postproc.so 357 | vendor/lib/libchromatix_s5k3p3_omida01_preview.so 358 | vendor/lib/libchromatix_s5k3p3_omida01_snapshot.so 359 | vendor/lib/libchromatix_s5k5e8_yx13_a3_default_preview.so 360 | vendor/lib/libchromatix_s5k5e8_yx13_a3_default_video.so 361 | vendor/lib/libchromatix_s5k5e8_yx13_a3_hfr_60.so 362 | vendor/lib/libchromatix_s5k5e8_yx13_a3_hfr_90.so 363 | vendor/lib/libchromatix_s5k5e8_yx13_a3_hfr_120.so 364 | vendor/lib/libchromatix_s5k5e8_yx13_common.so 365 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_ds_chromatix.so 366 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_hfr_60.so 367 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_hfr_90.so 368 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_hfr_120.so 369 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_liveshot.so 370 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_preview.so 371 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_snapshot.so 372 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_us_chromatix.so 373 | vendor/lib/libchromatix_s5k5e8_yx13_cpp_video.so 374 | vendor/lib/libchromatix_s5k5e8_yx13_default_video.so 375 | vendor/lib/libchromatix_s5k5e8_yx13_hfr_60.so 376 | vendor/lib/libchromatix_s5k5e8_yx13_hfr_90.so 377 | vendor/lib/libchromatix_s5k5e8_yx13_hfr_120.so 378 | vendor/lib/libchromatix_s5k5e8_yx13_liveshot.so 379 | vendor/lib/libchromatix_s5k5e8_yx13_postproc.so 380 | vendor/lib/libchromatix_s5k5e8_yx13_preview.so 381 | vendor/lib/libchromatix_s5k5e8_yx13_snapshot.so 382 | vendor/lib/libchromatix_s5k5e8_yx13_zsl_preview.so 383 | vendor/lib/libchromatix_s5k5e8_yx13_zsl_video.so 384 | vendor/lib/libchromatix_s5k5e8_z5e8yab_a3_default_preview.so 385 | vendor/lib/libchromatix_s5k5e8_z5e8yab_a3_default_video.so 386 | vendor/lib/libchromatix_s5k5e8_z5e8yab_a3_hfr_60.so 387 | vendor/lib/libchromatix_s5k5e8_z5e8yab_a3_hfr_90.so 388 | vendor/lib/libchromatix_s5k5e8_z5e8yab_a3_hfr_120.so 389 | vendor/lib/libchromatix_s5k5e8_z5e8yab_common.so 390 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_ds_chromatix.so 391 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_hfr_60.so 392 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_hfr_90.so 393 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_hfr_120.so 394 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_liveshot.so 395 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_preview.so 396 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_snapshot.so 397 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_us_chromatix.so 398 | vendor/lib/libchromatix_s5k5e8_z5e8yab_cpp_video.so 399 | vendor/lib/libchromatix_s5k5e8_z5e8yab_default_video.so 400 | vendor/lib/libchromatix_s5k5e8_z5e8yab_hfr_60.so 401 | vendor/lib/libchromatix_s5k5e8_z5e8yab_hfr_90.so 402 | vendor/lib/libchromatix_s5k5e8_z5e8yab_hfr_120.so 403 | vendor/lib/libchromatix_s5k5e8_z5e8yab_liveshot.so 404 | vendor/lib/libchromatix_s5k5e8_z5e8yab_postproc.so 405 | vendor/lib/libchromatix_s5k5e8_z5e8yab_preview.so 406 | vendor/lib/libchromatix_s5k5e8_z5e8yab_snapshot.so 407 | vendor/lib/libchromatix_s5k5e8_z5e8yab_zsl_preview.so 408 | vendor/lib/libchromatix_s5k5e8_z5e8yab_zsl_video.so 409 | 410 | # Camera firmware 411 | etc/firmware/cpp_firmware_v1_1_1.fw 412 | etc/firmware/cpp_firmware_v1_1_6.fw 413 | etc/firmware/cpp_firmware_v1_2_0.fw 414 | etc/firmware/cpp_firmware_v1_4_0.fw 415 | etc/firmware/cpp_firmware_v1_5_0.fw 416 | etc/firmware/cpp_firmware_v1_6_0.fw 417 | etc/firmware/cpp_firmware_v1_8_0.fw 418 | etc/firmware/cpp_firmware_v1_10_0.fw 419 | 420 | # Camera sensors 421 | vendor/lib/libmmcamera_ov5670.so 422 | vendor/lib/libmmcamera_ov5670_d5v01g.so 423 | vendor/lib/libmmcamera_ov5670_omi5f06.so 424 | vendor/lib/libmmcamera_ov5670_polaris.so 425 | vendor/lib/libmmcamera_ov16880_f16v01a.so 426 | vendor/lib/libmmcamera_ov16880_f16v01a_eeprom.so 427 | vendor/lib/libmmcamera_ov16880_omida05.so 428 | vendor/lib/libmmcamera_ov16880_omida05_eeprom.so 429 | vendor/lib/libmmcamera_s5k3p3_f3p3man.so 430 | vendor/lib/libmmcamera_s5k3p3_f3p3man_eeprom.so 431 | vendor/lib/libmmcamera_s5k3p3_f16s01c.so 432 | vendor/lib/libmmcamera_s5k3p3_gt24c64_eeprom.so 433 | vendor/lib/libmmcamera_s5k3p3_omida01.so 434 | vendor/lib/libmmcamera_s5k3p3_omida01_eeprom.so 435 | vendor/lib/libmmcamera_s5k5e8_yx13.so 436 | vendor/lib/libmmcamera_s5k5e8_z5e8yab.so 437 | vendor/lib/libmmcamera_s5k5e8_z5e8yab_eeprom.so 438 | vendor/lib/libmmcamera_sunny_omi5f06_eeprom.so 439 | 440 | # Display calibration data 441 | etc/pp_calib_data_sharp_r63315_1080p_video_mode_dsi_panel.xml|08d8a40dc05ab00eb0709319b99e507124aacfdd 442 | 443 | # Fingerprint sensor 444 | bin/gx_fpd 445 | lib64/hw/fingerprint.goodix.default.so:lib64/hw/fingerprint.gdx.so 446 | lib64/hw/fingerprint.msm8952.so:lib64/hw/fingerprint.fpc.so 447 | lib64/hw/gxfingerprint.default.so 448 | lib64/lib_fpc_tac_shared.so 449 | lib64/libfp_client.so 450 | lib64/libfpnav.so 451 | lib64/libfpservice.so 452 | lib/hw/fingerprint.msm8952.so:lib/hw/fingerprint.fpc.so 453 | lib/lib_fpc_tac_shared.so 454 | 455 | # Fingerprint firmware 456 | etc/firmware/goodixfp.b00 457 | etc/firmware/goodixfp.b01 458 | etc/firmware/goodixfp.b02 459 | etc/firmware/goodixfp.b03 460 | etc/firmware/goodixfp.mdt 461 | -------------------------------------------------------------------------------- /audio/mixer_paths_wcd9326.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 | 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 | 458 | 459 | 460 | 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 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 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 | 636 | 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 | 727 | 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 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | 1277 | 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | 1289 | 1290 | 1291 | 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | 1298 | 1299 | 1300 | 1301 | 1302 | 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | 1312 | 1313 | 1314 | 1315 | 1316 | 1317 | 1318 | 1319 | 1320 | 1321 | 1322 | 1323 | 1324 | 1325 | 1326 | 1327 | 1328 | 1329 | 1330 | 1331 | 1332 | 1333 | 1334 | 1335 | 1336 | 1337 | 1338 | 1339 | 1340 | 1341 | 1342 | 1343 | 1344 | 1345 | 1346 | 1347 | 1348 | 1349 | 1350 | 1351 | 1352 | 1353 | 1354 | 1355 | 1356 | 1357 | 1358 | 1359 | 1360 | 1361 | 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | 1368 | 1369 | 1370 | 1371 | 1372 | 1373 | 1374 | 1375 | 1376 | 1377 | 1378 | 1379 | 1380 | 1381 | 1382 | 1383 | 1384 | 1385 | 1386 | 1387 | 1388 | 1389 | 1390 | 1391 | 1392 | 1393 | 1394 | 1395 | 1396 | 1397 | 1398 | 1399 | 1400 | 1401 | 1402 | 1403 | 1404 | 1405 | 1406 | 1407 | 1408 | 1409 | 1410 | 1411 | 1412 | 1413 | 1414 | 1415 | 1416 | 1417 | 1418 | 1419 | 1420 | 1421 | 1422 | 1423 | 1424 | 1425 | 1426 | 1427 | 1428 | 1429 | 1430 | 1431 | 1432 | 1433 | 1434 | 1435 | 1436 | 1437 | 1438 | 1439 | 1440 | 1441 | 1442 | 1443 | 1444 | 1445 | 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | 1452 | 1453 | 1454 | 1455 | 1456 | 1457 | 1458 | 1459 | 1460 | 1461 | 1462 | 1463 | 1464 | 1465 | 1466 | 1467 | 1468 | 1469 | 1470 | 1471 | 1472 | 1473 | 1474 | 1475 | 1476 | 1477 | 1478 | 1479 | 1480 | 1481 | 1482 | 1483 | 1484 | 1485 | 1486 | 1487 | 1488 | 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | 1496 | 1497 | 1498 | 1499 | 1500 | 1501 | 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | 1508 | 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 1515 | 1516 | 1517 | 1518 | 1519 | 1520 | 1521 | 1522 | 1523 | 1524 | 1525 | 1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | 1538 | 1539 | 1540 | 1541 | 1542 | 1543 | 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | 1557 | 1558 | 1559 | 1560 | 1561 | 1562 | 1563 | 1564 | 1565 | 1566 | 1567 | 1568 | 1569 | 1570 | 1571 | 1572 | 1573 | 1574 | 1575 | 1576 | 1577 | 1578 | 1579 | 1580 | 1581 | 1582 | 1583 | 1584 | 1585 | 1586 | 1587 | 1588 | 1589 | 1590 | 1591 | 1592 | 1593 | 1594 | 1595 | 1596 | 1597 | 1598 | 1599 | 1600 | 1601 | 1602 | 1603 | 1604 | 1605 | 1606 | 1607 | 1608 | 1609 | 1610 | 1611 | 1612 | 1613 | 1614 | 1615 | 1616 | 1617 | 1618 | 1619 | 1620 | 1621 | 1622 | 1623 | 1624 | 1625 | 1626 | 1627 | 1628 | 1629 | 1630 | 1631 | 1632 | 1633 | 1634 | 1635 | 1636 | 1637 | 1638 | 1639 | 1640 | 1641 | 1642 | 1643 | 1644 | 1645 | 1646 | 1647 | 1648 | 1649 | 1650 | 1651 | 1652 | 1653 | 1654 | 1655 | 1656 | 1657 | 1658 | 1659 | 1660 | 1661 | 1662 | 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | 1669 | 1670 | 1671 | 1672 | 1673 | 1674 | 1675 | 1676 | 1677 | 1678 | 1679 | 1680 | 1681 | 1682 | 1683 | 1684 | 1685 | 1686 | 1687 | 1688 | 1689 | 1690 | 1691 | 1692 | 1693 | 1694 | 1695 | 1696 | 1697 | 1698 | 1699 | 1700 | 1701 | 1702 | 1703 | 1704 | 1705 | 1706 | 1707 | 1708 | 1709 | 1710 | 1711 | 1712 | 1713 | 1714 | 1715 | 1716 | 1717 | 1718 | 1719 | 1720 | 1721 | 1722 | 1723 | 1724 | 1725 | 1726 | 1727 | 1728 | 1729 | 1730 | 1731 | 1732 | 1733 | 1734 | 1735 | 1736 | 1737 | 1738 | 1739 | 1740 | 1741 | 1742 | 1743 | 1744 | 1745 | 1746 | 1747 | 1748 | 1749 | 1750 | 1751 | 1752 | 1753 | 1754 | 1755 | 1756 | 1757 | 1758 | 1759 | 1760 | 1761 | 1762 | 1763 | 1764 | 1765 | 1766 | 1767 | 1768 | 1769 | 1770 | 1771 | 1772 | 1773 | 1774 | 1775 | 1776 | 1777 | 1778 | 1779 | 1780 | 1781 | 1782 | 1783 | 1784 | 1785 | 1786 | 1787 | 1788 | 1789 | 1790 | 1791 | 1792 | 1793 | 1794 | 1795 | 1796 | 1797 | 1798 | 1799 | 1800 | 1801 | 1802 | 1803 | 1804 | 1805 | 1806 | 1807 | 1808 | 1809 | 1810 | 1811 | 1812 | 1813 | 1814 | 1815 | 1816 | 1817 | 1818 | 1819 | 1820 | 1821 | 1822 | 1823 | 1824 | 1825 | 1826 | 1827 | 1828 | 1829 | 1830 | 1831 | 1832 | 1833 | 1834 | 1835 | 1836 | 1837 | 1838 | 1839 | 1840 | 1841 | 1842 | 1843 | 1844 | 1845 | 1846 | 1847 | 1848 | 1849 | 1850 | 1851 | 1852 | 1853 | 1854 | 1855 | 1856 | 1857 | 1858 | 1859 | 1860 | 1861 | 1862 | 1863 | 1864 | 1865 | 1866 | 1867 | 1868 | 1869 | 1870 | 1871 | 1872 | 1873 | 1874 | 1875 | 1876 | 1877 | 1878 | 1879 | 1880 | 1881 | 1882 | 1883 | 1884 | 1885 | 1886 | 1887 | 1888 | 1889 | 1890 | 1891 | 1892 | 1893 | 1894 | 1895 | 1896 | 1897 | 1898 | 1899 | 1900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1980 | 1981 | 1982 | 1983 | 1984 | 1985 | 1986 | 1987 | 1988 | 1989 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 2031 | 2032 | 2033 | 2034 | 2035 | 2036 | 2037 | 2038 | 2039 | 2040 | 2041 | 2042 | 2043 | 2044 | 2045 | 2046 | 2047 | 2048 | 2049 | 2050 | 2051 | 2052 | 2053 | 2054 | 2055 | 2056 | 2057 | 2058 | 2059 | 2060 | 2061 | 2062 | 2063 | 2064 | 2065 | 2066 | 2067 | 2068 | 2069 | 2070 | 2071 | 2072 | 2073 | 2074 | 2075 | 2076 | 2077 | 2078 | 2079 | 2080 | 2081 | 2082 | 2083 | 2084 | 2085 | 2086 | 2089 | 2090 | 2091 | 2092 | 2093 | 2094 | 2095 | 2096 | 2097 | 2098 | 2099 | 2100 | 2101 | 2102 | 2103 | 2104 | 2105 | 2106 | 2107 | 2108 | 2109 | 2110 | 2111 | 2112 | 2113 | 2114 | 2115 | 2116 | 2117 | 2118 | 2119 | 2120 | 2121 | 2122 | 2123 | 2124 | 2125 | 2126 | 2127 | 2128 | 2129 | 2130 | 2131 | 2132 | 2133 | 2134 | 2135 | 2136 | 2139 | 2140 | 2141 | 2142 | 2143 | 2144 | 2147 | 2148 | 2149 | 2150 | 2151 | 2152 | 2153 | 2154 | 2155 | 2156 | 2157 | 2158 | 2159 | 2160 | 2161 | 2162 | 2163 | 2164 | 2165 | 2166 | 2167 | 2168 | 2169 | 2170 | 2171 | 2172 | 2173 | 2174 | 2175 | 2176 | 2177 | 2178 | 2179 | 2180 | 2181 | 2182 | 2183 | 2184 | 2185 | 2186 | 2187 | 2188 | 2189 | 2190 | 2191 | 2192 | 2193 | 2194 | 2195 | 2196 | 2197 | 2198 | 2199 | 2200 | 2201 | 2202 | 2203 | 2204 | 2205 | 2206 | 2207 | 2208 | 2209 | 2210 | 2211 | 2212 | 2213 | 2214 | 2215 | 2216 | 2217 | 2218 | 2219 | 2220 | 2221 | 2222 | 2223 | 2224 | 2225 | 2226 | 2227 | 2228 | 2229 | 2230 | 2231 | 2232 | 2233 | 2234 | 2235 | 2236 | 2237 | 2238 | 2239 | 2240 | 2241 | 2242 | 2243 | 2244 | 2245 | 2246 | 2247 | 2248 | 2249 | 2250 | 2251 | 2252 | 2253 | 2254 | 2255 | 2256 | 2257 | 2258 | 2259 | 2260 | 2261 | 2262 | 2263 | 2264 | 2265 | 2266 | 2267 | 2268 | 2269 | 2270 | 2271 | 2272 | 2273 | 2274 | 2275 | 2276 | 2277 | 2278 | 2279 | 2280 | 2281 | 2282 | 2283 | 2284 | 2285 | 2286 | 2287 | 2288 | 2289 | 2290 | 2291 | 2292 | 2293 | 2294 | 2295 | 2296 | 2297 | 2298 | 2299 | 2300 | 2301 | 2302 | 2303 | 2304 | 2305 | 2306 | 2307 | 2308 | 2309 | 2310 | 2311 | 2312 | 2313 | 2314 | 2315 | 2316 | 2317 | 2318 | 2319 | 2320 | 2321 | 2322 | 2323 | 2324 | 2325 | 2326 | 2327 | 2328 | 2329 | 2330 | 2331 | 2332 | 2333 | 2334 | 2335 | 2336 | 2337 | 2338 | 2339 | 2340 | 2341 | 2342 | 2343 | 2344 | 2345 | 2346 | 2347 | 2348 | 2349 | 2350 | 2351 | 2352 | 2353 | 2354 | 2355 | 2356 | 2357 | 2358 | 2359 | 2360 | 2361 | 2362 | 2363 | 2364 | 2365 | 2366 | 2367 | 2368 | 2369 | 2370 | 2371 | 2372 | 2373 | 2374 | 2375 | 2376 | 2377 | 2378 | 2379 | 2380 | 2381 | 2382 | 2383 | 2384 | 2385 | 2386 | 2387 | 2388 | --------------------------------------------------------------------------------