diff options
author | Rene Griessl <rgriessl@cit-ec.uni-bielefeld.de> | 2014-11-07 16:53:48 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2014-12-31 19:10:13 +0100 |
commit | e9954b867ce068a9eec35edf18ba79cc7f0127d1 (patch) | |
tree | 66cd070d3dcd042cee2da01149fa17a81cde8eed /include/usb_ether.h | |
parent | 125738e819a3b9d15210794b3dcef9f4d9bcf866 (diff) | |
download | u-boot-e9954b867ce068a9eec35edf18ba79cc7f0127d1.tar.gz |
usb: eth: add ASIX AX88179 DRIVER
This patch adds driver support for the ASIX AX88179 USB3.0 to GbE network
adapter.
Driver has been tested on the RECS5250 COM module (similar to ARDALE5250).
Testcase was DHCP and PXE boot.
Signed-off-by: Rene Griessl <rgriessl@cit-ec.uni-bielefeld.de>
Diffstat (limited to 'include/usb_ether.h')
-rw-r--r-- | include/usb_ether.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/usb_ether.h b/include/usb_ether.h index 35700a21b5..b38d037fbe 100644 --- a/include/usb_ether.h +++ b/include/usb_ether.h @@ -49,6 +49,12 @@ int asix_eth_probe(struct usb_device *dev, unsigned int ifnum, int asix_eth_get_info(struct usb_device *dev, struct ueth_data *ss, struct eth_device *eth); +void ax88179_eth_before_probe(void); +int ax88179_eth_probe(struct usb_device *dev, unsigned int ifnum, + struct ueth_data *ss); +int ax88179_eth_get_info(struct usb_device *dev, struct ueth_data *ss, + struct eth_device *eth); + void mcs7830_eth_before_probe(void); int mcs7830_eth_probe(struct usb_device *dev, unsigned int ifnum, struct ueth_data *ss); |