1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2013 Altera Corporation <www.altera.com>
8 #include <asm/arch/clock_manager.h>
9 #include <asm/arch/secure_reg_helper.h>
10 #include <asm/arch/system_manager.h>
16 #include <asm/global_data.h>
17 #include <dm/device_compat.h>
18 #include <linux/intel-smc.h>
19 #include <linux/libfdt.h>
20 #include <linux/err.h>
24 DECLARE_GLOBAL_DATA_PTR;
26 struct socfpga_dwmci_plat {
27 struct mmc_config cfg;
31 /* socfpga implmentation specific driver private data */
32 struct dwmci_socfpga_priv_data {
33 struct dwmci_host host;
38 static void socfpga_dwmci_reset(struct udevice *dev)
40 struct reset_ctl_bulk reset_bulk;
43 ret = reset_get_bulk(dev, &reset_bulk);
45 dev_warn(dev, "Can't get reset: %d\n", ret);
49 reset_deassert_bulk(&reset_bulk);
52 static int socfpga_dwmci_clksel(struct dwmci_host *host)
54 struct dwmci_socfpga_priv_data *priv = host->priv;
55 u32 sdmmc_mask = ((priv->smplsel & 0x7) << SYSMGR_SDMMC_SMPLSEL_SHIFT) |
56 ((priv->drvsel & 0x7) << SYSMGR_SDMMC_DRVSEL_SHIFT);
58 /* Disable SDMMC clock. */
59 clrbits_le32(socfpga_get_clkmgr_addr() + CLKMGR_PERPLL_EN,
60 CLKMGR_PERPLLGRP_EN_SDMMCCLK_MASK);
62 debug("%s: drvsel %d smplsel %d\n", __func__,
63 priv->drvsel, priv->smplsel);
65 #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_ATF)
68 ret = socfpga_secure_reg_write32(SOCFPGA_SECURE_REG_SYSMGR_SOC64_SDMMC,
71 printf("DWMMC: Failed to set clksel via SMC call");
75 writel(sdmmc_mask, socfpga_get_sysmgr_addr() + SYSMGR_SDMMC);
77 debug("%s: SYSMGR_SDMMCGRP_CTRL_REG = 0x%x\n", __func__,
78 readl(socfpga_get_sysmgr_addr() + SYSMGR_SDMMC));
81 /* Enable SDMMC clock */
82 setbits_le32(socfpga_get_clkmgr_addr() + CLKMGR_PERPLL_EN,
83 CLKMGR_PERPLLGRP_EN_SDMMCCLK_MASK);
88 static int socfpga_dwmmc_get_clk_rate(struct udevice *dev)
90 struct dwmci_socfpga_priv_data *priv = dev_get_priv(dev);
91 struct dwmci_host *host = &priv->host;
92 #if CONFIG_IS_ENABLED(CLK)
96 ret = clk_get_by_index(dev, 1, &clk);
100 host->bus_hz = clk_get_rate(&clk);
103 /* Fixed clock divide by 4 which due to the SDMMC wrapper */
104 host->bus_hz = cm_get_mmc_controller_clk_hz();
106 if (host->bus_hz == 0) {
107 printf("DWMMC: MMC clock is zero!");
114 static int socfpga_dwmmc_of_to_plat(struct udevice *dev)
116 struct dwmci_socfpga_priv_data *priv = dev_get_priv(dev);
117 struct dwmci_host *host = &priv->host;
120 fifo_depth = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
122 if (fifo_depth < 0) {
123 printf("DWMMC: Can't get FIFO depth\n");
127 host->name = dev->name;
128 host->ioaddr = dev_read_addr_ptr(dev);
129 host->buswidth = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
131 host->clksel = socfpga_dwmci_clksel;
135 * We only have one dwmmc block on gen5 SoCFPGA.
138 host->fifoth_val = MSIZE(0x2) |
139 RX_WMARK(fifo_depth / 2 - 1) | TX_WMARK(fifo_depth / 2);
140 priv->drvsel = fdtdec_get_uint(gd->fdt_blob, dev_of_offset(dev),
142 priv->smplsel = fdtdec_get_uint(gd->fdt_blob, dev_of_offset(dev),
146 host->fifo_mode = dev_read_bool(dev, "fifo-mode");
151 static int socfpga_dwmmc_probe(struct udevice *dev)
154 struct socfpga_dwmci_plat *plat = dev_get_plat(dev);
156 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
157 struct dwmci_socfpga_priv_data *priv = dev_get_priv(dev);
158 struct dwmci_host *host = &priv->host;
161 ret = socfpga_dwmmc_get_clk_rate(dev);
165 socfpga_dwmci_reset(dev);
168 dwmci_setup_cfg(&plat->cfg, host, host->bus_hz, 400000);
169 host->mmc = &plat->mmc;
172 ret = add_dwmci(host, host->bus_hz, 400000);
176 host->mmc->priv = &priv->host;
177 upriv->mmc = host->mmc;
178 host->mmc->dev = dev;
180 return dwmci_probe(dev);
183 static int socfpga_dwmmc_bind(struct udevice *dev)
186 struct socfpga_dwmci_plat *plat = dev_get_plat(dev);
189 ret = dwmci_bind(dev, &plat->mmc, &plat->cfg);
197 static const struct udevice_id socfpga_dwmmc_ids[] = {
198 { .compatible = "altr,socfpga-dw-mshc" },
202 U_BOOT_DRIVER(socfpga_dwmmc_drv) = {
203 .name = "socfpga_dwmmc",
205 .of_match = socfpga_dwmmc_ids,
206 .of_to_plat = socfpga_dwmmc_of_to_plat,
207 .ops = &dm_dwmci_ops,
208 .bind = socfpga_dwmmc_bind,
209 .probe = socfpga_dwmmc_probe,
210 .priv_auto = sizeof(struct dwmci_socfpga_priv_data),
211 .plat_auto = sizeof(struct socfpga_dwmci_plat),