diff mbox series

net: ravb: Add R-Car Gen4 support

Message ID 2ee968890feba777e627d781128b074b2c43cddb.1662718171.git.geert+renesas@glider.be (mailing list archive)
State Mainlined
Commit 949f252a8594a860007e7035a0cb1c19a4e218b0
Delegated to: Geert Uytterhoeven
Headers show
Series net: ravb: Add R-Car Gen4 support | expand

Commit Message

Geert Uytterhoeven Sept. 9, 2022, 10:10 a.m. UTC
Add support for the Renesas Ethernet AVB (EtherAVB-IF) blocks on R-Car
Gen4 SoCs (e.g. R-Car V4H) by matching on a family-specific compatible
value.

These are treated the same as EtherAVB on R-Car Gen3.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
Corresponding DT binding update in "[PATCH 0/2] dt-bindings: net:
renesas,etheravb: R-Car Gen4 updates"
https://lore.kernel.org/r/cover.1662714607.git.geert+renesas@glider.be
---
 drivers/net/ethernet/renesas/ravb_main.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Sergey Shtylyov Sept. 9, 2022, 8:39 p.m. UTC | #1
On 9/9/22 1:10 PM, Geert Uytterhoeven wrote:

> Add support for the Renesas Ethernet AVB (EtherAVB-IF) blocks on R-Car
> Gen4 SoCs (e.g. R-Car V4H) by matching on a family-specific compatible
> value.
> 
> These are treated the same as EtherAVB on R-Car Gen3.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>

[...]

MBR, Sergey
patchwork-bot+netdevbpf@kernel.org Sept. 20, 2022, 1:10 a.m. UTC | #2
Hello:

This patch was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Fri,  9 Sep 2022 12:10:11 +0200 you wrote:
> Add support for the Renesas Ethernet AVB (EtherAVB-IF) blocks on R-Car
> Gen4 SoCs (e.g. R-Car V4H) by matching on a family-specific compatible
> value.
> 
> These are treated the same as EtherAVB on R-Car Gen3.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> 
> [...]

Here is the summary with links:
  - net: ravb: Add R-Car Gen4 support
    https://git.kernel.org/netdev/net-next/c/949f252a8594

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
index b357ac4c56c599ad..d013cc1c8a0ad007 100644
--- a/drivers/net/ethernet/renesas/ravb_main.c
+++ b/drivers/net/ethernet/renesas/ravb_main.c
@@ -2512,6 +2512,7 @@  static const struct of_device_id ravb_match_table[] = {
 	{ .compatible = "renesas,etheravb-rcar-gen2", .data = &ravb_gen2_hw_info },
 	{ .compatible = "renesas,etheravb-r8a7795", .data = &ravb_gen3_hw_info },
 	{ .compatible = "renesas,etheravb-rcar-gen3", .data = &ravb_gen3_hw_info },
+	{ .compatible = "renesas,etheravb-rcar-gen4", .data = &ravb_gen3_hw_info },
 	{ .compatible = "renesas,etheravb-rzv2m", .data = &ravb_rzv2m_hw_info },
 	{ .compatible = "renesas,rzg2l-gbeth", .data = &gbeth_hw_info },
 	{ }