From patchwork Tue Jan 10 13:36:17 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sjoerd Simons X-Patchwork-Id: 90698 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp621648qgi; Tue, 10 Jan 2017 05:36:29 -0800 (PST) X-Received: by 10.28.143.204 with SMTP id r195mr512320wmd.32.1484055389849; Tue, 10 Jan 2017 05:36:29 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id p96si1525719wrb.57.2017.01.10.05.36.29; Tue, 10 Jan 2017 05:36:29 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.co.uk Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 31955B38D4; Tue, 10 Jan 2017 14:36:29 +0100 (CET) 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 GdaQUxBK5Ri8; Tue, 10 Jan 2017 14:36:29 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6BE24A7616; Tue, 10 Jan 2017 14:36:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4CCC5B387B for ; Tue, 10 Jan 2017 14:36:25 +0100 (CET) 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 afGvh9M2o4pS for ; Tue, 10 Jan 2017 14:36:25 +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 bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by theia.denx.de (Postfix) with ESMTPS id 15C71A760C for ; Tue, 10 Jan 2017 14:36:21 +0100 (CET) Received: from dawn.luon.net (unknown [IPv6:2001:1af8:fe00:8421:19c4:246d:a7de:92b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: sjoerd) by bhuna.collabora.co.uk (Postfix) with ESMTPSA id 48518269681; Tue, 10 Jan 2017 13:36:21 +0000 (GMT) Received: by dawn.luon.net (Postfix, from userid 1000) id E89C91879004; Tue, 10 Jan 2017 14:36:17 +0100 (CET) From: Sjoerd Simons To: u-boot@lists.denx.de Date: Tue, 10 Jan 2017 14:36:17 +0100 Message-Id: <20170110133617.1193-1-sjoerd.simons@collabora.co.uk> X-Mailer: git-send-email 2.11.0 Cc: Chander Kashyap , Javier Martinez Canillas , Akshay Saraswat Subject: [U-Boot] [PATCH] exynos: Enable XHCI on exynos5250 boards 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" Once upon a time u-boot didn't support building with two usb host controller types, these days it does. Enable XHCI in addition to the existing EHCI support so user can plug usb devices in all available ports regardless of the controller type. Signed-off-by: Sjoerd Simons --- configs/arndale_defconfig | 2 ++ configs/smdk5250_defconfig | 2 ++ configs/snow_defconfig | 2 ++ configs/spring_defconfig | 2 ++ include/configs/exynos5250-common.h | 2 ++ 5 files changed, 10 insertions(+) -- 2.11.0 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot Reviewed-by: Javier Martinez Canillas Reviewed-by: Jaehoon Chung diff --git a/configs/arndale_defconfig b/configs/arndale_defconfig index cdfb73996f..821e1c7dd7 100644 --- a/configs/arndale_defconfig +++ b/configs/arndale_defconfig @@ -31,4 +31,6 @@ CONFIG_SOUND_MAX98095=y CONFIG_SOUND_WM8994=y CONFIG_USB=y CONFIG_DM_USB=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DWC3=y CONFIG_USB_STORAGE=y diff --git a/configs/smdk5250_defconfig b/configs/smdk5250_defconfig index b785efe306..95c379b580 100644 --- a/configs/smdk5250_defconfig +++ b/configs/smdk5250_defconfig @@ -43,6 +43,8 @@ CONFIG_SOUND_WM8994=y CONFIG_EXYNOS_SPI=y CONFIG_USB=y CONFIG_DM_USB=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DWC3=y CONFIG_USB_STORAGE=y CONFIG_VIDEO_BRIDGE=y CONFIG_ERRNO_STR=y diff --git a/configs/snow_defconfig b/configs/snow_defconfig index 47b498b6b2..967927f48a 100644 --- a/configs/snow_defconfig +++ b/configs/snow_defconfig @@ -61,6 +61,8 @@ CONFIG_EXYNOS_SPI=y CONFIG_TPM_TIS_INFINEON=y CONFIG_USB=y CONFIG_DM_USB=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DWC3=y CONFIG_USB_STORAGE=y CONFIG_DM_VIDEO=y CONFIG_DISPLAY=y diff --git a/configs/spring_defconfig b/configs/spring_defconfig index 4a782c80da..1898b95690 100644 --- a/configs/spring_defconfig +++ b/configs/spring_defconfig @@ -61,6 +61,8 @@ CONFIG_EXYNOS_SPI=y CONFIG_TPM_TIS_INFINEON=y CONFIG_USB=y CONFIG_DM_USB=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DWC3=y CONFIG_USB_STORAGE=y CONFIG_DM_VIDEO=y CONFIG_DISPLAY=y diff --git a/include/configs/exynos5250-common.h b/include/configs/exynos5250-common.h index 7d8921f24e..846739a6c5 100644 --- a/include/configs/exynos5250-common.h +++ b/include/configs/exynos5250-common.h @@ -31,6 +31,8 @@ #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_EXYNOS +#define CONFIG_USB_XHCI_EXYNOS + #define CONFIG_USB_HOST_ETHER #define CONFIG_USB_ETHER_ASIX #define CONFIG_USB_ETHER_ASIX88179