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 v2 5/5] configs: enable eSDHC device module in T2080QDS
Date: Thu, 11 Apr 2019 11:08:17 +0000	[thread overview]
Message-ID: <VI1PR04MB4158B31C754390ED34EAF236E92F0@VI1PR04MB4158.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <VI1PR0402MB3854DC5EA1609EBDDE12EB3797530@VI1PR0402MB3854.eurprd04.prod.outlook.com>

Hi,

Please ignore the observation.
This issue is due to that read mmc's addr is more than it's memory.
Sd/usb work well.

And I had send the v3 version, please help me check it.

Thanks!
Regards,
Yinbo Zhu.

> -----Original Message-----
> From: Prabhakar Kushwaha
> Sent: 2019年4月7日 17:46
> To: Yinbo Zhu <yinbo.zhu@nxp.com>; York Sun <york.sun@nxp.com>;
> u-boot at lists.denx.de; panto at antoniou-consulting.com;
> jh80.chung at samsung.com
> Cc: Xiaobo Xie <xiaobo.xie@nxp.com>; Ran Wang <ran.wang_1@nxp.com>; Jiafei
> Pan <jiafei.pan@nxp.com>; Y.b. Lu <yangbo.lu@nxp.com>; Jagdish Gediya
> <jagdish.gediya@nxp.com>
> Subject: RE: [PATCH v2 5/5] configs: enable eSDHC device module in T2080QDS
> 
> Dear  Panto,  Jaehoon
> 
> 
> > -----Original Message-----
> > From: Yinbo Zhu
> > Sent: Tuesday, March 26, 2019 2:38 PM
> > To: York Sun <york.sun@nxp.com>; u-boot at lists.denx.de
> > Cc: Xiaobo Xie <xiaobo.xie@nxp.com>; Ran Wang <ran.wang_1@nxp.com>;
> > Jiafei Pan <jiafei.pan@nxp.com>; Y.b. Lu <yangbo.lu@nxp.com>; Jagdish
> > Gediya <jagdish.gediya@nxp.com>; Prabhakar Kushwaha
> > <prabhakar.kushwaha@nxp.com>; Yinbo Zhu <yinbo.zhu@nxp.com>
> > Subject: RE: [PATCH v2 5/5] configs: enable eSDHC device module in
> > T2080QDS
> >
> > Hi,
> >
> > This patches set is for enable uboot DM for usb and sd on t2080qds, I
> > haded tested the io function. And I find that if the block size is
> > less than 8, the read process will be hung, hung’s code is in
> > blkcache_fill’s memcpy Function,  and when memcpy do “*dl++ = *sl++”
> > operation then read process will be hung.  but fsl-layerscape uboot DM
> > work well. ppc non-DM work well, it seems to be block
> > driver(CONFIG_BLK) issue related to PPC. Please you note.
> >
> 
> 
> Can you please check this observarion!!
> 
> 
> 
> > Thanks
> > Best Regards,
> > Yinbo Zhu.
> >
> > -----Original Message-----
> > From: Yinbo Zhu [mailto:yinbo.zhu at nxp.com]
> > Sent: 2019年3月26日 11:09
> > To: York Sun <york.sun@nxp.com>; u-boot at lists.denx.de
> > Cc: Yinbo Zhu <yinbo.zhu@nxp.com>; Xiaobo Xie <xiaobo.xie@nxp.com>;
> > Ran Wang <ran.wang_1@nxp.com>; Jiafei Pan <jiafei.pan@nxp.com>; Y.b.
> > Lu <yangbo.lu@nxp.com>; Jagdish Gediya <jagdish.gediya@nxp.com>;
> > Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
> > Subject: [PATCH v2 5/5] configs: enable eSDHC device module in
> > T2080QDS
> >
> > >From: Yinbo Zhu <yinbo.zhu@nxp.com>
> >
> > >This patch is to enable MMC DM for T2080QDS in uboot
> >
> > >Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
> > >---
> >  >configs/T2080QDS_NAND_defconfig           | 3 +++
> >  >configs/T2080QDS_SDCARD_defconfig         | 3 +++
> >  >configs/T2080QDS_SECURE_BOOT_defconfig    | 3 +++
> >  >configs/T2080QDS_SPIFLASH_defconfig       | 3 +++
> >  >configs/T2080QDS_SRIO_PCIE_BOOT_defconfig | 3 +++
> >  >configs/T2080QDS_defconfig                | 3 +++
> >  >6 files changed, 18 insertions(+)
> >
> > >diff --git a/configs/T2080QDS_NAND_defconfig
> > >b/configs/T2080QDS_NAND_defconfig index 948a05af89..02d47c9fdd
> 100644
> > >--- a/configs/T2080QDS_NAND_defconfig
> > >+++ b/configs/T2080QDS_NAND_defconfig
> > >@@ -59,3 +59,6 @@ CONFIG_SPI=y
> >  >CONFIG_FSL_ESPI=y
> >  >CONFIG_USB=y
> >  >CONFIG_USB_STORAGE=y
> > >+CONFIG_DM_MMC=y
> > >+CONFIG_BLK=y
> > >+CONFIG_DM=y
> > >diff --git a/configs/T2080QDS_SDCARD_defconfig
> > >b/configs/T2080QDS_SDCARD_defconfig
> > >index 30e87df3bb..4ce83fe8c4 100644
> > >--- a/configs/T2080QDS_SDCARD_defconfig
> > >+++ b/configs/T2080QDS_SDCARD_defconfig
> > >@@ -58,3 +58,6 @@ CONFIG_SPI=y
> >  >CONFIG_FSL_ESPI=y
> >  >CONFIG_USB=y
> >  >CONFIG_USB_STORAGE=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 2658bf8460..e2a7d3fa76 100644
> > >--- a/configs/T2080QDS_SECURE_BOOT_defconfig
> > >+++ b/configs/T2080QDS_SECURE_BOOT_defconfig
> > >@@ -52,3 +52,6 @@ CONFIG_RSA_SOFTWARE_EXP=y
> CONFIG_OF_LIBFDT=y
> > >CONFIG_MPC85XX_HAVE_RESET_VECTOR=y
> >  >CONFIG_DEFAULT_DEVICE_TREE="t2080qds"
> > >+CONFIG_DM_MMC=y
> > >+CONFIG_BLK=y
> > >+CONFIG_OF_CONTROL=y
> > >diff --git a/configs/T2080QDS_SPIFLASH_defconfig
> > >b/configs/T2080QDS_SPIFLASH_defconfig
> > >index 0cccb3a85d..641f3c0c97 100644
> > >--- a/configs/T2080QDS_SPIFLASH_defconfig
> > >+++ b/configs/T2080QDS_SPIFLASH_defconfig
> > >@@ -59,3 +59,6 @@ CONFIG_SPI=y
> >  >CONFIG_FSL_ESPI=y
> >  >CONFIG_USB=y
> >  >CONFIG_USB_STORAGE=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 8febabd84f..d2a8875aac 100644
> > >--- a/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
> > >+++ b/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
> > >@@ -42,3 +42,6 @@ CONFIG_OF_LIBFDT=y
> >  >CONFIG_MPC85XX_HAVE_RESET_VECTOR=y
> >  >CONFIG_OF_CONTROL=y
> >  >CONFIG_DEFAULT_DEVICE_TREE="t2080qds"
> > >+CONFIG_DM_MMC=y
> > >+CONFIG_BLK=y
> > >+CONFIG_DM=y
> > >diff --git a/configs/T2080QDS_defconfig b/configs/T2080QDS_defconfig
> > >index 79cf4424b4..d55ce771a9 100644
> > >--- a/configs/T2080QDS_defconfig
> > >+++ b/configs/T2080QDS_defconfig
> > >@@ -48,3 +48,6 @@ CONFIG_SPI=y
> >  >CONFIG_FSL_ESPI=y
> >  >CONFIG_USB=y
> >  >>CONFIG_USB_STORAGE=y
> > >+CONFIG_DM_MMC=y
> > >+CONFIG_BLK=y
> > >+CONFIG_DM=y
> > --
> > 2.17.1

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

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-26  3:08 [U-Boot] [PATCH v2 1/5] ppc: t2080qds: add eSDHC node Yinbo Zhu
2019-03-26  3:08 ` [U-Boot] [PATCH v2 2/5] mmc: fsl_esdhc: ppc: set sdhc clock Yinbo Zhu
2019-04-07  9:36   ` Prabhakar Kushwaha
2019-03-26  3:08 ` [U-Boot] [PATCH v2 3/5] mmc: fsl_esdhc: ppc: adopt 32 bit address Yinbo Zhu
2019-03-26  3:09 ` [U-Boot] [PATCH v2 4/5] configs: enable device tree support for T2080QDS Yinbo Zhu
2019-03-26  3:09 ` [U-Boot] [PATCH v2 5/5] configs: enable eSDHC device module in T2080QDS Yinbo Zhu
2019-03-26  9:07   ` Yinbo Zhu
2019-03-28  8:09     ` Yinbo Zhu
2019-04-07  9:46     ` Prabhakar Kushwaha
2019-04-11 11:08       ` Yinbo Zhu [this message]
2019-04-07  9:39   ` 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=VI1PR04MB4158B31C754390ED34EAF236E92F0@VI1PR04MB4158.eurprd04.prod.outlook.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.