diff options
author | Amit Singh Tomar <amittomer25@gmail.com> | 2020-05-09 19:55:12 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-07 17:11:58 -0400 |
commit | 3c5c4ee35f58bd9d3ca8fb2b4d31da4e5abe17f1 (patch) | |
tree | 84ceb01da49040fb515e5fbd7e92649314a70984 /drivers/net/Makefile | |
parent | fa6539a3dcbf269121ca64084cff4c146fcdaf19 (diff) | |
download | u-boot-3c5c4ee35f58bd9d3ca8fb2b4d31da4e5abe17f1.tar.gz u-boot-3c5c4ee35f58bd9d3ca8fb2b4d31da4e5abe17f1.tar.xz u-boot-3c5c4ee35f58bd9d3ca8fb2b4d31da4e5abe17f1.zip |
net: designware: s700: Add glue code for S700 mac
This patchs adds glue logic to enable designware mac present on
Action Semi based S700 SoC, Configures SoC specific bits.
Undocumented bit that programs the PHY interface select register
comes from vendor source.
It has been tested on Cubieboard7-lite based on S700 SoC.
Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
Diffstat (limited to 'drivers/net/Makefile')
-rw-r--r-- | drivers/net/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 383ed1c64f..1ecdc40b8f 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -18,6 +18,7 @@ obj-$(CONFIG_CS8900) += cs8900.o obj-$(CONFIG_TULIP) += dc2114x.o obj-$(CONFIG_ETH_DESIGNWARE) += designware.o obj-$(CONFIG_ETH_DESIGNWARE_SOCFPGA) += dwmac_socfpga.o +obj-$(CONFIG_ETH_DESIGNWARE_S700) += dwmac_s700.o obj-$(CONFIG_DRIVER_DM9000) += dm9000x.o obj-$(CONFIG_DNET) += dnet.o obj-$(CONFIG_DM_ETH_PHY) += eth-phy-uclass.o |