Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sh_eth: add R8A7743/5 support

Add support for the first two members of the Renesas RZ/G family, RZ/G1M/E
(also known as R8A7743/5). The Ether core is the same as in the R-Car gen2
SoCs, so will share the code/data with them...

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Sergei Shtylyov and committed by
David S. Miller
c099ff3c 9c5982fe

+5 -1
+2
Documentation/devicetree/bindings/net/sh_eth.txt
··· 5 5 6 6 Required properties: 7 7 - compatible: "renesas,gether-r8a7740" if the device is a part of R8A7740 SoC. 8 + "renesas,ether-r8a7743" if the device is a part of R8A7743 SoC. 9 + "renesas,ether-r8a7745" if the device is a part of R8A7745 SoC. 8 10 "renesas,ether-r8a7778" if the device is a part of R8A7778 SoC. 9 11 "renesas,ether-r8a7779" if the device is a part of R8A7779 SoC. 10 12 "renesas,ether-r8a7790" if the device is a part of R8A7790 SoC.
+1 -1
drivers/net/ethernet/renesas/Kconfig
··· 27 27 Renesas SuperH Ethernet device driver. 28 28 This driver supporting CPUs are: 29 29 - SH7619, SH7710, SH7712, SH7724, SH7734, SH7763, SH7757, 30 - R8A7740, R8A777x and R8A779x. 30 + R8A7740, R8A774x, R8A777x and R8A779x. 31 31 32 32 config RAVB 33 33 tristate "Renesas Ethernet AVB support"
+2
drivers/net/ethernet/renesas/sh_eth.c
··· 2959 2959 2960 2960 static const struct of_device_id sh_eth_match_table[] = { 2961 2961 { .compatible = "renesas,gether-r8a7740", .data = &r8a7740_data }, 2962 + { .compatible = "renesas,ether-r8a7743", .data = &r8a779x_data }, 2963 + { .compatible = "renesas,ether-r8a7745", .data = &r8a779x_data }, 2962 2964 { .compatible = "renesas,ether-r8a7778", .data = &r8a777x_data }, 2963 2965 { .compatible = "renesas,ether-r8a7779", .data = &r8a777x_data }, 2964 2966 { .compatible = "renesas,ether-r8a7790", .data = &r8a779x_data },