mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* for which OMAP platform is MCI_OMAP_HSMMC appropriate?
@ 2012-02-07 20:42 Robert P. J. Day
  2012-02-07 22:12 ` Sascha Hauer
  0 siblings, 1 reply; 5+ messages in thread
From: Robert P. J. Day @ 2012-02-07 20:42 UTC (permalink / raw)
  To: U-Boot Version 2 (barebox)


  from drivers/mci/Kconfig:

config MCI_OMAP_HSMMC
        bool "OMAP HSMMC"
        depends on ARCH_OMAP4 || ARCH_OMAP3
        help
          Enable this entry to add support to read and write SD cards on a
          OMAP4 based system.

i assume you can see the confusion. :-)

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

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

* Re: for which OMAP platform is MCI_OMAP_HSMMC appropriate?
  2012-02-07 20:42 for which OMAP platform is MCI_OMAP_HSMMC appropriate? Robert P. J. Day
@ 2012-02-07 22:12 ` Sascha Hauer
  2012-02-07 22:20   ` Robert P. J. Day
  0 siblings, 1 reply; 5+ messages in thread
From: Sascha Hauer @ 2012-02-07 22:12 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: U-Boot Version 2 (barebox)

On Tue, Feb 07, 2012 at 03:42:14PM -0500, Robert P. J. Day wrote:
> 
>   from drivers/mci/Kconfig:
> 
> config MCI_OMAP_HSMMC
>         bool "OMAP HSMMC"
>         depends on ARCH_OMAP4 || ARCH_OMAP3
>         help
>           Enable this entry to add support to read and write SD cards on a
>           OMAP4 based system.
> 
> i assume you can see the confusion. :-)

I added this driver for the OMAP4 and forgot to adjust this when I
realized that it works on OMAP3 aswell. U-boot uses this driver for
omap5 also, so we better just drop the '4' in OMAP4.

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] 5+ messages in thread

* Re: for which OMAP platform is MCI_OMAP_HSMMC appropriate?
  2012-02-07 22:12 ` Sascha Hauer
@ 2012-02-07 22:20   ` Robert P. J. Day
  2012-02-07 22:30     ` Sascha Hauer
  0 siblings, 1 reply; 5+ messages in thread
From: Robert P. J. Day @ 2012-02-07 22:20 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: U-Boot Version 2 (barebox)

On Tue, 7 Feb 2012, Sascha Hauer wrote:

> On Tue, Feb 07, 2012 at 03:42:14PM -0500, Robert P. J. Day wrote:
> >
> >   from drivers/mci/Kconfig:
> >
> > config MCI_OMAP_HSMMC
> >         bool "OMAP HSMMC"
> >         depends on ARCH_OMAP4 || ARCH_OMAP3
> >         help
> >           Enable this entry to add support to read and write SD cards on a
> >           OMAP4 based system.
> >
> > i assume you can see the confusion. :-)
>
> I added this driver for the OMAP4 and forgot to adjust this when I
> realized that it works on OMAP3 aswell. U-boot uses this driver for
> omap5 also, so we better just drop the '4' in OMAP4.

  ok, i can submit an adjusted patch but what would this depend on
then?  OMAP 3,4 and 5, or OMAP in general?  maybe you better handle
that, then, i'm not sure what the proper set of dependencies is.

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

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

* Re: for which OMAP platform is MCI_OMAP_HSMMC appropriate?
  2012-02-07 22:20   ` Robert P. J. Day
@ 2012-02-07 22:30     ` Sascha Hauer
  2012-02-07 22:31       ` Robert P. J. Day
  0 siblings, 1 reply; 5+ messages in thread
From: Sascha Hauer @ 2012-02-07 22:30 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: U-Boot Version 2 (barebox)

On Tue, Feb 07, 2012 at 05:20:12PM -0500, Robert P. J. Day wrote:
> On Tue, 7 Feb 2012, Sascha Hauer wrote:
> 
> > On Tue, Feb 07, 2012 at 03:42:14PM -0500, Robert P. J. Day wrote:
> > >
> > >   from drivers/mci/Kconfig:
> > >
> > > config MCI_OMAP_HSMMC
> > >         bool "OMAP HSMMC"
> > >         depends on ARCH_OMAP4 || ARCH_OMAP3
> > >         help
> > >           Enable this entry to add support to read and write SD cards on a
> > >           OMAP4 based system.
> > >
> > > i assume you can see the confusion. :-)
> >
> > I added this driver for the OMAP4 and forgot to adjust this when I
> > realized that it works on OMAP3 aswell. U-boot uses this driver for
> > omap5 also, so we better just drop the '4' in OMAP4.
> 
>   ok, i can submit an adjusted patch but what would this depend on
> then?  OMAP 3,4 and 5, or OMAP in general?  maybe you better handle
> that, then, i'm not sure what the proper set of dependencies is.

We don't have omap5 support, so for now it's enough to fix the help
text. We can come back to the dependencies when omap5 support is added.

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] 5+ messages in thread

* Re: for which OMAP platform is MCI_OMAP_HSMMC appropriate?
  2012-02-07 22:30     ` Sascha Hauer
@ 2012-02-07 22:31       ` Robert P. J. Day
  0 siblings, 0 replies; 5+ messages in thread
From: Robert P. J. Day @ 2012-02-07 22:31 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: U-Boot Version 2 (barebox)

On Tue, 7 Feb 2012, Sascha Hauer wrote:

> On Tue, Feb 07, 2012 at 05:20:12PM -0500, Robert P. J. Day wrote:
> > On Tue, 7 Feb 2012, Sascha Hauer wrote:
> >
> > > On Tue, Feb 07, 2012 at 03:42:14PM -0500, Robert P. J. Day wrote:
> > > >
> > > >   from drivers/mci/Kconfig:
> > > >
> > > > config MCI_OMAP_HSMMC
> > > >         bool "OMAP HSMMC"
> > > >         depends on ARCH_OMAP4 || ARCH_OMAP3
> > > >         help
> > > >           Enable this entry to add support to read and write SD cards on a
> > > >           OMAP4 based system.
> > > >
> > > > i assume you can see the confusion. :-)
> > >
> > > I added this driver for the OMAP4 and forgot to adjust this when I
> > > realized that it works on OMAP3 aswell. U-boot uses this driver for
> > > omap5 also, so we better just drop the '4' in OMAP4.
> >
> >   ok, i can submit an adjusted patch but what would this depend on
> > then?  OMAP 3,4 and 5, or OMAP in general?  maybe you better handle
> > that, then, i'm not sure what the proper set of dependencies is.
>
> We don't have omap5 support, so for now it's enough to fix the help
> text. We can come back to the dependencies when omap5 support is added.

  ok, then the patch i posted a while back should be fine for now.

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

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

end of thread, other threads:[~2012-02-07 22:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-07 20:42 for which OMAP platform is MCI_OMAP_HSMMC appropriate? Robert P. J. Day
2012-02-07 22:12 ` Sascha Hauer
2012-02-07 22:20   ` Robert P. J. Day
2012-02-07 22:30     ` Sascha Hauer
2012-02-07 22:31       ` Robert P. J. Day

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