diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2010-04-20 12:49:52 +0800 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2010-05-03 14:52:49 -0700 |
commit | c960b13ed22d9ea570957379f9f7f2f37d87ef08 (patch) | |
tree | 4c2fe4db819e3a01822eeae198f6ac1b0e6a1042 /include | |
parent | f6569884b45e480e2c575d85ce86a2636a41c66b (diff) | |
download | u-boot-c960b13ed22d9ea570957379f9f7f2f37d87ef08.tar.gz u-boot-c960b13ed22d9ea570957379f9f7f2f37d87ef08.tar.xz u-boot-c960b13ed22d9ea570957379f9f7f2f37d87ef08.zip |
net: add altera triple speeds ethernet mac driver
This driver supports the Altera triple speeds 10/100/1000 ethernet
mac.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/netdev.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/netdev.h b/include/netdev.h index 605edf1043..882642a2c4 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -41,6 +41,8 @@ int board_eth_init(bd_t *bis); int cpu_eth_init(bd_t *bis); /* Driver initialization prototypes */ +int altera_tse_initialize(u8 dev_num, int mac_base, + int sgdma_rx_base, int sgdma_tx_base); int au1x00_enet_initialize(bd_t*); int at91emac_register(bd_t *bis, unsigned long iobase); int bfin_EMAC_initialize(bd_t *bis); |