1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2018 Cisco Systems, Inc.
4 * (C) Copyright 2019 Synamedia
6 * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
11 #include <mach/sdhci.h>
16 * The BCMSTB SDHCI has a quirk in that its actual maximum frequency
17 * capability is 100 MHz. The divisor that is eventually written to
18 * SDHCI_CLOCK_CONTROL is calculated based on what the MMC device
19 * reports, and relative to this maximum frequency.
21 * This define used to be set to 52000000 (52 MHz), the desired
22 * maximum frequency, but that would result in the communication
23 * actually running at 100 MHz (seemingly without issue), which is
26 * Now, by setting this to 0 (auto-detect), 100 MHz will be read from
27 * the capabilities register, and the resulting divisor will be
28 * doubled, meaning that the clock control register will be set to the
29 * in-spec 52 MHz value.
31 #define BCMSTB_SDHCI_MAXIMUM_CLOCK_FREQUENCY 0
33 * When the minimum clock frequency is set to 0 (auto-detect), U-Boot
34 * sets it to 100 MHz divided by SDHCI_MAX_DIV_SPEC_300, or 48,875 Hz,
35 * which results in the controller timing out when trying to
36 * communicate with the MMC device. Hard-code this value to 400000
37 * (400 kHz) to prevent this.
39 #define BCMSTB_SDHCI_MINIMUM_CLOCK_FREQUENCY 400000
42 * This driver has only been tested with eMMC devices; SD devices may
45 struct sdhci_bcmstb_plat {
46 struct mmc_config cfg;
50 static int sdhci_bcmstb_bind(struct udevice *dev)
52 struct sdhci_bcmstb_plat *plat = dev_get_platdata(dev);
54 return sdhci_bind(dev, &plat->mmc, &plat->cfg);
57 static int sdhci_bcmstb_probe(struct udevice *dev)
59 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
60 struct sdhci_bcmstb_plat *plat = dev_get_platdata(dev);
61 struct sdhci_host *host = dev_get_priv(dev);
65 base = devfdt_get_addr(dev);
66 if (base == FDT_ADDR_T_NONE)
69 host->name = dev->name;
70 host->ioaddr = (void *)base;
72 ret = mmc_of_parse(dev, &plat->cfg);
76 host->mmc = &plat->mmc;
78 ret = sdhci_setup_cfg(&plat->cfg, host,
79 BCMSTB_SDHCI_MAXIMUM_CLOCK_FREQUENCY,
80 BCMSTB_SDHCI_MINIMUM_CLOCK_FREQUENCY);
84 upriv->mmc = &plat->mmc;
85 host->mmc->priv = host;
87 return sdhci_probe(dev);
90 static const struct udevice_id sdhci_bcmstb_match[] = {
91 { .compatible = "brcm,bcm7425-sdhci" },
92 { .compatible = "brcm,sdhci-brcmstb" },
96 U_BOOT_DRIVER(sdhci_bcmstb) = {
97 .name = "sdhci-bcmstb",
99 .of_match = sdhci_bcmstb_match,
101 .bind = sdhci_bcmstb_bind,
102 .probe = sdhci_bcmstb_probe,
103 .priv_auto_alloc_size = sizeof(struct sdhci_host),
104 .platdata_auto_alloc_size = sizeof(struct sdhci_bcmstb_plat),