diff options
author | Kuo-Jung Su | 2013-05-07 14:33:31 +0800 |
---|---|---|
committer | Joe Hershberger | 2013-06-24 19:11:16 -0500 |
commit | c4775476d211a4be027e45c14ef961de7312d5f6 (patch) | |
tree | bee7a7f5ac8f35acfd7e0f34091d4b04ac9a5e46 /include/netdev.h | |
parent | 42a7cb50a96e95cdca26607727c6767876414ced (diff) |
net: add Faraday FTMAC110 10/100Mbps ethernet support
Faraday FTMAC110 10/100Mbps supports half-word data transfer for Linux.
However it has a weird DMA alignment issue:
(1) Tx DMA Buffer Address:
1 bytes aligned: Invalid
2 bytes aligned: O.K
4 bytes aligned: O.K
(2) Rx DMA Buffer Address:
1 bytes aligned: Invalid
2 bytes aligned: O.K
4 bytes aligned: Invalid!!!
Signed-off-by: Kuo-Jung Su <dantesu@faraday-tech.com>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
Cc: Tom Rini <trini@ti.com>
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 bb29a915e2f..917d8746fb0 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -67,6 +67,7 @@ int fecmxc_initialize(bd_t *bis); int fecmxc_initialize_multi(bd_t *bis, int dev_id, int phy_id, uint32_t addr); int ftgmac100_initialize(bd_t *bits); int ftmac100_initialize(bd_t *bits); +int ftmac110_initialize(bd_t *bits); int greth_initialize(bd_t *bis); void gt6426x_eth_initialize(bd_t *bis); int inca_switch_initialize(bd_t *bis); |