blob: 1c92bb2b377dc0fb7cfbb5583a6e231b27e61937 [file] [log] [blame]
Patrice Chotardeee20f82017-02-21 13:37:09 +01001/*
Patrice Chotardfb48bc42017-10-23 09:53:57 +02002 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
3 * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics.
Patrice Chotardeee20f82017-02-21 13:37:09 +01004 *
Patrice Chotardfb48bc42017-10-23 09:53:57 +02005 * SPDX-License-Identifier: GPL-2.0+
Patrice Chotardeee20f82017-02-21 13:37:09 +01006 */
7
8#include <common.h>
9#include <dm.h>
10#include <mmc.h>
Patrice Chotarddca31662017-09-05 11:04:20 +020011#include <reset-uclass.h>
Patrice Chotardeee20f82017-02-21 13:37:09 +010012#include <sdhci.h>
13#include <asm/arch/sdhci.h>
14
15DECLARE_GLOBAL_DATA_PTR;
16
17struct sti_sdhci_plat {
18 struct mmc_config cfg;
19 struct mmc mmc;
Patrice Chotarddca31662017-09-05 11:04:20 +020020 struct reset_ctl reset;
Patrice Chotard819c6262017-09-05 11:04:18 +020021 int instance;
Patrice Chotardeee20f82017-02-21 13:37:09 +010022};
23
Patrice Chotardeee20f82017-02-21 13:37:09 +010024/**
25 * sti_mmc_core_config: configure the Arasan HC
Patrice Chotard819c6262017-09-05 11:04:18 +020026 * @dev : udevice
27 *
Patrice Chotardeee20f82017-02-21 13:37:09 +010028 * Description: this function is to configure the Arasan MMC HC.
29 * This should be called when the system starts in case of, on the SoC,
30 * it is needed to configure the host controller.
31 * This happens on some SoCs, i.e. StiH410, where the MMC0 inside the flashSS
32 * needs to be configured as MMC 4.5 to have full capabilities.
33 * W/o these settings the SDHCI could configure and use the embedded controller
34 * with limited features.
35 */
Patrice Chotarddca31662017-09-05 11:04:20 +020036static int sti_mmc_core_config(struct udevice *dev)
Patrice Chotardeee20f82017-02-21 13:37:09 +010037{
Patrice Chotard819c6262017-09-05 11:04:18 +020038 struct sti_sdhci_plat *plat = dev_get_platdata(dev);
39 struct sdhci_host *host = dev_get_priv(dev);
Patrice Chotarddca31662017-09-05 11:04:20 +020040 int ret;
Patrice Chotardeee20f82017-02-21 13:37:09 +010041
42 /* only MMC1 has a reset line */
Patrice Chotard819c6262017-09-05 11:04:18 +020043 if (plat->instance) {
Patrice Chotarddca31662017-09-05 11:04:20 +020044 ret = reset_deassert(&plat->reset);
45 if (ret < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090046 pr_err("MMC1 deassert failed: %d", ret);
Patrice Chotarddca31662017-09-05 11:04:20 +020047 return ret;
48 }
Patrice Chotardeee20f82017-02-21 13:37:09 +010049 }
50
51 writel(STI_FLASHSS_MMC_CORE_CONFIG_1,
Patrice Chotard819c6262017-09-05 11:04:18 +020052 host->ioaddr + FLASHSS_MMC_CORE_CONFIG_1);
Patrice Chotardeee20f82017-02-21 13:37:09 +010053
Patrice Chotard819c6262017-09-05 11:04:18 +020054 if (plat->instance) {
Patrice Chotardeee20f82017-02-21 13:37:09 +010055 writel(STI_FLASHSS_MMC_CORE_CONFIG2,
Patrice Chotard819c6262017-09-05 11:04:18 +020056 host->ioaddr + FLASHSS_MMC_CORE_CONFIG_2);
Patrice Chotardeee20f82017-02-21 13:37:09 +010057 writel(STI_FLASHSS_MMC_CORE_CONFIG3,
Patrice Chotard819c6262017-09-05 11:04:18 +020058 host->ioaddr + FLASHSS_MMC_CORE_CONFIG_3);
Patrice Chotardeee20f82017-02-21 13:37:09 +010059 } else {
60 writel(STI_FLASHSS_SDCARD_CORE_CONFIG2,
Patrice Chotard819c6262017-09-05 11:04:18 +020061 host->ioaddr + FLASHSS_MMC_CORE_CONFIG_2);
Patrice Chotardeee20f82017-02-21 13:37:09 +010062 writel(STI_FLASHSS_SDCARD_CORE_CONFIG3,
Patrice Chotard819c6262017-09-05 11:04:18 +020063 host->ioaddr + FLASHSS_MMC_CORE_CONFIG_3);
Patrice Chotardeee20f82017-02-21 13:37:09 +010064 }
65 writel(STI_FLASHSS_MMC_CORE_CONFIG4,
Patrice Chotard819c6262017-09-05 11:04:18 +020066 host->ioaddr + FLASHSS_MMC_CORE_CONFIG_4);
Patrice Chotarddca31662017-09-05 11:04:20 +020067
68 return 0;
Patrice Chotardeee20f82017-02-21 13:37:09 +010069}
70
71static int sti_sdhci_probe(struct udevice *dev)
72{
73 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
74 struct sti_sdhci_plat *plat = dev_get_platdata(dev);
75 struct sdhci_host *host = dev_get_priv(dev);
Patrice Chotard819c6262017-09-05 11:04:18 +020076 int ret;
Patrice Chotardeee20f82017-02-21 13:37:09 +010077
78 /*
79 * identify current mmc instance, mmc1 has a reset, not mmc0
80 * MMC0 is wired to the SD slot,
81 * MMC1 is wired on the high speed connector
82 */
Patrice Chotarddca31662017-09-05 11:04:20 +020083 ret = reset_get_by_index(dev, 0, &plat->reset);
84 if (!ret)
Patrice Chotard819c6262017-09-05 11:04:18 +020085 plat->instance = 1;
Patrice Chotardeee20f82017-02-21 13:37:09 +010086 else
Patrice Chotarddca31662017-09-05 11:04:20 +020087 if (ret == -ENOENT)
88 plat->instance = 0;
89 else
90 return ret;
Patrice Chotardeee20f82017-02-21 13:37:09 +010091
Patrice Chotarddca31662017-09-05 11:04:20 +020092 ret = sti_mmc_core_config(dev);
93 if (ret)
94 return ret;
Patrice Chotardeee20f82017-02-21 13:37:09 +010095
96 host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD |
97 SDHCI_QUIRK_32BIT_DMA_ADDR |
98 SDHCI_QUIRK_NO_HISPD_BIT;
99
100 host->host_caps = MMC_MODE_DDR_52MHz;
101
102 ret = sdhci_setup_cfg(&plat->cfg, host, 50000000, 400000);
103 if (ret)
104 return ret;
105
106 host->mmc = &plat->mmc;
107 host->mmc->priv = host;
108 host->mmc->dev = dev;
109 upriv->mmc = host->mmc;
110
111 return sdhci_probe(dev);
112}
113
114static int sti_sdhci_ofdata_to_platdata(struct udevice *dev)
115{
116 struct sdhci_host *host = dev_get_priv(dev);
117
118 host->name = strdup(dev->name);
Simon Glassa821c4a2017-05-17 17:18:05 -0600119 host->ioaddr = (void *)devfdt_get_addr(dev);
Patrice Chotardeee20f82017-02-21 13:37:09 +0100120
121 host->bus_width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
122 "bus-width", 4);
123
124 return 0;
125}
126
127static int sti_sdhci_bind(struct udevice *dev)
128{
129 struct sti_sdhci_plat *plat = dev_get_platdata(dev);
130
131 return sdhci_bind(dev, &plat->mmc, &plat->cfg);
132}
133
134static const struct udevice_id sti_sdhci_ids[] = {
135 { .compatible = "st,sdhci" },
136 { }
137};
138
139U_BOOT_DRIVER(sti_mmc) = {
140 .name = "sti_sdhci",
141 .id = UCLASS_MMC,
142 .of_match = sti_sdhci_ids,
143 .bind = sti_sdhci_bind,
144 .ops = &sdhci_ops,
145 .ofdata_to_platdata = sti_sdhci_ofdata_to_platdata,
146 .probe = sti_sdhci_probe,
147 .priv_auto_alloc_size = sizeof(struct sdhci_host),
148 .platdata_auto_alloc_size = sizeof(struct sti_sdhci_plat),
149};