* [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH
@ 2026-01-31 16:12 Biju
2026-01-31 16:12 ` [PATCH net-next v3 1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC Biju
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Biju @ 2026-01-31 16:12 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Richard Cochran, Geert Uytterhoeven, Maxime Coquelin,
Alexandre Torgue, Lad Prabhakar, Magnus Damm
Cc: Biju Das, Giuseppe Cavallaro, Jose Abreu, netdev,
linux-renesas-soc, devicetree, linux-stm32, linux-arm-kernel,
linux-kernel, Biju Das
From: Biju Das <biju.das.jz@bp.renesas.com>
The Renesas RZ/G3L GBETH IP uses Synopsys DesignWare MAC version 5.30
compared to other Renesas SoC such as RZ/V2H that use MAC version 5.20.
The RZ/G3L GBETH requires an extra clock compared to RZ/G3E and has pps
interrupts. Document the Renesas RZ/G3L GBETH IP in bindings and add
support for the RZ/G3L GBETH in dwmac-renesas-gbeth glue driver.
v2->v3:
* Fixed the typo ppt->ptp as pointed by netdev-ai[1] in bindings
* Keep the tag as the change is trivial.
* Collected tag for the driver
v1->v2:
* Separated ethernet patches from series [2]
* Collected tag for binding patch
[1]https://netdev-ai.bots.linux.dev/ai-review.html?id=495cbea4-c154-4027-9ecf-0167906492fe
[2] https://lore.kernel.org/all/20260128125850.425264-1-biju.das.jz@bp.renesas.com/
Biju Das (2):
dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC
net: stmmac: dwmac-renesas-gbeth: Add support for RZ/G3L SoC
.../bindings/net/renesas,rzv2h-gbeth.yaml | 77 ++++++++++++++++---
.../devicetree/bindings/net/snps,dwmac.yaml | 3 +
.../stmicro/stmmac/dwmac-renesas-gbeth.c | 1 +
3 files changed, 70 insertions(+), 11 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH net-next v3 1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC
2026-01-31 16:12 [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH Biju
@ 2026-01-31 16:12 ` Biju
2026-02-01 18:32 ` Lad, Prabhakar
2026-01-31 16:12 ` [PATCH net-next v3 2/2] net: stmmac: dwmac-renesas-gbeth: Add support for " Biju
2026-02-03 3:20 ` [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH patchwork-bot+netdevbpf
2 siblings, 1 reply; 6+ messages in thread
From: Biju @ 2026-01-31 16:12 UTC (permalink / raw)
To: Lad Prabhakar, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Richard Cochran, Geert Uytterhoeven, Magnus Damm
Cc: Biju Das, Alexandre Torgue, Giuseppe Cavallaro, Jose Abreu,
netdev, linux-renesas-soc, devicetree, linux-kernel, Biju Das,
Conor Dooley
From: Biju Das <biju.das.jz@bp.renesas.com>
Add device tree binding support for the Gigabit Ethernet (GBETH) IP on
Renesas RZ/G3L SoC. This SoC uses different Synopsys DesignWare MAC
version 5.30 compared to RZ/G3E.
RZ/G3L requires an extra clock compared to RZ/G3E and has pps interrupts.
Add a new compatible string "renesas,r9a08g046-gbeth" for RZ/G3L SoC and
update the schema to handle hardware differences between SoC variants.
Extend the base snps,dwmac.yaml schema to accommodate the PPS interrupts.
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
v2->v3:
* Fixed the typo ppt->ptp as pointed by netdev-ai[1].
* Keep the tag as the change is trivial
[1]https://netdev-ai.bots.linux.dev/ai-review.html?id=495cbea4-c154-4027-9ecf-0167906492fe
v1->v2:
* Collected tag
---
.../bindings/net/renesas,rzv2h-gbeth.yaml | 77 ++++++++++++++++---
.../devicetree/bindings/net/snps,dwmac.yaml | 3 +
2 files changed, 69 insertions(+), 11 deletions(-)
diff --git a/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml b/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml
index bd53ab300f50..fb60f745a1ff 100644
--- a/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml
+++ b/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml
@@ -26,6 +26,9 @@ select:
properties:
compatible:
oneOf:
+ - items:
+ - const: renesas,r9a08g046-gbeth # RZ/G3L
+ - const: snps,dwmac-5.30a
- items:
- enum:
- renesas,r9a09g047-gbeth # RZ/G3E
@@ -47,13 +50,17 @@ properties:
clocks:
oneOf:
- items:
- - description: CSR clock
- - description: AXI system clock
+ - description: CSR/Register access clock
+ - description: AXI system/Main clock
- description: PTP clock
- description: TX clock
- description: RX clock
- description: TX clock phase-shifted by 180 degrees
- description: RX clock phase-shifted by 180 degrees
+ - description: RMII clock
+
+ minItems: 7
+
- items:
- description: CSR clock
- description: AXI system clock
@@ -69,6 +76,10 @@ properties:
- const: rx
- const: tx-180
- const: rx-180
+ - const: rmii
+
+ minItems: 7
+
- items:
- const: stmmaceth
- const: pclk
@@ -88,6 +99,22 @@ properties:
- const: tx-queue-1
- const: tx-queue-2
- const: tx-queue-3
+ - items:
+ - const: macirq
+ - const: eth_wake_irq
+ - const: eth_lpi
+ - const: rx-queue-0
+ - const: rx-queue-1
+ - const: rx-queue-2
+ - const: rx-queue-3
+ - const: tx-queue-0
+ - const: tx-queue-1
+ - const: tx-queue-2
+ - const: tx-queue-3
+ - const: ptp-pps-0
+ - const: ptp-pps-1
+ - const: ptp-pps-2
+ - const: ptp-pps-3
- items:
- const: macirq
- const: eth_wake_irq
@@ -135,6 +162,27 @@ required:
allOf:
- $ref: snps,dwmac.yaml#
+ - if:
+ properties:
+ compatible:
+ contains:
+ const: renesas,r9a08g046-gbeth
+ then:
+ properties:
+ clocks:
+ minItems: 8
+
+ clock-names:
+ minItems: 8
+
+ interrupts:
+ minItems: 15
+ maxItems: 15
+
+ interrupt-names:
+ minItems: 15
+ maxItems: 15
+
- if:
properties:
compatible:
@@ -163,12 +211,26 @@ allOf:
required:
- reset-names
else:
+ properties:
+ resets:
+ maxItems: 1
+
+ pcs-handle: false
+
+ reset-names: false
+
+ - if:
+ properties:
+ compatible:
+ contains:
+ const: renesas,rzv2h-gbeth
+ then:
properties:
clocks:
- minItems: 7
+ maxItems: 7
clock-names:
- minItems: 7
+ maxItems: 7
interrupts:
minItems: 11
@@ -178,13 +240,6 @@ allOf:
minItems: 11
maxItems: 11
- resets:
- maxItems: 1
-
- pcs-handle: false
-
- reset-names: false
-
unevaluatedProperties: false
examples:
diff --git a/Documentation/devicetree/bindings/net/snps,dwmac.yaml b/Documentation/devicetree/bindings/net/snps,dwmac.yaml
index dd3c72e8363e..38bc34dc4f09 100644
--- a/Documentation/devicetree/bindings/net/snps,dwmac.yaml
+++ b/Documentation/devicetree/bindings/net/snps,dwmac.yaml
@@ -75,6 +75,7 @@ properties:
- qcom,sc8280xp-ethqos
- qcom,sm8150-ethqos
- renesas,r9a06g032-gmac
+ - renesas,r9a08g046-gbeth
- renesas,r9a09g077-gbeth
- renesas,rzn1-gmac
- renesas,rzv2h-gbeth
@@ -142,6 +143,8 @@ properties:
pattern: '^rx-queue-[0-7]$'
- description: Per channel transmit completion interrupt
pattern: '^tx-queue-[0-7]$'
+ - description: PPS interrupt
+ pattern: '^ptp-pps-[0-3]$'
clocks:
minItems: 1
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH net-next v3 2/2] net: stmmac: dwmac-renesas-gbeth: Add support for RZ/G3L SoC
2026-01-31 16:12 [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH Biju
2026-01-31 16:12 ` [PATCH net-next v3 1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC Biju
@ 2026-01-31 16:12 ` Biju
2026-02-01 18:33 ` Lad, Prabhakar
2026-02-03 3:20 ` [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH patchwork-bot+netdevbpf
2 siblings, 1 reply; 6+ messages in thread
From: Biju @ 2026-01-31 16:12 UTC (permalink / raw)
To: Lad Prabhakar, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Geert Uytterhoeven, Magnus Damm
Cc: Biju Das, netdev, linux-renesas-soc, linux-stm32,
linux-arm-kernel, linux-kernel, Biju Das, Russell King
From: Biju Das <biju.das.jz@bp.renesas.com>
Compared to other Renesas GBETH stmmac glue drivers, RZ/G3L GBETH IP use
the version Synopsys DesignWare MAC (version 5.30). It has an extra clock
compared to RZ/V2H and has ptp_pps_o interrupts. Add support for RZ/G3L
GBETH by reusing device data of RZ/V2H and can be extended to add other
functionalities later.
Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
v2->v3:
* Collected tag.
v1->v2:
* No change.
---
drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c
index be7f5eb2cdcf..19f34e18bfef 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c
@@ -214,6 +214,7 @@ static const struct renesas_gbeth_of_data renesas_gmac_of_data = {
};
static const struct of_device_id renesas_gbeth_match[] = {
+ { .compatible = "renesas,r9a08g046-gbeth", .data = &renesas_gbeth_of_data },
{ .compatible = "renesas,r9a09g077-gbeth", .data = &renesas_gmac_of_data },
{ .compatible = "renesas,rzv2h-gbeth", .data = &renesas_gbeth_of_data },
{ /* Sentinel */ }
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH net-next v3 1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC
2026-01-31 16:12 ` [PATCH net-next v3 1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC Biju
@ 2026-02-01 18:32 ` Lad, Prabhakar
0 siblings, 0 replies; 6+ messages in thread
From: Lad, Prabhakar @ 2026-02-01 18:32 UTC (permalink / raw)
To: Biju
Cc: Lad Prabhakar, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Richard Cochran, Geert Uytterhoeven, Magnus Damm,
Biju Das, Alexandre Torgue, Giuseppe Cavallaro, Jose Abreu,
netdev, linux-renesas-soc, devicetree, linux-kernel, Conor Dooley
On Sat, Jan 31, 2026 at 4:13 PM Biju <biju.das.au@gmail.com> wrote:
>
> From: Biju Das <biju.das.jz@bp.renesas.com>
>
> Add device tree binding support for the Gigabit Ethernet (GBETH) IP on
> Renesas RZ/G3L SoC. This SoC uses different Synopsys DesignWare MAC
> version 5.30 compared to RZ/G3E.
>
> RZ/G3L requires an extra clock compared to RZ/G3E and has pps interrupts.
>
> Add a new compatible string "renesas,r9a08g046-gbeth" for RZ/G3L SoC and
> update the schema to handle hardware differences between SoC variants.
>
> Extend the base snps,dwmac.yaml schema to accommodate the PPS interrupts.
>
> Acked-by: Conor Dooley <conor.dooley@microchip.com>
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
> ---
> v2->v3:
> * Fixed the typo ppt->ptp as pointed by netdev-ai[1].
> * Keep the tag as the change is trivial
> [1]https://netdev-ai.bots.linux.dev/ai-review.html?id=495cbea4-c154-4027-9ecf-0167906492fe
> v1->v2:
> * Collected tag
> ---
> .../bindings/net/renesas,rzv2h-gbeth.yaml | 77 ++++++++++++++++---
> .../devicetree/bindings/net/snps,dwmac.yaml | 3 +
> 2 files changed, 69 insertions(+), 11 deletions(-)
>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Cheers,
Prabhakar
> diff --git a/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml b/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml
> index bd53ab300f50..fb60f745a1ff 100644
> --- a/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml
> +++ b/Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml
> @@ -26,6 +26,9 @@ select:
> properties:
> compatible:
> oneOf:
> + - items:
> + - const: renesas,r9a08g046-gbeth # RZ/G3L
> + - const: snps,dwmac-5.30a
> - items:
> - enum:
> - renesas,r9a09g047-gbeth # RZ/G3E
> @@ -47,13 +50,17 @@ properties:
> clocks:
> oneOf:
> - items:
> - - description: CSR clock
> - - description: AXI system clock
> + - description: CSR/Register access clock
> + - description: AXI system/Main clock
> - description: PTP clock
> - description: TX clock
> - description: RX clock
> - description: TX clock phase-shifted by 180 degrees
> - description: RX clock phase-shifted by 180 degrees
> + - description: RMII clock
> +
> + minItems: 7
> +
> - items:
> - description: CSR clock
> - description: AXI system clock
> @@ -69,6 +76,10 @@ properties:
> - const: rx
> - const: tx-180
> - const: rx-180
> + - const: rmii
> +
> + minItems: 7
> +
> - items:
> - const: stmmaceth
> - const: pclk
> @@ -88,6 +99,22 @@ properties:
> - const: tx-queue-1
> - const: tx-queue-2
> - const: tx-queue-3
> + - items:
> + - const: macirq
> + - const: eth_wake_irq
> + - const: eth_lpi
> + - const: rx-queue-0
> + - const: rx-queue-1
> + - const: rx-queue-2
> + - const: rx-queue-3
> + - const: tx-queue-0
> + - const: tx-queue-1
> + - const: tx-queue-2
> + - const: tx-queue-3
> + - const: ptp-pps-0
> + - const: ptp-pps-1
> + - const: ptp-pps-2
> + - const: ptp-pps-3
> - items:
> - const: macirq
> - const: eth_wake_irq
> @@ -135,6 +162,27 @@ required:
> allOf:
> - $ref: snps,dwmac.yaml#
>
> + - if:
> + properties:
> + compatible:
> + contains:
> + const: renesas,r9a08g046-gbeth
> + then:
> + properties:
> + clocks:
> + minItems: 8
> +
> + clock-names:
> + minItems: 8
> +
> + interrupts:
> + minItems: 15
> + maxItems: 15
> +
> + interrupt-names:
> + minItems: 15
> + maxItems: 15
> +
> - if:
> properties:
> compatible:
> @@ -163,12 +211,26 @@ allOf:
> required:
> - reset-names
> else:
> + properties:
> + resets:
> + maxItems: 1
> +
> + pcs-handle: false
> +
> + reset-names: false
> +
> + - if:
> + properties:
> + compatible:
> + contains:
> + const: renesas,rzv2h-gbeth
> + then:
> properties:
> clocks:
> - minItems: 7
> + maxItems: 7
>
> clock-names:
> - minItems: 7
> + maxItems: 7
>
> interrupts:
> minItems: 11
> @@ -178,13 +240,6 @@ allOf:
> minItems: 11
> maxItems: 11
>
> - resets:
> - maxItems: 1
> -
> - pcs-handle: false
> -
> - reset-names: false
> -
> unevaluatedProperties: false
>
> examples:
> diff --git a/Documentation/devicetree/bindings/net/snps,dwmac.yaml b/Documentation/devicetree/bindings/net/snps,dwmac.yaml
> index dd3c72e8363e..38bc34dc4f09 100644
> --- a/Documentation/devicetree/bindings/net/snps,dwmac.yaml
> +++ b/Documentation/devicetree/bindings/net/snps,dwmac.yaml
> @@ -75,6 +75,7 @@ properties:
> - qcom,sc8280xp-ethqos
> - qcom,sm8150-ethqos
> - renesas,r9a06g032-gmac
> + - renesas,r9a08g046-gbeth
> - renesas,r9a09g077-gbeth
> - renesas,rzn1-gmac
> - renesas,rzv2h-gbeth
> @@ -142,6 +143,8 @@ properties:
> pattern: '^rx-queue-[0-7]$'
> - description: Per channel transmit completion interrupt
> pattern: '^tx-queue-[0-7]$'
> + - description: PPS interrupt
> + pattern: '^ptp-pps-[0-3]$'
>
> clocks:
> minItems: 1
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net-next v3 2/2] net: stmmac: dwmac-renesas-gbeth: Add support for RZ/G3L SoC
2026-01-31 16:12 ` [PATCH net-next v3 2/2] net: stmmac: dwmac-renesas-gbeth: Add support for " Biju
@ 2026-02-01 18:33 ` Lad, Prabhakar
0 siblings, 0 replies; 6+ messages in thread
From: Lad, Prabhakar @ 2026-02-01 18:33 UTC (permalink / raw)
To: Biju
Cc: Lad Prabhakar, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Geert Uytterhoeven, Magnus Damm, Biju Das,
netdev, linux-renesas-soc, linux-stm32, linux-arm-kernel,
linux-kernel, Russell King
On Sat, Jan 31, 2026 at 4:14 PM Biju <biju.das.au@gmail.com> wrote:
>
> From: Biju Das <biju.das.jz@bp.renesas.com>
>
> Compared to other Renesas GBETH stmmac glue drivers, RZ/G3L GBETH IP use
> the version Synopsys DesignWare MAC (version 5.30). It has an extra clock
> compared to RZ/V2H and has ptp_pps_o interrupts. Add support for RZ/G3L
> GBETH by reusing device data of RZ/V2H and can be extended to add other
> functionalities later.
>
> Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
> ---
> v2->v3:
> * Collected tag.
> v1->v2:
> * No change.
> ---
> drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c | 1 +
> 1 file changed, 1 insertion(+)
>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Cheers,
Prabhakar
> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c
> index be7f5eb2cdcf..19f34e18bfef 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c
> @@ -214,6 +214,7 @@ static const struct renesas_gbeth_of_data renesas_gmac_of_data = {
> };
>
> static const struct of_device_id renesas_gbeth_match[] = {
> + { .compatible = "renesas,r9a08g046-gbeth", .data = &renesas_gbeth_of_data },
> { .compatible = "renesas,r9a09g077-gbeth", .data = &renesas_gmac_of_data },
> { .compatible = "renesas,rzv2h-gbeth", .data = &renesas_gbeth_of_data },
> { /* Sentinel */ }
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH
2026-01-31 16:12 [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH Biju
2026-01-31 16:12 ` [PATCH net-next v3 1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC Biju
2026-01-31 16:12 ` [PATCH net-next v3 2/2] net: stmmac: dwmac-renesas-gbeth: Add support for " Biju
@ 2026-02-03 3:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-02-03 3:20 UTC (permalink / raw)
To: Biju
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, richardcochran, geert+renesas, mcoquelin.stm32,
alexandre.torgue, prabhakar.mahadev-lad.rj, magnus.damm,
biju.das.jz, peppe.cavallaro, joabreu, netdev, linux-renesas-soc,
devicetree, linux-stm32, linux-arm-kernel, linux-kernel
Hello:
This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Sat, 31 Jan 2026 16:12:41 +0000 you wrote:
> From: Biju Das <biju.das.jz@bp.renesas.com>
>
> The Renesas RZ/G3L GBETH IP uses Synopsys DesignWare MAC version 5.30
> compared to other Renesas SoC such as RZ/V2H that use MAC version 5.20.
>
> The RZ/G3L GBETH requires an extra clock compared to RZ/G3E and has pps
> interrupts. Document the Renesas RZ/G3L GBETH IP in bindings and add
> support for the RZ/G3L GBETH in dwmac-renesas-gbeth glue driver.
>
> [...]
Here is the summary with links:
- [net-next,v3,1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC
https://git.kernel.org/netdev/net-next/c/3ac2aa31b489
- [net-next,v3,2/2] net: stmmac: dwmac-renesas-gbeth: Add support for RZ/G3L SoC
https://git.kernel.org/netdev/net-next/c/1ba377008420
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-02-03 3:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-31 16:12 [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH Biju
2026-01-31 16:12 ` [PATCH net-next v3 1/2] dt-bindings: net: renesas,rzv2h-gbeth: Document Renesas RZ/G3L SoC Biju
2026-02-01 18:32 ` Lad, Prabhakar
2026-01-31 16:12 ` [PATCH net-next v3 2/2] net: stmmac: dwmac-renesas-gbeth: Add support for " Biju
2026-02-01 18:33 ` Lad, Prabhakar
2026-02-03 3:20 ` [PATCH net-next v3 0/2] Add support for Renesas RZ/G3L GBETH patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox