All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yinbo Zhu <yinbo.zhu@nxp.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 8/8] configs: enable usb device module in T2080QDS
Date: Thu, 11 Apr 2019 11:02:08 +0000	[thread overview]
Message-ID: <20190411110315.30720-8-yinbo.zhu@nxp.com> (raw)
In-Reply-To: <20190411110315.30720-1-yinbo.zhu@nxp.com>

From: Yinbo Zhu <yinbo.zhu@nxp.com>

This patch is to enable usb DM for T2080QDS

Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
---
Change in v3:
		Update the commit information

 configs/T2080QDS_NAND_defconfig           | 1 +
 configs/T2080QDS_SDCARD_defconfig         | 1 +
 configs/T2080QDS_SECURE_BOOT_defconfig    | 1 +
 configs/T2080QDS_SPIFLASH_defconfig       | 1 +
 configs/T2080QDS_SRIO_PCIE_BOOT_defconfig | 1 +
 configs/T2080QDS_defconfig                | 1 +
 6 files changed, 6 insertions(+)

diff --git a/configs/T2080QDS_NAND_defconfig b/configs/T2080QDS_NAND_defconfig
index 02d47c9fdd..c8811fbc83 100644
--- a/configs/T2080QDS_NAND_defconfig
+++ b/configs/T2080QDS_NAND_defconfig
@@ -59,6 +59,7 @@ CONFIG_SPI=y
 CONFIG_FSL_ESPI=y
 CONFIG_USB=y
 CONFIG_USB_STORAGE=y
+CONFIG_DM_USB=y
 CONFIG_DM_MMC=y
 CONFIG_BLK=y
 CONFIG_DM=y
diff --git a/configs/T2080QDS_SDCARD_defconfig b/configs/T2080QDS_SDCARD_defconfig
index 4ce83fe8c4..6c5838d611 100644
--- a/configs/T2080QDS_SDCARD_defconfig
+++ b/configs/T2080QDS_SDCARD_defconfig
@@ -58,6 +58,7 @@ CONFIG_SPI=y
 CONFIG_FSL_ESPI=y
 CONFIG_USB=y
 CONFIG_USB_STORAGE=y
+CONFIG_DM_USB=y
 CONFIG_DM_MMC=y
 CONFIG_BLK=y
 CONFIG_DM=y
diff --git a/configs/T2080QDS_SECURE_BOOT_defconfig b/configs/T2080QDS_SECURE_BOOT_defconfig
index e2a7d3fa76..7ebfcc97e6 100644
--- a/configs/T2080QDS_SECURE_BOOT_defconfig
+++ b/configs/T2080QDS_SECURE_BOOT_defconfig
@@ -46,6 +46,7 @@ CONFIG_SPI=y
 CONFIG_FSL_ESPI=y
 CONFIG_USB=y
 CONFIG_USB_STORAGE=y
+CONFIG_DM_USB=y
 CONFIG_RSA=y
 CONFIG_SPL_RSA=y
 CONFIG_RSA_SOFTWARE_EXP=y
diff --git a/configs/T2080QDS_SPIFLASH_defconfig b/configs/T2080QDS_SPIFLASH_defconfig
index 641f3c0c97..e9d0d10414 100644
--- a/configs/T2080QDS_SPIFLASH_defconfig
+++ b/configs/T2080QDS_SPIFLASH_defconfig
@@ -59,6 +59,7 @@ CONFIG_SPI=y
 CONFIG_FSL_ESPI=y
 CONFIG_USB=y
 CONFIG_USB_STORAGE=y
+CONFIG_DM_USB=y
 CONFIG_DM_MMC=y
 CONFIG_BLK=y
 CONFIG_DM=y
diff --git a/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig b/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
index d2a8875aac..3a50230acf 100644
--- a/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
+++ b/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
@@ -38,6 +38,7 @@ CONFIG_SPI=y
 CONFIG_FSL_ESPI=y
 CONFIG_USB=y
 CONFIG_USB_STORAGE=y
+CONFIG_DM_USB=y
 CONFIG_OF_LIBFDT=y
 CONFIG_MPC85XX_HAVE_RESET_VECTOR=y
 CONFIG_OF_CONTROL=y
diff --git a/configs/T2080QDS_defconfig b/configs/T2080QDS_defconfig
index d55ce771a9..a42f728d0d 100644
--- a/configs/T2080QDS_defconfig
+++ b/configs/T2080QDS_defconfig
@@ -51,3 +51,4 @@ CONFIG_USB_STORAGE=y
 CONFIG_DM_MMC=y
 CONFIG_BLK=y
 CONFIG_DM=y
+CONFIG_DM_USB=y
-- 
2.17.1

  parent reply	other threads:[~2019-04-11 11:02 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-11 11:01 [U-Boot] [PATCH v3 1/8] ppc: t2080qds: add eSDHC node Yinbo Zhu
2019-04-11 11:01 ` [U-Boot] [PATCH v3 2/8] mmc: fsl_esdhc: ppc: set sdhc clock Yinbo Zhu
2019-05-24  5:10   ` Prabhakar Kushwaha
2019-04-11 11:01 ` [U-Boot] [PATCH v3 3/8] mmc: fsl_esdhc: ppc: adopt 32 bit address Yinbo Zhu
2019-05-24  5:10   ` Prabhakar Kushwaha
2019-04-11 11:01 ` [U-Boot] [PATCH v3 4/8] configs: enable device tree support for T2080QDS Yinbo Zhu
2019-05-24  5:10   ` Prabhakar Kushwaha
2019-04-11 11:01 ` [U-Boot] [PATCH v3 5/8] configs: enable eSDHC device module in T2080QDS Yinbo Zhu
2019-05-24  5:10   ` Prabhakar Kushwaha
2019-04-11 11:02 ` [U-Boot] [PATCH v3 6/8] ppc: t2080qds: add usb node Yinbo Zhu
2019-05-24  5:11   ` Prabhakar Kushwaha
2019-04-11 11:02 ` [U-Boot] [PATCH v3 7/8] usb: ehci: ppc: adopt 32 bit address Yinbo Zhu
2019-05-24  5:11   ` Prabhakar Kushwaha
2019-04-11 11:02 ` Yinbo Zhu [this message]
2019-05-24  5:11   ` [U-Boot] [PATCH v3 8/8] configs: enable usb device module in T2080QDS Prabhakar Kushwaha
2019-05-24  5:10 ` [U-Boot] [PATCH v3 1/8] ppc: t2080qds: add eSDHC node Prabhakar Kushwaha

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190411110315.30720-8-yinbo.zhu@nxp.com \
    --to=yinbo.zhu@nxp.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.