From: Anshul Dalal <anshuld@ti.com>
To: Bryan Brattlof <bb@ti.com>, Anshul Dalal <anshuld@ti.com>
Cc: <u-boot@lists.denx.de>, Tom Rini <trini@konsulko.com>,
"Beleswar Padhi" <b-padhi@ti.com>, Nishanth Menon <nm@ti.com>,
Andrew Davis <afd@ti.com>, Vignesh R <vigneshr@ti.com>
Subject: Re: [PATCH 6/8] configs: add defconfigs for am6254atl
Date: Thu, 23 Oct 2025 10:25:04 +0530 [thread overview]
Message-ID: <DDPFMP7DMLK7.1ZMBBASW8NI7R@ti.com> (raw)
In-Reply-To: <20251022121632.vsjulhgztd7m4s4l@bryanbrattlof.com>
On Wed Oct 22, 2025 at 5:46 PM IST, Bryan Brattlof wrote:
> On October 22, 2025 thus sayeth Anshul Dalal:
>> OP-TEE for current K3 devices resides from 0x9e800000 to 0xa0000000
>> which needs to be moved to 0x80080000 to free up space at end of DDR in
>> systems with 512MiB of memory. This is required to allow U-Boot to
>> relocate to end of DDR before booting to the kernel.
>>
>> Therefore defconfigs for AM6254atl include the respective existing AM62x
>> configs with updated dt for r5 and modified memory map for a53 SPL to
>> account for the new OP-TEE address.
>>
>> Also make Bryan Brattlof and Tom Rini the maintainers for AM6254atl SIP.
>>
>> Signed-off-by: Anshul Dalal <anshuld@ti.com>
>> ---
>> board/ti/am62x/MAINTAINERS | 2 ++
>> configs/am6254atl_evm_a53_defconfig | 15 +++++++++++++++
>> configs/am6254atl_evm_r5_defconfig | 9 +++++++++
>> 3 files changed, 26 insertions(+)
>>
>> diff --git a/board/ti/am62x/MAINTAINERS b/board/ti/am62x/MAINTAINERS
>> index d7dfefffe751b5f3a1292ef8cc9e2926f09c77ae..ca269fae880357eb9f62232a3a32bbafa8b3d29d 100644
>> --- a/board/ti/am62x/MAINTAINERS
>> +++ b/board/ti/am62x/MAINTAINERS
>> @@ -10,3 +10,5 @@ F: configs/am62x_evm_r5_ethboot_defconfig
>> F: configs/am62x_evm_a53_ethboot_defconfig
>> F: configs/am62x_lpsk_r5_defconfig
>> F: configs/am62x_lpsk_a53_defconfig
>> +F: configs/am6254atl_evm_r5_defconfig
>> +F: configs/am6254atl_evm_a53_defconfig
>> diff --git a/configs/am6254atl_evm_a53_defconfig b/configs/am6254atl_evm_a53_defconfig
>> new file mode 100644
>> index 0000000000000000000000000000000000000000..fdf6be7068e7b2fe4e48f1f322703f6838729497
>> --- /dev/null
>> +++ b/configs/am6254atl_evm_a53_defconfig
>> @@ -0,0 +1,15 @@
>> +#include <configs/am62x_evm_a53_defconfig>
>> +
>> +CONFIG_ARM=y
>> +CONFIG_ARCH_K3=y
>> +CONFIG_SOC_K3_AM625=y
>> +CONFIG_TARGET_AM625_A53_EVM=y
>> +CONFIG_TEXT_BASE=0x82f80000
>> +CONFIG_BLOBLIST_ADDR=0x82c80000
>
> I think this may have been leftover from some experimentation.
> Do we still need the bloblist stuff?
>
I was under the impression that 0x80d00000 is the default BLOBLIST_ADDR
for AM62 SoCs as per the documentation[1] and needed to be modified for
62 SiP.
While in fact we don't make use of bloblists in upstream U-Boot anyways,
should we drop the mention of BLOBS from the docs as well?
Regards,
Anshul
[1]: https://docs.u-boot.org/en/stable/board/ti/am62x_sk.html#a53-spl-ddr-memory-layout
next prev parent reply other threads:[~2025-10-23 4:55 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-22 10:25 [PATCH 0/8] Add support for TI AM6254atl SiP Anshul Dalal
2025-10-22 10:25 ` [PATCH 1/8] arm64: dts: ti: k3-am6*-boards: Add label to reserved-memory node Anshul Dalal
2025-10-22 10:25 ` [PATCH 2/8] arm64: dts: ti: k3-am62*: remove SoC dtsi from common dtsi Anshul Dalal
2025-10-22 10:25 ` [PATCH 3/8] arm64: dts: ti: Introduce base support for AM6254atl SiP Anshul Dalal
2025-10-22 10:25 ` [PATCH 4/8] arm64: dts: ti: Add support for AM6254atl SiP SK Anshul Dalal
2025-10-22 10:25 ` [PATCH 5/8] arm: dts: add support for am6254atl at R5 SPL Anshul Dalal
2025-10-22 10:25 ` [PATCH 6/8] configs: add defconfigs for am6254atl Anshul Dalal
2025-10-22 12:16 ` Bryan Brattlof
2025-10-23 4:55 ` Anshul Dalal [this message]
2025-10-22 10:25 ` [PATCH 7/8] board: am62x: add env file " Anshul Dalal
2025-10-22 12:40 ` Bryan Brattlof
2025-10-22 10:25 ` [PATCH 8/8] doc: add documentation for am6254atl SiP Anshul Dalal
2025-10-22 12:21 ` Bryan Brattlof
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DDPFMP7DMLK7.1ZMBBASW8NI7R@ti.com \
--to=anshuld@ti.com \
--cc=afd@ti.com \
--cc=b-padhi@ti.com \
--cc=bb@ti.com \
--cc=nm@ti.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=vigneshr@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox