#@DESCRIPTION: Common Machine configuration for STM32 systems require conf/machine/include/st-machine-extlinux-config-stm32mp.inc require conf/machine/include/st-machine-features-stm32mp.inc require conf/machine/include/st-machine-flashlayout-stm32mp.inc require conf/machine/include/st-machine-flashlayout-deleteall-stm32mp.inc require conf/machine/include/st-machine-flashlayout-extensible-stm32mp.inc require conf/machine/include/st-machine-image-partition-stm32mp.inc require conf/machine/include/st-machine-storage-device-stm32mp.inc require conf/machine/include/st-machine-sdk-stm32mp.inc # Define specific common layer name MACHINEOVERRIDES =. "stm32mpcommon:" # Define specific common machine name MACHINEOVERRIDES =. "stcommon:" # ========================================================================= # SOC # ========================================================================= STM32MP_SOC_NAME = "" STM32MP_SOC_NAME:append:stm32mp15common = " stm32mp15 " STM32MP_SOC_NAME:append:stm32mp13common = " stm32mp13 " STM32MP_SOC_NAME:append:stm32mp21common = " stm32mp21 " STM32MP_SOC_NAME:append:stm32mp23common = " stm32mp23 " STM32MP_SOC_NAME:append:stm32mp25common = " stm32mp25 " # Take care of nativesdk override use case STM32MP_SOC_NAME:append:class-nativesdk = " stm32mp15 " STM32MP_SOC_NAME:append:class-nativesdk = " stm32mp13 " STM32MP_SOC_NAME:append:class-nativesdk = " stm32mp21 " STM32MP_SOC_NAME:append:class-nativesdk = " stm32mp23 " STM32MP_SOC_NAME:append:class-nativesdk = " stm32mp25 " STM32MP_ENCRYPT_SOC_NAME = "" STM32MP_ENCRYPT_SOC_NAME:append:stm32mp13common = " stm32mp13 " STM32MP_ENCRYPT_SOC_NAME:append:stm32mp21common = " stm32mp21 " STM32MP_ENCRYPT_SOC_NAME:append:stm32mp23common = " stm32mp23 " STM32MP_ENCRYPT_SOC_NAME:append:stm32mp25common = " stm32mp25 " # ========================================================================= # boot scheme # ========================================================================= # List of supported boot schemes BOOTSCHEME_LABELS ??= "optee opteemin fastboot fastboot-opteemin" # ========================================================================= # boot device # ========================================================================= # List of supported boot devices BOOTDEVICE_LABELS ??= "emmc nand-4-256-1024 nor-sdcard sdcard nand-4-256-1024-sdcard" # ========================================================================= # Machine settings # ========================================================================= # Default machine feature MACHINE_FEATURES = "usbhost usbgadget alsa screen ext2 pci" MACHINE_FEATURES:append = " ${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', 'optee', '', d)} " MACHINE_FEATURES:append = " tpm2 " # Enable installation of INITRD image on bootfs side MACHINE_FEATURES:append = " initrd " # Remove InitRD package install from DISTRO_EXTRA_RRECOMMENDS to add it explicitly # in our bootfs image (this avoid dependency loops as rootfs depends on bootfs...) DISTRO_EXTRA_RRECOMMENDS:remove = " ${@bb.utils.contains('COMBINED_FEATURES', 'initrd', '${INITRD_PACKAGE}', '', d)} " # Configure autoresize for any of the 'ext4' storage devices (through InitRD image) MACHINE_FEATURES:append = " ${@bb.utils.contains_any('BOOTDEVICE_LABELS', ['emmc', 'nor-sdcard', 'nand-4-256-1024-sdcard', 'sdcard'], 'autoresize', '', d)} " # Use FIP image for boot loaders MACHINE_FEATURES:append = " fip" # Enable firmware secure update feature MACHINE_FEATURES:append = " fw-update" # Default serial consoles (TTYs) to enable using getty # Before kernel 4.18, serial console are ttyS3 but after is ttySTM0 SERIAL_CONSOLE = "115200 ttySTM0" SERIAL_CONSOLES = "${@d.getVar('SERIAL_CONSOLE').replace(' ', ';')}" # Don't include kernels in standard images RDEPENDS:${KERNEL_PACKAGE_NAME}-base = "" # Ship all kernel modules by default MACHINE_EXTRA_RRECOMMENDS = " kernel-modules ${@bb.utils.contains('MACHINE_FEATURES', 'efi', 'kernel-imageefi', 'kernel-imagebootfs', d)}" # Default external-dt init EXTERNAL_DT_ENABLED ?= "0" EXTERNAL_DEVICETREE_EMMC ??= "" EXTERNAL_DEVICETREE_NAND ??= "" EXTERNAL_DEVICETREE_NOR ??= "" EXTERNAL_DEVICETREE_SDCARD ??= "" EXTERNAL_DEVICETREE_SPINAND ??= "" # Default device tree list per supported storages STM32MP_DT_FILES_EMMC ??= "" STM32MP_DT_FILES_NAND ??= "" STM32MP_DT_FILES_NOR ??= "" STM32MP_DT_FILES_SDCARD ??= "" STM32MP_DT_FILES_SPINAND ??= "" STM32MP_DT_FILES_EMMC:append = " ${@bb.utils.contains('EXTERNAL_DT_ENABLED', '1', '${EXTERNAL_DEVICETREE_EMMC}', '', d)}" STM32MP_DT_FILES_NAND:append = " ${@bb.utils.contains('EXTERNAL_DT_ENABLED', '1', '${EXTERNAL_DEVICETREE_NAND}', '', d)}" STM32MP_DT_FILES_NOR:append = " ${@bb.utils.contains('EXTERNAL_DT_ENABLED', '1', '${EXTERNAL_DEVICETREE_NOR}', '', d)}" STM32MP_DT_FILES_SDCARD:append = " ${@bb.utils.contains('EXTERNAL_DT_ENABLED', '1', '${EXTERNAL_DEVICETREE_SDCARD}', '', d)}" STM32MP_DT_FILES_SPINAND:append = " ${@bb.utils.contains('EXTERNAL_DT_ENABLED', '1', '${EXTERNAL_DEVICETREE_SPINAND}', '', d)}" STM32MP_DT_FILES_ALL += "${STM32MP_DT_FILES_EMMC}" STM32MP_DT_FILES_ALL += "${STM32MP_DT_FILES_NAND}" STM32MP_DT_FILES_ALL += "${STM32MP_DT_FILES_NOR}" STM32MP_DT_FILES_ALL += "${STM32MP_DT_FILES_SDCARD}" STM32MP_DT_FILES_ALL += "${STM32MP_DT_FILES_SPINAND}" # Set default supported device tree list (without duplicate) STM32MP_DEVICETREE:append = " ${@' '.join('%s' % dt_file for dt_file in list(dict.fromkeys((d.getVar('STM32MP_DT_FILES_ALL') or '').split())))} " # Default for programmer: STM32MP_DEVICETREE_PROGRAMMER_ENABLE ??= "1" # Programmer external-dt init EXTERNAL_DEVICETREE_PROGRAMMER ??= "" # Programmer device tree list for all supported storage STM32MP_DT_FILES_PROGRAMMER ??= "${STM32MP_DT_FILES_ALL}" STM32MP_DT_FILES_PROGRAMMER:append = " ${@bb.utils.contains('EXTERNAL_DT_ENABLED', '1', '${EXTERNAL_DEVICETREE_PROGRAMMER}', '', d)}" STM32MP_DEVICETREE_PROGRAMMER:append = " ${@' '.join('%s' % dt_file for dt_file in list(dict.fromkeys((d.getVar('STM32MP_DT_FILES_PROGRAMMER') or '').split())))} " # Programmer device tree file suffix (for flashlayout file creation) STM32MP_DEVICETREE_PROGRAMMER_SUFFIX ??= "" # Programmer specific binary namming (for flashlayout file creation) STM32MP_PROGRAMMER_SCHEME ??= "${@bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'programmer', '', d)}" # Set the serial devie to use to program storage: uart or usb STMP32MP_PROGRAMMER_SERIAL ??= "usb" # ========================================================================= # Machine specific packages # ========================================================================= # Enable Software watchdog when sysvinit MACHINE_EXTRA_RRECOMMENDS:append = " ${@bb.utils.contains('DISTRO_FEATURES','sysvinit',' watchdog ','',d)} " # ========================================================================= # Flashlayout configuration # ========================================================================= #ENABLE_FLASHLAYOUT_CONFIG_FWUP ?= "${@bb.utils.contains('MACHINE_FEATURES', 'fw-update', '1', '0', d)}" ENABLE_FLASHLAYOUT_CONFIG_FWUP ?= "1" # ========================================================================= # Image # ========================================================================= # For sparse, align on 4096b IMAGE_ROOTFS_ALIGNMENT ?= "4" # Enable licence summary and configure License content generation ENABLE_IMAGE_LICENSE_SUMMARY ?= "1" # Enable cve summary ENABLE_IMAGE_CVE_SUMMARY ?= "1" ST_MAIN_COMPONENTS:stm32mp1common = "tf-a-stm32mp, optee-os-stm32mp, u-boot-stm32mp, linux-stm32mp" ST_MAIN_COMPONENTS:stm32mp2common = "tf-a-stm32mp, tf-m-stm32mp, optee-os-stm32mp, u-boot-stm32mp, linux-stm32mp" # Partitions configuration IMAGE_CLASSES += "st-partitions-image" # UBI Configuration IMAGE_CLASSES += "image_types-stubi" IMAGE_CLASSES += "image_types-stnand-uboot-ubi" # Define UBI labels to build # Naming rules for UBI partitions: # nand__ # nor_ # Like that a same UBI partition can be used for severals NAND/NOR providers MULTIUBI_BUILD += "${@bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-1024 nand-4-256-1024-sdcard', 'nand_4_256_1024', '', d)}" MULTIUBI_BUILD += "${@bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-2-128-256 nand-2-128-256-sdcard', 'nand_2_128_256', '', d)}" MULTIUBI_BUILD += "${@bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-512 nand-4-256-512-sdcard', 'nand_4_256_512', '', d)}" # UBI Args for NAND by default on MB1262 (Micron MT29F8G16ABACAH4) 1GB # LEB = BLOCK_SIZE - (2 * page size): 256*1024 - (2*4096) MKUBIFS_ARGS_nand_4_256_1024 = "--min-io-size 4096 --leb-size 253952 --max-leb-cnt 4096" UBINIZE_ARGS_nand_4_256_1024 = "--min-io-size 4096 --peb-size 256KiB" # Set extra size required for UBIFS volume size (KiB) EXTRA_UBIFS_SIZE_nand_4_256_1024 = "2304" # UBI Args for SPI NAND by default on MB1262 (Micron MT29F2G01ABA) 256MB # LEB = BLOCK_SIZE - (2 * page size): 128*1024 - (2*2048) MKUBIFS_ARGS_nand_2_128_256 = "--min-io-size 2048 --leb-size 126976 --max-leb-cnt 2048" UBINIZE_ARGS_nand_2_128_256 = "--min-io-size 2048 --peb-size 128KiB" # Set extra size required for UBIFS volume size (KiB) EXTRA_UBIFS_SIZE_nand_2_128_256 = "1408" # UBI Args for SPI NAND by default on MB1730 (TOSHIBA TC58CVG2S0HRAIJ) 512MB # LEB = BLOCK_SIZE - (2 * page size): 256*1024 - (2*4096) MKUBIFS_ARGS_nand_4_256_512 = "--min-io-size 4096 --leb-size 253952 --max-leb-cnt 4096" UBINIZE_ARGS_nand_4_256_512 = "--min-io-size 4096 --peb-size 256KiB" # Set extra size required for UBIFS volume size (KiB) EXTRA_UBIFS_SIZE_nand_4_256_512 = "1408" # Default FSTYPES requested WKS_IMAGE_FSTYPES ?= "" IMAGE_FSTYPES ?= "${WKS_IMAGE_FSTYPES} tar.xz" # Append ext4 FSTYPES to default ones for emmc and sdcard volumes IMAGE_FSTYPES += "${@bb.utils.contains_any('BOOTDEVICE_LABELS', 'emmc nor-sdcard nor-emmc nand-4-256-1024-sdcard sdcard', 'ext4', '', d)}" # Append ubi FSTYPES to default ones for nand volumes IMAGE_FSTYPES += "${@bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-1024 nand-2-128-256 nand-4-256-512 nand-4-256-1024-sdcard nand-2-128-256-sdcard nand-4-256-512-sdcard', 'multiubi', '', d)}" IMAGE_FSTYPES += "${@bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-1024-sdcard nand-2-128-256-sdcard nand-4-256-512-sdcard', 'ubootenvmultiubi', '', d)}" # Define specific EXT4 command line: # - Create minimal inode number (as it is done by default in image_types.bbclass) # - Add label name (maximum length of the volume label is 16 bytes) # So use IMAGE_NAME_SUFFIX name by removing the '.' and truncing to 16 caracters # - Deactivate metadata_csum and dir_index (hashed b-trees): update not supported # by U-Boot EXTRA_IMAGECMD:ext4 = "-i 4096 -L ${@d.getVar('IMAGE_NAME_SUFFIX').replace('.', '', 1)[:16]} -O ^metadata_csum,^dir_index" # Allow debug on the platform with gdb and openocd tools EXTRA_IMAGEDEPENDS:append = " \ gdb-cross-${TARGET_ARCH} \ openocd-stm32mp-native \ stm32wrapper4dbg-native \ sdcard-raw-tools-native \ " # ========================================================================= # Signing configuration # ========================================================================= ENCRYPT_ENABLE ?= "0" ENCRYPT_SUFFIX ?= "_Encrypted" SIGN_ENABLE ?= "${@bb.utils.contains('ENCRYPT_ENABLE', '1', '1', '0', d)}" SIGN_SUFFIX ?= "_Signed" # ========================================================================= # Debug trace # ========================================================================= # acitvate/desactive the debug and trace on boot stage: tf-a, optee, u-boot and kernel ST_DEBUG_TRACE ?= "1" # ========================================================================= # Kernel # ========================================================================= # Kernel image type KERNEL_DEFAULT_NAME = "uImage" KERNEL_DEFAULT_NAME:aarch64 = "Image.gz" # arm32 bits KERNEL_EFI_NAME = "${@bb.utils.contains('MACHINE_FEATURES', 'efi', 'zImage', 'uImage', d)}" KERNEL_EFI_ALT_NAME = "${@bb.utils.contains('MACHINE_FEATURES', 'efi', 'uImage', 'zImage', d)}" # arm64 bits KERNEL_EFI_NAME:aarch64 = "${@bb.utils.contains('MACHINE_FEATURES', 'efi', 'Image', 'Image.gz', d)}" KERNEL_EFI_ALT_NAME:aarch64 = "${@bb.utils.contains('MACHINE_FEATURES', 'efi', 'Image.gz', 'Image', d)}" KERNEL_IMAGETYPE = "${@bb.utils.contains('MACHINE_FEATURES', 'fit', 'fitImage', '${KERNEL_EFI_NAME}', d)}" KERNEL_ALT_IMAGETYPE = " vmlinux " KERNEL_ALT_IMAGETYPE =+ " ${@bb.utils.contains('MACHINE_FEATURES', 'fit', '${KERNEL_DEFAULT_NAME}', '${KERNEL_EFI_ALT_NAME}', d)} " KERNEL_CLASSES = " ${@bb.utils.contains('MACHINE_FEATURES', 'fit', 'kernel-fitimage', 'kernel-uimage', d)} " # Maxsize authorized for uncompressed kernel binary # Define to null to skip kernel image size check KERNEL_IMAGE_MAXSIZE ?= "" # Enable kernel config file deploy KERNEL_CONFIG_DEPLOY ?= "1" # For fit usage UBOOT_ENTRYPOINT = "0xC4000000" # List of device tree to install KERNEL_DEVICETREE ?= "${STM32MP_KERNEL_DEVICETREE}" KERNEL_SUB_PATH = "st/" STM32MP_KERNEL_DEVICETREE += "${@' '.join('${KERNEL_SUB_PATH}%s.dtb' % d for d in '${STM32MP_DEVICETREE}'.split())}" STM32MP_KERNEL_DEVICETREE += "${@' '.join('${KERNEL_SUB_PATH}%s.dtb' % d for d in '${CUBE_M4_EXAMPLES_DT}'.split())}" STM32MP_KERNEL_DEVICETREE += "${@' '.join('${KERNEL_SUB_PATH}%s.dtb' % d for d in '${LINUX_A7_EXAMPLES_DT}'.split())}" STM32MP_KERNEL_DEVICETREE += "${@' '.join('${KERNEL_SUB_PATH}%s.dtb' % d for d in '${CUBE_M33_EXAMPLES_DT}'.split())}" # Set LOADADDR # Set this address to 0xC2000040, which is 0xC2000000 + 0x40. # 0xC2000000 is the memory address where U-Boot will copy from flash the file uImage and 0x40 is uImage header size (64Bytes). # With this value, U-Boot will be able to execute in place the zImage contained in uImage. ST_KERNEL_LOADADDR ?= "0xC2000040" # Define the devicetree for Linux A7 examples LINUX_A7_EXAMPLES_DT ?= "" ST_CMD_LINE_DEBUG_TRACE ?= "loglevel=1 quiet" # ========================================================================= # u-boot # ========================================================================= # Define default U-Boot config UBOOT_CONFIG ?= "" # STM32mp15 UBOOT_CONFIG:append:stm32mp15common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'optee opteemin', 'default_stm32mp15', '', d)} " UBOOT_CONFIG:append:stm32mp15common = " ${@bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'programmer_stm32mp15', '', d)} " UBOOT_CONFIG:append:stm32mp15common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'fastboot-sdcard_stm32mp15', '', d), '', d)} " UBOOT_CONFIG:append:stm32mp15common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'fastboot-emmc_stm32mp15', '', d), '', d)} " # STM32mp13 UBOOT_CONFIG:append:stm32mp13common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'optee opteemin', 'default_stm32mp13', '', d)} " UBOOT_CONFIG:append:stm32mp13common = " ${@bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'programmer_stm32mp13', '', d)} " UBOOT_CONFIG:append:stm32mp13common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'fastboot-sdcard_stm32mp13', '', d), '', d)} " # STM32mp21 UBOOT_CONFIG:append:stm32mp21common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'optee opteemin', 'default_stm32mp21', '', d)} " UBOOT_CONFIG:append:stm32mp21common = " ${@bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'programmer_stm32mp21', '', d)} " UBOOT_CONFIG:append:stm32mp21common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'fastboot-sdcard_stm32mp21', '', d), '', d)} " UBOOT_CONFIG:append:stm32mp21common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'fastboot-emmc_stm32mp21', '', d), '', d)} " # STM32mp23 UBOOT_CONFIG:append:stm32mp23common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'optee opteemin', 'default_stm32mp23', '', d)} " UBOOT_CONFIG:append:stm32mp23common = " ${@bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'programmer_stm32mp23', '', d)} " UBOOT_CONFIG:append:stm32mp23common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'fastboot-sdcard_stm32mp23', '', d), '', d)} " UBOOT_CONFIG:append:stm32mp23common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'fastboot-emmc_stm32mp23', '', d), '', d)} " # STM32mp25 UBOOT_CONFIG:append:stm32mp25common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'optee opteemin', 'default_stm32mp25', '', d)} " UBOOT_CONFIG:append:stm32mp25common = " ${@bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'programmer_stm32mp25', '', d)} " UBOOT_CONFIG:append:stm32mp25common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'fastboot-sdcard_stm32mp25', '', d), '', d)} " UBOOT_CONFIG:append:stm32mp25common = " ${@bb.utils.contains_any('BOOTSCHEME_LABELS', 'fastboot fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'fastboot-emmc_stm32mp25', '', d), '', d)} " # Define U-boot splashscreen file naming UBOOT_SPLASH_PORTRAIT_IMAGE = "splash_portrait" UBOOT_SPLASH_LANDSCAPE_IMAGE = "splash_landscape" PREFERRED_PROVIDER_u-boot-fw-utils:stm32mp1common ??= "libubootenv" MACHINE_EXTRA_RRECOMMENDS:append:stm32mp1common = " \ u-boot-fw-config-stm32mp \ " ST_UBOOT_DEBUG_TRACE ?= "${@bb.utils.contains('ST_DEBUG_TRACE', '1', '1', '0', d)}" # ========================================================================= # trusted-firmware-a # ========================================================================= # Add optionnaly trusted-firmware-a EXTRA_IMAGEDEPENDS += "virtual/trusted-firmware-a" # Add optionnaly trusted-firmware-m EXTRA_IMAGEDEPENDS += "${@bb.utils.contains('MACHINE_FEATURES', 'm33td', 'virtual/trusted-firmware-m', '', d)}" # Configure the TF-A tool platform to use to generate the TF-A tools TF_A_TOOLS_PLATFORM ?= "stm32mp2" # Configure trusted-firmware-a build # Manage specific config settings TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'optee-emmc', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-1024 nand-4-256-1024-sdcard', 'optee-nand', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nor nor-sdcard', 'optee-nor', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'optee-sdcard', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-2-128-256 nand-2-128-256-sdcard nand-4-256-512 nand-4-256-512-sdcard', 'optee-spinand', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'optee-programmer-usb optee-programmer-uart', ' usb uart', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'opteemin-emmc', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-1024 nand-4-256-1024-sdcard', 'opteemin-nand', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nor nor-sdcard', 'opteemin-nor', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'opteemin-sdcard', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-2-128-256 nand-2-128-256-sdcard nand-4-256-512 nand-4-256-512-sdcard', 'opteemin-spinand', '', d), '', d)}" TF_A_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'opteemin-programmer-usb opteemin-programmer-uart', 'usb uart', d), '', d)}" # Make sure to add the SDCARD support for m33td nor-sdcard TF_A_CONFIG += "${@bb.utils.contains('BOOTDEVICE_LABELS', 'nor-sdcard', bb.utils.contains('MACHINE_FEATURES', 'm33td', 'optee-sdcard', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTDEVICE_LABELS', 'nor-sdcard', bb.utils.contains('MACHINE_FEATURES', 'm33td', 'optee-sdcard', '', d), '', d)}" # Make sure to add the EMMC support for m33td nor-emmc TF_A_CONFIG += "${@bb.utils.contains('BOOTDEVICE_LABELS', 'nor-emmc', bb.utils.contains('MACHINE_FEATURES', 'm33td', 'optee-emmc', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTDEVICE_LABELS', 'nor-emmc', bb.utils.contains('MACHINE_FEATURES', 'm33td', 'optee-emmc', '', d), '', d)}" # Remove the 'optee-nor' configuration for both TF-A and FIP TF_A_CONFIG:remove = "${@bb.utils.contains('BOOTDEVICE_LABELS', 'optee', bb.utils.contains('MACHINE_FEATURES', 'm33td', 'optee-nor', '', d), '', d)}" FIP_CONFIG:remove = "${@bb.utils.contains('BOOTDEVICE_LABELS', 'optee', bb.utils.contains('MACHINE_FEATURES', 'm33td', 'optee-nor', '', d), '', d)}" # Append SSP config to TF_A_CONFIG TF_A_SSP_ENABLE ?= "0" TF_A_CONFIG += "${@bb.utils.contains('TF_A_SSP_ENABLE', '1', 'uart-ssp usb-ssp', '', d)}" # Default configuration for signing trusted-firmware-a binary TF_A_SIGN_SUFFIX ?= "${@bb.utils.contains('SIGN_ENABLE', '1', '${SIGN_SUFFIX}', '', d)}" TF_A_ENCRYPT_SUFFIX ?= "${@bb.utils.contains('ENCRYPT_ENABLE', '1', '${ENCRYPT_SUFFIX}', '', d)}" # Configure TF-A to build the metadata binary TF_A_ENABLE_METADATA ?= "${@bb.utils.contains('MACHINE_FEATURES', 'fw-update', '1', '0', d)}" TF_A_METADATA_BINARY ?= "metadata.bin" # Configure the default MTD_START_OFFSET TF_A_MTD_START_OFFSET_NAND ?= "${@bb.utils.contains('ENABLE_FLASHLAYOUT_CONFIG_FWUP', '0', '0x00100000', '0x00200000', d)}" TF_A_MTD_START_OFFSET_NOR ?= "${@bb.utils.contains('ENABLE_FLASHLAYOUT_CONFIG_FWUP', '0', '0x00080000', '0x00100000', d)}" TF_A_MTD_START_OFFSET_SPINAND ?= "${@bb.utils.contains('ENABLE_FLASHLAYOUT_CONFIG_FWUP', '0', '0x00100000', '0x00200000', d)}" ST_TF_A_DEBUG_TRACE ?= "${@bb.utils.contains('ST_DEBUG_TRACE', '1', '1', '0', d)}" # ========================================================================= # trusted-firmware-m # ========================================================================= # Add optionnaly trusted-firmware-m # List of trusted-firmware-m device tree to use TF_M_DEVICETREE ?= "${STM32MP_DEVICETREE}" # ========================================================================= # optee # ========================================================================= ## Map OPTEE configuration to device tree list OPTEE_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', 'optee', '', d)}" OPTEE_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', 'opteemin', '', d)}" ST_OPTEE_DEBUG_TRACE ?= "${@bb.utils.contains('ST_DEBUG_TRACE', '1', '1', '0', d)}" # ========================================================================= # M33Project # ========================================================================= # Trustzone enable or not on M33 co-processor # if Trustzone is enabled, that mean we need to have TF-M as dependency # By default, it's enabled M33PROJECT_TF_M_TRUSTZONE ??= "1" # ========================================================================= # fip # ========================================================================= # Add fip binaries generation EXTRA_IMAGEDEPENDS += "fip-stm32mp" # Configure fip build FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'optee-emmc', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-2-128-256 nand-2-128-256-sdcard nand-4-256-512 nand-4-256-512-sdcard', 'optee-spinand', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-1024 nand-4-256-1024-sdcard', 'optee-nand', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nor nor-sdcard', 'optee-nor', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'optee-sdcard', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'optee-programmer-${STMP32MP_PROGRAMMER_SERIAL}', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('BOOTSCHEME_LABELS', 'fastboot', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'fastboot-emmc', '', d), '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', bb.utils.contains('BOOTSCHEME_LABELS', 'fastboot', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'fastboot-sdcard', '', d), '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'opteemin-emmc', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-2-128-256 nand-2-128-256-sdcard nand-4-256-512 nand-4-256-512-sdcard', 'opteemin-spinand', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nand-4-256-1024 nand-4-256-1024-sdcard', 'opteemin-nand', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains_any('BOOTDEVICE_LABELS', 'nor nor-sdcard', 'opteemin-nor', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'opteemin-sdcard', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('STM32MP_DEVICETREE_PROGRAMMER_ENABLE', '1', 'opteemin-programmer-${STMP32MP_PROGRAMMER_SERIAL}', '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('BOOTSCHEME_LABELS', 'fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'emmc', 'fastboot-opteemin-emmc', '', d), '', d), '', d)}" FIP_CONFIG += "${@bb.utils.contains('BOOTSCHEME_LABELS', 'opteemin', bb.utils.contains('BOOTSCHEME_LABELS', 'fastboot-opteemin', bb.utils.contains('BOOTDEVICE_LABELS', 'sdcard', 'fastboot-opteemin-sdcard', '', d), '', d), '', d)}" # Define fiptool wrapper name FIPTOOL_WRAPPER ?= "fiptool-stm32mp" # Manage specific config to sign FIP FIP_SIGN_SUFFIX ?= "${@bb.utils.contains('SIGN_ENABLE', '1', '${SIGN_SUFFIX}', '', d)}" FIP_ENCRYPT_SUFFIX ?= "${@bb.utils.contains('ENCRYPT_ENABLE', '1', '${ENCRYPT_SUFFIX}', '', d)}" # Configure use of BL31 FIP_BL31_ENABLE = "0" FIP_BL31_ENABLE:stm32mp2common = "1" # ----------------------------------------------- # Define config for each FIP_CONFIG # FIP_CONFIG[config] ?= ",,," # FIP_CONFIG[optee-emmc] ?= "optee,${STM32MP_DT_FILES_EMMC},default:optee" FIP_CONFIG[optee-nand] ?= "optee,${STM32MP_DT_FILES_NAND},default:optee" FIP_CONFIG[optee-nor] ?= "optee,${STM32MP_DT_FILES_NOR},default:optee" FIP_CONFIG[optee-sdcard] ?= "optee,${STM32MP_DT_FILES_SDCARD},default:optee" FIP_CONFIG[optee-spinand] ?= "optee,${STM32MP_DT_FILES_SPINAND},default:optee" FIP_CONFIG[optee-programmer-uart] ?= "optee,${STM32MP_DEVICETREE_PROGRAMMER},programmer:optee-programmer-uart:optee,uart" FIP_CONFIG[optee-programmer-usb] ?= "optee,${STM32MP_DEVICETREE_PROGRAMMER},programmer:optee-programmer-usb:optee,usb" FIP_CONFIG[fastboot-emmc] ?= "optee,${STM32MP_DT_FILES_EMMC},fastboot-emmc:optee,optee-programmer-usb" FIP_CONFIG[fastboot-sdcard] ?= "optee,${STM32MP_DT_FILES_SDCARD},fastboot-sdcard:optee,optee-programmer-usb" FIP_CONFIG[opteemin-emmc] ?= "optee,${STM32MP_DT_FILES_EMMC},default:opteemin" FIP_CONFIG[opteemin-nand] ?= "optee,${STM32MP_DT_FILES_NAND},default:opteemin" FIP_CONFIG[opteemin-nor] ?= "optee,${STM32MP_DT_FILES_NOR},default:opteemin" FIP_CONFIG[opteemin-sdcard] ?= "optee,${STM32MP_DT_FILES_SDCARD},default:opteemin" FIP_CONFIG[opteemin-spinand] ?= "optee,${STM32MP_DT_FILES_SPINAND},default:opteemin" FIP_CONFIG[opteemin-programmer-uart] ?= "optee,${STM32MP_DEVICETREE_PROGRAMMER},programmer:opteemin-programmer-uart:opteemin,uart" FIP_CONFIG[opteemin-programmer-usb] ?= "optee,${STM32MP_DEVICETREE_PROGRAMMER},programmer:opteemin-programmer-usb:opteemin,usb" FIP_CONFIG[fastboot-opteemin-emmc] ?= "optee,${STM32MP_DT_FILES_EMMC},fastboot-emmc:opteemin,opteemin-emmc" FIP_CONFIG[fastboot-opteemin-sdcard] ?= "optee,${STM32MP_DT_FILES_SDCARD},fastboot-sdcard:opteemin,opteemin-sdcard" # ========================================================================= # Xserver # ========================================================================= #XSERVER ?= " \ # xserver-xorg \ # xserver-xorg-module-libint10 \ # xf86-input-evdev \ # xf86-video-modesetting \ #" # ========================================================================= # Enable deploy of bootloader elf files # ========================================================================= ELF_DEBUG_ENABLE = "1" # ========================================================================= # M4 copro # ========================================================================= # Define the devicetree for M4 examples CUBE_M4_EXAMPLES_DT ?= "" # Define the name of default copro firmware executed @boot time # This name is cherry picked from list defined in m4projects-stm32mp1.bb DEFAULT_COPRO_FIRMWARE = "OpenAMP_TTY_echo" # Define M4 example installation dir M4_INSTALLDIR = "${STM32MP_USERFS_MOUNTPOINT}" M4_PACKAGE_4USERFS = "${@bb.utils.contains('ST_USERFS','1','1','0',d)}" # ========================================================================= # M33 copro # ========================================================================= # Define the devicetree for M33 examples CUBE_M33_EXAMPLES_DT ?= "" # Define M33 example installation dir M33_INSTALLDIR = "${STM32MP_USERFS_MOUNTPOINT}" M33_PACKAGE_4USERFS = "${@bb.utils.contains('ST_USERFS','1','1','0',d)}" # ========================================================================= # GCNANO userland configuration # ========================================================================= # Configure use of vendorfs if enable to install gcnano libs GCNANO_USERLAND_OUTPUT_LIBDIR = "${@bb.utils.contains('ST_VENDORFS', '1', '${STM32MP_VENDORFS_MOUNTPOINT}/lib', '${libdir}', d)}" # ========================================================================= # WESTON HDMI configuration # ========================================================================= # Configure the size screen use by weston with HDMI screen # 720p: 1280x720 # 1080p: 1920x1080 WESTON_HDMI_MODE:stm32mp1common ?= "1280x720" WESTON_HDMI_MODE:stm32mp2common ?= "1920x1080" # ========================================================================= # EFI configuration # ========================================================================= # For efi configuration IMAGE_CLASSES += "image_types-stfat" EFI_PROVIDER = ""