blob: 128b4bec33e4ece0e25c53823d65b2b4b2cc33a9 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001# main project for fpga8168-rtos
2ARCH := arm64
3ARM_CPU := cortex-a53
4TARGET := fpga8168-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
15BOOTAPP := blxboot
16ENABLE_BL33_LOAD := 1
17ENABLE_BUILTIN_BL33 := 1
18
19# arch for lz4 compression lib
20GLOBAL_DEFINES += \
21 LZ4_ARCH64=1 \
22
23LK_HEAP_IMPLEMENTATION=miniheap