diff options
author | Stefan Roese | 2014-10-22 12:13:14 +0200 |
---|---|---|
committer | Tom Rini | 2014-10-23 09:59:21 -0400 |
commit | 19fc2eae6defbf1fba494a523749dd69a80cc58b (patch) | |
tree | 7f4cb61d1cb59a38d54c75ef3eb354564730f088 /include/netdev.h | |
parent | 96c5f0816a95c80e993140e34e1b06c016e90f36 (diff) |
net: mvneta.c: Add support for the ethernet controller of the Marvell Armada XP SoC
This patch adds support for the NETA ethernet controller which is integrated
in the Marvell Armada XP SoC's. This port is based on the Linux driver which
has been stripped of the in U-Boot unused portions.
Tested on the Marvell MV78460 eval board db-78460-bp.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
Tested-by: Luka Perkov <luka@openwrt.org>
Diffstat (limited to 'include/netdev.h')
-rw-r--r-- | include/netdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netdev.h b/include/netdev.h index a887bfb5f7a..34651ab3779 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -65,6 +65,7 @@ int mpc512x_fec_initialize(bd_t *bis); int mpc5xxx_fec_initialize(bd_t *bis); int mpc82xx_scc_enet_initialize(bd_t *bis); int mvgbe_initialize(bd_t *bis); +int mvneta_initialize(bd_t *bis, int base_addr, int devnum, int phy_addr); int natsemi_initialize(bd_t *bis); int ne2k_register(void); int npe_initialize(bd_t *bis); |