From patchwork Sat Mar 8 18:46:17 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Gerhard Sittig X-Patchwork-Id: 328228 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 5E9322C0091 for ; Sun, 9 Mar 2014 05:49:35 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BB4414B606; Sat, 8 Mar 2014 19:49:16 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6EVyJfWzQlTU; Sat, 8 Mar 2014 19:49:16 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 54AE14B635; Sat, 8 Mar 2014 19:48:48 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 374B24B653 for ; Sat, 8 Mar 2014 19:48:38 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uOOSZJLSSQ+3 for ; Sat, 8 Mar 2014 19:48:33 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by theia.denx.de (Postfix) with ESMTPS id 719844B150 for ; Sat, 8 Mar 2014 19:48:29 +0100 (CET) Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3fhF8F4glfz4KK49; Sat, 8 Mar 2014 19:48:29 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3fhF8F4FjZzbbhM; Sat, 8 Mar 2014 19:48:29 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id vPJFAorUcVmL; Sat, 8 Mar 2014 19:48:28 +0100 (CET) X-Auth-Info: Ams3PigAvJhisZAQNMp1EWuHeKBEn3mdEnq7O1SH8bw= Received: from localhost (kons-4d03dd2a.pool.mediaWays.net [77.3.221.42]) by mail.mnet-online.de (Postfix) with ESMTPA; Sat, 8 Mar 2014 19:48:28 +0100 (CET) From: Gerhard Sittig To: u-boot@lists.denx.de Date: Sat, 8 Mar 2014 19:46:17 +0100 Message-Id: <1394304378-29962-6-git-send-email-gsi@denx.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1394304378-29962-1-git-send-email-gsi@denx.de> References: <1394304378-29962-1-git-send-email-gsi@denx.de> Cc: Marek Vasut , Tom Warren , Tom Rini Subject: [U-Boot] [PATCH v4 5/6] at91: enable USB ethernet for taskit stamp9g20 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de enabling CONFIG_MACB makes other locations in the stamp config file enable network related commands (actually prevents disabling them) enable USB ethernet support by activating generic support as well as Asix and Moschip ethernet adapters Signed-off-by: Gerhard Sittig Acked-by: Andreas Bießman --- Changes in v4: None Changes in v3: None Changes in v2: - introduce the patch to add MCS7830 USB ethernet for taskit stamp9g20 include/configs/stamp9g20.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/configs/stamp9g20.h b/include/configs/stamp9g20.h index 51339b1496e6..01085dc5c114 100644 --- a/include/configs/stamp9g20.h +++ b/include/configs/stamp9g20.h @@ -140,7 +140,10 @@ * can enable it here if your baseboard features ethernet. */ -/* #define CONFIG_MACB */ +#define CONFIG_MACB +#define CONFIG_USB_HOST_ETHER +#define CONFIG_USB_ETHER_ASIX +#define CONFIG_USB_ETHER_MCS7830 #ifdef CONFIG_MACB # define CONFIG_RMII /* use reduced MII inteface */