diff mbox

[U-Boot,1/1] mmc: omap: enable high capacity

Message ID 1314283611-22274-1-git-send-email-balajitk@ti.com
State Accepted
Commit ecd9af88ac70dec7f0ea33613da2f889cf19e433
Headers show

Commit Message

balajitk@ti.com Aug. 25, 2011, 2:46 p.m. UTC
Enable high capacity to host capability.
Fixes eMMC detection on boot from MMC/SD card.

Signed-off-by: Balaji T K <balajitk@ti.com>
Signed-off-by: Aneesh V <aneesh@ti.com>
---
 drivers/mmc/omap_hsmmc.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

Comments

Andy Fleming Sept. 3, 2011, 8:19 p.m. UTC | #1
Isn't high-capacity capability also connected to board capabilities?
Is it safe to enable this across all users of this driver?

Andy

On Thu, Aug 25, 2011 at 9:46 AM, Balaji T K <balajitk@ti.com> wrote:
> Enable high capacity to host capability.
> Fixes eMMC detection on boot from MMC/SD card.
>
> Signed-off-by: Balaji T K <balajitk@ti.com>
> Signed-off-by: Aneesh V <aneesh@ti.com>
> ---
>  drivers/mmc/omap_hsmmc.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
> index ef12ecd..6627905 100644
> --- a/drivers/mmc/omap_hsmmc.c
> +++ b/drivers/mmc/omap_hsmmc.c
> @@ -461,7 +461,8 @@ int omap_mmc_init(int dev_index)
>                return 1;
>        }
>        mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
> -       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
> +       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS |
> +                               MMC_MODE_HC;
>
>        mmc->f_min = 400000;
>        mmc->f_max = 52000000;
> --
> 1.7.0.4
>
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
balajitk@ti.com Sept. 8, 2011, 1:08 p.m. UTC | #2
On Sun, Sep 4, 2011 at 1:49 AM, Andy Fleming <afleming@gmail.com> wrote:
> Isn't high-capacity capability also connected to board capabilities?
> Is it safe to enable this across all users of this driver?

Hi,
Host contoller IP supports High capacity.
If High capacity card is connected to the board, then this flag is needed for
card detection. This patch is tested on OMAP4430 platform.
Haven't tested on omap3 but should be safe.

>
> Andy
>
> On Thu, Aug 25, 2011 at 9:46 AM, Balaji T K <balajitk@ti.com> wrote:
>> Enable high capacity to host capability.
>> Fixes eMMC detection on boot from MMC/SD card.
>>
>> Signed-off-by: Balaji T K <balajitk@ti.com>
>> Signed-off-by: Aneesh V <aneesh@ti.com>
>> ---
>>  drivers/mmc/omap_hsmmc.c |    3 ++-
>>  1 files changed, 2 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
>> index ef12ecd..6627905 100644
>> --- a/drivers/mmc/omap_hsmmc.c
>> +++ b/drivers/mmc/omap_hsmmc.c
>> @@ -461,7 +461,8 @@ int omap_mmc_init(int dev_index)
>>                return 1;
>>        }
>>        mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
>> -       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
>> +       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS |
>> +                               MMC_MODE_HC;
>>
>>        mmc->f_min = 400000;
>>        mmc->f_max = 52000000;
>> --
>> 1.7.0.4
>>
>> _______________________________________________
>> U-Boot mailing list
>> U-Boot@lists.denx.de
>> http://lists.denx.de/mailman/listinfo/u-boot
>>
>
Simon Glass Sept. 8, 2011, 8:14 p.m. UTC | #3
On Thu, Aug 25, 2011 at 7:46 AM, Balaji T K <balajitk@ti.com> wrote:
> Enable high capacity to host capability.
> Fixes eMMC detection on boot from MMC/SD card.
>
> Signed-off-by: Balaji T K <balajitk@ti.com>
> Signed-off-by: Aneesh V <aneesh@ti.com>
> ---
>  drivers/mmc/omap_hsmmc.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
> index ef12ecd..6627905 100644
> --- a/drivers/mmc/omap_hsmmc.c
> +++ b/drivers/mmc/omap_hsmmc.c
> @@ -461,7 +461,8 @@ int omap_mmc_init(int dev_index)
>                return 1;
>        }
>        mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
> -       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
> +       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS |
> +                               MMC_MODE_HC;
>
>        mmc->f_min = 400000;
>        mmc->f_max = 52000000;
> --

I tested a similar patch on a Tegra2 system, so:

Acked-by: Simon Glass <sjg@chromium.org>

> 1.7.0.4
>
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
Sandeep Paulraj Sept. 14, 2011, 2:13 p.m. UTC | #4
> 
> On Thu, Aug 25, 2011 at 7:46 AM, Balaji T K <balajitk@ti.com> wrote:
> > Enable high capacity to host capability.
> > Fixes eMMC detection on boot from MMC/SD card.
> >
> > Signed-off-by: Balaji T K <balajitk@ti.com>
> > Signed-off-by: Aneesh V <aneesh@ti.com>
> > ---
> >  drivers/mmc/omap_hsmmc.c |    3 ++-
> >  1 files changed, 2 insertions(+), 1 deletions(-)
> >
> > diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
> > index ef12ecd..6627905 100644
> > --- a/drivers/mmc/omap_hsmmc.c
> > +++ b/drivers/mmc/omap_hsmmc.c
> > @@ -461,7 +461,8 @@ int omap_mmc_init(int dev_index)
> >                return 1;
> >        }
> >        mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
> > -       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz |
> MMC_MODE_HS;
> > +       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS
> |
> > +                               MMC_MODE_HC;
> >
> >        mmc->f_min = 400000;
> >        mmc->f_max = 52000000;
> > --
> 
> I tested a similar patch on a Tegra2 system, so:
> 
> Acked-by: Simon Glass <sjg@chromium.org>
> 

If it is OK with Andy, I can apply this to u-boot-ti.

--Sandeep
balajitk@ti.com Sept. 15, 2011, 2:51 p.m. UTC | #5
On Wed, Sep 14, 2011 at 7:43 PM, Paulraj, Sandeep <s-paulraj@ti.com> wrote:
>
>
>>
>> On Thu, Aug 25, 2011 at 7:46 AM, Balaji T K <balajitk@ti.com> wrote:
>> > Enable high capacity to host capability.
>> > Fixes eMMC detection on boot from MMC/SD card.
>> >
>> > Signed-off-by: Balaji T K <balajitk@ti.com>
>> > Signed-off-by: Aneesh V <aneesh@ti.com>
>> > ---
>> >  drivers/mmc/omap_hsmmc.c |    3 ++-
>> >  1 files changed, 2 insertions(+), 1 deletions(-)
>> >
>> > diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
>> > index ef12ecd..6627905 100644
>> > --- a/drivers/mmc/omap_hsmmc.c
>> > +++ b/drivers/mmc/omap_hsmmc.c
>> > @@ -461,7 +461,8 @@ int omap_mmc_init(int dev_index)
>> >                return 1;
>> >        }
>> >        mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
>> > -       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz |
>> MMC_MODE_HS;
>> > +       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS
>> |
>> > +                               MMC_MODE_HC;
>> >
>> >        mmc->f_min = 400000;
>> >        mmc->f_max = 52000000;
>> > --
>>
>> I tested a similar patch on a Tegra2 system, so:
>>
>> Acked-by: Simon Glass <sjg@chromium.org>
>>
>
> If it is OK with Andy, I can apply this to u-boot-ti.
>
> --Sandeep
>
Hi Andy,

I tested this on OMAP3 beagle board with 512MB and 4GB card.
mmc read and write is OK.  Can you pull this patch ?
Sandeep Paulraj Sept. 15, 2011, 3:06 p.m. UTC | #6
> >
> >
> >>
> >> On Thu, Aug 25, 2011 at 7:46 AM, Balaji T K <balajitk@ti.com> wrote:
> >> > Enable high capacity to host capability.
> >> > Fixes eMMC detection on boot from MMC/SD card.
> >> >
> >> > Signed-off-by: Balaji T K <balajitk@ti.com>
> >> > Signed-off-by: Aneesh V <aneesh@ti.com>
> >> > ---
> >> >  drivers/mmc/omap_hsmmc.c |    3 ++-
> >> >  1 files changed, 2 insertions(+), 1 deletions(-)
> >> >
> >> > diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
> >> > index ef12ecd..6627905 100644
> >> > --- a/drivers/mmc/omap_hsmmc.c
> >> > +++ b/drivers/mmc/omap_hsmmc.c
> >> > @@ -461,7 +461,8 @@ int omap_mmc_init(int dev_index)
> >> >                return 1;
> >> >        }
> >> >        mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 |
> MMC_VDD_165_195;
> >> > -       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz |
> >> MMC_MODE_HS;
> >> > +       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz |
> MMC_MODE_HS
> >> |
> >> > +                               MMC_MODE_HC;
> >> >
> >> >        mmc->f_min = 400000;
> >> >        mmc->f_max = 52000000;
> >> > --
> >>
> >> I tested a similar patch on a Tegra2 system, so:
> >>
> >> Acked-by: Simon Glass <sjg@chromium.org>
> >>
> >
> > If it is OK with Andy, I can apply this to u-boot-ti.
> >
> > --Sandeep
> >
> Hi Andy,
> 
> I tested this on OMAP3 beagle board with 512MB and 4GB card.
> mmc read and write is OK.  Can you pull this patch ?

Or please give an ACK, so that I can pull it into u-boot-ti.

--Sandeep
Sandeep Paulraj Sept. 23, 2011, 5:06 p.m. UTC | #7
> 
> On Wed, Sep 14, 2011 at 7:43 PM, Paulraj, Sandeep <s-paulraj@ti.com>
> wrote:
> >
> >
> >>
> >> On Thu, Aug 25, 2011 at 7:46 AM, Balaji T K <balajitk@ti.com> wrote:
> >> > Enable high capacity to host capability.
> >> > Fixes eMMC detection on boot from MMC/SD card.
> >> >
> >> > Signed-off-by: Balaji T K <balajitk@ti.com>
> >> > Signed-off-by: Aneesh V <aneesh@ti.com>
> >> > ---
> >> >  drivers/mmc/omap_hsmmc.c |    3 ++-
> >> >  1 files changed, 2 insertions(+), 1 deletions(-)
> >> >
> >> > diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
> >> > index ef12ecd..6627905 100644
> >> > --- a/drivers/mmc/omap_hsmmc.c
> >> > +++ b/drivers/mmc/omap_hsmmc.c
> >> > @@ -461,7 +461,8 @@ int omap_mmc_init(int dev_index)
> >> >                return 1;
> >> >        }
> >> >        mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 |
> MMC_VDD_165_195;
> >> > -       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz |
> >> MMC_MODE_HS;
> >> > +       mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz |
> MMC_MODE_HS
> >> |
> >> > +                               MMC_MODE_HC;
> >> >
> >> >        mmc->f_min = 400000;
> >> >        mmc->f_max = 52000000;
> >> > --
> >>
> >> I tested a similar patch on a Tegra2 system, so:
> >>
> >> Acked-by: Simon Glass <sjg@chromium.org>
> >>
> >
> > If it is OK with Andy, I can apply this to u-boot-ti.
> >
> > --Sandeep
> >
> Hi Andy,
> 
> I tested this on OMAP3 beagle board with 512MB and 4GB card.
> mmc read and write is OK.  Can you pull this patch ?

Pushed to u-boot-ti next
diff mbox

Patch

diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
index ef12ecd..6627905 100644
--- a/drivers/mmc/omap_hsmmc.c
+++ b/drivers/mmc/omap_hsmmc.c
@@ -461,7 +461,8 @@  int omap_mmc_init(int dev_index)
 		return 1;
 	}
 	mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
-	mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
+	mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS |
+				MMC_MODE_HC;
 
 	mmc->f_min = 400000;
 	mmc->f_max = 52000000;