diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2019-03-20 15:32:40 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-23 17:57:24 -0400 |
commit | 1d5b5d2f8f9591149bedf9887c34e7eb5398ca53 (patch) | |
tree | 6aff8a52bdd53cb391f28d2f1fa37b688407b885 /drivers/net/Kconfig | |
parent | f5e6c168c174cff74201ef58d99b27229ca0e4c2 (diff) | |
download | u-boot-1d5b5d2f8f9591149bedf9887c34e7eb5398ca53.tar.gz |
net: add higmacv300 Ethernet driver for HiSilicon platform
It adds the driver for HIGMACV300 Ethernet controller found on HiSilicon
SoCs like Hi3798CV200. It's based on a downstream U-Boot driver, but
quite a lot of code gets rewritten and cleaned up to adopt driver model
and PHY API.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r-- | drivers/net/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index d0e5426a99..6e436b56ab 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -528,4 +528,13 @@ config MEDIATEK_ETH This Driver support MediaTek Ethernet GMAC Say Y to enable support for the MediaTek Ethernet GMAC. +config HIGMACV300_ETH + bool "HiSilicon Gigabit Ethernet Controller" + depends on DM_ETH + select DM_RESET + select PHYLIB + help + This driver supports HIGMACV300 Ethernet controller found on + HiSilicon SoCs. + endif # NETDEVICES |