net: ravb: Add R-Car Gen4 support

Add support for R-Car Gen4 SoCs and a matching DT compatible.

Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Signed-off-by: Hai Pham <hai.pham.ud@renesas.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
[Marek: Drop SoC specific compatible, use RCAR_64 Kconfig symbol, update commit message]
This commit is contained in:
Hai Pham 2023-04-07 17:12:17 +02:00 committed by Marek Vasut
parent 632a7b1186
commit c2fbaaf3dc
2 changed files with 2 additions and 1 deletions

View file

@ -754,7 +754,7 @@ config GMAC_ROCKCHIP
config RENESAS_RAVB config RENESAS_RAVB
bool "Renesas Ethernet AVB MAC" bool "Renesas Ethernet AVB MAC"
depends on RCAR_GEN3 depends on RCAR_64
select PHYLIB select PHYLIB
help help
This driver implements support for the Ethernet AVB block in This driver implements support for the Ethernet AVB block in

View file

@ -692,6 +692,7 @@ int ravb_of_to_plat(struct udevice *dev)
static const struct udevice_id ravb_ids[] = { static const struct udevice_id ravb_ids[] = {
{ .compatible = "renesas,etheravb-rcar-gen3" }, { .compatible = "renesas,etheravb-rcar-gen3" },
{ .compatible = "renesas,etheravb-rcar-gen4" },
{ } { }
}; };