All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Fix Ethernet boot in am437x-evm
@ 2020-01-31  9:53 Faiz Abbas
  2020-01-31  9:53 ` [PATCH 1/2] arm: dts: am437x-gp-evm: Add some nodes to u-boot.dtsi Faiz Abbas
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Faiz Abbas @ 2020-01-31  9:53 UTC (permalink / raw)
  To: u-boot

The following patches fix ethernet boot in am437x-evm.

Faiz Abbas (2):
  arm: dts: am437x-gp-evm: Add some nodes to u-boot.dtsi
  configs: am43xx_evm: Enable SPL_ETH_SUPPORT

 arch/arm/dts/am437x-gp-evm-u-boot.dtsi | 16 ++++++++++++++++
 configs/am43xx_evm_defconfig           |  1 +
 2 files changed, 17 insertions(+)

-- 
2.19.2

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] arm: dts: am437x-gp-evm: Add some nodes to u-boot.dtsi
  2020-01-31  9:53 [PATCH 0/2] Fix Ethernet boot in am437x-evm Faiz Abbas
@ 2020-01-31  9:53 ` Faiz Abbas
  2020-01-31  9:53 ` [PATCH 2/2] configs: am43xx_evm: Enable SPL_ETH_SUPPORT Faiz Abbas
  2020-02-14  9:51 ` [PATCH 0/2] Fix Ethernet boot in am437x-evm Lokesh Vutla
  2 siblings, 0 replies; 4+ messages in thread
From: Faiz Abbas @ 2020-01-31  9:53 UTC (permalink / raw)
  To: u-boot

Add scm_conf syscon node and its parents as well as the ethernet phy
node to u-boot.dtsi. This enables ethernet boot.

Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
---
 arch/arm/dts/am437x-gp-evm-u-boot.dtsi | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/arm/dts/am437x-gp-evm-u-boot.dtsi b/arch/arm/dts/am437x-gp-evm-u-boot.dtsi
index d950d32f17..b55aa8e763 100644
--- a/arch/arm/dts/am437x-gp-evm-u-boot.dtsi
+++ b/arch/arm/dts/am437x-gp-evm-u-boot.dtsi
@@ -42,3 +42,19 @@
 &i2c0 {
 	u-boot,dm-spl;
 };
+
+&l4_wkup {
+	u-boot,dm-spl;
+};
+
+&scm {
+	u-boot,dm-spl;
+};
+
+&scm_conf {
+	u-boot,dm-spl;
+};
+
+&ethphy0 {
+	u-boot,dm-spl;
+};
-- 
2.19.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] configs: am43xx_evm: Enable SPL_ETH_SUPPORT
  2020-01-31  9:53 [PATCH 0/2] Fix Ethernet boot in am437x-evm Faiz Abbas
  2020-01-31  9:53 ` [PATCH 1/2] arm: dts: am437x-gp-evm: Add some nodes to u-boot.dtsi Faiz Abbas
@ 2020-01-31  9:53 ` Faiz Abbas
  2020-02-14  9:51 ` [PATCH 0/2] Fix Ethernet boot in am437x-evm Lokesh Vutla
  2 siblings, 0 replies; 4+ messages in thread
From: Faiz Abbas @ 2020-01-31  9:53 UTC (permalink / raw)
  To: u-boot

Enable CONFIG_SPL_ETH_SUPPORT to fix ethernet boot support.

Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
---
 configs/am43xx_evm_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/am43xx_evm_defconfig b/configs/am43xx_evm_defconfig
index 2e64879beb..075c09b626 100644
--- a/configs/am43xx_evm_defconfig
+++ b/configs/am43xx_evm_defconfig
@@ -15,6 +15,7 @@ CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=1"
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 # CONFIG_MISC_INIT_R is not set
 CONFIG_VERSION_VARIABLE=y
+CONFIG_SPL_ETH_SUPPORT=y
 CONFIG_SPL_MTD_SUPPORT=y
 CONFIG_SPL_NET_SUPPORT=y
 CONFIG_SPL_NET_VCI_STRING="AM43xx U-Boot SPL"
-- 
2.19.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 0/2] Fix Ethernet boot in am437x-evm
  2020-01-31  9:53 [PATCH 0/2] Fix Ethernet boot in am437x-evm Faiz Abbas
  2020-01-31  9:53 ` [PATCH 1/2] arm: dts: am437x-gp-evm: Add some nodes to u-boot.dtsi Faiz Abbas
  2020-01-31  9:53 ` [PATCH 2/2] configs: am43xx_evm: Enable SPL_ETH_SUPPORT Faiz Abbas
@ 2020-02-14  9:51 ` Lokesh Vutla
  2 siblings, 0 replies; 4+ messages in thread
From: Lokesh Vutla @ 2020-02-14  9:51 UTC (permalink / raw)
  To: u-boot



On 31/01/20 3:23 PM, Faiz Abbas wrote:
> The following patches fix ethernet boot in am437x-evm.

Merged into u-boot-ti.

Thanks and regards,
Lokesh

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-02-14  9:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-31  9:53 [PATCH 0/2] Fix Ethernet boot in am437x-evm Faiz Abbas
2020-01-31  9:53 ` [PATCH 1/2] arm: dts: am437x-gp-evm: Add some nodes to u-boot.dtsi Faiz Abbas
2020-01-31  9:53 ` [PATCH 2/2] configs: am43xx_evm: Enable SPL_ETH_SUPPORT Faiz Abbas
2020-02-14  9:51 ` [PATCH 0/2] Fix Ethernet boot in am437x-evm Lokesh Vutla

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.