* [PATCH] ARM i.MX51 babbage: add mci1
@ 2012-06-25 12:05 Sascha Hauer
2012-06-25 16:39 ` Robert Schwebel
0 siblings, 1 reply; 4+ messages in thread
From: Sascha Hauer @ 2012-06-25 12:05 UTC (permalink / raw)
To: barebox
The iomuxer is already initialized, only need to add the device.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
arch/arm/boards/freescale-mx51-pdk/board.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/boards/freescale-mx51-pdk/board.c b/arch/arm/boards/freescale-mx51-pdk/board.c
index 0bb2ffe..dc0d003 100644
--- a/arch/arm/boards/freescale-mx51-pdk/board.c
+++ b/arch/arm/boards/freescale-mx51-pdk/board.c
@@ -246,6 +246,7 @@ static int f3s_devices_init(void)
imx51_iim_register_fec_ethaddr();
imx51_add_fec(&fec_info);
imx51_add_mmc0(NULL);
+ imx51_add_mmc1(NULL);
armlinux_set_bootparams((void *)0x90000100);
armlinux_set_architecture(MACH_TYPE_MX51_BABBAGE);
--
1.7.10
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM i.MX51 babbage: add mci1
2012-06-25 12:05 [PATCH] ARM i.MX51 babbage: add mci1 Sascha Hauer
@ 2012-06-25 16:39 ` Robert Schwebel
2012-06-25 17:30 ` Sascha Hauer
0 siblings, 1 reply; 4+ messages in thread
From: Robert Schwebel @ 2012-06-25 16:39 UTC (permalink / raw)
To: Sascha Hauer; +Cc: barebox
On Mon, Jun 25, 2012 at 02:05:37PM +0200, Sascha Hauer wrote:
> The iomuxer is already initialized, only need to add the device.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> arch/arm/boards/freescale-mx51-pdk/board.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/boards/freescale-mx51-pdk/board.c b/arch/arm/boards/freescale-mx51-pdk/board.c
> index 0bb2ffe..dc0d003 100644
> --- a/arch/arm/boards/freescale-mx51-pdk/board.c
> +++ b/arch/arm/boards/freescale-mx51-pdk/board.c
> @@ -246,6 +246,7 @@ static int f3s_devices_init(void)
> imx51_iim_register_fec_ethaddr();
> imx51_add_fec(&fec_info);
> imx51_add_mmc0(NULL);
> + imx51_add_mmc1(NULL);
Subject says mci1, this says mmc1...?
>
> armlinux_set_bootparams((void *)0x90000100);
> armlinux_set_architecture(MACH_TYPE_MX51_BABBAGE);
> --
> 1.7.10
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM i.MX51 babbage: add mci1
2012-06-25 16:39 ` Robert Schwebel
@ 2012-06-25 17:30 ` Sascha Hauer
2012-06-25 18:11 ` Robert Schwebel
0 siblings, 1 reply; 4+ messages in thread
From: Sascha Hauer @ 2012-06-25 17:30 UTC (permalink / raw)
To: Robert Schwebel; +Cc: barebox
On Mon, Jun 25, 2012 at 06:39:30PM +0200, Robert Schwebel wrote:
> On Mon, Jun 25, 2012 at 02:05:37PM +0200, Sascha Hauer wrote:
> > The iomuxer is already initialized, only need to add the device.
> >
> > Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> > ---
> > arch/arm/boards/freescale-mx51-pdk/board.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/arch/arm/boards/freescale-mx51-pdk/board.c b/arch/arm/boards/freescale-mx51-pdk/board.c
> > index 0bb2ffe..dc0d003 100644
> > --- a/arch/arm/boards/freescale-mx51-pdk/board.c
> > +++ b/arch/arm/boards/freescale-mx51-pdk/board.c
> > @@ -246,6 +246,7 @@ static int f3s_devices_init(void)
> > imx51_iim_register_fec_ethaddr();
> > imx51_add_fec(&fec_info);
> > imx51_add_mmc0(NULL);
> > + imx51_add_mmc1(NULL);
>
> Subject says mci1, this says mmc1...?
Yeah, because barebox names the mmc/sd framework mci.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM i.MX51 babbage: add mci1
2012-06-25 17:30 ` Sascha Hauer
@ 2012-06-25 18:11 ` Robert Schwebel
0 siblings, 0 replies; 4+ messages in thread
From: Robert Schwebel @ 2012-06-25 18:11 UTC (permalink / raw)
To: Sascha Hauer; +Cc: barebox
On Mon, Jun 25, 2012 at 07:30:41PM +0200, Sascha Hauer wrote:
> On Mon, Jun 25, 2012 at 06:39:30PM +0200, Robert Schwebel wrote:
> > On Mon, Jun 25, 2012 at 02:05:37PM +0200, Sascha Hauer wrote:
> > > The iomuxer is already initialized, only need to add the device.
> > >
> > > Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> > > ---
> > > arch/arm/boards/freescale-mx51-pdk/board.c | 1 +
> > > 1 file changed, 1 insertion(+)
> > >
> > > diff --git a/arch/arm/boards/freescale-mx51-pdk/board.c b/arch/arm/boards/freescale-mx51-pdk/board.c
> > > index 0bb2ffe..dc0d003 100644
> > > --- a/arch/arm/boards/freescale-mx51-pdk/board.c
> > > +++ b/arch/arm/boards/freescale-mx51-pdk/board.c
> > > @@ -246,6 +246,7 @@ static int f3s_devices_init(void)
> > > imx51_iim_register_fec_ethaddr();
> > > imx51_add_fec(&fec_info);
> > > imx51_add_mmc0(NULL);
> > > + imx51_add_mmc1(NULL);
> >
> > Subject says mci1, this says mmc1...?
>
> Yeah, because barebox names the mmc/sd framework mci.
Ah, ok.
rsc
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-06-25 18:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-25 12:05 [PATCH] ARM i.MX51 babbage: add mci1 Sascha Hauer
2012-06-25 16:39 ` Robert Schwebel
2012-06-25 17:30 ` Sascha Hauer
2012-06-25 18:11 ` Robert Schwebel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox