All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR
@ 2014-09-16 14:13 Fabio Estevam
  2014-09-16 14:13 ` [U-Boot] [PATCH 2/2] mx25pdk: Add generic board support Fabio Estevam
  2014-09-22 14:14 ` [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR Stefano Babic
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2014-09-16 14:13 UTC (permalink / raw)
  To: u-boot

We should pass the MMC1 base address into CONFIG_SYS_FSL_ESDHC_ADDR.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx25pdk.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/configs/mx25pdk.h b/include/configs/mx25pdk.h
index d464ad9..34199af 100644
--- a/include/configs/mx25pdk.h
+++ b/include/configs/mx25pdk.h
@@ -100,7 +100,7 @@
 #define CONFIG_MMC
 #define CONFIG_GENERIC_MMC
 #define CONFIG_FSL_ESDHC
-#define CONFIG_SYS_FSL_ESDHC_ADDR	0
+#define CONFIG_SYS_FSL_ESDHC_ADDR	IMX_MMC_SDHC1_BASE
 #define CONFIG_SYS_FSL_ESDHC_NUM	1
 
 /* PMIC Configs */
-- 
1.9.1

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

* [U-Boot] [PATCH 2/2] mx25pdk: Add generic board support
  2014-09-16 14:13 [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR Fabio Estevam
@ 2014-09-16 14:13 ` Fabio Estevam
  2014-09-22 14:15   ` Stefano Babic
  2014-09-22 14:14 ` [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR Stefano Babic
  1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2014-09-16 14:13 UTC (permalink / raw)
  To: u-boot

Let's enable CONFIG_SYS_GENERIC_BOARD in order to get rid of warnings related
to generic board support is not in place.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx25pdk.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/mx25pdk.h b/include/configs/mx25pdk.h
index 34199af..c02e29b 100644
--- a/include/configs/mx25pdk.h
+++ b/include/configs/mx25pdk.h
@@ -14,6 +14,7 @@
 #define CONFIG_MX25
 #define CONFIG_SYS_TEXT_BASE		0x81200000
 #define CONFIG_MXC_GPIO
+#define CONFIG_SYS_GENERIC_BOARD
 
 #define CONFIG_SYS_TIMER_RATE		32768
 #define CONFIG_SYS_TIMER_COUNTER	\
-- 
1.9.1

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

* [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR
  2014-09-16 14:13 [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR Fabio Estevam
  2014-09-16 14:13 ` [U-Boot] [PATCH 2/2] mx25pdk: Add generic board support Fabio Estevam
@ 2014-09-22 14:14 ` Stefano Babic
  1 sibling, 0 replies; 4+ messages in thread
From: Stefano Babic @ 2014-09-22 14:14 UTC (permalink / raw)
  To: u-boot

On 16/09/2014 16:13, Fabio Estevam wrote:
> We should pass the MMC1 base address into CONFIG_SYS_FSL_ESDHC_ADDR.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---

Applied to u-boot-imx, thanks !

Best regards,
Stefano Babic


-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
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] 4+ messages in thread

* [U-Boot] [PATCH 2/2] mx25pdk: Add generic board support
  2014-09-16 14:13 ` [U-Boot] [PATCH 2/2] mx25pdk: Add generic board support Fabio Estevam
@ 2014-09-22 14:15   ` Stefano Babic
  0 siblings, 0 replies; 4+ messages in thread
From: Stefano Babic @ 2014-09-22 14:15 UTC (permalink / raw)
  To: u-boot

On 16/09/2014 16:13, Fabio Estevam wrote:
> Let's enable CONFIG_SYS_GENERIC_BOARD in order to get rid of warnings related
> to generic board support is not in place.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---

Applied to u-boot-imx, thanks !

Best regards,
Stefano Babic



-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
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] 4+ messages in thread

end of thread, other threads:[~2014-09-22 14:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-16 14:13 [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR Fabio Estevam
2014-09-16 14:13 ` [U-Boot] [PATCH 2/2] mx25pdk: Add generic board support Fabio Estevam
2014-09-22 14:15   ` Stefano Babic
2014-09-22 14:14 ` [U-Boot] [PATCH 1/2] mx25pdk: Fix CONFIG_SYS_FSL_ESDHC_ADDR Stefano Babic

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.