blob: 4ba1436159d8c6ce640d96fd89c45af2f4654eb1 [file] [log] [blame]
Simon Glass4ecaa6d2015-08-30 16:55:37 -06001/*
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>
Simon Glass4bb9ce42016-07-04 11:58:27 -060010#include <dt-structs.h>
Simon Glass4ecaa6d2015-08-30 16:55:37 -060011#include <dwmmc.h>
12#include <errno.h>
Simon Glass4bb9ce42016-07-04 11:58:27 -060013#include <mapmem.h>
Simon Glass947fd982016-01-21 19:43:34 -070014#include <pwrseq.h>
Simon Glass4ecaa6d2015-08-30 16:55:37 -060015#include <syscon.h>
Simon Glass947fd982016-01-21 19:43:34 -070016#include <asm/gpio.h>
Simon Glass4ecaa6d2015-08-30 16:55:37 -060017#include <asm/arch/clock.h>
18#include <asm/arch/periph.h>
19#include <linux/err.h>
20
Simon Glassae696102016-05-14 14:03:08 -060021struct rockchip_mmc_plat {
Simon Glass4bb9ce42016-07-04 11:58:27 -060022#if CONFIG_IS_ENABLED(OF_PLATDATA)
23 struct dtd_rockchip_rk3288_dw_mshc dtplat;
24#endif
Simon Glassae696102016-05-14 14:03:08 -060025 struct mmc_config cfg;
26 struct mmc mmc;
27};
28
Simon Glass4ecaa6d2015-08-30 16:55:37 -060029struct rockchip_dwmmc_priv {
Stephen Warrena9622432016-06-17 09:44:00 -060030 struct clk clk;
Simon Glass4ecaa6d2015-08-30 16:55:37 -060031 struct dwmci_host host;
Simon Glass4188d942016-07-04 11:58:26 -060032 int fifo_depth;
33 bool fifo_mode;
34 u32 minmax[2];
Simon Glass4ecaa6d2015-08-30 16:55:37 -060035};
36
37static uint rockchip_dwmmc_get_mmc_clk(struct dwmci_host *host, uint freq)
38{
39 struct udevice *dev = host->priv;
40 struct rockchip_dwmmc_priv *priv = dev_get_priv(dev);
41 int ret;
42
Stephen Warrena9622432016-06-17 09:44:00 -060043 ret = clk_set_rate(&priv->clk, freq);
Simon Glass4ecaa6d2015-08-30 16:55:37 -060044 if (ret < 0) {
Kever Yanga70d1ea2017-06-14 16:31:49 +080045 debug("%s: err=%d\n", __func__, ret);
Simon Glass4ecaa6d2015-08-30 16:55:37 -060046 return ret;
47 }
48
49 return freq;
50}
51
52static int rockchip_dwmmc_ofdata_to_platdata(struct udevice *dev)
53{
Simon Glass4bb9ce42016-07-04 11:58:27 -060054#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass4ecaa6d2015-08-30 16:55:37 -060055 struct rockchip_dwmmc_priv *priv = dev_get_priv(dev);
56 struct dwmci_host *host = &priv->host;
57
58 host->name = dev->name;
Philipp Tomsichff788812017-09-11 22:04:15 +020059 host->ioaddr = dev_read_addr_ptr(dev);
Philipp Tomsich9b4c3802017-06-07 18:46:00 +020060 host->buswidth = dev_read_u32_default(dev, "bus-width", 4);
Simon Glass4ecaa6d2015-08-30 16:55:37 -060061 host->get_mmc_clk = rockchip_dwmmc_get_mmc_clk;
62 host->priv = dev;
63
huang lin8799fc12015-11-18 09:37:25 +080064 /* use non-removeable as sdcard and emmc as judgement */
Philipp Tomsich9b4c3802017-06-07 18:46:00 +020065 if (dev_read_bool(dev, "non-removable"))
huang linb06352f2016-01-08 14:06:49 +080066 host->dev_index = 0;
67 else
huang lin8799fc12015-11-18 09:37:25 +080068 host->dev_index = 1;
Simon Glass4ecaa6d2015-08-30 16:55:37 -060069
Philipp Tomsich9b4c3802017-06-07 18:46:00 +020070 priv->fifo_depth = dev_read_u32_default(dev, "fifo-depth", 0);
71
Simon Glass4188d942016-07-04 11:58:26 -060072 if (priv->fifo_depth < 0)
73 return -EINVAL;
Philipp Tomsich9b4c3802017-06-07 18:46:00 +020074 priv->fifo_mode = dev_read_bool(dev, "fifo-mode");
Philipp Tomsich56b38d82017-04-25 09:52:07 +020075
76 /*
77 * 'clock-freq-min-max' is deprecated
78 * (see https://github.com/torvalds/linux/commit/b023030f10573de738bbe8df63d43acab64c9f7b)
79 */
Philipp Tomsich9b4c3802017-06-07 18:46:00 +020080 if (dev_read_u32_array(dev, "clock-freq-min-max", priv->minmax, 2)) {
81 int val = dev_read_u32_default(dev, "max-frequency", -EINVAL);
Philipp Tomsich56b38d82017-04-25 09:52:07 +020082
83 if (val < 0)
84 return val;
85
86 priv->minmax[0] = 400000; /* 400 kHz */
87 priv->minmax[1] = val;
88 } else {
89 debug("%s: 'clock-freq-min-max' property was deprecated.\n",
90 __func__);
91 }
Simon Glass4bb9ce42016-07-04 11:58:27 -060092#endif
Simon Glass4ecaa6d2015-08-30 16:55:37 -060093 return 0;
94}
95
96static int rockchip_dwmmc_probe(struct udevice *dev)
97{
Simon Glassae696102016-05-14 14:03:08 -060098 struct rockchip_mmc_plat *plat = dev_get_platdata(dev);
Simon Glass4ecaa6d2015-08-30 16:55:37 -060099 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
100 struct rockchip_dwmmc_priv *priv = dev_get_priv(dev);
101 struct dwmci_host *host = &priv->host;
Simon Glass947fd982016-01-21 19:43:34 -0700102 struct udevice *pwr_dev __maybe_unused;
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600103 int ret;
104
Simon Glass4bb9ce42016-07-04 11:58:27 -0600105#if CONFIG_IS_ENABLED(OF_PLATDATA)
106 struct dtd_rockchip_rk3288_dw_mshc *dtplat = &plat->dtplat;
107
108 host->name = dev->name;
109 host->ioaddr = map_sysmem(dtplat->reg[0], dtplat->reg[1]);
110 host->buswidth = dtplat->bus_width;
111 host->get_mmc_clk = rockchip_dwmmc_get_mmc_clk;
112 host->priv = dev;
113 host->dev_index = 0;
114 priv->fifo_depth = dtplat->fifo_depth;
115 priv->fifo_mode = 0;
Kever Yang97087392017-06-14 16:31:46 +0800116 priv->minmax[0] = 400000; /* 400 kHz */
117 priv->minmax[1] = dtplat->max_frequency;
Simon Glass4bb9ce42016-07-04 11:58:27 -0600118
119 ret = clk_get_by_index_platdata(dev, 0, dtplat->clocks, &priv->clk);
120 if (ret < 0)
121 return ret;
122#else
Kever Yanga70d1ea2017-06-14 16:31:49 +0800123 ret = clk_get_by_index(dev, 0, &priv->clk);
Simon Glass8d32f4b2016-01-21 19:43:38 -0700124 if (ret < 0)
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600125 return ret;
Simon Glass4bb9ce42016-07-04 11:58:27 -0600126#endif
huang linb1b71cd2015-11-17 14:20:24 +0800127 host->fifoth_val = MSIZE(0x2) |
Simon Glass4188d942016-07-04 11:58:26 -0600128 RX_WMARK(priv->fifo_depth / 2 - 1) |
129 TX_WMARK(priv->fifo_depth / 2);
huang linb1b71cd2015-11-17 14:20:24 +0800130
Simon Glass4188d942016-07-04 11:58:26 -0600131 host->fifo_mode = priv->fifo_mode;
huang linb1b71cd2015-11-17 14:20:24 +0800132
Simon Glass947fd982016-01-21 19:43:34 -0700133#ifdef CONFIG_PWRSEQ
134 /* Enable power if needed */
135 ret = uclass_get_device_by_phandle(UCLASS_PWRSEQ, dev, "mmc-pwrseq",
136 &pwr_dev);
137 if (!ret) {
138 ret = pwrseq_set_power(pwr_dev, true);
139 if (ret)
140 return ret;
141 }
142#endif
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900143 dwmci_setup_cfg(&plat->cfg, host, priv->minmax[1], priv->minmax[0]);
Simon Glassae696102016-05-14 14:03:08 -0600144 host->mmc = &plat->mmc;
Simon Glassae696102016-05-14 14:03:08 -0600145 host->mmc->priv = &priv->host;
Simon Glass77ca42b2016-05-01 13:52:34 -0600146 host->mmc->dev = dev;
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600147 upriv->mmc = host->mmc;
148
Simon Glassfaeef3b2016-06-12 23:30:24 -0600149 return dwmci_probe(dev);
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600150}
151
Simon Glassae696102016-05-14 14:03:08 -0600152static int rockchip_dwmmc_bind(struct udevice *dev)
153{
Simon Glassae696102016-05-14 14:03:08 -0600154 struct rockchip_mmc_plat *plat = dev_get_platdata(dev);
Simon Glassae696102016-05-14 14:03:08 -0600155
Masahiro Yamadacdb67f32016-09-06 22:17:32 +0900156 return dwmci_bind(dev, &plat->mmc, &plat->cfg);
Simon Glassae696102016-05-14 14:03:08 -0600157}
158
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600159static const struct udevice_id rockchip_dwmmc_ids[] = {
160 { .compatible = "rockchip,rk3288-dw-mshc" },
161 { }
162};
163
164U_BOOT_DRIVER(rockchip_dwmmc_drv) = {
Simon Glass4bb9ce42016-07-04 11:58:27 -0600165 .name = "rockchip_rk3288_dw_mshc",
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600166 .id = UCLASS_MMC,
167 .of_match = rockchip_dwmmc_ids,
168 .ofdata_to_platdata = rockchip_dwmmc_ofdata_to_platdata,
Simon Glassfaeef3b2016-06-12 23:30:24 -0600169 .ops = &dm_dwmci_ops,
Simon Glassae696102016-05-14 14:03:08 -0600170 .bind = rockchip_dwmmc_bind,
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600171 .probe = rockchip_dwmmc_probe,
172 .priv_auto_alloc_size = sizeof(struct rockchip_dwmmc_priv),
Simon Glassae696102016-05-14 14:03:08 -0600173 .platdata_auto_alloc_size = sizeof(struct rockchip_mmc_plat),
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600174};
Simon Glass947fd982016-01-21 19:43:34 -0700175
176#ifdef CONFIG_PWRSEQ
177static int rockchip_dwmmc_pwrseq_set_power(struct udevice *dev, bool enable)
178{
179 struct gpio_desc reset;
180 int ret;
181
182 ret = gpio_request_by_name(dev, "reset-gpios", 0, &reset, GPIOD_IS_OUT);
183 if (ret)
184 return ret;
185 dm_gpio_set_value(&reset, 1);
186 udelay(1);
187 dm_gpio_set_value(&reset, 0);
188 udelay(200);
189
190 return 0;
191}
192
193static const struct pwrseq_ops rockchip_dwmmc_pwrseq_ops = {
194 .set_power = rockchip_dwmmc_pwrseq_set_power,
195};
196
197static const struct udevice_id rockchip_dwmmc_pwrseq_ids[] = {
198 { .compatible = "mmc-pwrseq-emmc" },
199 { }
200};
201
202U_BOOT_DRIVER(rockchip_dwmmc_pwrseq_drv) = {
203 .name = "mmc_pwrseq_emmc",
204 .id = UCLASS_PWRSEQ,
205 .of_match = rockchip_dwmmc_pwrseq_ids,
206 .ops = &rockchip_dwmmc_pwrseq_ops,
207};
208#endif