1 /* 2 * Copyright (c) 2013 Google, Inc 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #include <common.h> 8 #include <clk.h> 9 #include <dm.h> 10 #include <dwmmc.h> 11 #include <errno.h> 12 #include <syscon.h> 13 #include <asm/arch/clock.h> 14 #include <asm/arch/periph.h> 15 #include <linux/err.h> 16 17 DECLARE_GLOBAL_DATA_PTR; 18 19 struct rockchip_dwmmc_priv { 20 struct udevice *clk; 21 struct rk3288_grf *grf; 22 struct dwmci_host host; 23 }; 24 25 static uint rockchip_dwmmc_get_mmc_clk(struct dwmci_host *host, uint freq) 26 { 27 struct udevice *dev = host->priv; 28 struct rockchip_dwmmc_priv *priv = dev_get_priv(dev); 29 int ret; 30 31 ret = clk_set_periph_rate(priv->clk, PERIPH_ID_SDMMC0 + host->dev_index, 32 freq); 33 if (ret < 0) { 34 debug("%s: err=%d\n", __func__, ret); 35 return ret; 36 } 37 38 return freq; 39 } 40 41 static int rockchip_dwmmc_ofdata_to_platdata(struct udevice *dev) 42 { 43 struct rockchip_dwmmc_priv *priv = dev_get_priv(dev); 44 struct dwmci_host *host = &priv->host; 45 46 host->name = dev->name; 47 host->ioaddr = (void *)dev_get_addr(dev); 48 host->buswidth = fdtdec_get_int(gd->fdt_blob, dev->of_offset, 49 "bus-width", 4); 50 host->get_mmc_clk = rockchip_dwmmc_get_mmc_clk; 51 host->priv = dev; 52 53 /* use non-removeable as sdcard and emmc as judgement */ 54 if (fdtdec_get_bool(gd->fdt_blob, dev->of_offset, "non-removable")) 55 host->dev_index = 1; 56 57 return 0; 58 } 59 60 static int rockchip_dwmmc_probe(struct udevice *dev) 61 { 62 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); 63 struct rockchip_dwmmc_priv *priv = dev_get_priv(dev); 64 struct dwmci_host *host = &priv->host; 65 u32 minmax[2]; 66 int ret; 67 int fifo_depth; 68 69 priv->grf = syscon_get_first_range(ROCKCHIP_SYSCON_GRF); 70 if (IS_ERR(priv->grf)) 71 return PTR_ERR(priv->grf); 72 ret = uclass_get_device(UCLASS_CLK, CLK_GENERAL, &priv->clk); 73 if (ret) 74 return ret; 75 76 if (fdtdec_get_int_array(gd->fdt_blob, dev->of_offset, 77 "clock-freq-min-max", minmax, 2)) 78 return -EINVAL; 79 80 fifo_depth = fdtdec_get_int(gd->fdt_blob, dev->of_offset, 81 "fifo-depth", 0); 82 if (fifo_depth < 0) 83 return -EINVAL; 84 85 host->fifoth_val = MSIZE(0x2) | 86 RX_WMARK(fifo_depth / 2 - 1) | TX_WMARK(fifo_depth / 2); 87 88 if (fdtdec_get_bool(gd->fdt_blob, dev->of_offset, "fifo-mode")) 89 host->fifo_mode = true; 90 91 ret = add_dwmci(host, minmax[1], minmax[0]); 92 if (ret) 93 return ret; 94 95 upriv->mmc = host->mmc; 96 97 return 0; 98 } 99 100 static const struct udevice_id rockchip_dwmmc_ids[] = { 101 { .compatible = "rockchip,rk3288-dw-mshc" }, 102 { } 103 }; 104 105 U_BOOT_DRIVER(rockchip_dwmmc_drv) = { 106 .name = "rockchip_dwmmc", 107 .id = UCLASS_MMC, 108 .of_match = rockchip_dwmmc_ids, 109 .ofdata_to_platdata = rockchip_dwmmc_ofdata_to_platdata, 110 .probe = rockchip_dwmmc_probe, 111 .priv_auto_alloc_size = sizeof(struct rockchip_dwmmc_priv), 112 }; 113