All of lore.kernel.org
 help / color / mirror / Atom feed
* [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
@ 2020-10-20  8:11 Yangbo Lu
  2020-10-27 12:34 ` Adrian Hunter
  2020-10-27 13:41 ` Ulf Hansson
  0 siblings, 2 replies; 6+ messages in thread
From: Yangbo Lu @ 2020-10-20  8:11 UTC (permalink / raw)
  To: linux-mmc; +Cc: Yangbo Lu, Adrian Hunter, Ulf Hansson

For eMMC HS400 mode initialization, the DLL reset is a required step
if DLL is enabled to use previously, like in bootloader.
This step has not been documented in reference manual, but the RM will
be fixed sooner or later.

This patch is to add the step of DLL reset, and make sure delay chain
locked for HS400.

Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
---
Changes for v2:
	- Converted to use read_poll_timeout.
Changes for v3:
	- Included iopoll.h.
---
 drivers/mmc/host/sdhci-esdhc.h    |  2 ++
 drivers/mmc/host/sdhci-of-esdhc.c | 17 +++++++++++++++++
 2 files changed, 19 insertions(+)

diff --git a/drivers/mmc/host/sdhci-esdhc.h b/drivers/mmc/host/sdhci-esdhc.h
index a30796e..6de02f0 100644
--- a/drivers/mmc/host/sdhci-esdhc.h
+++ b/drivers/mmc/host/sdhci-esdhc.h
@@ -5,6 +5,7 @@
  * Copyright (c) 2007 Freescale Semiconductor, Inc.
  * Copyright (c) 2009 MontaVista Software, Inc.
  * Copyright (c) 2010 Pengutronix e.K.
+ * Copyright 2020 NXP
  *   Author: Wolfram Sang <kernel@pengutronix.de>
  */
 
@@ -88,6 +89,7 @@
 /* DLL Config 0 Register */
 #define ESDHC_DLLCFG0			0x160
 #define ESDHC_DLL_ENABLE		0x80000000
+#define ESDHC_DLL_RESET			0x40000000
 #define ESDHC_DLL_FREQ_SEL		0x08000000
 
 /* DLL Config 1 Register */
diff --git a/drivers/mmc/host/sdhci-of-esdhc.c b/drivers/mmc/host/sdhci-of-esdhc.c
index 0b45eff..90e6085 100644
--- a/drivers/mmc/host/sdhci-of-esdhc.c
+++ b/drivers/mmc/host/sdhci-of-esdhc.c
@@ -4,6 +4,7 @@
  *
  * Copyright (c) 2007, 2010, 2012 Freescale Semiconductor, Inc.
  * Copyright (c) 2009 MontaVista Software, Inc.
+ * Copyright 2020 NXP
  *
  * Authors: Xiaobo Xie <X.Xie@freescale.com>
  *	    Anton Vorontsov <avorontsov@ru.mvista.com>
@@ -19,6 +20,7 @@
 #include <linux/clk.h>
 #include <linux/ktime.h>
 #include <linux/dma-mapping.h>
+#include <linux/iopoll.h>
 #include <linux/mmc/host.h>
 #include <linux/mmc/mmc.h>
 #include "sdhci-pltfm.h"
@@ -743,6 +745,21 @@ static void esdhc_of_set_clock(struct sdhci_host *host, unsigned int clock)
 		if (host->mmc->actual_clock == MMC_HS200_MAX_DTR)
 			temp |= ESDHC_DLL_FREQ_SEL;
 		sdhci_writel(host, temp, ESDHC_DLLCFG0);
+
+		temp |= ESDHC_DLL_RESET;
+		sdhci_writel(host, temp, ESDHC_DLLCFG0);
+		udelay(1);
+		temp &= ~ESDHC_DLL_RESET;
+		sdhci_writel(host, temp, ESDHC_DLLCFG0);
+
+		/* Wait max 20 ms */
+		if (read_poll_timeout(sdhci_readl, temp,
+				      temp & ESDHC_DLL_STS_SLV_LOCK,
+				      10, 20000, false,
+				      host, ESDHC_DLLSTAT0))
+			pr_err("%s: timeout for delay chain lock.\n",
+			       mmc_hostname(host->mmc));
+
 		temp = sdhci_readl(host, ESDHC_TBCTL);
 		sdhci_writel(host, temp | ESDHC_HS400_WNDW_ADJUST, ESDHC_TBCTL);
 
-- 
2.7.4


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

* Re: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
  2020-10-20  8:11 [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400 Yangbo Lu
@ 2020-10-27 12:34 ` Adrian Hunter
  2020-10-27 13:41 ` Ulf Hansson
  1 sibling, 0 replies; 6+ messages in thread
From: Adrian Hunter @ 2020-10-27 12:34 UTC (permalink / raw)
  To: Yangbo Lu, linux-mmc; +Cc: Ulf Hansson

On 20/10/20 11:11 am, Yangbo Lu wrote:
> For eMMC HS400 mode initialization, the DLL reset is a required step
> if DLL is enabled to use previously, like in bootloader.
> This step has not been documented in reference manual, but the RM will
> be fixed sooner or later.
> 
> This patch is to add the step of DLL reset, and make sure delay chain
> locked for HS400.
> 
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>

Acked-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
> Changes for v2:
> 	- Converted to use read_poll_timeout.
> Changes for v3:
> 	- Included iopoll.h.
> ---
>  drivers/mmc/host/sdhci-esdhc.h    |  2 ++
>  drivers/mmc/host/sdhci-of-esdhc.c | 17 +++++++++++++++++
>  2 files changed, 19 insertions(+)
> 
> diff --git a/drivers/mmc/host/sdhci-esdhc.h b/drivers/mmc/host/sdhci-esdhc.h
> index a30796e..6de02f0 100644
> --- a/drivers/mmc/host/sdhci-esdhc.h
> +++ b/drivers/mmc/host/sdhci-esdhc.h
> @@ -5,6 +5,7 @@
>   * Copyright (c) 2007 Freescale Semiconductor, Inc.
>   * Copyright (c) 2009 MontaVista Software, Inc.
>   * Copyright (c) 2010 Pengutronix e.K.
> + * Copyright 2020 NXP
>   *   Author: Wolfram Sang <kernel@pengutronix.de>
>   */
>  
> @@ -88,6 +89,7 @@
>  /* DLL Config 0 Register */
>  #define ESDHC_DLLCFG0			0x160
>  #define ESDHC_DLL_ENABLE		0x80000000
> +#define ESDHC_DLL_RESET			0x40000000
>  #define ESDHC_DLL_FREQ_SEL		0x08000000
>  
>  /* DLL Config 1 Register */
> diff --git a/drivers/mmc/host/sdhci-of-esdhc.c b/drivers/mmc/host/sdhci-of-esdhc.c
> index 0b45eff..90e6085 100644
> --- a/drivers/mmc/host/sdhci-of-esdhc.c
> +++ b/drivers/mmc/host/sdhci-of-esdhc.c
> @@ -4,6 +4,7 @@
>   *
>   * Copyright (c) 2007, 2010, 2012 Freescale Semiconductor, Inc.
>   * Copyright (c) 2009 MontaVista Software, Inc.
> + * Copyright 2020 NXP
>   *
>   * Authors: Xiaobo Xie <X.Xie@freescale.com>
>   *	    Anton Vorontsov <avorontsov@ru.mvista.com>
> @@ -19,6 +20,7 @@
>  #include <linux/clk.h>
>  #include <linux/ktime.h>
>  #include <linux/dma-mapping.h>
> +#include <linux/iopoll.h>
>  #include <linux/mmc/host.h>
>  #include <linux/mmc/mmc.h>
>  #include "sdhci-pltfm.h"
> @@ -743,6 +745,21 @@ static void esdhc_of_set_clock(struct sdhci_host *host, unsigned int clock)
>  		if (host->mmc->actual_clock == MMC_HS200_MAX_DTR)
>  			temp |= ESDHC_DLL_FREQ_SEL;
>  		sdhci_writel(host, temp, ESDHC_DLLCFG0);
> +
> +		temp |= ESDHC_DLL_RESET;
> +		sdhci_writel(host, temp, ESDHC_DLLCFG0);
> +		udelay(1);
> +		temp &= ~ESDHC_DLL_RESET;
> +		sdhci_writel(host, temp, ESDHC_DLLCFG0);
> +
> +		/* Wait max 20 ms */
> +		if (read_poll_timeout(sdhci_readl, temp,
> +				      temp & ESDHC_DLL_STS_SLV_LOCK,
> +				      10, 20000, false,
> +				      host, ESDHC_DLLSTAT0))
> +			pr_err("%s: timeout for delay chain lock.\n",
> +			       mmc_hostname(host->mmc));
> +
>  		temp = sdhci_readl(host, ESDHC_TBCTL);
>  		sdhci_writel(host, temp | ESDHC_HS400_WNDW_ADJUST, ESDHC_TBCTL);
>  
> 


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

* Re: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
  2020-10-20  8:11 [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400 Yangbo Lu
  2020-10-27 12:34 ` Adrian Hunter
@ 2020-10-27 13:41 ` Ulf Hansson
  2020-10-28  8:56   ` Y.b. Lu
  1 sibling, 1 reply; 6+ messages in thread
From: Ulf Hansson @ 2020-10-27 13:41 UTC (permalink / raw)
  To: Yangbo Lu; +Cc: linux-mmc, Adrian Hunter

On Tue, 20 Oct 2020 at 10:20, Yangbo Lu <yangbo.lu@nxp.com> wrote:
>
> For eMMC HS400 mode initialization, the DLL reset is a required step
> if DLL is enabled to use previously, like in bootloader.
> This step has not been documented in reference manual, but the RM will
> be fixed sooner or later.
>
> This patch is to add the step of DLL reset, and make sure delay chain
> locked for HS400.
>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>

Applied for next (please tell if you think this deserves to be tagged
for stable), thanks!

Kind regards
Uffe



> ---
> Changes for v2:
>         - Converted to use read_poll_timeout.
> Changes for v3:
>         - Included iopoll.h.
> ---
>  drivers/mmc/host/sdhci-esdhc.h    |  2 ++
>  drivers/mmc/host/sdhci-of-esdhc.c | 17 +++++++++++++++++
>  2 files changed, 19 insertions(+)
>
> diff --git a/drivers/mmc/host/sdhci-esdhc.h b/drivers/mmc/host/sdhci-esdhc.h
> index a30796e..6de02f0 100644
> --- a/drivers/mmc/host/sdhci-esdhc.h
> +++ b/drivers/mmc/host/sdhci-esdhc.h
> @@ -5,6 +5,7 @@
>   * Copyright (c) 2007 Freescale Semiconductor, Inc.
>   * Copyright (c) 2009 MontaVista Software, Inc.
>   * Copyright (c) 2010 Pengutronix e.K.
> + * Copyright 2020 NXP
>   *   Author: Wolfram Sang <kernel@pengutronix.de>
>   */
>
> @@ -88,6 +89,7 @@
>  /* DLL Config 0 Register */
>  #define ESDHC_DLLCFG0                  0x160
>  #define ESDHC_DLL_ENABLE               0x80000000
> +#define ESDHC_DLL_RESET                        0x40000000
>  #define ESDHC_DLL_FREQ_SEL             0x08000000
>
>  /* DLL Config 1 Register */
> diff --git a/drivers/mmc/host/sdhci-of-esdhc.c b/drivers/mmc/host/sdhci-of-esdhc.c
> index 0b45eff..90e6085 100644
> --- a/drivers/mmc/host/sdhci-of-esdhc.c
> +++ b/drivers/mmc/host/sdhci-of-esdhc.c
> @@ -4,6 +4,7 @@
>   *
>   * Copyright (c) 2007, 2010, 2012 Freescale Semiconductor, Inc.
>   * Copyright (c) 2009 MontaVista Software, Inc.
> + * Copyright 2020 NXP
>   *
>   * Authors: Xiaobo Xie <X.Xie@freescale.com>
>   *         Anton Vorontsov <avorontsov@ru.mvista.com>
> @@ -19,6 +20,7 @@
>  #include <linux/clk.h>
>  #include <linux/ktime.h>
>  #include <linux/dma-mapping.h>
> +#include <linux/iopoll.h>
>  #include <linux/mmc/host.h>
>  #include <linux/mmc/mmc.h>
>  #include "sdhci-pltfm.h"
> @@ -743,6 +745,21 @@ static void esdhc_of_set_clock(struct sdhci_host *host, unsigned int clock)
>                 if (host->mmc->actual_clock == MMC_HS200_MAX_DTR)
>                         temp |= ESDHC_DLL_FREQ_SEL;
>                 sdhci_writel(host, temp, ESDHC_DLLCFG0);
> +
> +               temp |= ESDHC_DLL_RESET;
> +               sdhci_writel(host, temp, ESDHC_DLLCFG0);
> +               udelay(1);
> +               temp &= ~ESDHC_DLL_RESET;
> +               sdhci_writel(host, temp, ESDHC_DLLCFG0);
> +
> +               /* Wait max 20 ms */
> +               if (read_poll_timeout(sdhci_readl, temp,
> +                                     temp & ESDHC_DLL_STS_SLV_LOCK,
> +                                     10, 20000, false,
> +                                     host, ESDHC_DLLSTAT0))
> +                       pr_err("%s: timeout for delay chain lock.\n",
> +                              mmc_hostname(host->mmc));
> +
>                 temp = sdhci_readl(host, ESDHC_TBCTL);
>                 sdhci_writel(host, temp | ESDHC_HS400_WNDW_ADJUST, ESDHC_TBCTL);
>
> --
> 2.7.4
>

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

* RE: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
  2020-10-27 13:41 ` Ulf Hansson
@ 2020-10-28  8:56   ` Y.b. Lu
  2020-10-28 10:21     ` Ulf Hansson
  0 siblings, 1 reply; 6+ messages in thread
From: Y.b. Lu @ 2020-10-28  8:56 UTC (permalink / raw)
  To: Ulf Hansson; +Cc: linux-mmc, Adrian Hunter

Hi Uffe,

> -----Original Message-----
> From: Ulf Hansson <ulf.hansson@linaro.org>
> Sent: Tuesday, October 27, 2020 9:42 PM
> To: Y.b. Lu <yangbo.lu@nxp.com>
> Cc: linux-mmc@vger.kernel.org; Adrian Hunter <adrian.hunter@intel.com>
> Subject: Re: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
> 
> On Tue, 20 Oct 2020 at 10:20, Yangbo Lu <yangbo.lu@nxp.com> wrote:
> >
> > For eMMC HS400 mode initialization, the DLL reset is a required step
> > if DLL is enabled to use previously, like in bootloader.
> > This step has not been documented in reference manual, but the RM will
> > be fixed sooner or later.
> >
> > This patch is to add the step of DLL reset, and make sure delay chain
> > locked for HS400.
> >
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> 
> Applied for next (please tell if you think this deserves to be tagged
> for stable), thanks!

Thanks!
Please help to tag for stable. The latest u-boot just supporting eSDHC HS400, may cause kernel HS400 issue without this patch.

> 
> Kind regards
> Uffe
> 
> 
> 
> > ---
> > Changes for v2:
> >         - Converted to use read_poll_timeout.
> > Changes for v3:
> >         - Included iopoll.h.
> > ---
> >  drivers/mmc/host/sdhci-esdhc.h    |  2 ++
> >  drivers/mmc/host/sdhci-of-esdhc.c | 17 +++++++++++++++++
> >  2 files changed, 19 insertions(+)
> >
> > diff --git a/drivers/mmc/host/sdhci-esdhc.h
> b/drivers/mmc/host/sdhci-esdhc.h
> > index a30796e..6de02f0 100644
> > --- a/drivers/mmc/host/sdhci-esdhc.h
> > +++ b/drivers/mmc/host/sdhci-esdhc.h
> > @@ -5,6 +5,7 @@
> >   * Copyright (c) 2007 Freescale Semiconductor, Inc.
> >   * Copyright (c) 2009 MontaVista Software, Inc.
> >   * Copyright (c) 2010 Pengutronix e.K.
> > + * Copyright 2020 NXP
> >   *   Author: Wolfram Sang <kernel@pengutronix.de>
> >   */
> >
> > @@ -88,6 +89,7 @@
> >  /* DLL Config 0 Register */
> >  #define ESDHC_DLLCFG0                  0x160
> >  #define ESDHC_DLL_ENABLE               0x80000000
> > +#define ESDHC_DLL_RESET                        0x40000000
> >  #define ESDHC_DLL_FREQ_SEL             0x08000000
> >
> >  /* DLL Config 1 Register */
> > diff --git a/drivers/mmc/host/sdhci-of-esdhc.c
> b/drivers/mmc/host/sdhci-of-esdhc.c
> > index 0b45eff..90e6085 100644
> > --- a/drivers/mmc/host/sdhci-of-esdhc.c
> > +++ b/drivers/mmc/host/sdhci-of-esdhc.c
> > @@ -4,6 +4,7 @@
> >   *
> >   * Copyright (c) 2007, 2010, 2012 Freescale Semiconductor, Inc.
> >   * Copyright (c) 2009 MontaVista Software, Inc.
> > + * Copyright 2020 NXP
> >   *
> >   * Authors: Xiaobo Xie <X.Xie@freescale.com>
> >   *         Anton Vorontsov <avorontsov@ru.mvista.com>
> > @@ -19,6 +20,7 @@
> >  #include <linux/clk.h>
> >  #include <linux/ktime.h>
> >  #include <linux/dma-mapping.h>
> > +#include <linux/iopoll.h>
> >  #include <linux/mmc/host.h>
> >  #include <linux/mmc/mmc.h>
> >  #include "sdhci-pltfm.h"
> > @@ -743,6 +745,21 @@ static void esdhc_of_set_clock(struct sdhci_host
> *host, unsigned int clock)
> >                 if (host->mmc->actual_clock == MMC_HS200_MAX_DTR)
> >                         temp |= ESDHC_DLL_FREQ_SEL;
> >                 sdhci_writel(host, temp, ESDHC_DLLCFG0);
> > +
> > +               temp |= ESDHC_DLL_RESET;
> > +               sdhci_writel(host, temp, ESDHC_DLLCFG0);
> > +               udelay(1);
> > +               temp &= ~ESDHC_DLL_RESET;
> > +               sdhci_writel(host, temp, ESDHC_DLLCFG0);
> > +
> > +               /* Wait max 20 ms */
> > +               if (read_poll_timeout(sdhci_readl, temp,
> > +                                     temp &
> ESDHC_DLL_STS_SLV_LOCK,
> > +                                     10, 20000, false,
> > +                                     host, ESDHC_DLLSTAT0))
> > +                       pr_err("%s: timeout for delay chain lock.\n",
> > +                              mmc_hostname(host->mmc));
> > +
> >                 temp = sdhci_readl(host, ESDHC_TBCTL);
> >                 sdhci_writel(host, temp |
> ESDHC_HS400_WNDW_ADJUST, ESDHC_TBCTL);
> >
> > --
> > 2.7.4
> >

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

* Re: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
  2020-10-28  8:56   ` Y.b. Lu
@ 2020-10-28 10:21     ` Ulf Hansson
  2020-10-28 10:36       ` Y.b. Lu
  0 siblings, 1 reply; 6+ messages in thread
From: Ulf Hansson @ 2020-10-28 10:21 UTC (permalink / raw)
  To: Y.b. Lu; +Cc: linux-mmc, Adrian Hunter

On Wed, 28 Oct 2020 at 09:56, Y.b. Lu <yangbo.lu@nxp.com> wrote:
>
> Hi Uffe,
>
> > -----Original Message-----
> > From: Ulf Hansson <ulf.hansson@linaro.org>
> > Sent: Tuesday, October 27, 2020 9:42 PM
> > To: Y.b. Lu <yangbo.lu@nxp.com>
> > Cc: linux-mmc@vger.kernel.org; Adrian Hunter <adrian.hunter@intel.com>
> > Subject: Re: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
> >
> > On Tue, 20 Oct 2020 at 10:20, Yangbo Lu <yangbo.lu@nxp.com> wrote:
> > >
> > > For eMMC HS400 mode initialization, the DLL reset is a required step
> > > if DLL is enabled to use previously, like in bootloader.
> > > This step has not been documented in reference manual, but the RM will
> > > be fixed sooner or later.
> > >
> > > This patch is to add the step of DLL reset, and make sure delay chain
> > > locked for HS400.
> > >
> > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> >
> > Applied for next (please tell if you think this deserves to be tagged
> > for stable), thanks!
>
> Thanks!
> Please help to tag for stable. The latest u-boot just supporting eSDHC HS400, may cause kernel HS400 issue without this patch.

I have added a stable and a fixes tag. Additionally I have moved the
patch to my fixes branch.

Please have a look in my git to make sure it looks good to you.

[...]

Kind regards
Uffe

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

* RE: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
  2020-10-28 10:21     ` Ulf Hansson
@ 2020-10-28 10:36       ` Y.b. Lu
  0 siblings, 0 replies; 6+ messages in thread
From: Y.b. Lu @ 2020-10-28 10:36 UTC (permalink / raw)
  To: Ulf Hansson; +Cc: linux-mmc, Adrian Hunter

> -----Original Message-----
> From: Ulf Hansson <ulf.hansson@linaro.org>
> Sent: Wednesday, October 28, 2020 6:21 PM
> To: Y.b. Lu <yangbo.lu@nxp.com>
> Cc: linux-mmc@vger.kernel.org; Adrian Hunter <adrian.hunter@intel.com>
> Subject: Re: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400
> 
> On Wed, 28 Oct 2020 at 09:56, Y.b. Lu <yangbo.lu@nxp.com> wrote:
> >
> > Hi Uffe,
> >
> > > -----Original Message-----
> > > From: Ulf Hansson <ulf.hansson@linaro.org>
> > > Sent: Tuesday, October 27, 2020 9:42 PM
> > > To: Y.b. Lu <yangbo.lu@nxp.com>
> > > Cc: linux-mmc@vger.kernel.org; Adrian Hunter <adrian.hunter@intel.com>
> > > Subject: Re: [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for
> HS400
> > >
> > > On Tue, 20 Oct 2020 at 10:20, Yangbo Lu <yangbo.lu@nxp.com> wrote:
> > > >
> > > > For eMMC HS400 mode initialization, the DLL reset is a required step
> > > > if DLL is enabled to use previously, like in bootloader.
> > > > This step has not been documented in reference manual, but the RM will
> > > > be fixed sooner or later.
> > > >
> > > > This patch is to add the step of DLL reset, and make sure delay chain
> > > > locked for HS400.
> > > >
> > > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > >
> > > Applied for next (please tell if you think this deserves to be tagged
> > > for stable), thanks!
> >
> > Thanks!
> > Please help to tag for stable. The latest u-boot just supporting eSDHC HS400,
> may cause kernel HS400 issue without this patch.
> 
> I have added a stable and a fixes tag. Additionally I have moved the
> patch to my fixes branch.
> 
> Please have a look in my git to make sure it looks good to you.

Thank you Uffe. It looks fine.

> 
> [...]
> 
> Kind regards
> Uffe

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

end of thread, other threads:[~2020-10-29  0:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-20  8:11 [v3] mmc: sdhci-of-esdhc: make sure delay chain locked for HS400 Yangbo Lu
2020-10-27 12:34 ` Adrian Hunter
2020-10-27 13:41 ` Ulf Hansson
2020-10-28  8:56   ` Y.b. Lu
2020-10-28 10:21     ` Ulf Hansson
2020-10-28 10:36       ` Y.b. Lu

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.