diff mbox series

net: ravb: Add R-Car Gen4 support

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

Checks

Context Check Description
netdev/tree_selection success Guessed tree name to be net-next
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix warning Target tree name not specified in the subject
netdev/cover_letter success Single patches do not need cover letters
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/cc_maintainers warning 2 maintainers not CCed: prabhakar.mahadev-lad.rj@bp.renesas.com biju.das.jz@bp.renesas.com
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/checkpatch warning WARNING: DT compatible string "renesas,etheravb-rcar-gen4" appears un-documented -- check ./Documentation/devicetree/bindings/ WARNING: line length of 83 exceeds 80 columns
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

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 },
 	{ }