All of lore.kernel.org
 help / color / mirror / Atom feed
From: Xiaowei Bao <xiaowei.bao@nxp.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 24/29] configs: T1042D4RDB: Enable ESPI driver
Date: Sat, 26 Oct 2019 19:24:53 +0800	[thread overview]
Message-ID: <20191026112458.35241-25-xiaowei.bao@nxp.com> (raw)
In-Reply-To: <20191026112458.35241-1-xiaowei.bao@nxp.com>

Enable the DM ESPI driver in T1042D4RDB defconfig.

Signed-off-by: Xiaowei Bao <xiaowei.bao@nxp.com>
---
 configs/T1042D4RDB_NAND_defconfig     | 2 ++
 configs/T1042D4RDB_SDCARD_defconfig   | 2 ++
 configs/T1042D4RDB_SPIFLASH_defconfig | 2 ++
 configs/T1042D4RDB_defconfig          | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/configs/T1042D4RDB_NAND_defconfig b/configs/T1042D4RDB_NAND_defconfig
index 2fcd9e1..8547757 100644
--- a/configs/T1042D4RDB_NAND_defconfig
+++ b/configs/T1042D4RDB_NAND_defconfig
@@ -48,6 +48,8 @@ CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="t1042d4rdb"
 CONFIG_ENV_IS_IN_NAND=y
 CONFIG_DM=y
+CONFIG_DM_SPI=y
+CONFIG_DM_SPI_FLASH=y
 CONFIG_FSL_CAAM=y
 CONFIG_FSL_ESDHC=y
 CONFIG_MTD_NOR_FLASH=y
diff --git a/configs/T1042D4RDB_SDCARD_defconfig b/configs/T1042D4RDB_SDCARD_defconfig
index 04372fd..bed1e42 100644
--- a/configs/T1042D4RDB_SDCARD_defconfig
+++ b/configs/T1042D4RDB_SDCARD_defconfig
@@ -46,6 +46,8 @@ CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="t1042d4rdb"
 CONFIG_ENV_IS_IN_MMC=y
 CONFIG_DM=y
+CONFIG_DM_SPI=y
+CONFIG_DM_SPI_FLASH=y
 CONFIG_FSL_CAAM=y
 CONFIG_FSL_ESDHC=y
 CONFIG_MTD_NOR_FLASH=y
diff --git a/configs/T1042D4RDB_SPIFLASH_defconfig b/configs/T1042D4RDB_SPIFLASH_defconfig
index 2c869cd..a654462 100644
--- a/configs/T1042D4RDB_SPIFLASH_defconfig
+++ b/configs/T1042D4RDB_SPIFLASH_defconfig
@@ -47,6 +47,8 @@ CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="t1042d4rdb"
 CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_DM=y
+CONFIG_DM_SPI=y
+CONFIG_DM_SPI_FLASH=y
 CONFIG_FSL_CAAM=y
 CONFIG_FSL_ESDHC=y
 CONFIG_MTD_NOR_FLASH=y
diff --git a/configs/T1042D4RDB_defconfig b/configs/T1042D4RDB_defconfig
index 5d8a25f..7085c99 100644
--- a/configs/T1042D4RDB_defconfig
+++ b/configs/T1042D4RDB_defconfig
@@ -33,6 +33,8 @@ CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="t1042d4rdb"
 CONFIG_ENV_IS_IN_FLASH=y
 CONFIG_DM=y
+CONFIG_DM_SPI=y
+CONFIG_DM_SPI_FLASH=y
 CONFIG_FSL_CAAM=y
 CONFIG_FSL_ESDHC=y
 CONFIG_MTD_NOR_FLASH=y
-- 
2.9.5

  parent reply	other threads:[~2019-10-26 11:24 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-26 11:24 [U-Boot] [PATCH 00/29] Add the SPI DM support for PPC Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 01/29] dts: P1020: Add ESPI DT nodes Xiaowei Bao
2020-05-12  9:03   ` Priyanka Jain
2019-10-26 11:24 ` [U-Boot] [PATCH 02/29] dts: P1020RDB: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 03/29] configs: P1020RDB: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 04/29] dts: P2020: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 05/29] dts: P2020RDB: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 06/29] configs: P2020RDB: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 07/29] dts: P2041: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 08/29] dts: P2041RDB: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 09/29] configs: P2041RDB: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 10/29] dts: P3041: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 11/29] dts: P3041DS: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 12/29] configs: P3041DS: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 13/29] dts: P4080: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 14/29] dts: P4080DS: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 15/29] configs: P4080DS: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 16/29] dts: P5040: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 17/29] dts: P5040DS: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 18/29] configs: P5040DS: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 19/29] dts: T102x: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 20/29] dts: T1024RDB: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 21/29] configs: T1024RDB: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 22/29] dts: T104x: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 23/29] dts: T1042D4RDB: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` Xiaowei Bao [this message]
2019-10-26 11:24 ` [U-Boot] [PATCH 25/29] dts: T2080RDB: " Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 26/29] configs: T2080RDB: Enable ESPI driver Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 27/29] dts: T4240: Add ESPI DT nodes Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 28/29] dts: T4240RDB: Add ESPI slave device node Xiaowei Bao
2019-10-26 11:24 ` [U-Boot] [PATCH 29/29] configs: T4240RDB: Enable ESPI driver Xiaowei Bao

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=20191026112458.35241-25-xiaowei.bao@nxp.com \
    --to=xiaowei.bao@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.