blob: de9d0a74f060677cea8fd42290b99d07791bd52e [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +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
15BOOTAPP := blxboot
16ENABLE_BL33_LOAD := 1
17ENABLE_BUILTIN_BL33 := 0
18LK_AS_BL33 := 0
19
20LK_HEAP_IMPLEMENTATION=miniheap