* [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP
@ 2026-07-10 10:22 Chintan Vankar
2026-07-10 10:22 ` [PATCH v2 1/3] configs: am62ax_evm_r5_ethboot: Enable config options required for Ethernet boot Chintan Vankar
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Chintan Vankar @ 2026-07-10 10:22 UTC (permalink / raw)
To: Andrew Davis, Bryan Brattlof, Chintan Vankar, Wadim Egorov,
Anshul Dalal, Ilias Apalodimas, Tom Rini
Cc: u-boot
This series enables Ethernet boot on SK-AM62A-LP. The series is based on
commit 'a18265f1ccb7' of origin/next branch of U-Boot repo.
Link to v1:
https://lore.kernel.org/all/20260702081251.2691159-1-c-vankar@ti.com/
Logs:
https://gist.github.com/chintan013/db875ef8b703094af70ca681659ba7f0
Changes from v1 to v2:
-> Removed the duplicate config options from r5 and a53 defconfig.
-> Updated commit message for [PATCH 1/3].
Chintan Vankar (3):
configs: am62ax_evm_r5_ethboot: Enable config options required for
Ethernet boot
configs: am62ax_evm_a53_ethboot: Enable config options required to
enable Ethernet boot
arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma
arch/arm/dts/k3-am62a7-r5-sk.dts | 5 +++++
configs/am62ax_evm_a53_ethboot_defconfig | 10 ++++++++++
configs/am62ax_evm_r5_ethboot_defconfig | 22 ++++++++++++++++++++++
3 files changed, 37 insertions(+)
create mode 100644 configs/am62ax_evm_a53_ethboot_defconfig
create mode 100644 configs/am62ax_evm_r5_ethboot_defconfig
--
2.34.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 1/3] configs: am62ax_evm_r5_ethboot: Enable config options required for Ethernet boot
2026-07-10 10:22 [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Chintan Vankar
@ 2026-07-10 10:22 ` Chintan Vankar
2026-07-14 11:05 ` Anshul Dalal
2026-07-10 10:22 ` [PATCH v2 2/3] configs: am62ax_evm_a53_ethboot: Enable config options required to enable " Chintan Vankar
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Chintan Vankar @ 2026-07-10 10:22 UTC (permalink / raw)
To: Andrew Davis, Bryan Brattlof, Chintan Vankar, Wadim Egorov,
Anshul Dalal, Ilias Apalodimas, Tom Rini
Cc: u-boot
The R5 SPL SRAM size is limited and cannot accommodate both MMC boot and
Ethernet boot config options simultaneously. Add a dedicated defconfig
that enables the Ethernet boot on SK-AM62A-LP for R5 SPL stage.
Signed-off-by: Chintan Vankar <c-vankar@ti.com>
---
Link to v1:
https://lore.kernel.org/all/20260702081251.2691159-2-c-vankar@ti.com/
Changes from v1 to v2:
-> Removed the duplicate config options.
-> Updated commit message for [PATCH 1/3].
configs/am62ax_evm_r5_ethboot_defconfig | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 configs/am62ax_evm_r5_ethboot_defconfig
diff --git a/configs/am62ax_evm_r5_ethboot_defconfig b/configs/am62ax_evm_r5_ethboot_defconfig
new file mode 100644
index 00000000000..2986feef29a
--- /dev/null
+++ b/configs/am62ax_evm_r5_ethboot_defconfig
@@ -0,0 +1,22 @@
+#include <configs/am62ax_evm_r5_defconfig>
+
+# CONFIG_NO_NET is not set
+CONFIG_SPL_GPIO=y
+CONFIG_SPL_MMC=n
+CONFIG_SPL_BOARD_INIT=y
+CONFIG_SPL_STACK_R_ADDR=0x82000000
+CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x200000
+CONFIG_SPL_DMA=y
+CONFIG_SPL_ENV_SUPPORT=y
+CONFIG_SPL_ETH=y
+CONFIG_SPL_I2C=y
+CONFIG_NET=y
+CONFIG_SPL_NET=y
+CONFIG_SPL_NET_VCI_STRING="AM62AX U-Boot R5 SPL"
+CONFIG_CMD_DHCP=y
+CONFIG_SPL_SYSCON=y
+CONFIG_DMA_CHANNELS=y
+CONFIG_TI_K3_NAVSS_UDMA=y
+CONFIG_DM_I2C=y
+CONFIG_PHY_TI_DP83867=y
+CONFIG_TI_AM65_CPSW_NUSS=y
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 2/3] configs: am62ax_evm_a53_ethboot: Enable config options required to enable Ethernet boot
2026-07-10 10:22 [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Chintan Vankar
2026-07-10 10:22 ` [PATCH v2 1/3] configs: am62ax_evm_r5_ethboot: Enable config options required for Ethernet boot Chintan Vankar
@ 2026-07-10 10:22 ` Chintan Vankar
2026-07-14 11:05 ` Anshul Dalal
2026-07-10 10:22 ` [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma Chintan Vankar
` (2 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Chintan Vankar @ 2026-07-10 10:22 UTC (permalink / raw)
To: Andrew Davis, Bryan Brattlof, Chintan Vankar, Wadim Egorov,
Anshul Dalal, Ilias Apalodimas, Tom Rini
Cc: u-boot
Enable config options required to enable Ethernet boot on SK-AM62A-LP for
A53 SPL stage.
Acked-by: Andrew Davis <afd@ti.com>
Signed-off-by: Chintan Vankar <c-vankar@ti.com>
---
Link to v1:
https://lore.kernel.org/all/20260702081251.2691159-3-c-vankar@ti.com/
Changes from v1 to v2:
-> Removed the duplicate config options.
configs/am62ax_evm_a53_ethboot_defconfig | 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 configs/am62ax_evm_a53_ethboot_defconfig
diff --git a/configs/am62ax_evm_a53_ethboot_defconfig b/configs/am62ax_evm_a53_ethboot_defconfig
new file mode 100644
index 00000000000..a3ac67feb85
--- /dev/null
+++ b/configs/am62ax_evm_a53_ethboot_defconfig
@@ -0,0 +1,10 @@
+#include <configs/am62ax_evm_a53_defconfig>
+
+CONFIG_SPL_DRIVERS_MISC=y
+CONFIG_SPL_BOARD_INIT=y
+CONFIG_SPL_DMA=y
+CONFIG_SPL_ENV_SUPPORT=y
+CONFIG_SPL_ETH=y
+CONFIG_SPL_NET=y
+CONFIG_SPL_NET_VCI_STRING="AM62AX U-Boot A53 SPL"
+CONFIG_SPL_SYSCON=y
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma
2026-07-10 10:22 [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Chintan Vankar
2026-07-10 10:22 ` [PATCH v2 1/3] configs: am62ax_evm_r5_ethboot: Enable config options required for Ethernet boot Chintan Vankar
2026-07-10 10:22 ` [PATCH v2 2/3] configs: am62ax_evm_a53_ethboot: Enable config options required to enable " Chintan Vankar
@ 2026-07-10 10:22 ` Chintan Vankar
2026-07-14 11:05 ` Anshul Dalal
2026-07-14 11:05 ` [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Anshul Dalal
2026-07-15 9:09 ` Anshul Dalal
4 siblings, 1 reply; 12+ messages in thread
From: Chintan Vankar @ 2026-07-10 10:22 UTC (permalink / raw)
To: Andrew Davis, Bryan Brattlof, Chintan Vankar, Wadim Egorov,
Anshul Dalal, Ilias Apalodimas, Tom Rini
Cc: u-boot
Enable DM services for main_pktdma during R5 SPL stage.
Signed-off-by: Chintan Vankar <c-vankar@ti.com>
---
Link to v1:
https://lore.kernel.org/all/20260702081251.2691159-4-c-vankar@ti.com/
Changes from v1 to v2:
- No changes.
arch/arm/dts/k3-am62a7-r5-sk.dts | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm/dts/k3-am62a7-r5-sk.dts b/arch/arm/dts/k3-am62a7-r5-sk.dts
index 4570ff6edbf..9c2a6bf89a9 100644
--- a/arch/arm/dts/k3-am62a7-r5-sk.dts
+++ b/arch/arm/dts/k3-am62a7-r5-sk.dts
@@ -42,3 +42,8 @@
status = "okay";
bootph-pre-ram;
};
+
+&main_pktdma {
+ ti,sci = <&dm_tifs>;
+ bootph-all;
+};
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 1/3] configs: am62ax_evm_r5_ethboot: Enable config options required for Ethernet boot
2026-07-10 10:22 ` [PATCH v2 1/3] configs: am62ax_evm_r5_ethboot: Enable config options required for Ethernet boot Chintan Vankar
@ 2026-07-14 11:05 ` Anshul Dalal
0 siblings, 0 replies; 12+ messages in thread
From: Anshul Dalal @ 2026-07-14 11:05 UTC (permalink / raw)
To: Chintan Vankar
Cc: Andrew Davis, Bryan Brattlof, Wadim Egorov, Anshul Dalal,
Ilias Apalodimas, Tom Rini, u-boot
On Fri, 10 Jul 2026 15:52:27 +0530, Chintan Vankar <c-vankar@ti.com> wrote:
> diff --git a/configs/am62ax_evm_r5_ethboot_defconfig b/configs/am62ax_evm_r5_ethboot_defconfig
> new file mode 100644
> index 000000000000..2986feef29a5
> --- /dev/null
> +++ b/configs/am62ax_evm_r5_ethboot_defconfig
> @@ -0,0 +1,22 @@
> +#include <configs/am62ax_evm_r5_defconfig>
> +
> +# CONFIG_NO_NET is not set
> +CONFIG_SPL_GPIO=y
> +CONFIG_SPL_MMC=n
> +CONFIG_SPL_BOARD_INIT=y
We already enable SPL_BOARD_INIT for the r5 and a53 defconfigs, rest looks good
to me.
Reviewed-by: Anshul Dalal <anshuld@ti.com>
--
Anshul Dalal <anshuld@ti.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP
2026-07-10 10:22 [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Chintan Vankar
` (2 preceding siblings ...)
2026-07-10 10:22 ` [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma Chintan Vankar
@ 2026-07-14 11:05 ` Anshul Dalal
2026-07-15 9:09 ` Anshul Dalal
4 siblings, 0 replies; 12+ messages in thread
From: Anshul Dalal @ 2026-07-14 11:05 UTC (permalink / raw)
To: Chintan Vankar
Cc: Andrew Davis, Bryan Brattlof, Wadim Egorov, Anshul Dalal,
Ilias Apalodimas, Tom Rini, u-boot
On Fri, 10 Jul 2026 15:52:26 +0530, Chintan Vankar <c-vankar@ti.com> wrote:
> This series enables Ethernet boot on SK-AM62A-LP. The series is based on
> commit 'a18265f1ccb7' of origin/next branch of U-Boot repo.
>
> Link to v1:
> https://lore.kernel.org/all/20260702081251.2691159-1-c-vankar@ti.com/
>
> Logs:
> https://gist.github.com/chintan013/db875ef8b703094af70ca681659ba7f0
>
> Changes from v1 to v2:
> -> Removed the duplicate config options from r5 and a53 defconfig.
> -> Updated commit message for [PATCH 1/3].
Tested on AM62A EVM with the below patch applied:
https://lore.kernel.org/all/20260625113223.1711052-1-c-vankar@ti.com/
Logs:
https://gist.github.com/ArchUsr64/3265edca99084022a128bb51cd142cb5
Tested-by: Anshul Dalal <anshuld@ti.com>
--
Anshul Dalal <anshuld@ti.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma
2026-07-10 10:22 ` [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma Chintan Vankar
@ 2026-07-14 11:05 ` Anshul Dalal
2026-07-14 11:35 ` Wadim Egorov
0 siblings, 1 reply; 12+ messages in thread
From: Anshul Dalal @ 2026-07-14 11:05 UTC (permalink / raw)
To: Chintan Vankar
Cc: Andrew Davis, Bryan Brattlof, Wadim Egorov, Anshul Dalal,
Ilias Apalodimas, Tom Rini, u-boot
On Fri, 10 Jul 2026 15:52:29 +0530, Chintan Vankar <c-vankar@ti.com> wrote:
> diff --git a/arch/arm/dts/k3-am62a7-r5-sk.dts b/arch/arm/dts/k3-am62a7-r5-sk.dts
> index 4570ff6edbf7..9c2a6bf89a92 100644
> --- a/arch/arm/dts/k3-am62a7-r5-sk.dts
> +++ b/arch/arm/dts/k3-am62a7-r5-sk.dts
> @@ -42,3 +42,8 @@
> status = "okay";
> bootph-pre-ram;
> };
> +
> +&main_pktdma {
> + ti,sci = <&dm_tifs>;
> + bootph-all;
> +};
We should have this as part of 'k3-am62a7-r5.dtsi' so that other boards can
also get OOB ethernet boot by just modifying their defconfig.
--
Anshul Dalal <anshuld@ti.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/3] configs: am62ax_evm_a53_ethboot: Enable config options required to enable Ethernet boot
2026-07-10 10:22 ` [PATCH v2 2/3] configs: am62ax_evm_a53_ethboot: Enable config options required to enable " Chintan Vankar
@ 2026-07-14 11:05 ` Anshul Dalal
0 siblings, 0 replies; 12+ messages in thread
From: Anshul Dalal @ 2026-07-14 11:05 UTC (permalink / raw)
To: Chintan Vankar
Cc: Andrew Davis, Bryan Brattlof, Wadim Egorov, Anshul Dalal,
Ilias Apalodimas, Tom Rini, u-boot
On Fri, 10 Jul 2026 15:52:28 +0530, Chintan Vankar <c-vankar@ti.com> wrote:
> Enable config options required to enable Ethernet boot on SK-AM62A-LP for
> A53 SPL stage.
Reviewed-by: Anshul Dalal <anshuld@ti.com>
--
Anshul Dalal <anshuld@ti.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma
2026-07-14 11:05 ` Anshul Dalal
@ 2026-07-14 11:35 ` Wadim Egorov
2026-07-15 12:47 ` Chintan Vankar
0 siblings, 1 reply; 12+ messages in thread
From: Wadim Egorov @ 2026-07-14 11:35 UTC (permalink / raw)
To: Anshul Dalal, Chintan Vankar
Cc: Andrew Davis, Bryan Brattlof, Ilias Apalodimas, Tom Rini, u-boot
On 7/14/26 2:05 PM, Anshul Dalal wrote:
> On Fri, 10 Jul 2026 15:52:29 +0530, Chintan Vankar <c-vankar@ti.com> wrote:
>> diff --git a/arch/arm/dts/k3-am62a7-r5-sk.dts b/arch/arm/dts/k3-am62a7-r5-sk.dts
>> index 4570ff6edbf7..9c2a6bf89a92 100644
>> --- a/arch/arm/dts/k3-am62a7-r5-sk.dts
>> +++ b/arch/arm/dts/k3-am62a7-r5-sk.dts
>> @@ -42,3 +42,8 @@
>> status = "okay";
>> bootph-pre-ram;
>> };
>> +
>> +&main_pktdma {
>> + ti,sci = <&dm_tifs>;
>> + bootph-all;
>> +};
>
> We should have this as part of 'k3-am62a7-r5.dtsi' so that other boards can
> also get OOB ethernet boot by just modifying their defconfig.
>
You can set the boot phase tag in the Linux/upstream device tree. This is also what is done for other nodes required for booting.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP
2026-07-10 10:22 [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Chintan Vankar
` (3 preceding siblings ...)
2026-07-14 11:05 ` [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Anshul Dalal
@ 2026-07-15 9:09 ` Anshul Dalal
2026-07-15 12:47 ` Chintan Vankar
4 siblings, 1 reply; 12+ messages in thread
From: Anshul Dalal @ 2026-07-15 9:09 UTC (permalink / raw)
To: Chintan Vankar, Andrew Davis, Bryan Brattlof, Wadim Egorov,
Anshul Dalal, Ilias Apalodimas, Tom Rini
Cc: u-boot
On Fri Jul 10, 2026 at 3:52 PM IST, Chintan Vankar wrote:
> This series enables Ethernet boot on SK-AM62A-LP. The series is based on
> commit 'a18265f1ccb7' of origin/next branch of U-Boot repo.
>
> Link to v1:
> https://lore.kernel.org/all/20260702081251.2691159-1-c-vankar@ti.com/
>
> Logs:
> https://gist.github.com/chintan013/db875ef8b703094af70ca681659ba7f0
>
I forgot to mention in my last reply but with ethernet boot added, it
would be helpful to document it in the respective board RST as well.
> Changes from v1 to v2:
> -> Removed the duplicate config options from r5 and a53 defconfig.
> -> Updated commit message for [PATCH 1/3].
>
> Chintan Vankar (3):
> configs: am62ax_evm_r5_ethboot: Enable config options required for
> Ethernet boot
> configs: am62ax_evm_a53_ethboot: Enable config options required to
> enable Ethernet boot
> arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma
>
> arch/arm/dts/k3-am62a7-r5-sk.dts | 5 +++++
> configs/am62ax_evm_a53_ethboot_defconfig | 10 ++++++++++
> configs/am62ax_evm_r5_ethboot_defconfig | 22 ++++++++++++++++++++++
> 3 files changed, 37 insertions(+)
> create mode 100644 configs/am62ax_evm_a53_ethboot_defconfig
> create mode 100644 configs/am62ax_evm_r5_ethboot_defconfig
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma
2026-07-14 11:35 ` Wadim Egorov
@ 2026-07-15 12:47 ` Chintan Vankar
0 siblings, 0 replies; 12+ messages in thread
From: Chintan Vankar @ 2026-07-15 12:47 UTC (permalink / raw)
To: Wadim Egorov, Anshul Dalal
Cc: Andrew Davis, Bryan Brattlof, Ilias Apalodimas, Tom Rini, u-boot
Hello Wadim, Anshul,
On 14/07/26 17:05, Wadim Egorov wrote:
>
>
> On 7/14/26 2:05 PM, Anshul Dalal wrote:
>> On Fri, 10 Jul 2026 15:52:29 +0530, Chintan Vankar <c-vankar@ti.com> wrote:
>>> diff --git a/arch/arm/dts/k3-am62a7-r5-sk.dts b/arch/arm/dts/k3-am62a7-r5-sk.dts
>>> index 4570ff6edbf7..9c2a6bf89a92 100644
>>> --- a/arch/arm/dts/k3-am62a7-r5-sk.dts
>>> +++ b/arch/arm/dts/k3-am62a7-r5-sk.dts
>>> @@ -42,3 +42,8 @@
>>> status = "okay";
>>> bootph-pre-ram;
>>> };
>>> +
>>> +&main_pktdma {
>>> + ti,sci = <&dm_tifs>;
>>> + bootph-all;
>>> +};
>>
>> We should have this as part of 'k3-am62a7-r5.dtsi' so that other boards can
>> also get OOB ethernet boot by just modifying their defconfig.
>>
>
> You can set the boot phase tag in the Linux/upstream device tree. This is also what is done for other nodes required for booting.
I agree with you, I have enabled boot phase tag in a similar manner,
I added the "bootph-all" property along with the "ti,sci" property
there was no specific reason to add "bootph-all" property. I will go
with your approach.
Regards,
Chintan.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP
2026-07-15 9:09 ` Anshul Dalal
@ 2026-07-15 12:47 ` Chintan Vankar
0 siblings, 0 replies; 12+ messages in thread
From: Chintan Vankar @ 2026-07-15 12:47 UTC (permalink / raw)
To: Anshul Dalal, Andrew Davis, Bryan Brattlof, Wadim Egorov,
Ilias Apalodimas, Tom Rini
Cc: u-boot
Hello Anshul,
On 15/07/26 14:39, Anshul Dalal wrote:
> On Fri Jul 10, 2026 at 3:52 PM IST, Chintan Vankar wrote:
>> This series enables Ethernet boot on SK-AM62A-LP. The series is based on
>> commit 'a18265f1ccb7' of origin/next branch of U-Boot repo.
>>
>> Link to v1:
>> https://lore.kernel.org/all/20260702081251.2691159-1-c-vankar@ti.com/
>>
>> Logs:
>> https://gist.github.com/chintan013/db875ef8b703094af70ca681659ba7f0
>>
>
> I forgot to mention in my last reply but with ethernet boot added, it
> would be helpful to document it in the respective board RST as well.
>
Thanks for testing the feature, I will add the documentation in next
version.
Regards,
Chintan.
>> Changes from v1 to v2:
>> -> Removed the duplicate config options from r5 and a53 defconfig.
>> -> Updated commit message for [PATCH 1/3].
>>
>> Chintan Vankar (3):
>> configs: am62ax_evm_r5_ethboot: Enable config options required for
>> Ethernet boot
>> configs: am62ax_evm_a53_ethboot: Enable config options required to
>> enable Ethernet boot
>> arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma
>>
>> arch/arm/dts/k3-am62a7-r5-sk.dts | 5 +++++
>> configs/am62ax_evm_a53_ethboot_defconfig | 10 ++++++++++
>> configs/am62ax_evm_r5_ethboot_defconfig | 22 ++++++++++++++++++++++
>> 3 files changed, 37 insertions(+)
>> create mode 100644 configs/am62ax_evm_a53_ethboot_defconfig
>> create mode 100644 configs/am62ax_evm_r5_ethboot_defconfig
>
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-07-15 12:48 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-10 10:22 [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Chintan Vankar
2026-07-10 10:22 ` [PATCH v2 1/3] configs: am62ax_evm_r5_ethboot: Enable config options required for Ethernet boot Chintan Vankar
2026-07-14 11:05 ` Anshul Dalal
2026-07-10 10:22 ` [PATCH v2 2/3] configs: am62ax_evm_a53_ethboot: Enable config options required to enable " Chintan Vankar
2026-07-14 11:05 ` Anshul Dalal
2026-07-10 10:22 ` [PATCH v2 3/3] arm: dts: k3-am62a7-sk-u-boot: Enable DM services for main_pktdma Chintan Vankar
2026-07-14 11:05 ` Anshul Dalal
2026-07-14 11:35 ` Wadim Egorov
2026-07-15 12:47 ` Chintan Vankar
2026-07-14 11:05 ` [PATCH v2 0/3] Enable Ethernet boot on SK-AM62A-LP Anshul Dalal
2026-07-15 9:09 ` Anshul Dalal
2026-07-15 12:47 ` Chintan Vankar
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.