mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
K3 Multicore SoC architecture defines different functional domains, each containing specific processing cores and peripherals. Early boot is normally handled by running bootloader and loading SYSFW on MCU Cortex-R5F core: https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/am65x/README https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/j721e/README This change adds support for building bootloader and SYSFW ITB image for K3 Cortex-R5F cores via multiconfig. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
24 lines
825 B
PHP
24 lines
825 B
PHP
# TI K3 Armv7 profile for Cortex-R5F cores
|
|
|
|
require conf/machine/include/ti-soc.inc
|
|
SOC_FAMILY_append = ":k3r5"
|
|
|
|
# The closest of existing tunes for Cortex-R5F
|
|
DEFAULTTUNE = "armv7athf"
|
|
require conf/machine/include/tune-cortexa8.inc
|
|
|
|
# R5 runs early bootloader and loads SYSFW
|
|
# https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/am65x/README
|
|
# https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/j721e/README
|
|
PREFERRED_PROVIDER_virtual/kernel = "linux-dummy"
|
|
PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging"
|
|
PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging"
|
|
|
|
SPL_BINARY = ""
|
|
UBOOT_SUFFIX = "bin"
|
|
UBOOT_BINARY = "tiboot3.${UBOOT_SUFFIX}"
|
|
UBOOT_IMAGE = "tiboot3-${MAINMACHINE}-${PV}-${PR}.${UBOOT_SUFFIX}"
|
|
UBOOT_SYMLINK = "tiboot3-${MAINMACHINE}.${UBOOT_SUFFIX}"
|
|
|
|
PACKAGECONFIG_pn-u-boot-ti-staging = ""
|