ccmp1: define device trees per media STM32MP_DT_FILES_xxx

The variable STM32MP_DEVICETREE is later expanded with the list of values
in all media.

Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
Hector Palacios 2025-04-10 11:02:43 +02:00
parent d21c7b5fdd
commit 4bdd4b0b56
2 changed files with 10 additions and 4 deletions

View File

@ -31,8 +31,11 @@ UBOOT_CONFIG[ccmp13-dvk] = "ccmp13-dvk_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
# ========================================================================= # =========================================================================
# Machine settings # Machine settings
# ========================================================================= # =========================================================================
# Define list of devicetree per board # Define list of devicetree per supported storage
STM32MP_DEVICETREE ??= "ccmp13-dvk-256MB" STM32MP_DT_FILES_NAND = "ccmp13-dvk-256MB"
STM32MP_DT_FILES_SDCARD = "${STM32MP_DT_FILES_NAND}"
STM32MP_DT_FILES_USB = "${STM32MP_DT_FILES_NAND}"
# Extra DTB for board - need to specify it with .dtb ... # Extra DTB for board - need to specify it with .dtb ...
STM32MP_KERNEL_DEVICETREE:ccmp13-dvk += " \ STM32MP_KERNEL_DEVICETREE:ccmp13-dvk += " \
ccmp13_bt_test.dtbo \ ccmp13_bt_test.dtbo \

View File

@ -31,8 +31,11 @@ UBOOT_CONFIG[ccmp15-dvk] = "ccmp15-dvk_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
# ========================================================================= # =========================================================================
# Machine settings # Machine settings
# ========================================================================= # =========================================================================
# Define list of devicetree per board # Define list of devicetree per supported storage
STM32MP_DEVICETREE ??= "ccmp15-dvk-512MB ccmp15-dvk-1GB" STM32MP_DT_FILES_NAND = "ccmp15-dvk-512MB ccmp15-dvk-1GB"
STM32MP_DT_FILES_SDCARD = "${STM32MP_DT_FILES_NAND}"
STM32MP_DT_FILES_USB = "${STM32MP_DT_FILES_NAND}"
# Extra DTB for board - need to specify it with .dtb ... # Extra DTB for board - need to specify it with .dtb ...
STM32MP_KERNEL_DEVICETREE:ccmp15-dvk += " \ STM32MP_KERNEL_DEVICETREE:ccmp15-dvk += " \
ccmp15_bt_test.dtbo \ ccmp15_bt_test.dtbo \