From e9954b867ce068a9eec35edf18ba79cc7f0127d1 Mon Sep 17 00:00:00 2001 From: Rene Griessl Date: Fri, 7 Nov 2014 16:53:48 +0100 Subject: 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 --- include/usb_ether.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include') diff --git a/include/usb_ether.h b/include/usb_ether.h index 35700a2..b38d037 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); -- cgit v1.1 From edd88905ae292355991f13fd0d3c7b3368103050 Mon Sep 17 00:00:00 2001 From: Rene Griessl Date: Fri, 7 Nov 2014 16:53:49 +0100 Subject: usb: eth: enable AX88179 DRIVER for ARNDALE 5250 Patch enables AX88179 driver for ARNDALE 5250 Signed-off-by: Rene Griessl --- include/configs/arndale.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/configs/arndale.h b/include/configs/arndale.h index 81e8a7c..d68993b 100644 --- a/include/configs/arndale.h +++ b/include/configs/arndale.h @@ -27,6 +27,7 @@ #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3 #define CONFIG_USB_HOST_ETHER #define CONFIG_USB_ETHER_ASIX +#define CONFIG_USB_ETHER_ASIX88179 /* MMC SPL */ #define CONFIG_EXYNOS_SPL -- cgit v1.1