blob: bdc4d0e49f694db1639b0a62df1394c76a529789 [file] [log] [blame]
Amit Pundirfb9cf9b2022-03-27 21:52:15 +05301# Copyright (C) 2013 The 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# Primary Arch
17TARGET_ARCH := arm64
18TARGET_ARCH_VARIANT := armv8-2a
19TARGET_CPU_VARIANT := kryo385
20TARGET_CPU_ABI := arm64-v8a
21
22# Secondary Arch
23TARGET_2ND_ARCH := arm
24TARGET_2ND_ARCH_VARIANT := armv8-2a
25TARGET_2ND_CPU_VARIANT := kryo385
26TARGET_2ND_CPU_ABI := armeabi-v7a
27TARGET_2ND_CPU_ABI2 := armeabi
28
29TARGET_USES_64_BIT_BINDER := true
30
31TARGET_NO_BOOTLOADER := true
32TARGET_NO_KERNEL := false
33TARGET_NO_RECOVERY := true
34
35# Kernel/boot.img Configuration
36BOARD_KERNEL_BASE := 0x00000000
37BOARD_KERNEL_PAGESIZE := 4096
38BOARD_KERNEL_TAGS_OFFSET := 0x00000100
39BOARD_RAMDISK_OFFSET := 0x01000000
Caleb Connolly2fb7d6e2022-05-18 13:23:38 +010040BOARD_KERNEL_CMDLINE := console=ttyMSM0,115200n8 earlycon earlyprintk console=tty0 androidboot.console=ttyMSM0 no_console_suspend
Amit Pundirfb9cf9b2022-03-27 21:52:15 +053041BOARD_KERNEL_CMDLINE += androidboot.boot_devices=soc@0/1d84000.ufshc
42BOARD_KERNEL_CMDLINE += firmware_class.path=/vendor/firmware/ init=/init printk.devkmsg=on
43BOARD_KERNEL_CMDLINE += deferred_probe_timeout=30 androidboot.selinux=permissive
44
45# Image Configuration
46BOARD_FLASH_BLOCK_SIZE := 262144
47BOARD_BOOTIMAGE_PARTITION_SIZE := 67108864 #64M
48BOARD_VENDORIMAGE_PARTITION_SIZE := 536870912
49
50BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4
51TARGET_USERIMAGES_USE_EXT4 := true
52TARGET_USERIMAGES_USE_F2FS := true
53TARGET_COPY_OUT_VENDOR := vendor
54BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4
55
56# Enable Treble
57PRODUCT_FULL_TREBLE := true
58BOARD_VNDK_VERSION := current
59
60# Mesa DRM hwcomposer
61BOARD_USES_DRM_HWCOMPOSER := true
62BOARD_GPU_DRIVERS := freedreno virgl
63TARGET_USES_HWC2 := true
64
65# WiFi
66WPA_SUPPLICANT_VERSION := VER_0_8_X
67BOARD_WPA_SUPPLICANT_DRIVER := NL80211
68BOARD_HOSTAPD_DRIVER := NL80211
69BOARD_WLAN_DEVICE := qcwcn
70BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE)
71
72# BT
73BOARD_HAVE_BLUETOOTH := true
74
75# TinyHAL
76BOARD_USES_TINYHAL_AUDIO := true
77
78BOARD_SEPOLICY_DIRS += \
79 device/generic/sdm845/shared/sepolicy \
80 system/bt/vendor_libs/linux/sepolicy
81
82DEVICE_MANIFEST_FILE := device/generic/sdm845/shared/manifest.xml
83DEVICE_MATRIX_FILE := device/generic/sdm845/shared/compatibility_matrix.xml
84
85# Enable dex pre-opt to speed up initial boot
86ifeq ($(HOST_OS),linux)
87 ifeq ($(WITH_DEXPREOPT),)
88 WITH_DEXPREOPT := true
89 WITH_DEXPREOPT_PIC := true
90 endif
91endif