| Message ID | 20260624193910.1149173-1-afd@ti.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-ti,master/wrynose] am62lxx: Use upstream TF-A board name | expand |
meta-ti / na / 20260624193910.1149173-1-afd PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master/wrynose][PATCH] am62lxx: Use upstream TF-A board name - Submitter: From: Andrew Davis <afd@ti.com> - Date: Date: Wed, 24 Jun 2026 14:39:10 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: d1056000d675ee4451e546b444cc25242c2069fc Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-wip - Commit Author: Ryan Eatmon <reatmon@ti.com> - Commit Subject: TEST: linux-ti-staging: Add testing dtbo and build command - Commit SHA: 07bd4c181e2a400d4375ddad7a20fbba6578b133 Patches ---------------------------------------- All patches applied wrynose ===================== Summary: - Patch Series: [meta-ti][master/wrynose][PATCH] am62lxx: Use upstream TF-A board name - Submitter: From: Andrew Davis <afd@ti.com> - Date: Date: Wed, 24 Jun 2026 14:39:10 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: d1056000d675ee4451e546b444cc25242c2069fc Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: wrynose-wip - Commit Author: Suhaas Joshi <s-joshi@ti.com> - Commit Subject: tfa: Update TF-A for K3 devices to 2.15 tag - Commit SHA: 88ce8160ec6c5804820555e0bc29dba23059a4a1 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS wrynose ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed wrynose - PASS ===================== All checks passed
diff --git a/meta-ti-bsp/conf/machine/am62lxx-evm.conf b/meta-ti-bsp/conf/machine/am62lxx-evm.conf index 677d6955..5104549a 100644 --- a/meta-ti-bsp/conf/machine/am62lxx-evm.conf +++ b/meta-ti-bsp/conf/machine/am62lxx-evm.conf @@ -24,3 +24,5 @@ UBOOT_RD_LOADADDRESS = "0x84000000" UBOOT_RD_ENTRYPOINT = "0x84000000" UBOOT_DTB_LOADADDRESS = "0x84f00000" UBOOT_DTBO_LOADADDRESS = "0x84f80000" + +TFA_BOARD = "am62lx-evm" diff --git a/meta-ti-bsp/conf/machine/include/am62lxx.inc b/meta-ti-bsp/conf/machine/include/am62lxx.inc index b626119a..99f968f3 100644 --- a/meta-ti-bsp/conf/machine/include/am62lxx.inc +++ b/meta-ti-bsp/conf/machine/include/am62lxx.inc @@ -5,7 +5,6 @@ MACHINE_FEATURES += "screen" SERIAL_CONSOLES = "115200;ttyS0" -TFA_BOARD = "am62lx" TFA_PLATFORM = "k3low" OPTEEMACHINE = "k3-am62lx"
Upstream the BOARD name for the EVM is "am62lx-evm". Our downstream used just "am62lx" but was updated to optionally also work with the same name as upstream. This allows for easier migration. Switch to using the upstream-safe name here for the EVM. This will need to be done anyway when we switch to upstream-only for TF-A, doing it now just makes it easier to switch between the two. The other AM62L based boards already override the default with their correct BOARD names, and now that the EVM does too, drop the default. All boards will need their own BOARD name as TF-A does DRAM config which is board specific, so dropping the default prevents mistakenly not updating this name and causing hard to debug DRAM/boot issues. Signed-off-by: Andrew Davis <afd@ti.com> --- meta-ti-bsp/conf/machine/am62lxx-evm.conf | 2 ++ meta-ti-bsp/conf/machine/include/am62lxx.inc | 1 - 2 files changed, 2 insertions(+), 1 deletion(-)