diff options
author | Tom Rini <trini@konsulko.com> | 2025-03-12 10:25:13 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-03-12 10:25:13 -0600 |
commit | 81ef65099ed49c75281c3a8d3b6cb02abd2e009e (patch) | |
tree | b0bc3cac5ee24174301ed6b0ae7128b57f3a67db /drivers/net/dwc_eth_qos.c | |
parent | 4c4266dab7e2ef0fc5336561bf77db4345274da0 (diff) | |
parent | 036118ebd81e6b2c593d5ea6dc0056b34931c870 (diff) |
Merge patch series "drivers: Driver support for ADI SC5xx SoCs"
Greg Malysa <malysagreg@gmail.com> says:
This series adds all of the supported peripheral drivers for the sc5xx
series of SoCs from Analog Devices and other drivers that are used by
the evaluation kits, such as a GPIO expander used by the EZLITE carrier
boards. This series passes gitlab CI tests.
Link: https://lore.kernel.org/r/20250226173150.13198-1-malysagreg@gmail.com
Diffstat (limited to 'drivers/net/dwc_eth_qos.c')
-rw-r--r-- | drivers/net/dwc_eth_qos.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/dwc_eth_qos.c b/drivers/net/dwc_eth_qos.c index 2279481d935..b4ec3614696 100644 --- a/drivers/net/dwc_eth_qos.c +++ b/drivers/net/dwc_eth_qos.c @@ -1632,6 +1632,12 @@ static const struct udevice_id eqos_ids[] = { .data = (ulong)&eqos_jh7110_config }, #endif +#if IS_ENABLED(CONFIG_DWC_ETH_QOS_ADI) + { + .compatible = "adi,sc59x-dwmac-eqos", + .data = (ulong)&eqos_adi_config + }, +#endif { } }; |