From patchwork Wed Sep 14 02:26:35 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chen-Yu Tsai X-Patchwork-Id: 669681 X-Patchwork-Delegate: hdegoede@redhat.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 3sYlmk1fGQz9s8x for ; Wed, 14 Sep 2016 12:27:02 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6D6994BA35; Wed, 14 Sep 2016 04:26:59 +0200 (CEST) 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 cmXBVpqvHYK6; Wed, 14 Sep 2016 04:26:59 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A9DAD4B9B0; Wed, 14 Sep 2016 04:26:58 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C94774BA16 for ; Wed, 14 Sep 2016 04:26:54 +0200 (CEST) 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 jRMOFk3d88Ri for ; Wed, 14 Sep 2016 04:26:54 +0200 (CEST) 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 wens.csie.org (mirror2.csie.ntu.edu.tw [140.112.30.76]) by theia.denx.de (Postfix) with ESMTPS id 4E6544B9AD for ; Wed, 14 Sep 2016 04:26:51 +0200 (CEST) Received: by wens.csie.org (Postfix, from userid 1000) id 641D65F812; Wed, 14 Sep 2016 10:26:43 +0800 (CST) From: Chen-Yu Tsai To: u-boot@lists.denx.de Date: Wed, 14 Sep 2016 10:26:35 +0800 Message-Id: <20160914022636.22186-2-wens@csie.org> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20160914022636.22186-1-wens@csie.org> References: <20160914022636.22186-1-wens@csie.org> Cc: Ian Campbell Subject: [U-Boot] [PATCH 2/3] sunxi: Enable USB host support for Sinlinx SinA33 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Sinlinx SinA33 has 1 USB host port. Enable EHCI_HCD support for it. Also enable USB mass storage support so we can access USB sticks. Signed-off-by: Chen-Yu Tsai Reviewed-by: Hans de Goede --- configs/Sinlinx_SinA33_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/Sinlinx_SinA33_defconfig b/configs/Sinlinx_SinA33_defconfig index 77eb05bf251a..673f3210a1b5 100644 --- a/configs/Sinlinx_SinA33_defconfig +++ b/configs/Sinlinx_SinA33_defconfig @@ -9,4 +9,6 @@ CONFIG_DEFAULT_DEVICE_TREE="sun8i-a33-sinlinx-sina33" CONFIG_SPL=y # CONFIG_CMD_IMLS is not set # CONFIG_CMD_FLASH is not set +CONFIG_CMD_USB_MASS_STORAGE=y # CONFIG_CMD_FPGA is not set +CONFIG_USB_EHCI_HCD=y