| Message ID | 20260326144126.3675044-1-anshuld@ti.com |
|---|---|
| State | Superseded |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [meta-ti,master] conf: machine: am62l: adjust fitImage addresses for 128MiB | expand |
meta-ti / na / 20260326144126.3675044-1-anshuld
PRC Results: FAIL
=========================================================
check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [meta-ti][master][PATCH] conf: machine: am62l: adjust fitImage addresses for 128MiB
WARN: Commit message should not include directory path to recipe: conf: machine: am62l: adjust fitImage addresses for 128MiB.
conf (COMMIT-MESSAGE-3)
patch
For details on the above errors/warnings visit: https://lists.yoctoproject.org/g/meta-ti/wiki/40887
=========================================================
apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-ti][master][PATCH] conf: machine: am62l: adjust fitImage addresses for 128MiB
- Submitter: From: Anshul Dalal <anshuld@ti.com>
- Date: Date: Thu, 26 Mar 2026 20:11:24 +0530
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: a8890d14ecd64f9c35cb2e6c58ab961a2179c91d
Applied to:
- Repository: lcpd-prc-meta-ti
- Base Branch: master-wip
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: conf: Add falcon support natively
- Commit SHA: 361f0c1251514c964c412af69b28d6061119ba56
Patches
----------------------------------------
All patches applied
=========================================================
check-yocto-repo: FAIL
=========================================================
master
=====================
FAIL
WARN: .bbappend files might need a guard to make them check-layer compliant. (GUARD-1)
meta-ti-bsp/dynamic-layers/tpm-layer/recipes-ti/initramfs/ti-core-initramfs.bbappend
For details on the above errors/warnings visit: https://lists.yoctoproject.org/g/meta-ti/wiki/40887
diff --git a/meta-ti-bsp/conf/machine/am62lxx-evm.conf b/meta-ti-bsp/conf/machine/am62lxx-evm.conf index a0bccf57..d8e1614e 100644 --- a/meta-ti-bsp/conf/machine/am62lxx-evm.conf +++ b/meta-ti-bsp/conf/machine/am62lxx-evm.conf @@ -17,3 +17,10 @@ KERNEL_DEVICETREE_PREFIX = " \ KERNEL_DEVICETREE = "" UBOOT_MACHINE = "am62lx_evm_defconfig" +FIT_CONF_DEFAULT_DTB = "k3-am62l3-evm.dtb" +UBOOT_LOADADDRESS = "0x82400000" +UBOOT_ENTRYPOINT = "0x82400000" +UBOOT_RD_LOADADDRESS = "0x84000000" +UBOOT_RD_ENTRYPOINT = "0x84000000" +UBOOT_DTB_LOADADDRESS = "0x84f00000" +UBOOT_DTBO_LOADADDRESS = "0x84f80000"
This patch modifies the load addresses for the kernel fitImage to provide out-of-box support for 128MiB DDR sizes on AM62l. The current fitImage uses 0x88000000 as the DTB load address which is beyond the 128MiB boundary while the kernel load address of 0x82000000 conflicts with U-Boot's SPL load address which causes problems when enabling falcon mode on the device. Signed-off-by: Anshul Dalal <anshuld@ti.com> --- meta-ti-bsp/conf/machine/am62lxx-evm.conf | 7 +++++++ 1 file changed, 7 insertions(+)