blob: cca3211e502e259315ad244b0c542c105be97498 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001# main project for EVB nand
2ARCH := arm
3ARM_CPU := cortex-a7
4TARGET := auto2731evb-ivt-nand-lp4
5WITH_KERNEL_VM := 1
6WITH_LINKER_GC := 1
7
8SCRATCH_SIZE ?= 0x01000000 # 16MB
9MAX_TEE_DRAM_SIZE ?= 0x01000000 # 16MB
10MAX_KERNEL_SIZE ?= 0x01000000 # 16MB
11MAX_SPMFW_SIZE ?= 0x00010000 # 64KB
12
13CA35_FREQ := CA35_FREQ_806MHZ
14
15BOOTAPP := blxboot
16ENABLE_BUILTIN_BL33 := 0
17
18# arch for lz4 compression lib
19GLOBAL_DEFINES += \
20 LZ4_ARCH64=0 \
21 MTK_NAND_PAGE_SIZE=4096 \
22
23LK_HEAP_IMPLEMENTATION=miniheap
24
25ifeq ($(strip $(AB_OTA_UPDATER)),yes)
26include project/auto2731-config/auto2731-ivt-partition_ab.mk
27else
28include project/auto2731-config/auto2731-ivt-partition.mk
29endif