blob: dc96818cff4a709b4b8a2be94cb1ff1bb05b1f39 [file] [log] [blame]
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -04001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2018 Cisco Systems, Inc.
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -04004 * (C) Copyright 2019 Synamedia
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -04005 *
6 * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
7 */
8
9#include <common.h>
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040010#include <dm.h>
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040011#include <mach/sdhci.h>
12#include <malloc.h>
13#include <sdhci.h>
14
15/*
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.
20 *
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
24 * out-of-spec.
25 *
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.
30 */
31#define BCMSTB_SDHCI_MAXIMUM_CLOCK_FREQUENCY 0
32/*
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.
38 */
39#define BCMSTB_SDHCI_MINIMUM_CLOCK_FREQUENCY 400000
40
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040041/*
42 * This driver has only been tested with eMMC devices; SD devices may
43 * not work.
44 */
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040045struct sdhci_bcmstb_plat {
46 struct mmc_config cfg;
47 struct mmc mmc;
48};
49
50static int sdhci_bcmstb_bind(struct udevice *dev)
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040051{
Simon Glassc69cda22020-12-03 16:55:20 -070052 struct sdhci_bcmstb_plat *plat = dev_get_plat(dev);
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040053
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040054 return sdhci_bind(dev, &plat->mmc, &plat->cfg);
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040055}
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040056
57static int sdhci_bcmstb_probe(struct udevice *dev)
58{
59 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -070060 struct sdhci_bcmstb_plat *plat = dev_get_plat(dev);
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040061 struct sdhci_host *host = dev_get_priv(dev);
62 fdt_addr_t base;
63 int ret;
64
Masahiro Yamada25484932020-07-17 14:36:48 +090065 base = dev_read_addr(dev);
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040066 if (base == FDT_ADDR_T_NONE)
67 return -EINVAL;
68
69 host->name = dev->name;
70 host->ioaddr = (void *)base;
71
72 ret = mmc_of_parse(dev, &plat->cfg);
73 if (ret)
74 return ret;
75
Peng Fan425d8332019-08-06 02:47:50 +000076 host->mmc = &plat->mmc;
77 host->mmc->dev = dev;
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040078 ret = sdhci_setup_cfg(&plat->cfg, host,
79 BCMSTB_SDHCI_MAXIMUM_CLOCK_FREQUENCY,
80 BCMSTB_SDHCI_MINIMUM_CLOCK_FREQUENCY);
81 if (ret)
82 return ret;
83
84 upriv->mmc = &plat->mmc;
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -040085 host->mmc->priv = host;
86
87 return sdhci_probe(dev);
88}
89
90static const struct udevice_id sdhci_bcmstb_match[] = {
91 { .compatible = "brcm,bcm7425-sdhci" },
92 { .compatible = "brcm,sdhci-brcmstb" },
93 { }
94};
95
96U_BOOT_DRIVER(sdhci_bcmstb) = {
97 .name = "sdhci-bcmstb",
98 .id = UCLASS_MMC,
99 .of_match = sdhci_bcmstb_match,
100 .ops = &sdhci_ops,
101 .bind = sdhci_bcmstb_bind,
102 .probe = sdhci_bcmstb_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700103 .priv_auto = sizeof(struct sdhci_host),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700104 .plat_auto = sizeof(struct sdhci_bcmstb_plat),
Thomas Fitzsimmons77934fd2019-05-17 08:17:07 -0400105};