Re: [U-Boot] [PATCH 3/5] mmc: dump card and host capabilities if debug is enabled

2017-11-24 Thread Simon Glass
On 21 November 2017 at 08:13, Jean-Jacques Hiblot  wrote:
> This is a useful information while debugging the initialization process or
> performance issues.
>
> Signed-off-by: Jean-Jacques Hiblot 
> ---
>  drivers/mmc/mmc.c | 9 +
>  1 file changed, 9 insertions(+)
Reviewed-by: Simon Glass 
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 3/5] mmc: dump card and host capabilities if debug is enabled

2017-11-22 Thread Lukasz Majewski
On Tue, 21 Nov 2017 16:13:06 +0100
Jean-Jacques Hiblot  wrote:

> This is a useful information while debugging the initialization
> process or performance issues.
> 
> Signed-off-by: Jean-Jacques Hiblot 
> ---
>  drivers/mmc/mmc.c | 9 +
>  1 file changed, 9 insertions(+)
> 
> diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
> index a5a521e..a30b6a2 100644
> --- a/drivers/mmc/mmc.c
> +++ b/drivers/mmc/mmc.c
> @@ -1502,6 +1502,10 @@ void mmc_dump_capabilities(const char *text,
> uint caps) printf("%s, ", mmc_mode_name(mode));
>   printf("\b\b]\n");
>  }
> +#else
> +void mmc_dump_capabilities(const char *text, uint caps)
> +{
> +}
>  #endif
>  
>  struct mode_width_tuning {
> @@ -1582,6 +1586,8 @@ static int sd_select_mode_and_width(struct mmc
> *mmc, uint card_caps) bool uhs_en = (mmc->ocr & OCR_S18R) ? true :
> false; uint caps;
>  
> + mmc_dump_capabilities("sd card", card_caps);
> + mmc_dump_capabilities("host", mmc->host_caps |
> MMC_MODE_1BIT); 
>   /* Restrict card's capabilities by what the host can do */
>   caps = card_caps & (mmc->host_caps | MMC_MODE_1BIT);
> @@ -1764,6 +1770,9 @@ static int mmc_select_mode_and_width(struct mmc
> *mmc, uint card_caps) const struct mode_width_tuning *mwt;
>   const struct ext_csd_bus_width *ecbw;
>  
> + mmc_dump_capabilities("mmc", card_caps);
> + mmc_dump_capabilities("host", mmc->host_caps |
> MMC_MODE_1BIT); +
>   /* Restrict card's capabilities by what the host can do */
>   card_caps &= (mmc->host_caps | MMC_MODE_1BIT);
>  

Reviewed-by: Lukasz Majewski 

Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,  Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de


pgpVIvimVekdH.pgp
Description: OpenPGP digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 3/5] mmc: dump card and host capabilities if debug is enabled

2017-11-21 Thread Jean-Jacques Hiblot
This is a useful information while debugging the initialization process or
performance issues.

Signed-off-by: Jean-Jacques Hiblot 
---
 drivers/mmc/mmc.c | 9 +
 1 file changed, 9 insertions(+)

diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index a5a521e..a30b6a2 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -1502,6 +1502,10 @@ void mmc_dump_capabilities(const char *text, uint caps)
printf("%s, ", mmc_mode_name(mode));
printf("\b\b]\n");
 }
+#else
+void mmc_dump_capabilities(const char *text, uint caps)
+{
+}
 #endif
 
 struct mode_width_tuning {
@@ -1582,6 +1586,8 @@ static int sd_select_mode_and_width(struct mmc *mmc, uint 
card_caps)
bool uhs_en = (mmc->ocr & OCR_S18R) ? true : false;
uint caps;
 
+   mmc_dump_capabilities("sd card", card_caps);
+   mmc_dump_capabilities("host", mmc->host_caps | MMC_MODE_1BIT);
 
/* Restrict card's capabilities by what the host can do */
caps = card_caps & (mmc->host_caps | MMC_MODE_1BIT);
@@ -1764,6 +1770,9 @@ static int mmc_select_mode_and_width(struct mmc *mmc, 
uint card_caps)
const struct mode_width_tuning *mwt;
const struct ext_csd_bus_width *ecbw;
 
+   mmc_dump_capabilities("mmc", card_caps);
+   mmc_dump_capabilities("host", mmc->host_caps | MMC_MODE_1BIT);
+
/* Restrict card's capabilities by what the host can do */
card_caps &= (mmc->host_caps | MMC_MODE_1BIT);
 
-- 
1.9.1

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