Re: [U-Boot] [PATCH v2 1/2] mmc: sdhci: add SDHCI_QUIRK_BROKEN_HISPD_MODE

2018-03-05 Thread Jaehoon Chung
On 03/05/2018 06:22 PM, Hannes Schmelzer wrote:
> Jaehoon Chung  schrieb am 05.03.2018 10:19:24:
> 
>>
>> On 03/02/2018 07:00 PM, Hannes Schmelzer wrote:
>>> From: Hannes Schmelzer 
>>>
>>> Some IP-core implementations of the SDHCI have different troubles on 
> the
>>> silicon where they are placed.
>>>
>>> On ZYNQ platform for example Xilinx doesn't accept the hold timing of 
> an
>>> eMMC chip which operates in High-Speed mode and must be forced to
>>> operate in non high-speed mode. To get rid of this
>>> "SDHCI_QUIRK_BROKEN_HISPD_MODE" is introduced.
>>>
>>> For more details about this refer to the Xilinx answer-recor #5
>>> https://www.xilinx.com/support/answers/5.html
>>>
>>> This commit:
>>> - doesn't set HISPD bit on the host-conroller
>>> - reflects this fact within the host-controller capabilities
>>>
>>> Upon this the layer above (mmc-driver) can setup the card correctly.
>>>
>>> Otherwise the MMC card will be switched into high-speed mode and 
> causes
>>> possible timing violation on the host-controller side.
>>>
>>> Signed-off-by: Hannes Schmelzer 
>>>
>>> jh80.ch...@samsung.com
>>
>> Maybe this is the wrong adding.
> 
> Yes, some copy/paste mistake ... will fix this in V3.
> 
>>
>>>
>>> Signed-off-by: Hannes Schmelzer 
>>> ---
>>>
>>> Changes in v2:
>>> - don't use the SDHCI_QUIRK_NO_HISPD_BIT for getting rid of this,
>>> since this quirk was designed for another purpose. Instead introduce 
> the
>>> new SDHCI_QUIRK_BROKEN_HISPD_MODE quirk.
>>>
>>>  drivers/mmc/sdhci.c | 8 
>>>  include/sdhci.h | 6 ++
>>>  2 files changed, 14 insertions(+)
>>>
>>> diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
>>> index d31793a..2df4214 100644
>>> --- a/drivers/mmc/sdhci.c
>>> +++ b/drivers/mmc/sdhci.c
>>> @@ -465,6 +465,9 @@ static int sdhci_set_ios(struct mmc *mmc)
>>> if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
>>>ctrl &= ~SDHCI_CTRL_HISPD;
>>>
>>> +   if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)
>>> +  ctrl &= ~SDHCI_CTRL_HISPD;
>>> +
>>
>> you can combine with above condition..like this.
>> if (host->quriks & (SDHCI_QUIRK_NO_HISPD_BIT) ||
>>host->quirks & SDHCI_QUIRK_NO_BROKEN_HISPD_MODE) ?
>>
> 
> Yeah, that would be possible.
> My thinking for separating this was the better readabilty.
> But if you prefer your suggestion, this is also no problem for me.
> Please tell me what you prefer.

I want to add the just one line for this. Not need to add the more line. :)

Best Regards,
Jaehoon Chung

> 
> 
> 
> 
> 
> 
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v2 1/2] mmc: sdhci: add SDHCI_QUIRK_BROKEN_HISPD_MODE

2018-03-05 Thread Hannes Schmelzer
Jaehoon Chung  schrieb am 05.03.2018 10:19:24:

> 
> On 03/02/2018 07:00 PM, Hannes Schmelzer wrote:
> > From: Hannes Schmelzer 
> > 
> > Some IP-core implementations of the SDHCI have different troubles on 
the
> > silicon where they are placed.
> > 
> > On ZYNQ platform for example Xilinx doesn't accept the hold timing of 
an
> > eMMC chip which operates in High-Speed mode and must be forced to
> > operate in non high-speed mode. To get rid of this
> > "SDHCI_QUIRK_BROKEN_HISPD_MODE" is introduced.
> > 
> > For more details about this refer to the Xilinx answer-recor #5
> > https://www.xilinx.com/support/answers/5.html
> > 
> > This commit:
> > - doesn't set HISPD bit on the host-conroller
> > - reflects this fact within the host-controller capabilities
> > 
> > Upon this the layer above (mmc-driver) can setup the card correctly.
> > 
> > Otherwise the MMC card will be switched into high-speed mode and 
causes
> > possible timing violation on the host-controller side.
> > 
> > Signed-off-by: Hannes Schmelzer 
> > 
> > jh80.ch...@samsung.com
> 
> Maybe this is the wrong adding.

Yes, some copy/paste mistake ... will fix this in V3.

> 
> > 
> > Signed-off-by: Hannes Schmelzer 
> > ---
> > 
> > Changes in v2:
> > - don't use the SDHCI_QUIRK_NO_HISPD_BIT for getting rid of this,
> > since this quirk was designed for another purpose. Instead introduce 
the
> > new SDHCI_QUIRK_BROKEN_HISPD_MODE quirk.
> > 
> >  drivers/mmc/sdhci.c | 8 
> >  include/sdhci.h | 6 ++
> >  2 files changed, 14 insertions(+)
> > 
> > diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
> > index d31793a..2df4214 100644
> > --- a/drivers/mmc/sdhci.c
> > +++ b/drivers/mmc/sdhci.c
> > @@ -465,6 +465,9 @@ static int sdhci_set_ios(struct mmc *mmc)
> > if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
> >ctrl &= ~SDHCI_CTRL_HISPD;
> > 
> > +   if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)
> > +  ctrl &= ~SDHCI_CTRL_HISPD;
> > +
> 
> you can combine with above condition..like this.
> if (host->quriks & (SDHCI_QUIRK_NO_HISPD_BIT) ||
>host->quirks & SDHCI_QUIRK_NO_BROKEN_HISPD_MODE) ?
> 

Yeah, that would be possible.
My thinking for separating this was the better readabilty.
But if you prefer your suggestion, this is also no problem for me.
Please tell me what you prefer.




___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v2 1/2] mmc: sdhci: add SDHCI_QUIRK_BROKEN_HISPD_MODE

2018-03-05 Thread Jaehoon Chung
On 03/02/2018 07:00 PM, Hannes Schmelzer wrote:
> From: Hannes Schmelzer 
> 
> Some IP-core implementations of the SDHCI have different troubles on the
> silicon where they are placed.
> 
> On ZYNQ platform for example Xilinx doesn't accept the hold timing of an
> eMMC chip which operates in High-Speed mode and must be forced to
> operate in non high-speed mode. To get rid of this
> "SDHCI_QUIRK_BROKEN_HISPD_MODE" is introduced.
> 
> For more details about this refer to the Xilinx answer-recor #5
> https://www.xilinx.com/support/answers/5.html
> 
> This commit:
> - doesn't set HISPD bit on the host-conroller
> - reflects this fact within the host-controller capabilities
> 
> Upon this the layer above (mmc-driver) can setup the card correctly.
> 
> Otherwise the MMC card will be switched into high-speed mode and causes
> possible timing violation on the host-controller side.
> 
> Signed-off-by: Hannes Schmelzer 
> 
> jh80.ch...@samsung.com

Maybe this is the wrong adding.

> 
> Signed-off-by: Hannes Schmelzer 
> ---
> 
> Changes in v2:
> - don't use the SDHCI_QUIRK_NO_HISPD_BIT for getting rid of this,
> since this quirk was designed for another purpose. Instead introduce the
> new SDHCI_QUIRK_BROKEN_HISPD_MODE quirk.
> 
>  drivers/mmc/sdhci.c | 8 
>  include/sdhci.h | 6 ++
>  2 files changed, 14 insertions(+)
> 
> diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
> index d31793a..2df4214 100644
> --- a/drivers/mmc/sdhci.c
> +++ b/drivers/mmc/sdhci.c
> @@ -465,6 +465,9 @@ static int sdhci_set_ios(struct mmc *mmc)
>   if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
>   ctrl &= ~SDHCI_CTRL_HISPD;
>  
> + if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)
> + ctrl &= ~SDHCI_CTRL_HISPD;
> +

you can combine with above condition..like this.
if (host->quriks & (SDHCI_QUIRK_NO_HISPD_BIT) ||
host->quirks & SDHCI_QUIRK_NO_BROKEN_HISPD_MODE) ?

>   sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
>  
>   /* If available, call the driver specific "post" set_ios() function */
> @@ -602,6 +605,11 @@ int sdhci_setup_cfg(struct mmc_config *cfg, struct 
> sdhci_host *host,
>   cfg->host_caps &= ~MMC_MODE_8BIT;
>   }
>  
> + if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
> + cfg->host_caps &= ~MMC_MODE_HS;
> + cfg->host_caps &= ~MMC_MODE_HS_52MHz;
> + }
> +
>   if (host->host_caps)
>   cfg->host_caps |= host->host_caps;
>  
> diff --git a/include/sdhci.h b/include/sdhci.h
> index 7e84012..9c75d08 100644
> --- a/include/sdhci.h
> +++ b/include/sdhci.h
> @@ -213,6 +213,12 @@
>  #define SDHCI_QUIRK_BROKEN_R1B   (1 << 2)
>  #define SDHCI_QUIRK_NO_HISPD_BIT (1 << 3)
>  #define SDHCI_QUIRK_BROKEN_VOLTAGE   (1 << 4)
> +/*
> + * SDHCI_QUIRK_BROKEN_HISPD_MODE
> + * the hardware cannot operate correctly in high-speed mode,
> + * this quirk forces the sdci host-controller to non high-speed mode
> + */
> +#define SDHCI_QUIRK_BROKEN_HISPD_MODEBIT(5)
>  #define SDHCI_QUIRK_WAIT_SEND_CMD(1 << 6)
>  #define SDHCI_QUIRK_USE_WIDE8(1 << 8)
>  
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v2 1/2] mmc: sdhci: add SDHCI_QUIRK_BROKEN_HISPD_MODE

2018-03-05 Thread Michal Simek
On 2.3.2018 11:00, Hannes Schmelzer wrote:
> From: Hannes Schmelzer 
> 
> Some IP-core implementations of the SDHCI have different troubles on the
> silicon where they are placed.
> 
> On ZYNQ platform for example Xilinx doesn't accept the hold timing of an
> eMMC chip which operates in High-Speed mode and must be forced to
> operate in non high-speed mode. To get rid of this
> "SDHCI_QUIRK_BROKEN_HISPD_MODE" is introduced.
> 
> For more details about this refer to the Xilinx answer-recor #5
> https://www.xilinx.com/support/answers/5.html
> 
> This commit:
> - doesn't set HISPD bit on the host-conroller
> - reflects this fact within the host-controller capabilities
> 
> Upon this the layer above (mmc-driver) can setup the card correctly.
> 
> Otherwise the MMC card will be switched into high-speed mode and causes
> possible timing violation on the host-controller side.
> 
> Signed-off-by: Hannes Schmelzer 
> 
> jh80.ch...@samsung.com
> 
> Signed-off-by: Hannes Schmelzer 

Two SoB lines with email between looks weird.


> ---
> 
> Changes in v2:
> - don't use the SDHCI_QUIRK_NO_HISPD_BIT for getting rid of this,
> since this quirk was designed for another purpose. Instead introduce the
> new SDHCI_QUIRK_BROKEN_HISPD_MODE quirk.
> 
>  drivers/mmc/sdhci.c | 8 
>  include/sdhci.h | 6 ++
>  2 files changed, 14 insertions(+)
> 
> diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
> index d31793a..2df4214 100644
> --- a/drivers/mmc/sdhci.c
> +++ b/drivers/mmc/sdhci.c
> @@ -465,6 +465,9 @@ static int sdhci_set_ios(struct mmc *mmc)
>   if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
>   ctrl &= ~SDHCI_CTRL_HISPD;
>  
> + if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)
> + ctrl &= ~SDHCI_CTRL_HISPD;
> +
>   sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
>  
>   /* If available, call the driver specific "post" set_ios() function */
> @@ -602,6 +605,11 @@ int sdhci_setup_cfg(struct mmc_config *cfg, struct 
> sdhci_host *host,
>   cfg->host_caps &= ~MMC_MODE_8BIT;
>   }
>  
> + if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
> + cfg->host_caps &= ~MMC_MODE_HS;
> + cfg->host_caps &= ~MMC_MODE_HS_52MHz;
> + }
> +
>   if (host->host_caps)
>   cfg->host_caps |= host->host_caps;
>  
> diff --git a/include/sdhci.h b/include/sdhci.h
> index 7e84012..9c75d08 100644
> --- a/include/sdhci.h
> +++ b/include/sdhci.h
> @@ -213,6 +213,12 @@
>  #define SDHCI_QUIRK_BROKEN_R1B   (1 << 2)
>  #define SDHCI_QUIRK_NO_HISPD_BIT (1 << 3)
>  #define SDHCI_QUIRK_BROKEN_VOLTAGE   (1 << 4)
> +/*
> + * SDHCI_QUIRK_BROKEN_HISPD_MODE
> + * the hardware cannot operate correctly in high-speed mode,
> + * this quirk forces the sdci host-controller to non high-speed mode

typo sdhci

> + */
> +#define SDHCI_QUIRK_BROKEN_HISPD_MODEBIT(5)
>  #define SDHCI_QUIRK_WAIT_SEND_CMD(1 << 6)
>  #define SDHCI_QUIRK_USE_WIDE8(1 << 8)
>  
> 

M
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH v2 1/2] mmc: sdhci: add SDHCI_QUIRK_BROKEN_HISPD_MODE

2018-03-02 Thread Hannes Schmelzer
From: Hannes Schmelzer 

Some IP-core implementations of the SDHCI have different troubles on the
silicon where they are placed.

On ZYNQ platform for example Xilinx doesn't accept the hold timing of an
eMMC chip which operates in High-Speed mode and must be forced to
operate in non high-speed mode. To get rid of this
"SDHCI_QUIRK_BROKEN_HISPD_MODE" is introduced.

For more details about this refer to the Xilinx answer-recor #5
https://www.xilinx.com/support/answers/5.html

This commit:
- doesn't set HISPD bit on the host-conroller
- reflects this fact within the host-controller capabilities

Upon this the layer above (mmc-driver) can setup the card correctly.

Otherwise the MMC card will be switched into high-speed mode and causes
possible timing violation on the host-controller side.

Signed-off-by: Hannes Schmelzer 

jh80.ch...@samsung.com

Signed-off-by: Hannes Schmelzer 
---

Changes in v2:
- don't use the SDHCI_QUIRK_NO_HISPD_BIT for getting rid of this,
since this quirk was designed for another purpose. Instead introduce the
new SDHCI_QUIRK_BROKEN_HISPD_MODE quirk.

 drivers/mmc/sdhci.c | 8 
 include/sdhci.h | 6 ++
 2 files changed, 14 insertions(+)

diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index d31793a..2df4214 100644
--- a/drivers/mmc/sdhci.c
+++ b/drivers/mmc/sdhci.c
@@ -465,6 +465,9 @@ static int sdhci_set_ios(struct mmc *mmc)
if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
ctrl &= ~SDHCI_CTRL_HISPD;
 
+   if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)
+   ctrl &= ~SDHCI_CTRL_HISPD;
+
sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
 
/* If available, call the driver specific "post" set_ios() function */
@@ -602,6 +605,11 @@ int sdhci_setup_cfg(struct mmc_config *cfg, struct 
sdhci_host *host,
cfg->host_caps &= ~MMC_MODE_8BIT;
}
 
+   if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
+   cfg->host_caps &= ~MMC_MODE_HS;
+   cfg->host_caps &= ~MMC_MODE_HS_52MHz;
+   }
+
if (host->host_caps)
cfg->host_caps |= host->host_caps;
 
diff --git a/include/sdhci.h b/include/sdhci.h
index 7e84012..9c75d08 100644
--- a/include/sdhci.h
+++ b/include/sdhci.h
@@ -213,6 +213,12 @@
 #define SDHCI_QUIRK_BROKEN_R1B (1 << 2)
 #define SDHCI_QUIRK_NO_HISPD_BIT   (1 << 3)
 #define SDHCI_QUIRK_BROKEN_VOLTAGE (1 << 4)
+/*
+ * SDHCI_QUIRK_BROKEN_HISPD_MODE
+ * the hardware cannot operate correctly in high-speed mode,
+ * this quirk forces the sdci host-controller to non high-speed mode
+ */
+#define SDHCI_QUIRK_BROKEN_HISPD_MODE  BIT(5)
 #define SDHCI_QUIRK_WAIT_SEND_CMD  (1 << 6)
 #define SDHCI_QUIRK_USE_WIDE8  (1 << 8)
 
-- 
2.7.4


___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot