blob: 61975988c2328ebb64384f89aa7302118e182f13 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001# main project for aiv8365m1v1-aiot-emmc
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
15DRAM_TYPE := LP4X_EMCP
16
17BOOTAPP := blxboot
18ENABLE_BL33_LOAD := 1
19ENABLE_BUILTIN_BL33 := 1
20LK_AS_BL33 := 0
21
22# arch for lz4 compression lib
23GLOBAL_DEFINES += \
24 LZ4_ARCH64=1 \
25
26LK_HEAP_IMPLEMENTATION=miniheap