All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion
@ 2019-12-06 16:24 Igor Opaniuk
  2019-12-06 16:39 ` Igor Opaniuk
  2019-12-28 10:48 ` sbabic at denx.de
  0 siblings, 2 replies; 7+ messages in thread
From: Igor Opaniuk @ 2019-12-06 16:24 UTC (permalink / raw)
  To: u-boot

From: Igor Opaniuk <igor.opaniuk@toradex.com>

Not all CONFIG_FSL_ESDHC defines were properly replaced with
CONFIG_FSL_ESDHC_IMX, which broke U-boot proper booting on
Colibri iMX6 SoMs.

U-boot is stuck after this message:
Commercial temperature grade DDR3 timings, 64bit bus width.
Trying to boot from MMC1

Fixes: e37ac717d7("Convert to use fsl_esdhc_imx for i.MX platforms")
Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
---

 board/toradex/colibri_imx6/colibri_imx6.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/board/toradex/colibri_imx6/colibri_imx6.c b/board/toradex/colibri_imx6/colibri_imx6.c
index ad40b589c1..44173dde1f 100644
--- a/board/toradex/colibri_imx6/colibri_imx6.c
+++ b/board/toradex/colibri_imx6/colibri_imx6.c
@@ -83,7 +83,7 @@ iomux_v3_cfg_t const uart1_pads[] = {
 	MX6_PAD_CSI0_DAT11__UART1_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL),
 };
 
-#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
 /* Colibri MMC */
 iomux_v3_cfg_t const usdhc1_pads[] = {
 	MX6_PAD_SD1_CLK__SD1_CLK    | MUX_PAD_CTRL(USDHC_PAD_CTRL),
@@ -304,7 +304,7 @@ int board_ehci_hcd_init(int port)
 }
 #endif
 
-#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
 /* use the following sequence: eMMC, MMC */
 struct fsl_esdhc_cfg usdhc_cfg[CONFIG_SYS_FSL_USDHC_NUM] = {
 	{USDHC3_BASE_ADDR},
-- 
2.17.1

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

* [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion
  2019-12-06 16:24 [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion Igor Opaniuk
@ 2019-12-06 16:39 ` Igor Opaniuk
  2019-12-06 17:23   ` Lukasz Majewski
  2019-12-28 10:48 ` sbabic at denx.de
  1 sibling, 1 reply; 7+ messages in thread
From: Igor Opaniuk @ 2019-12-06 16:39 UTC (permalink / raw)
  To: u-boot

Hi Stefano

On Fri, Dec 6, 2019 at 6:24 PM Igor Opaniuk <igor.opaniuk@gmail.com> wrote:
>
> From: Igor Opaniuk <igor.opaniuk@toradex.com>
>
> Not all CONFIG_FSL_ESDHC defines were properly replaced with
> CONFIG_FSL_ESDHC_IMX, which broke U-boot proper booting on
> Colibri iMX6 SoMs.
>
> U-boot is stuck after this message:
> Commercial temperature grade DDR3 timings, 64bit bus width.
> Trying to boot from MMC1
>
> Fixes: e37ac717d7("Convert to use fsl_esdhc_imx for i.MX platforms")
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> ---
>
>  board/toradex/colibri_imx6/colibri_imx6.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/board/toradex/colibri_imx6/colibri_imx6.c b/board/toradex/colibri_imx6/colibri_imx6.c
> index ad40b589c1..44173dde1f 100644
> --- a/board/toradex/colibri_imx6/colibri_imx6.c
> +++ b/board/toradex/colibri_imx6/colibri_imx6.c
> @@ -83,7 +83,7 @@ iomux_v3_cfg_t const uart1_pads[] = {
>         MX6_PAD_CSI0_DAT11__UART1_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL),
>  };
>
> -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
>  /* Colibri MMC */
>  iomux_v3_cfg_t const usdhc1_pads[] = {
>         MX6_PAD_SD1_CLK__SD1_CLK    | MUX_PAD_CTRL(USDHC_PAD_CTRL),
> @@ -304,7 +304,7 @@ int board_ehci_hcd_init(int port)
>  }
>  #endif
>
> -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
>  /* use the following sequence: eMMC, MMC */
>  struct fsl_esdhc_cfg usdhc_cfg[CONFIG_SYS_FSL_USDHC_NUM] = {
>         {USDHC3_BASE_ADDR},
> --
> 2.17.1
>

I've just found the same fix [1] but from Ricardo with Awaiting upstream status
in patchwork (I thought that he has fixed just Apalis iMX6), but seems
the patch was
lost somewhere, as I can not find it nor in u-boot-imx/next neither
in u-boot-imx/master branches.

[1] https://patchwork.ozlabs.org/patch/1157059/

-- 
Best regards - Freundliche Grüsse - Meilleures salutations

Senior Development Engineer,
Igor Opaniuk

Toradex AG
Altsagenstrasse 5 | 6048 Horw/Luzern | Switzerland | T: +41 41 500 48
00 (main line)

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

* [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion
  2019-12-06 16:39 ` Igor Opaniuk
@ 2019-12-06 17:23   ` Lukasz Majewski
  2019-12-06 18:59     ` Tom Rini
  0 siblings, 1 reply; 7+ messages in thread
From: Lukasz Majewski @ 2019-12-06 17:23 UTC (permalink / raw)
  To: u-boot

Hi Igor,

> Hi Stefano
> 
> On Fri, Dec 6, 2019 at 6:24 PM Igor Opaniuk <igor.opaniuk@gmail.com>
> wrote:
> >
> > From: Igor Opaniuk <igor.opaniuk@toradex.com>
> >
> > Not all CONFIG_FSL_ESDHC defines were properly replaced with
> > CONFIG_FSL_ESDHC_IMX, which broke U-boot proper booting on
> > Colibri iMX6 SoMs.
> >
> > U-boot is stuck after this message:
> > Commercial temperature grade DDR3 timings, 64bit bus width.
> > Trying to boot from MMC1
> >
> > Fixes: e37ac717d7("Convert to use fsl_esdhc_imx for i.MX platforms")
> > Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> > ---
> >
> >  board/toradex/colibri_imx6/colibri_imx6.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/board/toradex/colibri_imx6/colibri_imx6.c
> > b/board/toradex/colibri_imx6/colibri_imx6.c index
> > ad40b589c1..44173dde1f 100644 ---
> > a/board/toradex/colibri_imx6/colibri_imx6.c +++
> > b/board/toradex/colibri_imx6/colibri_imx6.c @@ -83,7 +83,7 @@
> > iomux_v3_cfg_t const uart1_pads[] = {
> > MX6_PAD_CSI0_DAT11__UART1_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL), };
> >
> > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> >  /* Colibri MMC */
> >  iomux_v3_cfg_t const usdhc1_pads[] = {
> >         MX6_PAD_SD1_CLK__SD1_CLK    | MUX_PAD_CTRL(USDHC_PAD_CTRL),
> > @@ -304,7 +304,7 @@ int board_ehci_hcd_init(int port)
> >  }
> >  #endif
> >
> > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> >  /* use the following sequence: eMMC, MMC */
> >  struct fsl_esdhc_cfg usdhc_cfg[CONFIG_SYS_FSL_USDHC_NUM] = {
> >         {USDHC3_BASE_ADDR},
> > --
> > 2.17.1
> >  
> 
> I've just found the same fix [1] but from Ricardo with Awaiting
> upstream status in patchwork (I thought that he has fixed just Apalis
> iMX6), but seems the patch was
> lost somewhere, as I can not find it nor in u-boot-imx/next neither
> in u-boot-imx/master branches.

Thanks for providing the fix (at least for the Toradex boards)

And I do guess that more i.MX6 boards are affected ...

> 
> [1] https://patchwork.ozlabs.org/patch/1157059/
> 


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma at denx.de
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20191206/34477b39/attachment.sig>

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

* [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion
  2019-12-06 17:23   ` Lukasz Majewski
@ 2019-12-06 18:59     ` Tom Rini
  2019-12-09 15:03       ` Oliver Graute
  0 siblings, 1 reply; 7+ messages in thread
From: Tom Rini @ 2019-12-06 18:59 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 06, 2019 at 06:23:09PM +0100, Lukasz Majewski wrote:
> Hi Igor,
> 
> > Hi Stefano
> > 
> > On Fri, Dec 6, 2019 at 6:24 PM Igor Opaniuk <igor.opaniuk@gmail.com>
> > wrote:
> > >
> > > From: Igor Opaniuk <igor.opaniuk@toradex.com>
> > >
> > > Not all CONFIG_FSL_ESDHC defines were properly replaced with
> > > CONFIG_FSL_ESDHC_IMX, which broke U-boot proper booting on
> > > Colibri iMX6 SoMs.
> > >
> > > U-boot is stuck after this message:
> > > Commercial temperature grade DDR3 timings, 64bit bus width.
> > > Trying to boot from MMC1
> > >
> > > Fixes: e37ac717d7("Convert to use fsl_esdhc_imx for i.MX platforms")
> > > Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> > > ---
> > >
> > >  board/toradex/colibri_imx6/colibri_imx6.c | 4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/board/toradex/colibri_imx6/colibri_imx6.c
> > > b/board/toradex/colibri_imx6/colibri_imx6.c index
> > > ad40b589c1..44173dde1f 100644 ---
> > > a/board/toradex/colibri_imx6/colibri_imx6.c +++
> > > b/board/toradex/colibri_imx6/colibri_imx6.c @@ -83,7 +83,7 @@
> > > iomux_v3_cfg_t const uart1_pads[] = {
> > > MX6_PAD_CSI0_DAT11__UART1_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL), };
> > >
> > > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> > >  /* Colibri MMC */
> > >  iomux_v3_cfg_t const usdhc1_pads[] = {
> > >         MX6_PAD_SD1_CLK__SD1_CLK    | MUX_PAD_CTRL(USDHC_PAD_CTRL),
> > > @@ -304,7 +304,7 @@ int board_ehci_hcd_init(int port)
> > >  }
> > >  #endif
> > >
> > > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> > >  /* use the following sequence: eMMC, MMC */
> > >  struct fsl_esdhc_cfg usdhc_cfg[CONFIG_SYS_FSL_USDHC_NUM] = {
> > >         {USDHC3_BASE_ADDR},
> > > --
> > > 2.17.1
> > >  
> > 
> > I've just found the same fix [1] but from Ricardo with Awaiting
> > upstream status in patchwork (I thought that he has fixed just Apalis
> > iMX6), but seems the patch was
> > lost somewhere, as I can not find it nor in u-boot-imx/next neither
> > in u-boot-imx/master branches.
> 
> Thanks for providing the fix (at least for the Toradex boards)
> 
> And I do guess that more i.MX6 boards are affected ...

I think there's just one other.  The imx8qm_rom7720_a1 references
CONFIG_FSL_ESDHC still, but I don't see any other i.MX8 platforms doing
anything with the symbol to compare with.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20191206/9b1d842c/attachment.sig>

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

* [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion
  2019-12-06 18:59     ` Tom Rini
@ 2019-12-09 15:03       ` Oliver Graute
  2019-12-09 15:07         ` Tom Rini
  0 siblings, 1 reply; 7+ messages in thread
From: Oliver Graute @ 2019-12-09 15:03 UTC (permalink / raw)
  To: u-boot

On 06/12/19, Tom Rini wrote:
> On Fri, Dec 06, 2019 at 06:23:09PM +0100, Lukasz Majewski wrote:
> > Hi Igor,
> > 
> > > Hi Stefano
> > > 
> > > On Fri, Dec 6, 2019 at 6:24 PM Igor Opaniuk <igor.opaniuk@gmail.com>
> > > wrote:
> > > >
> > > > From: Igor Opaniuk <igor.opaniuk@toradex.com>
> > > >
> > > > Not all CONFIG_FSL_ESDHC defines were properly replaced with
> > > > CONFIG_FSL_ESDHC_IMX, which broke U-boot proper booting on
> > > > Colibri iMX6 SoMs.
> > > >
> > > > U-boot is stuck after this message:
> > > > Commercial temperature grade DDR3 timings, 64bit bus width.
> > > > Trying to boot from MMC1
> > > >
> > > > Fixes: e37ac717d7("Convert to use fsl_esdhc_imx for i.MX platforms")
> > > > Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> > > > ---
> > > >
> > > >  board/toradex/colibri_imx6/colibri_imx6.c | 4 ++--
> > > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/board/toradex/colibri_imx6/colibri_imx6.c
> > > > b/board/toradex/colibri_imx6/colibri_imx6.c index
> > > > ad40b589c1..44173dde1f 100644 ---
> > > > a/board/toradex/colibri_imx6/colibri_imx6.c +++
> > > > b/board/toradex/colibri_imx6/colibri_imx6.c @@ -83,7 +83,7 @@
> > > > iomux_v3_cfg_t const uart1_pads[] = {
> > > > MX6_PAD_CSI0_DAT11__UART1_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL), };
> > > >
> > > > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > > > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> > > >  /* Colibri MMC */
> > > >  iomux_v3_cfg_t const usdhc1_pads[] = {
> > > >         MX6_PAD_SD1_CLK__SD1_CLK    | MUX_PAD_CTRL(USDHC_PAD_CTRL),
> > > > @@ -304,7 +304,7 @@ int board_ehci_hcd_init(int port)
> > > >  }
> > > >  #endif
> > > >
> > > > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > > > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> > > >  /* use the following sequence: eMMC, MMC */
> > > >  struct fsl_esdhc_cfg usdhc_cfg[CONFIG_SYS_FSL_USDHC_NUM] = {
> > > >         {USDHC3_BASE_ADDR},
> > > > --
> > > > 2.17.1
> > > >  
> > > 
> > > I've just found the same fix [1] but from Ricardo with Awaiting
> > > upstream status in patchwork (I thought that he has fixed just Apalis
> > > iMX6), but seems the patch was
> > > lost somewhere, as I can not find it nor in u-boot-imx/next neither
> > > in u-boot-imx/master branches.
> > 
> > Thanks for providing the fix (at least for the Toradex boards)
> > 
> > And I do guess that more i.MX6 boards are affected ...
> 
> I think there's just one other.  The imx8qm_rom7720_a1 references
> CONFIG_FSL_ESDHC still, but I don't see any other i.MX8 platforms doing
> anything with the symbol to compare with.

thx for that hint, so I must replace CONFIG_FSL_ESDHC with
CONFIG_FSL_ESDHC_IMX in board/advantech/imx8qm_rom7720_a1/spl.c ?

Best regards,

Oliver

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

* [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion
  2019-12-09 15:03       ` Oliver Graute
@ 2019-12-09 15:07         ` Tom Rini
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2019-12-09 15:07 UTC (permalink / raw)
  To: u-boot

On Mon, Dec 09, 2019 at 03:03:48PM +0000, Oliver Graute wrote:
> On 06/12/19, Tom Rini wrote:
> > On Fri, Dec 06, 2019 at 06:23:09PM +0100, Lukasz Majewski wrote:
> > > Hi Igor,
> > > 
> > > > Hi Stefano
> > > > 
> > > > On Fri, Dec 6, 2019 at 6:24 PM Igor Opaniuk <igor.opaniuk@gmail.com>
> > > > wrote:
> > > > >
> > > > > From: Igor Opaniuk <igor.opaniuk@toradex.com>
> > > > >
> > > > > Not all CONFIG_FSL_ESDHC defines were properly replaced with
> > > > > CONFIG_FSL_ESDHC_IMX, which broke U-boot proper booting on
> > > > > Colibri iMX6 SoMs.
> > > > >
> > > > > U-boot is stuck after this message:
> > > > > Commercial temperature grade DDR3 timings, 64bit bus width.
> > > > > Trying to boot from MMC1
> > > > >
> > > > > Fixes: e37ac717d7("Convert to use fsl_esdhc_imx for i.MX platforms")
> > > > > Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
> > > > > ---
> > > > >
> > > > >  board/toradex/colibri_imx6/colibri_imx6.c | 4 ++--
> > > > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > > >
> > > > > diff --git a/board/toradex/colibri_imx6/colibri_imx6.c
> > > > > b/board/toradex/colibri_imx6/colibri_imx6.c index
> > > > > ad40b589c1..44173dde1f 100644 ---
> > > > > a/board/toradex/colibri_imx6/colibri_imx6.c +++
> > > > > b/board/toradex/colibri_imx6/colibri_imx6.c @@ -83,7 +83,7 @@
> > > > > iomux_v3_cfg_t const uart1_pads[] = {
> > > > > MX6_PAD_CSI0_DAT11__UART1_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL), };
> > > > >
> > > > > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > > > > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> > > > >  /* Colibri MMC */
> > > > >  iomux_v3_cfg_t const usdhc1_pads[] = {
> > > > >         MX6_PAD_SD1_CLK__SD1_CLK    | MUX_PAD_CTRL(USDHC_PAD_CTRL),
> > > > > @@ -304,7 +304,7 @@ int board_ehci_hcd_init(int port)
> > > > >  }
> > > > >  #endif
> > > > >
> > > > > -#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
> > > > > +#if defined(CONFIG_FSL_ESDHC_IMX) && defined(CONFIG_SPL_BUILD)
> > > > >  /* use the following sequence: eMMC, MMC */
> > > > >  struct fsl_esdhc_cfg usdhc_cfg[CONFIG_SYS_FSL_USDHC_NUM] = {
> > > > >         {USDHC3_BASE_ADDR},
> > > > > --
> > > > > 2.17.1
> > > > >  
> > > > 
> > > > I've just found the same fix [1] but from Ricardo with Awaiting
> > > > upstream status in patchwork (I thought that he has fixed just Apalis
> > > > iMX6), but seems the patch was
> > > > lost somewhere, as I can not find it nor in u-boot-imx/next neither
> > > > in u-boot-imx/master branches.
> > > 
> > > Thanks for providing the fix (at least for the Toradex boards)
> > > 
> > > And I do guess that more i.MX6 boards are affected ...
> > 
> > I think there's just one other.  The imx8qm_rom7720_a1 references
> > CONFIG_FSL_ESDHC still, but I don't see any other i.MX8 platforms doing
> > anything with the symbol to compare with.
> 
> thx for that hint, so I must replace CONFIG_FSL_ESDHC with
> CONFIG_FSL_ESDHC_IMX in board/advantech/imx8qm_rom7720_a1/spl.c ?

Yes, and confirm that everything works as expected for the appropriate
use cases.  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20191209/1965ff24/attachment.sig>

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

* [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion
  2019-12-06 16:24 [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion Igor Opaniuk
  2019-12-06 16:39 ` Igor Opaniuk
@ 2019-12-28 10:48 ` sbabic at denx.de
  1 sibling, 0 replies; 7+ messages in thread
From: sbabic at denx.de @ 2019-12-28 10:48 UTC (permalink / raw)
  To: u-boot

> From: Igor Opaniuk <igor.opaniuk@toradex.com>
> Not all CONFIG_FSL_ESDHC defines were properly replaced with
> CONFIG_FSL_ESDHC_IMX, which broke U-boot proper booting on
> Colibri iMX6 SoMs.
> U-boot is stuck after this message:
> Commercial temperature grade DDR3 timings, 64bit bus width.
> Trying to boot from MMC1
> Fixes: e37ac717d7("Convert to use fsl_esdhc_imx for i.MX platforms")
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

end of thread, other threads:[~2019-12-28 10:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-06 16:24 [RESEND PATCH v1] colibri_imx6: fix broken fsl_esdhc_imx conversion Igor Opaniuk
2019-12-06 16:39 ` Igor Opaniuk
2019-12-06 17:23   ` Lukasz Majewski
2019-12-06 18:59     ` Tom Rini
2019-12-09 15:03       ` Oliver Graute
2019-12-09 15:07         ` Tom Rini
2019-12-28 10:48 ` sbabic at denx.de

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.