agl_raspberrypi3.inc: Set CMA for SOTA
[AGL/meta-agl.git] / meta-agl-bsp / conf / include / agl_raspberrypi3.inc
1 # Maximum memory allowed to be assigned
2 GPU_MEM = "128"
3
4 ENABLE_CMA = "1"
5 # Add CMA to the kernel arguments for SOTA
6 OSTREE_KERNEL_ARGS_sota_append = " cma=256M"
7 CMA_LWM = "16"
8 CMA_HWM = "32"
9
10 MULTI_PROVIDER_WHITELIST += "virtual/libgl virtual/egl virtual/libgles1 virtual/libgles2"
11
12 # The correct config for a Raspberry Pi 3 in 32bit mode
13 UBOOT_MACHINE = "rpi_3_32b_config"
14
15 KERNEL_IMAGETYPE = "uImage"
16
17 MACHINE_FEATURES += "vc4graphics"
18
19 # For libomxil
20 #LICENSE_FLAGS_WHITELIST = "commercial"
21
22 IMAGE_INSTALL_append = " kernel-modules linux-firmware-rpidistro-bcm43430 linux-firmware-rpidistro-bcm43455 create-combined-dtb "
23
24 # Psplash causes crash on first boot on RPi
25 IMAGE_FEATURES_remove = "splash"
26
27 # Build updatable image. Only takes effect when sota.bbclass is inherited
28 DISTRO_FEATURES_append = " sota"
29
30 # Create WIC images to write to SD cards.
31 WKS_FILE = "sdimage-raspberrypi.wks"
32 AGL_EXTRA_IMAGE_FSTYPES = "wic.xz wic.bmap wic.xz.sha256sum"
33 IMAGE_BOOT_FILES = "bcm2835-bootfiles/* \
34                  ${@make_dtb_boot_files(d)} \
35                  ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', \
36                     '${KERNEL_IMAGETYPE} u-boot.bin;${SDIMG_KERNELIMAGE} boot.scr', \
37                     '${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}', d)} \
38                  "
39 do_image_wic[depends] += " \
40     bcm2835-bootfiles:do_deploy \
41     ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', 'u-boot:do_deploy', '',d)} \
42     "