mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] mci: imx-esdhc: implement reset quirks for i.MX6 DualLite/Solo
@ 2016-05-04 13:20 Stefan Christ
  2016-05-11 16:05 ` Fabio Estevam
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Christ @ 2016-05-04 13:20 UTC (permalink / raw)
  To: barebox

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 3620 bytes --]

First of all the reset values of MMC interfaces are differently between
Quad and DualLite/Solo SoM.

                Register VEND_SPEC2(0xC8)
    Quad:       0x0
    DualLite:   0x00000006
    default:    0x00000006    (from i.MX6 Reference Manual)

Furthermore the ROM Code of Quad and DualLite uses the MMC interfaces
differently when it loads the bootloader from that device:

                Register DLL_CTRL(0x60)  Bit 25 FBCLK_SEL (0x48)
    Quad:       0x0                      0
    DualLite:   0x01000021               1

Since the linux kernel and barebox driver doesn't reset all registers,
the MMC interface is in an inconsistent state, which leads to boot
failures for some eMMC devices on the i.MX6 DualLite SoM. The errors
look like:

    mmcblk3: error -110 sending stop command, original cmd response 0x900, card status 0x400900
    mmcblk3: error -84 transferring data, sector 24578, nr 2, cmd response 0x900, card status 0x0
    mmcblk3: retrying using single block read
    mmcblk3: error -84 transferring data, sector 24578, nr 2, cmd response 0x900, card status 0x0
    blk_update_request: I/O error, dev mmcblk3, sector 24578

It's sufficient to reset register DLL_CTRL and bit FBCLK_SEL. Register
VEND_SPEC2 has no effect.

Signed-off-by: Stefan Christ <s.christ@phytec.de>
---
Hi,

there is already a corresponding kernel patch, but it's not sufficient:

    http://www.spinics.net/lists/linux-mmc/msg36331.html                  
                                                        
    commit db79ac243f04a7a0ee43246c51667881f7736c56     
    Author: Dong Aisheng <aisheng.dong@freescale.com>
    Date:   Mon Dec 14 15:31:43 2015 +0800           

        MLK-12000 mmc: sdhci-esdhci-imx: disable DLL delay line settings explicitly

        Disable DLL delay line settings explicitly during driver initialization
        in case ROM/uBoot had set an invalid delay.
        e.g. MX6DL ROM has set the default delay line(DLLCTRL) to 0x1000021,
        the uSDHC clock timing will become marginal when works on DDR mode
        due to default delay and will possibly see CRC errors in cause the board
        is not perfectly designed on the eMMC chip layout.


It only resets the register DLL_CTRL, but the bit FBCLK_SEL must be also be
reseted.

Mit freundlichen Grüßen / Kind regards,
        Stefan Christ

---
 drivers/mci/imx-esdhc.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/mci/imx-esdhc.c b/drivers/mci/imx-esdhc.c
index 282887b..2e189fe 100644
--- a/drivers/mci/imx-esdhc.c
+++ b/drivers/mci/imx-esdhc.c
@@ -41,6 +41,8 @@
 
 #define IMX_SDHCI_WML		0x44
 #define IMX_SDHCI_MIXCTRL	0x48
+#define IMX_SDHCI_DLL_CTRL	0x60
+#define IMX_SDHCI_MIX_CTRL_FBCLK_SEL	(BIT(25))
 
 struct fsl_esdhc_host {
 	struct mci_host		mci;
@@ -516,11 +518,23 @@ static int esdhc_reset(struct fsl_esdhc_host *host)
 {
 	void __iomem *regs = host->regs;
 	uint64_t start;
+	int val;
 
 	/* reset the controller */
 	esdhc_write32(regs + SDHCI_CLOCK_CONTROL__TIMEOUT_CONTROL__SOFTWARE_RESET,
 			SYSCTL_RSTA);
 
+	/* extra register reset for i.MX6 Solo/DualLite */
+	if (cpu_is_mx6()) {
+		/* reset bit FBCLK_SEL */
+		val = esdhc_read32(regs + IMX_SDHCI_MIXCTRL);
+		val &= ~IMX_SDHCI_MIX_CTRL_FBCLK_SEL;
+		esdhc_write32(regs + IMX_SDHCI_MIXCTRL, val);
+
+		/* reset delay line settings in IMX_SDHCI_DLL_CTRL */
+		esdhc_write32(regs + IMX_SDHCI_DLL_CTRL, 0x0);
+	}
+
 	start = get_time_ns();
 	/* hardware clears the bit when it is done */
 	while (1) {
-- 
1.9.1



[-- Attachment #2: Type: text/plain, Size: 149 bytes --]

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mci: imx-esdhc: implement reset quirks for i.MX6 DualLite/Solo
  2016-05-04 13:20 [PATCH] mci: imx-esdhc: implement reset quirks for i.MX6 DualLite/Solo Stefan Christ
@ 2016-05-11 16:05 ` Fabio Estevam
  2016-05-17  7:45   ` Stefan Christ
  0 siblings, 1 reply; 3+ messages in thread
From: Fabio Estevam @ 2016-05-11 16:05 UTC (permalink / raw)
  To: Stefan Christ; +Cc: barebox

Hi Stefan,

On Wed, May 4, 2016 at 10:20 AM, Stefan Christ <s.christ@phytec.de> wrote:
> First of all the reset values of MMC interfaces are differently between
> Quad and DualLite/Solo SoM.
>
>                 Register VEND_SPEC2(0xC8)
>     Quad:       0x0
>     DualLite:   0x00000006
>     default:    0x00000006    (from i.MX6 Reference Manual)
>
> Furthermore the ROM Code of Quad and DualLite uses the MMC interfaces
> differently when it loads the bootloader from that device:
>
>                 Register DLL_CTRL(0x60)  Bit 25 FBCLK_SEL (0x48)
>     Quad:       0x0                      0
>     DualLite:   0x01000021               1
>
> Since the linux kernel and barebox driver doesn't reset all registers,
> the MMC interface is in an inconsistent state, which leads to boot
> failures for some eMMC devices on the i.MX6 DualLite SoM. The errors
> look like:
>
>     mmcblk3: error -110 sending stop command, original cmd response 0x900, card status 0x400900
>     mmcblk3: error -84 transferring data, sector 24578, nr 2, cmd response 0x900, card status 0x0
>     mmcblk3: retrying using single block read
>     mmcblk3: error -84 transferring data, sector 24578, nr 2, cmd response 0x900, card status 0x0
>     blk_update_request: I/O error, dev mmcblk3, sector 24578
>
> It's sufficient to reset register DLL_CTRL and bit FBCLK_SEL. Register
> VEND_SPEC2 has no effect.
>
> Signed-off-by: Stefan Christ <s.christ@phytec.de>

Do you plan to fix this in the kernel driver as well?

Thanks

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mci: imx-esdhc: implement reset quirks for i.MX6 DualLite/Solo
  2016-05-11 16:05 ` Fabio Estevam
@ 2016-05-17  7:45   ` Stefan Christ
  0 siblings, 0 replies; 3+ messages in thread
From: Stefan Christ @ 2016-05-17  7:45 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: barebox

Hi Fabio,

On Wed, May 11, 2016 at 01:05:58PM -0300, Fabio Estevam wrote:
> Do you plan to fix this in the kernel driver as well?

Sure. I've sent a patch upstream to linux-mmc@vger.kernel.org.

Mit freundlichen Grüßen / Kind regards,
	Stefan Christ


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-05-17  7:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-04 13:20 [PATCH] mci: imx-esdhc: implement reset quirks for i.MX6 DualLite/Solo Stefan Christ
2016-05-11 16:05 ` Fabio Estevam
2016-05-17  7:45   ` Stefan Christ

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox