blob: c97b0ef85dcb34769dc03cff96d599a69f843926 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001# main project for fpga8168-rtos
2ARCH := arm64
3ARM_CPU := cortex-a53
4TARGET := aiv8168m1-rtos
5WITH_KERNEL_VM := 1
6WITH_LINKER_GC := 1
7
8# buffer size used by fastboot to load images
9SCRATCH_SIZE ?= 0x01000000 # 16MB
10# the maximum dram size for TEE loaded from stroage
11MAX_TEE_DRAM_SIZE ?= 0x01000000 # 16MB
12# the maximum dram size for KERNEL loaded from stroage
13MAX_KERNEL_SIZE ?= 0x01000000 # 16MB
14
15# add for dram config
16GLOBAL_DEFINES += \
17 COMBO_LPDDR4=1
18
19BOOTAPP := blxboot
20ENABLE_BL33_LOAD := 1
21ENABLE_BUILTIN_BL33 := 0
22LK_AS_BL33 := 0
23
24LK_HEAP_IMPLEMENTATION=miniheap