u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT
@ 2022-08-19  8:56 Antoine Mazeas
  2022-08-19  8:56 ` [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb Antoine Mazeas
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Antoine Mazeas @ 2022-08-19  8:56 UTC (permalink / raw)
  To: u-boot; +Cc: Matthias Brugger, Antoine Mazeas

Sjoerd Simons submitted the original patch (0001) to carry over some
firmware-provided properties into the loaded device tree. This did not fix
an issue with Raspberry Pi 400 rev 1.1 boards which would not be able to
find the ethernet PHY device at the address specified by the kernel device
tree.

Patch 0002 expands on Sjoerd's design to also carry over the real ethernet
PHY address, enabling the kernel to find and enable a working ethernet on
pi 400 rev 1.1 boards.


Antoine Mazeas (2):
  rpi: Copy properties from firmware dtb to the loaded dtb
  rpi: Copy eth PHY address from fw DT to loaded DT

 board/raspberrypi/rpi/rpi.c | 51 +++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

-- 
2.37.2


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

* [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb
  2022-08-19  8:56 [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
@ 2022-08-19  8:56 ` Antoine Mazeas
  2022-08-22 16:39   ` Simon Glass
  2022-08-19  8:56 ` [RESEND PATCH 2/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Antoine Mazeas @ 2022-08-19  8:56 UTC (permalink / raw)
  To: u-boot; +Cc: Matthias Brugger, Antoine Mazeas, Sjoerd Simons

The RPI firmware adjusts several property values in the dtb it passes
to u-boot depending on the board/SoC revision. Inherit some of these
when u-boot loads a dtb itself. Specificaly copy:

* /model: The firmware provides a more specific string
* /memreserve: The firmware defines a reserved range, better keep it
* emmc2bus and pcie0 dma-ranges: The C0T revision of the bcm2711 Soc (as
  present on rpi 400 and some rpi 4B boards) has different values for
  these then the B0T revision. So these need to be adjusted to boot on
  these boards
* blconfig: The firmware defines the memory area where the blconfig
  stored. Copy those over so it can be enabled.
* /chosen/kaslr-seed: The firmware generates a kaslr seed, take advantage
  of that.

Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>
Signed-off-by: Antoine Mazeas <antoine@karthanis.net>
---

 board/raspberrypi/rpi/rpi.c | 48 +++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c
index 17b8108cc8..28b6f52506 100644
--- a/board/raspberrypi/rpi/rpi.c
+++ b/board/raspberrypi/rpi/rpi.c
@@ -504,10 +504,58 @@ void *board_fdt_blob_setup(int *err)
 	return (void *)fw_dtb_pointer;
 }
 
+int copy_property(void *dst, void *src, char *path, char *property)
+{
+	int dst_offset, src_offset;
+	const fdt32_t *prop;
+	int len;
+
+	src_offset = fdt_path_offset(src, path);
+	dst_offset = fdt_path_offset(dst, path);
+
+	if (src_offset < 0 || dst_offset < 0)
+		return -1;
+
+	prop = fdt_getprop(src, src_offset, property, &len);
+	if (!prop)
+		return -1;
+
+	return fdt_setprop(dst, dst_offset, property, prop, len);
+}
+
+/* Copy tweaks from the firmware dtb to the loaded dtb */
+void  update_fdt_from_fw(void *fdt, void *fw_fdt)
+{
+	/* Using dtb from firmware directly; leave it alone */
+	if (fdt == fw_fdt)
+		return;
+
+	/* The firmware provides a more precie model; so copy that */
+	copy_property(fdt, fw_fdt, "/", "model");
+
+	/* memory reserve as suggested by the firmware */
+	copy_property(fdt, fw_fdt, "/", "memreserve");
+
+	/* Adjust dma-ranges for the SD card and PCI bus as they can depend on
+	 * the SoC revision
+	 */
+	copy_property(fdt, fw_fdt, "emmc2bus", "dma-ranges");
+	copy_property(fdt, fw_fdt, "pcie0", "dma-ranges");
+
+	/* Bootloader configuration template exposes as nvmem */
+	if (copy_property(fdt, fw_fdt, "blconfig", "reg") == 0)
+		copy_property(fdt, fw_fdt, "blconfig", "status");
+
+	/* kernel address randomisation seed as provided by the firmware */
+	copy_property(fdt, fw_fdt, "/chosen", "kaslr-seed");
+}
+
 int ft_board_setup(void *blob, struct bd_info *bd)
 {
 	int node;
 
+	update_fdt_from_fw(blob, (void *)fw_dtb_pointer);
+
 	node = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
 	if (node < 0)
 		fdt_simplefb_add_node(blob);
-- 
2.37.2


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

* [RESEND PATCH 2/2] rpi: Copy eth PHY address from fw DT to loaded DT
  2022-08-19  8:56 [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
  2022-08-19  8:56 ` [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb Antoine Mazeas
@ 2022-08-19  8:56 ` Antoine Mazeas
  2022-08-19 14:15 ` [RESEND PATCH 0/2] " Peter Robinson
  2023-01-09  8:18 ` [RESEND,0/2] " Jian-Hong Pan
  3 siblings, 0 replies; 10+ messages in thread
From: Antoine Mazeas @ 2022-08-19  8:56 UTC (permalink / raw)
  To: u-boot; +Cc: Matthias Brugger, Antoine Mazeas

Some Raspberry Pi 400 boards, specifically rev 1.1, have a different
address for the ethernet PHY device than what is provided by the kernel
DTB. The correct address is provided by the firmware, so we should carry
it over into the loaded device tree so that ethernet works on such boards.

Signed-off-by: Antoine Mazeas <antoine@karthanis.net>

---

 board/raspberrypi/rpi/rpi.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c
index 28b6f52506..793fd1aa30 100644
--- a/board/raspberrypi/rpi/rpi.c
+++ b/board/raspberrypi/rpi/rpi.c
@@ -548,6 +548,9 @@ void  update_fdt_from_fw(void *fdt, void *fw_fdt)
 
 	/* kernel address randomisation seed as provided by the firmware */
 	copy_property(fdt, fw_fdt, "/chosen", "kaslr-seed");
+
+	/* address of the PHY device as provided by the firmware  */
+	copy_property(fdt, fw_fdt, "ethernet0/mdio@e14/ethernet-phy@1", "reg");
 }
 
 int ft_board_setup(void *blob, struct bd_info *bd)
-- 
2.37.2


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

* Re: [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT
  2022-08-19  8:56 [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
  2022-08-19  8:56 ` [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb Antoine Mazeas
  2022-08-19  8:56 ` [RESEND PATCH 2/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
@ 2022-08-19 14:15 ` Peter Robinson
  2022-08-19 14:47   ` Antoine Mazeas
  2023-01-09  8:18 ` [RESEND,0/2] " Jian-Hong Pan
  3 siblings, 1 reply; 10+ messages in thread
From: Peter Robinson @ 2022-08-19 14:15 UTC (permalink / raw)
  To: Antoine Mazeas; +Cc: u-boot, Matthias Brugger

Why did you need to resend it?

On Fri, Aug 19, 2022 at 3:08 PM Antoine Mazeas <antoine@karthanis.net> wrote:
>
> Sjoerd Simons submitted the original patch (0001) to carry over some
> firmware-provided properties into the loaded device tree. This did not fix
> an issue with Raspberry Pi 400 rev 1.1 boards which would not be able to
> find the ethernet PHY device at the address specified by the kernel device
> tree.
>
> Patch 0002 expands on Sjoerd's design to also carry over the real ethernet
> PHY address, enabling the kernel to find and enable a working ethernet on
> pi 400 rev 1.1 boards.
>
>
> Antoine Mazeas (2):
>   rpi: Copy properties from firmware dtb to the loaded dtb
>   rpi: Copy eth PHY address from fw DT to loaded DT
>
>  board/raspberrypi/rpi/rpi.c | 51 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 51 insertions(+)
>
> --
> 2.37.2
>

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

* Re: [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT
  2022-08-19 14:15 ` [RESEND PATCH 0/2] " Peter Robinson
@ 2022-08-19 14:47   ` Antoine Mazeas
  0 siblings, 0 replies; 10+ messages in thread
From: Antoine Mazeas @ 2022-08-19 14:47 UTC (permalink / raw)
  To: Peter Robinson; +Cc: u-boot, Matthias Brugger

I had not used patman in the first instance and Matthias Brugger was not cc’ed with the patch properly. Given that I had no feedback, I thought best to resubmit via patman this time in case it had not been seen the first time because of this.
However patman also picked up a different series title and did not allow for superseding the first submission. 

I hope this lapse in process does not reflect too badly on this patch.

Regards 

> Le 19 août 2022 à 16:15, Peter Robinson <pbrobinson@gmail.com> a écrit :
> Why did you need to resend it?
> 
> On Fri, Aug 19, 2022 at 3:08 PM Antoine Mazeas <antoine@karthanis.net> wrote:
>> 
>> Sjoerd Simons submitted the original patch (0001) to carry over some
>> firmware-provided properties into the loaded device tree. This did not fix
>> an issue with Raspberry Pi 400 rev 1.1 boards which would not be able to
>> find the ethernet PHY device at the address specified by the kernel device
>> tree.
>> 
>> Patch 0002 expands on Sjoerd's design to also carry over the real ethernet
>> PHY address, enabling the kernel to find and enable a working ethernet on
>> pi 400 rev 1.1 boards.
>> 
>> 
>> Antoine Mazeas (2):
>>  rpi: Copy properties from firmware dtb to the loaded dtb
>>  rpi: Copy eth PHY address from fw DT to loaded DT
>> 
>> board/raspberrypi/rpi/rpi.c | 51 +++++++++++++++++++++++++++++++++++++
>> 1 file changed, 51 insertions(+)
>> 
>> --
>> 2.37.2


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

* Re: [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb
  2022-08-19  8:56 ` [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb Antoine Mazeas
@ 2022-08-22 16:39   ` Simon Glass
  2022-08-22 22:00     ` Antoine Mazeas
  0 siblings, 1 reply; 10+ messages in thread
From: Simon Glass @ 2022-08-22 16:39 UTC (permalink / raw)
  To: Antoine Mazeas; +Cc: U-Boot Mailing List, Matthias Brugger, Sjoerd Simons

Hi Antoine,

On Fri, 19 Aug 2022 at 08:08, Antoine Mazeas <antoine@karthanis.net> wrote:
>
> The RPI firmware adjusts several property values in the dtb it passes
> to u-boot depending on the board/SoC revision. Inherit some of these
> when u-boot loads a dtb itself. Specificaly copy:
>
> * /model: The firmware provides a more specific string
> * /memreserve: The firmware defines a reserved range, better keep it
> * emmc2bus and pcie0 dma-ranges: The C0T revision of the bcm2711 Soc (as
>   present on rpi 400 and some rpi 4B boards) has different values for
>   these then the B0T revision. So these need to be adjusted to boot on
>   these boards
> * blconfig: The firmware defines the memory area where the blconfig
>   stored. Copy those over so it can be enabled.
> * /chosen/kaslr-seed: The firmware generates a kaslr seed, take advantage
>   of that.
>
> Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>
> Signed-off-by: Antoine Mazeas <antoine@karthanis.net>
> ---
>
>  board/raspberrypi/rpi/rpi.c | 48 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 48 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

I wonder if anyone has tried to drop the private firmware on the boards?

At some point copy_property() should move to fdt_support.c if others use it

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

* Re: [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb
  2022-08-22 16:39   ` Simon Glass
@ 2022-08-22 22:00     ` Antoine Mazeas
  2022-08-23 13:38       ` Simon Glass
  0 siblings, 1 reply; 10+ messages in thread
From: Antoine Mazeas @ 2022-08-22 22:00 UTC (permalink / raw)
  To: Simon Glass; +Cc: U-Boot Mailing List, Matthias Brugger, Sjoerd Simons

Thanks Simon,

Can I ask you to clarify what you meant by "drop the private firmware"?
For the record, this patch was tested using the vendored firmware from
Raspberry Pi, v1.20220331, and subsequently v1.20220811 when it came
out.

I'm happy to do the requested change now if you think it is preferable.

Regards

Le 22/08/2022 à 18:39, Simon Glass a écrit :
> Hi Antoine,
> 
> On Fri, 19 Aug 2022 at 08:08, Antoine Mazeas <antoine@karthanis.net> wrote:
>>
>> The RPI firmware adjusts several property values in the dtb it passes
>> to u-boot depending on the board/SoC revision. Inherit some of these
>> when u-boot loads a dtb itself. Specificaly copy:
>>
>> * /model: The firmware provides a more specific string
>> * /memreserve: The firmware defines a reserved range, better keep it
>> * emmc2bus and pcie0 dma-ranges: The C0T revision of the bcm2711 Soc (as
>>    present on rpi 400 and some rpi 4B boards) has different values for
>>    these then the B0T revision. So these need to be adjusted to boot on
>>    these boards
>> * blconfig: The firmware defines the memory area where the blconfig
>>    stored. Copy those over so it can be enabled.
>> * /chosen/kaslr-seed: The firmware generates a kaslr seed, take advantage
>>    of that.
>>
>> Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>
>> Signed-off-by: Antoine Mazeas <antoine@karthanis.net>
>> ---
>>
>>   board/raspberrypi/rpi/rpi.c | 48 +++++++++++++++++++++++++++++++++++++
>>   1 file changed, 48 insertions(+)
> 
> Reviewed-by: Simon Glass <sjg@chromium.org>
> 
> I wonder if anyone has tried to drop the private firmware on the boards?
> 
> At some point copy_property() should move to fdt_support.c if others use it

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

* Re: [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb
  2022-08-22 22:00     ` Antoine Mazeas
@ 2022-08-23 13:38       ` Simon Glass
  2022-08-24  8:45         ` Antoine Mazeas
  0 siblings, 1 reply; 10+ messages in thread
From: Simon Glass @ 2022-08-23 13:38 UTC (permalink / raw)
  To: Antoine Mazeas; +Cc: U-Boot Mailing List, Matthias Brugger, Sjoerd Simons

Hi Antoine,

On Mon, 22 Aug 2022 at 16:00, Antoine Mazeas <antoine@karthanis.net> wrote:
>
> Thanks Simon,
>
> Can I ask you to clarify what you meant by "drop the private firmware"?

Replace the private binary with a full U-Boot implementation. I hope
that the vendor might do it one day.

> For the record, this patch was tested using the vendored firmware from
> Raspberry Pi, v1.20220331, and subsequently v1.20220811 when it came
> out.
>
> I'm happy to do the requested change now if you think it is preferable.

No need, it's fine. We'll keep an eye out for it if someone else uses
your function.

Regards,
Simon


>
> Regards
>
> Le 22/08/2022 à 18:39, Simon Glass a écrit :
> > Hi Antoine,
> >
> > On Fri, 19 Aug 2022 at 08:08, Antoine Mazeas <antoine@karthanis.net> wrote:
> >>
> >> The RPI firmware adjusts several property values in the dtb it passes
> >> to u-boot depending on the board/SoC revision. Inherit some of these
> >> when u-boot loads a dtb itself. Specificaly copy:
> >>
> >> * /model: The firmware provides a more specific string
> >> * /memreserve: The firmware defines a reserved range, better keep it
> >> * emmc2bus and pcie0 dma-ranges: The C0T revision of the bcm2711 Soc (as
> >>    present on rpi 400 and some rpi 4B boards) has different values for
> >>    these then the B0T revision. So these need to be adjusted to boot on
> >>    these boards
> >> * blconfig: The firmware defines the memory area where the blconfig
> >>    stored. Copy those over so it can be enabled.
> >> * /chosen/kaslr-seed: The firmware generates a kaslr seed, take advantage
> >>    of that.
> >>
> >> Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>
> >> Signed-off-by: Antoine Mazeas <antoine@karthanis.net>
> >> ---
> >>
> >>   board/raspberrypi/rpi/rpi.c | 48 +++++++++++++++++++++++++++++++++++++
> >>   1 file changed, 48 insertions(+)
> >
> > Reviewed-by: Simon Glass <sjg@chromium.org>
> >
> > I wonder if anyone has tried to drop the private firmware on the boards?
> >
> > At some point copy_property() should move to fdt_support.c if others use it

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

* Re: [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb
  2022-08-23 13:38       ` Simon Glass
@ 2022-08-24  8:45         ` Antoine Mazeas
  0 siblings, 0 replies; 10+ messages in thread
From: Antoine Mazeas @ 2022-08-24  8:45 UTC (permalink / raw)
  To: Simon Glass; +Cc: U-Boot Mailing List, Matthias Brugger, Sjoerd Simons

Hi Simon,

Le 23/08/2022 à 15:38, Simon Glass a écrit :
> Hi Antoine,
> 
> On Mon, 22 Aug 2022 at 16:00, Antoine Mazeas <antoine@karthanis.net> wrote:
>>
>> Thanks Simon,
>>
>> Can I ask you to clarify what you meant by "drop the private firmware"?
> 
> Replace the private binary with a full U-Boot implementation. I hope
> that the vendor might do it one day.

I'm not aware whether this has been done, this would make things easier 
and more obvious for sure.

>> For the record, this patch was tested using the vendored firmware from
>> Raspberry Pi, v1.20220331, and subsequently v1.20220811 when it came
>> out.
>>
>> I'm happy to do the requested change now if you think it is preferable.
> 
> No need, it's fine. We'll keep an eye out for it if someone else uses
> your function.

Thank you, sounds good!

Regards
Antoine

> Regards,
> Simon
> 
> 
>>
>> Regards
>>
>> Le 22/08/2022 à 18:39, Simon Glass a écrit :
>>> Hi Antoine,
>>>
>>> On Fri, 19 Aug 2022 at 08:08, Antoine Mazeas <antoine@karthanis.net> wrote:
>>>>
>>>> The RPI firmware adjusts several property values in the dtb it passes
>>>> to u-boot depending on the board/SoC revision. Inherit some of these
>>>> when u-boot loads a dtb itself. Specificaly copy:
>>>>
>>>> * /model: The firmware provides a more specific string
>>>> * /memreserve: The firmware defines a reserved range, better keep it
>>>> * emmc2bus and pcie0 dma-ranges: The C0T revision of the bcm2711 Soc (as
>>>>     present on rpi 400 and some rpi 4B boards) has different values for
>>>>     these then the B0T revision. So these need to be adjusted to boot on
>>>>     these boards
>>>> * blconfig: The firmware defines the memory area where the blconfig
>>>>     stored. Copy those over so it can be enabled.
>>>> * /chosen/kaslr-seed: The firmware generates a kaslr seed, take advantage
>>>>     of that.
>>>>
>>>> Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>
>>>> Signed-off-by: Antoine Mazeas <antoine@karthanis.net>
>>>> ---
>>>>
>>>>    board/raspberrypi/rpi/rpi.c | 48 +++++++++++++++++++++++++++++++++++++
>>>>    1 file changed, 48 insertions(+)
>>>
>>> Reviewed-by: Simon Glass <sjg@chromium.org>
>>>
>>> I wonder if anyone has tried to drop the private firmware on the boards?
>>>
>>> At some point copy_property() should move to fdt_support.c if others use it

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

* Re: [RESEND,0/2] rpi: Copy eth PHY address from fw DT to loaded DT
  2022-08-19  8:56 [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
                   ` (2 preceding siblings ...)
  2022-08-19 14:15 ` [RESEND PATCH 0/2] " Peter Robinson
@ 2023-01-09  8:18 ` Jian-Hong Pan
  3 siblings, 0 replies; 10+ messages in thread
From: Jian-Hong Pan @ 2023-01-09  8:18 UTC (permalink / raw)
  To: Antoine Mazeas
  Cc: Peter Robinson, Mattias Brugger, u-boot, Sjoerd Simons,
	Stefan Wahren, linux, Jian-Hong Pan

> Sjoerd Simons submitted the original patch (0001) to carry over some
> firmware-provided properties into the loaded device tree. This did not fix
> an issue with Raspberry Pi 400 rev 1.1 boards which would not be able to
> find the ethernet PHY device at the address specified by the kernel device
> tree.
>
> Patch 0002 expands on Sjoerd's design to also carry over the real ethernet
> PHY address, enabling the kernel to find and enable a working ethernet on
> pi 400 rev 1.1 boards.
>
>
> Antoine Mazeas (2):
>   rpi: Copy properties from firmware dtb to the loaded dtb
>   rpi: Copy eth PHY address from fw DT to loaded DT
>
>  board/raspberrypi/rpi/rpi.c | 51 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 51 insertions(+)

Thanks!!!  These patches help u-boot boot Endelss OS on RPi 400.

Tested-by: Jian-Hong Pan <jhp@endlessos.org>

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

end of thread, other threads:[~2023-01-09 13:31 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-19  8:56 [RESEND PATCH 0/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
2022-08-19  8:56 ` [RESEND PATCH 1/2] rpi: Copy properties from firmware dtb to the loaded dtb Antoine Mazeas
2022-08-22 16:39   ` Simon Glass
2022-08-22 22:00     ` Antoine Mazeas
2022-08-23 13:38       ` Simon Glass
2022-08-24  8:45         ` Antoine Mazeas
2022-08-19  8:56 ` [RESEND PATCH 2/2] rpi: Copy eth PHY address from fw DT to loaded DT Antoine Mazeas
2022-08-19 14:15 ` [RESEND PATCH 0/2] " Peter Robinson
2022-08-19 14:47   ` Antoine Mazeas
2023-01-09  8:18 ` [RESEND,0/2] " Jian-Hong Pan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).