Re: [RESEND PATCH v2 5/5] net: dwc_eth_qos: Add glue driver for Intel MAC

2024-06-29 Thread Marek Vasut
On 6/24/24 10:34 AM, Philip Oberfichtner wrote: +++ b/drivers/net/dwc_eth_qos_intel.c @@ -0,0 +1,446 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (c) 2023 DENX Software Engineering GmbH + * Philip Oberfichtner + * + * Based on linux v6.1.38, especially drivers/net/ethernet/stmicro/

Re: [RESEND PATCH v2 3/5] net: dwc_eth_qos: Adapt probe() for PCI devices

2024-06-29 Thread Marek Vasut
On 6/24/24 10:34 AM, Philip Oberfichtner wrote: PCI devices do not necessarily use a device tree. In that case, the driver currently fails to find eqos->config and eqos->regs. This commit factors out the respective functionality. Device tree usage remains default, but board specific implementati

Re: [RESEND PATCH v2 2/5] net: dwc_eth_qos: Fix header to be self-contained

2024-06-29 Thread Marek Vasut
On 6/24/24 10:34 AM, Philip Oberfichtner wrote: Before this commit, usage of this header relied on a specific include order. Fix it by including all dependencies. Signed-off-by: Philip Oberfichtner Reviewed-by: Marek Vasut

Re: [PATCH v2] ARM: imx: verdin-imx8mm: Set CAN oscillator frequency based on model

2024-06-29 Thread Marek Vasut
On 5/23/24 5:03 PM, Francesco Dolcini wrote: On Wed, May 22, 2024 at 03:23:51PM +0200, Marek Vasut wrote: On 5/22/24 8:39 AM, Francesco Dolcini wrote: diff --git a/board/toradex/verdin-imx8mm/verdin-imx8mm.c b/board/toradex/verdin-imx8mm/verdin-imx8mm.c index 55c02653da6..ef632d95f0a 100644 --

Re: [PATCH 1/2] usb: dwc2: Extract USB DWC2 register definitions

2024-06-29 Thread Marek Vasut
On 6/27/24 1:33 PM, Kongyang Liu wrote: Marek Vasut 于2024年6月23日周日 07:49写道: On 5/22/24 4:22 PM, Kongyang Liu wrote: Hi, sorry for the late reply. diff --git a/drivers/usb/common/dwc2_core.c b/drivers/usb/common/dwc2_core.c new file mode 100644 index 00..2fa11fd59d --- /dev/null +++

Re: [PATCH] spl: fit: List DTOs applied by SPL in U-Boot control DT

2024-06-29 Thread Marek Vasut
On 6/28/24 10:27 AM, Quentin Schulz wrote: Hi, Shouldn't this rather be in /config node? This is what I had there originally, but then I realized that some DTs might not have the /config node in them (or am I mistaken?), so I moved the new properties into the root node, which surely exists.

Re: [PATCH v2] spl: fit: List DTOs applied by SPL in U-Boot control DT

2024-06-29 Thread Marek Vasut
On 6/28/24 9:32 AM, Simon Glass wrote: Hi Marek, Hi, --- common/spl/spl_fit.c| 29 +++-- doc/device-tree-bindings/config.txt | 11 +++ 2 files changed, 38 insertions(+), 2 deletions(-) Once this is figured out, can you extend test/image/sp

[PATCH v2 1/1] efi_loader: print device-tree in dtbdump.efi

2024-06-29 Thread Heinrich Schuchardt
The dtbdump.efi binary can be used for testing the EFI_DT_FIXUP_PROTOCOL. It provides a command to load a file and have it fixed up and a command to save the resulting file. Add a command 'dump' for displaying the device-tree. Signed-off-by: Heinrich Schuchardt --- v2: print leading '/dt