merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 1 | # |
Michael Bestas | 4e1ba2f | 2024-05-12 06:38:39 +0300 | [diff] [blame] | 2 | # SPDX-FileCopyrightText: 2021-2024 The LineageOS Project |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | # |
| 5 | |
Michael Bestas | 9e3d0d6 | 2024-05-28 03:47:26 +0300 | [diff] [blame] | 6 | DEVICE_PATH := device/shift/otter |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 7 | |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 8 | # A/B |
| 9 | AB_OTA_UPDATER := true |
| 10 | |
| 11 | AB_OTA_PARTITIONS += \ |
| 12 | boot \ |
| 13 | dtbo \ |
| 14 | odm \ |
| 15 | product \ |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 16 | system \ |
| 17 | system_ext \ |
| 18 | vbmeta \ |
| 19 | vbmeta_system \ |
Michael Bestas | 99a5c71 | 2023-08-30 21:12:04 +0300 | [diff] [blame] | 20 | vendor \ |
| 21 | vendor_boot |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 22 | |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 23 | # Architecture |
| 24 | TARGET_ARCH := arm64 |
Adithya R | 87d22e1 | 2021-01-24 14:02:20 +0530 | [diff] [blame] | 25 | TARGET_ARCH_VARIANT := armv8-2a-dotprod |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 26 | TARGET_CPU_ABI := arm64-v8a |
| 27 | TARGET_CPU_ABI2 := |
| 28 | TARGET_CPU_VARIANT := cortex-a76 |
| 29 | |
| 30 | TARGET_2ND_ARCH := arm |
| 31 | TARGET_2ND_ARCH_VARIANT := armv8-a |
| 32 | TARGET_2ND_CPU_ABI := armeabi-v7a |
| 33 | TARGET_2ND_CPU_ABI2 := armeabi |
| 34 | TARGET_2ND_CPU_VARIANT := cortex-a76 |
| 35 | |
merothh | 750fa00 | 2022-01-02 19:42:51 +0530 | [diff] [blame] | 36 | # Audio |
| 37 | AUDIO_FEATURE_ENABLED_EXTENDED_COMPRESS_FORMAT := true |
Rohit | 7737da6 | 2023-03-17 14:44:12 +0530 | [diff] [blame] | 38 | AUDIO_FEATURE_ENABLED_GEF_SUPPORT := true |
Michael Bestas | e76ee35 | 2023-08-29 22:52:45 +0300 | [diff] [blame] | 39 | AUDIO_FEATURE_ENABLED_GKI := true |
merothh | 750fa00 | 2022-01-02 19:42:51 +0530 | [diff] [blame] | 40 | AUDIO_FEATURE_ENABLED_INSTANCE_ID := true |
Rohit | 7737da6 | 2023-03-17 14:44:12 +0530 | [diff] [blame] | 41 | AUDIO_FEATURE_ENABLED_PROXY_DEVICE := true |
merothh | 750fa00 | 2022-01-02 19:42:51 +0530 | [diff] [blame] | 42 | AUDIO_FEATURE_ENABLED_SSR := true |
Michael Bestas | e76ee35 | 2023-08-29 22:52:45 +0300 | [diff] [blame] | 43 | AUDIO_FEATURE_ENABLED_SVA_MULTI_STAGE := true |
| 44 | BOARD_SUPPORTS_OPENSOURCE_STHAL := true |
Rohit | 7737da6 | 2023-03-17 14:44:12 +0530 | [diff] [blame] | 45 | BOARD_SUPPORTS_SOUND_TRIGGER := true |
| 46 | BOARD_USES_ALSA_AUDIO := true |
merothh | 750fa00 | 2022-01-02 19:42:51 +0530 | [diff] [blame] | 47 | |
Michael Bestas | b08b3cc | 2022-02-16 21:47:07 +0200 | [diff] [blame] | 48 | # Bootloader |
Michael Bestas | 9e3d0d6 | 2024-05-28 03:47:26 +0300 | [diff] [blame] | 49 | TARGET_BOOTLOADER_BOARD_NAME := otter |
Michael Bestas | b08b3cc | 2022-02-16 21:47:07 +0200 | [diff] [blame] | 50 | |
Rohit Sekhar | 7bd009a | 2023-09-19 15:51:14 +0530 | [diff] [blame] | 51 | # Camera |
| 52 | TARGET_CAMERA_OVERRIDE_FORMAT_FROM_RESERVED := true |
| 53 | |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 54 | # Display |
Luofan Chen | 4fc24e5 | 2023-01-18 23:01:48 +0800 | [diff] [blame] | 55 | TARGET_GRALLOC_HANDLE_HAS_RESERVED_SIZE := true |
Michael Bestas | b16c8bb | 2024-05-29 02:00:36 +0300 | [diff] [blame] | 56 | TARGET_SCREEN_DENSITY := 420 |
merothh | 7af51cb | 2022-01-02 20:14:21 +0530 | [diff] [blame] | 57 | TARGET_USES_DISPLAY_RENDER_INTENTS := true |
| 58 | TARGET_USES_GRALLOC4 := true |
| 59 | TARGET_USES_HWC2 := true |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 60 | |
merothh | 1b7e530 | 2022-01-03 00:41:34 +0530 | [diff] [blame] | 61 | # Filesystem |
| 62 | TARGET_FS_CONFIG_GEN := $(DEVICE_PATH)/config.fs |
| 63 | |
Michael Bestas | d870a48 | 2023-05-04 01:19:43 +0300 | [diff] [blame] | 64 | # GPS |
| 65 | BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE := default |
Michael Bestas | d870a48 | 2023-05-04 01:19:43 +0300 | [diff] [blame] | 66 | |
merothh | 74ca26a | 2022-01-02 19:12:01 +0530 | [diff] [blame] | 67 | # HIDL |
| 68 | DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE := \ |
Michael Bestas | 82cb3f9 | 2024-05-12 08:11:39 +0300 | [diff] [blame] | 69 | $(DEVICE_PATH)/device_framework_matrix.xml \ |
Bruno Martins | ca30f51 | 2022-04-05 10:34:38 +0100 | [diff] [blame] | 70 | hardware/qcom-caf/common/vendor_framework_compatibility_matrix.xml \ |
merothh | 74ca26a | 2022-01-02 19:12:01 +0530 | [diff] [blame] | 71 | vendor/lineage/config/device_framework_matrix.xml |
Michael Bestas | 502781b | 2023-08-30 14:18:49 +0300 | [diff] [blame] | 72 | DEVICE_MANIFEST_FILE := $(DEVICE_PATH)/manifest_yupik.xml |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 73 | DEVICE_MATRIX_FILE := hardware/qcom-caf/common/compatibility_matrix.xml |
merothh | 74ca26a | 2022-01-02 19:12:01 +0530 | [diff] [blame] | 74 | |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 75 | # Kernel |
Michael Bestas | a43ccee | 2023-08-29 19:42:04 +0300 | [diff] [blame] | 76 | BOARD_BOOT_HEADER_VERSION := 3 |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 77 | BOARD_KERNEL_BASE := 0x00000000 |
| 78 | BOARD_KERNEL_PAGESIZE := 4096 |
| 79 | BOARD_MKBOOTIMG_ARGS += --header_version $(BOARD_BOOT_HEADER_VERSION) |
| 80 | |
| 81 | BOARD_INCLUDE_DTB_IN_BOOTIMG := true |
Alexander Koskovich | 744125d | 2022-04-11 21:13:13 -0700 | [diff] [blame] | 82 | BOARD_KERNEL_CMDLINE := \ |
| 83 | androidboot.console=ttyMSM0 \ |
| 84 | androidboot.hardware=qcom \ |
| 85 | androidboot.memcg=1 \ |
| 86 | androidboot.usbcontroller=a600000.dwc3 \ |
| 87 | cgroup.memory=nokmem,nosocket \ |
Michael Bestas | a43ccee | 2023-08-29 19:42:04 +0300 | [diff] [blame] | 88 | ip6table_raw.raw_before_defrag=1 \ |
| 89 | iptable_raw.raw_before_defrag=1 \ |
Alexander Koskovich | 744125d | 2022-04-11 21:13:13 -0700 | [diff] [blame] | 90 | loop.max_part=7 \ |
| 91 | lpm_levels.sleep_disabled=1 \ |
| 92 | msm_rtb.filter=0x237 \ |
Michael Bestas | a43ccee | 2023-08-29 19:42:04 +0300 | [diff] [blame] | 93 | pcie_ports=compat \ |
Alexander Koskovich | 744125d | 2022-04-11 21:13:13 -0700 | [diff] [blame] | 94 | service_locator.enable=1 \ |
Michael Bestas | a43ccee | 2023-08-29 19:42:04 +0300 | [diff] [blame] | 95 | swiotlb=0 |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 96 | |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 97 | BOARD_KERNEL_IMAGE_NAME := Image |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 98 | BOARD_KERNEL_SEPARATED_DTBO := true |
Michael Bestas | d3bda09 | 2024-08-31 04:23:45 +0300 | [diff] [blame] | 99 | TARGET_KERNEL_CONFIG := vendor/lahaina-qgki_defconfig vendor/debugfs.config vendor/otter.config |
Michael Bestas | a43ccee | 2023-08-29 19:42:04 +0300 | [diff] [blame] | 100 | TARGET_KERNEL_NO_GCC := true |
Michael Bestas | 9e3d0d6 | 2024-05-28 03:47:26 +0300 | [diff] [blame] | 101 | TARGET_KERNEL_SOURCE := kernel/shift/qcm6490 |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 102 | |
Michael Bestas | 390c82c | 2023-08-30 03:13:59 +0300 | [diff] [blame] | 103 | # Kernel modules |
Mohammed Siddiq | b04dc9d | 2021-02-12 23:02:52 +0530 | [diff] [blame] | 104 | BOARD_VENDOR_KERNEL_MODULES_BLOCKLIST_FILE := $(DEVICE_PATH)/modules.blocklist |
Michael Bestas | 2abd995 | 2024-05-12 21:09:20 +0300 | [diff] [blame] | 105 | BOARD_VENDOR_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load)) |
Michael Bestas | 58712e7 | 2023-09-04 22:48:18 +0300 | [diff] [blame] | 106 | BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load.recovery)) |
| 107 | BOOT_KERNEL_MODULES := $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD) |
Michael Bestas | 390c82c | 2023-08-30 03:13:59 +0300 | [diff] [blame] | 108 | TARGET_MODULE_ALIASES += wlan.ko:qca_cld3_wlan.ko |
Erfan Abdi | dfd3663 | 2020-12-18 01:12:50 +0330 | [diff] [blame] | 109 | |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 110 | # Metadata |
| 111 | BOARD_USES_METADATA_PARTITION := true |
| 112 | |
| 113 | # Partitions (Sizes) |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 114 | BOARD_FLASH_BLOCK_SIZE := 262144 # (BOARD_KERNEL_PAGESIZE * 64) |
| 115 | |
Michael Bestas | ccc3bbf | 2023-11-22 15:51:28 +0200 | [diff] [blame] | 116 | -include vendor/lineage/config/BoardConfigReservedSize.mk |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 117 | BOARD_BOOTIMAGE_PARTITION_SIZE := 100663296 |
| 118 | BOARD_DTBOIMG_PARTITION_SIZE := 25165824 |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 119 | BOARD_METADATAIMAGE_PARTITION_SIZE := 16777216 |
Michael Bestas | 99a5c71 | 2023-08-30 21:12:04 +0300 | [diff] [blame] | 120 | BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE := 100663296 |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 121 | BOARD_SUPER_PARTITION_SIZE := 6442450944 |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 122 | |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 123 | BOARD_SUPER_PARTITION_GROUPS := qti_dynamic_partitions |
| 124 | BOARD_QTI_DYNAMIC_PARTITIONS_PARTITION_LIST := odm product system system_ext vendor |
| 125 | BOARD_QTI_DYNAMIC_PARTITIONS_SIZE := 6438256640 |
| 126 | |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 127 | # Partitions (Other) |
| 128 | BOARD_ODMIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 129 | BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE := ext4 |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 130 | BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4 |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 131 | BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE := ext4 |
merothh | 726fc3a | 2022-01-03 04:59:57 +0530 | [diff] [blame] | 132 | BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 133 | TARGET_COPY_OUT_ODM := odm |
| 134 | TARGET_COPY_OUT_PRODUCT := product |
| 135 | TARGET_COPY_OUT_SYSTEM_EXT := system_ext |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 136 | TARGET_COPY_OUT_VENDOR := vendor |
| 137 | |
merothh | 750fa00 | 2022-01-02 19:42:51 +0530 | [diff] [blame] | 138 | # Platform |
| 139 | BOARD_USES_QCOM_HARDWARE := true |
Michael Bestas | 7daa2d4 | 2023-08-29 20:12:57 +0300 | [diff] [blame] | 140 | TARGET_BOARD_PLATFORM := lahaina |
merothh | 750fa00 | 2022-01-02 19:42:51 +0530 | [diff] [blame] | 141 | |
Michael Bestas | 9ab144c | 2024-05-19 00:51:00 +0300 | [diff] [blame] | 142 | # Power |
| 143 | TARGET_TAP_TO_WAKE_NODE := "/sys/devices/platform/goodix_ts.0/gesture/double_en" |
| 144 | |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 145 | # Recovery |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 146 | BOARD_INCLUDE_RECOVERY_DTBO := true |
Alexander Koskovich | ea31804 | 2022-02-06 23:53:22 -0700 | [diff] [blame] | 147 | BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT := true |
Michael Bestas | 9bb5a14 | 2024-05-29 00:19:57 +0300 | [diff] [blame] | 148 | TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/init/fstab.qcom |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 149 | TARGET_RECOVERY_PIXEL_FORMAT := RGBX_8888 |
Michael Bestas | b16c8bb | 2024-05-29 02:00:36 +0300 | [diff] [blame] | 150 | TARGET_RECOVERY_UI_MARGIN_HEIGHT := 64 |
| 151 | TARGET_RECOVERY_UI_MARGIN_WIDTH := 32 |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 152 | TARGET_USERIMAGES_USE_EXT4 := true |
| 153 | TARGET_USERIMAGES_USE_F2FS := true |
merothh | acf1dfa | 2022-01-02 18:21:21 +0530 | [diff] [blame] | 154 | |
Sebastiano Barezzi | d70ce29 | 2021-02-10 22:08:35 +0100 | [diff] [blame] | 155 | # RIL |
| 156 | ENABLE_VENDOR_RIL_SERVICE := true |
| 157 | |
merothh | acf1dfa | 2022-01-02 18:21:21 +0530 | [diff] [blame] | 158 | # Security patch level |
Michael Bestas | 5703ee7 | 2024-11-02 03:54:33 +0200 | [diff] [blame] | 159 | BOOT_SECURITY_PATCH := 2024-10-05 |
| 160 | VENDOR_SECURITY_PATCH := 2024-10-05 |
merothh | acf1dfa | 2022-01-02 18:21:21 +0530 | [diff] [blame] | 161 | |
merothh | 3b429fa | 2022-01-03 05:10:38 +0530 | [diff] [blame] | 162 | # SEPolicy |
Bruno Martins | 67b8549 | 2023-10-24 18:12:15 +0100 | [diff] [blame] | 163 | include device/qcom/sepolicy_vndr/SEPolicy.mk |
merothh | 3b429fa | 2022-01-03 05:10:38 +0530 | [diff] [blame] | 164 | BOARD_VENDOR_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy/vendor |
| 165 | |
merothh | beea433 | 2022-01-03 05:02:03 +0530 | [diff] [blame] | 166 | # Verified Boot |
Michael Bestas | 5703ee7 | 2024-11-02 03:54:33 +0200 | [diff] [blame] | 167 | STOCK_SECURITY_PATCH := 2024-10-05 # Latest stock update available |
merothh | beea433 | 2022-01-03 05:02:03 +0530 | [diff] [blame] | 168 | BOARD_AVB_ENABLE := true |
Rashed Abdel-Tawab | 95c87ca | 2019-09-07 11:13:09 -0700 | [diff] [blame] | 169 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --flags 3 |
merothh | beea433 | 2022-01-03 05:02:03 +0530 | [diff] [blame] | 170 | BOARD_AVB_VBMETA_SYSTEM := system system_ext product |
Michael Bestas | f6ee591 | 2023-08-30 21:48:37 +0300 | [diff] [blame] | 171 | BOARD_AVB_VBMETA_SYSTEM_ALGORITHM := SHA256_RSA4096 |
| 172 | BOARD_AVB_VBMETA_SYSTEM_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
Michael Bestas | 7881721 | 2024-05-18 11:00:46 +0300 | [diff] [blame] | 173 | BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX := $(shell date -d 'TZ="GMT" $(STOCK_SECURITY_PATCH)' +%s) |
merothh | beea433 | 2022-01-03 05:02:03 +0530 | [diff] [blame] | 174 | BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION := 2 |
| 175 | |
Sebastiano Barezzi | fd6e1f8 | 2021-02-10 22:10:19 +0100 | [diff] [blame] | 176 | # Wifi |
| 177 | BOARD_WLAN_DEVICE := qcwcn |
| 178 | BOARD_HOSTAPD_DRIVER := NL80211 |
| 179 | BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE) |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 180 | BOARD_WPA_SUPPLICANT_DRIVER := $(BOARD_HOSTAPD_DRIVER) |
| 181 | BOARD_WPA_SUPPLICANT_PRIVATE_LIB := $(BOARD_HOSTAPD_PRIVATE_LIB) |
Mohammad Asaad Akram | 07f7ba3 | 2022-02-28 13:55:13 -0700 | [diff] [blame] | 182 | BOARD_WPA_SUPPLICANT_PRIVATE_LIB_EVENT := "ON" |
Peng Xu | 80b1cc1 | 2017-02-07 15:16:52 -0800 | [diff] [blame] | 183 | CONFIG_IEEE80211AX := true |
Sebastiano Barezzi | fd6e1f8 | 2021-02-10 22:10:19 +0100 | [diff] [blame] | 184 | WIFI_DRIVER_STATE_CTRL_PARAM := "/dev/wlan" |
| 185 | WIFI_DRIVER_STATE_OFF := "OFF" |
| 186 | WIFI_DRIVER_STATE_ON := "ON" |
Sebastiano Barezzi | fd6e1f8 | 2021-02-10 22:10:19 +0100 | [diff] [blame] | 187 | WIFI_HIDL_FEATURE_AWARE := true |
Michael Bestas | 70190bb | 2024-05-12 08:00:29 +0300 | [diff] [blame] | 188 | WIFI_HIDL_FEATURE_DUAL_INTERFACE := true |
Jimmy Chen | acd7fc3 | 2019-10-03 11:04:05 +0800 | [diff] [blame] | 189 | WIFI_HIDL_UNIFIED_SUPPLICANT_SERVICE_RC_ENTRY := true |
Sebastiano Barezzi | fd6e1f8 | 2021-02-10 22:10:19 +0100 | [diff] [blame] | 190 | WPA_SUPPLICANT_VERSION := VER_0_8_X |
| 191 | |
merothh | acf1dfa | 2022-01-02 18:21:21 +0530 | [diff] [blame] | 192 | # Inherit the proprietary files |
Michael Bestas | 9e3d0d6 | 2024-05-28 03:47:26 +0300 | [diff] [blame] | 193 | include vendor/shift/otter/BoardConfigVendor.mk |
Alexander Martinz | ab33591 | 2024-12-05 09:12:21 +0100 | [diff] [blame^] | 194 | |
| 195 | # Include ShiftOS specific BoardConfig if existing |
| 196 | -include device/shift/otter/shiftos/BoardConfig.mk |