diff mbox series

[meta-ti,master,v2] conf: machine: am62lxx-evm: fix fitImage address for 128MiB

Message ID 20260326150324.3689647-1-anshuld@ti.com
State Under Review
Delegated to: Ryan Eatmon
Headers show
Series [meta-ti,master,v2] conf: machine: am62lxx-evm: fix fitImage address for 128MiB | expand

Commit Message

Anshul Dalal March 26, 2026, 3:03 p.m. UTC
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>
---
Changes in v2:
 - Fix commit message
v1: https://lore.kernel.org/yocto-meta-ti/20260326144126.3675044-1-anshuld@ti.com/

 meta-ti-bsp/conf/machine/am62lxx-evm.conf | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

PRC Automation March 26, 2026, 3:06 p.m. UTC | #1
meta-ti / na / 20260326150324.3689647-1-anshuld

PRC Results: FAIL

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [meta-ti][master][PATCH v2] conf: machine: am62lxx-evm: fix fitImage address for 128MiB
    WARN: Commit message should not include directory path to recipe: conf: machine: am62lxx-evm: fix fitImage address for 128MiB.
              machine
              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 v2] conf: machine: am62lxx-evm: fix fitImage address for 128MiB
- Submitter: From: Anshul Dalal <anshuld@ti.com>
- Date: Date: Thu, 26 Mar 2026 20:33:22 +0530
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 0cec12bcfa8ab05fb756ebe35c9cd369010f848b

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 mbox series

Patch

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"