From mboxrd@z Thu Jan 1 00:00:00 1970 From: patrice.chotard at st.com Date: Mon, 5 Jun 2017 09:24:12 +0200 Subject: [U-Boot] [PATCH v8 05/10] STiH410-B2260: enable USB Host Networking In-Reply-To: <1496647457-8332-1-git-send-email-patrice.chotard@st.com> References: <1496647457-8332-1-git-send-email-patrice.chotard@st.com> Message-ID: <1496647457-8332-6-git-send-email-patrice.chotard@st.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Patrice Chotard Enable USB Host Networking support by enabling Ethernet/USB adaptors support and by enabling some BOOTP flags Signed-off-by: Patrice Chotard Reviewed-by: Simon Glass --- v8: _ none v7: _ none v6: _ add reviewed-by Simon Glass _ add missing comment in commit message v5: _ none v4: _ none v3: _ none v2: _ none include/configs/stih410-b2260.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index 6f4070f..6c84e9b 100644 --- a/include/configs/stih410-b2260.h +++ b/include/configs/stih410-b2260.h @@ -52,4 +52,20 @@ #define CONFIG_SKIP_LOWLEVEL_INIT +/* USB Configs */ +#define CONFIG_USB_OHCI_NEW +#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2 +#define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2 + +#define CONFIG_USB_HOST_ETHER +#define CONFIG_USB_ETHER_ASIX +#define CONFIG_USB_ETHER_MCS7830 +#define CONFIG_USB_ETHER_SMSC95XX + +/* NET Configs */ +#define CONFIG_BOOTP_SUBNETMASK +#define CONFIG_BOOTP_GATEWAY +#define CONFIG_BOOTP_HOSTNAME +#define CONFIG_BOOTP_BOOTPATH + #endif /* __CONFIG_H */ -- 1.9.1