lkml.org 
[lkml]   [2013]   [Nov]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] mmc: disable UHS on broadcom sdhci
Hi,

On Fri, Nov 15, 2013 at 03:56:22PM -0800, Grant Grundler wrote:
> From: Stephen Hurd <shurd@broadcom.com>
>
> Add two new quirks needed by BCM57785 card reader:
> SDHCI_QUIRK2_BROKEN_UHS:
> Disables all UHS modes.

This seems appropriate. You _could_ use SDHCI_QUIRK_MISSING_CAPS and
hardcode them instead, but it doesn't seem to be an improvement really.

> SDHCI_QUIRK2_BCM57785_CR:
> Bit twiddles some Broadcom-specific registers and supresses an error
> about the 64k bar0.

I think this can be done without spending a global SDHCI quirk bit. This
is just a one-time setup that needs to be done, isn't it? It's hard
to tell since there's no official errata described, but if it is, then
overriding the probe function is the way to go instead, flipping these
bits there and then call the regular probe.


[...]

> index 7a7fb4f..cf26c0f 100644
> --- a/drivers/mmc/host/sdhci.c
> +++ b/drivers/mmc/host/sdhci.c
> @@ -1144,6 +1144,27 @@ static void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
> return;
> }
>
> + if (host->quirks2 & SDHCI_QUIRK2_BCM57785_CR) {
> + u32 tmp;
> +
> + /*
> + * Register descriptions from:
> + * http://www.broadcom.com/collateral/pg/57785-PG103-R.pdf
> + */

That's a 661 page document, that unfortunately doesn't really help decode any
of the bits below because they are all touching reserved or marked-internal
bits of registers. :-)

Still, good to see a doc link.

> + tmp = sdhci_readl(host, BCM57785_CR_MUX_CTL);
> + tmp &= ~0x3000; /* bits 12:15 are reserved */
> + sdhci_writel(host, tmp, BCM57785_CR_MUX_CTL);
> + tmp = sdhci_readl(host, BCM57785_CR_CLK_CTL);
> + tmp &= ~(0x01a03f30); /* Internal debug for SD3.0 */
> + tmp |= (0x00500000);
> +
> + if ((sdhci_readw(host, SDHCI_HOST_CONTROL2) &
> + SDHCI_CTRL_VDD_180) && (clock >= 200000000))
> + tmp |= (1<<24);
> + sdhci_writel(host, tmp, BCM57785_CR_CLK_CTL);
> + }
> +
> sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
>
> if (clock == 0)
[...]
> diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h
> index 3e781b8..664003a 100644
> --- a/include/linux/mmc/sdhci.h
> +++ b/include/linux/mmc/sdhci.h
> @@ -98,6 +98,12 @@ struct sdhci_host {
> #define SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON (1<<4)
> /* Controller has a non-standard host control register */
> #define SDHCI_QUIRK2_BROKEN_HOST_CONTROL (1<<5)
> +/* UHS modes do not work */
> +#define SDHCI_QUIRK2_BROKEN_UHS (1<<6)
> +/* hacks for Broadcom-specific card reader bugs */
> +#define SDHCI_QUIRK2_BCM57785_CR (1<<7)
> +#define BCM57785_CR_MUX_CTL 0x198 /* Card Reader MUX control */
> +#define BCM57785_CR_CLK_CTL 0x19c /* Card Reader Clock Status/Ctl */

These two defines should not be in a global include file; they should likely go
in the c file instead.


-Olof


\
 
 \ /
  Last update: 2013-11-16 09:21    [W:0.072 / U:0.908 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site