All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 2/3][v3] arm: Add support of updating dts before fix-up
@ 2017-11-23 11:21 Prabhakar Kushwaha
  2017-12-12 17:56 ` York Sun
  0 siblings, 1 reply; 3+ messages in thread
From: Prabhakar Kushwaha @ 2017-11-23 11:21 UTC (permalink / raw)
  To: u-boot

"ethernet" node fix-up for device tree happens before Linux boot.

There can be requirement of updating "ethernet" node even before
fix-up. So, add support of updating "ethernet" node.

Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
---
Changes for v2: Sending as it is
Changes for v2: Sending as it is

 arch/arm/lib/bootm-fdt.c | 12 ++++++++++++
 include/fdt_support.h    |  3 +++
 2 files changed, 15 insertions(+)

diff --git a/arch/arm/lib/bootm-fdt.c b/arch/arm/lib/bootm-fdt.c
index eaa817b..fcc2a0e 100644
--- a/arch/arm/lib/bootm-fdt.c
+++ b/arch/arm/lib/bootm-fdt.c
@@ -25,6 +25,13 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
+#ifdef CONFIG_FMAN_ENET
+__weak int fdt_update_ethernet_dt(void *blob)
+{
+	return 0;
+}
+#endif
+
 int arch_fixup_fdt(void *blob)
 {
 	int ret = 0;
@@ -64,5 +71,10 @@ int arch_fixup_fdt(void *blob)
 #endif
 #endif
 
+#ifdef CONFIG_FMAN_ENET
+	ret = fdt_update_ethernet_dt(blob);
+	if (ret)
+		return ret;
+#endif
 	return 0;
 }
diff --git a/include/fdt_support.h b/include/fdt_support.h
index 2bca4d7..1e1f8f7 100644
--- a/include/fdt_support.h
+++ b/include/fdt_support.h
@@ -272,4 +272,7 @@ int fdt_overlay_apply_verbose(void *fdt, void *fdto);
 int fdtdec_get_int(const void *blob, int node, const char *prop_name,
 		int default_val);
 #endif
+#ifdef CONFIG_FMAN_ENET
+int fdt_update_ethernet_dt(void *blob);
+#endif
 #endif /* ifndef __FDT_SUPPORT_H */
-- 
2.7.4

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

* [U-Boot] [PATCH 2/3][v3] arm: Add support of updating dts before fix-up
  2017-11-23 11:21 [U-Boot] [PATCH 2/3][v3] arm: Add support of updating dts before fix-up Prabhakar Kushwaha
@ 2017-12-12 17:56 ` York Sun
  2017-12-19 13:18   ` Simon Glass
  0 siblings, 1 reply; 3+ messages in thread
From: York Sun @ 2017-12-12 17:56 UTC (permalink / raw)
  To: u-boot

On 11/23/2017 03:22 AM, Prabhakar Kushwaha wrote:
> "ethernet" node fix-up for device tree happens before Linux boot.
> 
> There can be requirement of updating "ethernet" node even before
> fix-up. So, add support of updating "ethernet" node.
> 
> Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
> ---
> Changes for v2: Sending as it is
> Changes for v2: Sending as it is
> 

Reviewed-by: York Sun <york.sun@nxp.com>

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

* [U-Boot] [PATCH 2/3][v3] arm: Add support of updating dts before fix-up
  2017-12-12 17:56 ` York Sun
@ 2017-12-19 13:18   ` Simon Glass
  0 siblings, 0 replies; 3+ messages in thread
From: Simon Glass @ 2017-12-19 13:18 UTC (permalink / raw)
  To: u-boot

On 12 December 2017 at 10:56, York Sun <york.sun@nxp.com> wrote:
> On 11/23/2017 03:22 AM, Prabhakar Kushwaha wrote:
>> "ethernet" node fix-up for device tree happens before Linux boot.
>>
>> There can be requirement of updating "ethernet" node even before
>> fix-up. So, add support of updating "ethernet" node.
>>
>> Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
>> ---
>> Changes for v2: Sending as it is
>> Changes for v2: Sending as it is
>>
>
> Reviewed-by: York Sun <york.sun@nxp.com>

Applied to u-boot-dm, thanks!

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

end of thread, other threads:[~2017-12-19 13:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-23 11:21 [U-Boot] [PATCH 2/3][v3] arm: Add support of updating dts before fix-up Prabhakar Kushwaha
2017-12-12 17:56 ` York Sun
2017-12-19 13:18   ` Simon Glass

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.