blob: bd41fbb7525185b33c7d594149fc331b021dda62 [file] [log] [blame]
Ian Campbelle24ea552014-05-05 14:42:31 +01001/*
2 * (C) Copyright 2007-2011
3 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
4 * Aaron <leafy.myeh@allwinnertech.com>
5 *
6 * MMC driver for allwinner sunxi platform.
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#include <common.h>
Hans de Goede90641f82015-04-22 17:03:17 +020012#include <errno.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010013#include <malloc.h>
14#include <mmc.h>
15#include <asm/io.h>
16#include <asm/arch/clock.h>
17#include <asm/arch/cpu.h>
Hans de Goedecd821132014-10-02 20:29:26 +020018#include <asm/arch/gpio.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010019#include <asm/arch/mmc.h>
Hans de Goedecd821132014-10-02 20:29:26 +020020#include <asm-generic/gpio.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010021
Simon Glasse3c794e2017-07-04 13:31:23 -060022struct sunxi_mmc_priv {
Ian Campbelle24ea552014-05-05 14:42:31 +010023 unsigned mmc_no;
24 uint32_t *mclkreg;
Ian Campbelle24ea552014-05-05 14:42:31 +010025 unsigned fatal_err;
Ian Campbelle24ea552014-05-05 14:42:31 +010026 struct sunxi_mmc *reg;
27 struct mmc_config cfg;
28};
29
30/* support 4 mmc hosts */
Simon Glasse3c794e2017-07-04 13:31:23 -060031struct sunxi_mmc_priv mmc_host[4];
Ian Campbelle24ea552014-05-05 14:42:31 +010032
Hans de Goede967325f2014-10-31 16:55:02 +010033static int sunxi_mmc_getcd_gpio(int sdc_no)
34{
35 switch (sdc_no) {
36 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
37 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
38 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
39 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
40 }
Hans de Goede90641f82015-04-22 17:03:17 +020041 return -EINVAL;
Hans de Goede967325f2014-10-31 16:55:02 +010042}
43
Ian Campbelle24ea552014-05-05 14:42:31 +010044static int mmc_resource_init(int sdc_no)
45{
Simon Glass3f5af122017-07-04 13:31:24 -060046 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +010047 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede967325f2014-10-31 16:55:02 +010048 int cd_pin, ret = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +010049
50 debug("init mmc %d resource\n", sdc_no);
51
52 switch (sdc_no) {
53 case 0:
Simon Glass3f5af122017-07-04 13:31:24 -060054 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
55 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010056 break;
57 case 1:
Simon Glass3f5af122017-07-04 13:31:24 -060058 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
59 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010060 break;
61 case 2:
Simon Glass3f5af122017-07-04 13:31:24 -060062 priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
63 priv->mclkreg = &ccm->sd2_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010064 break;
65 case 3:
Simon Glass3f5af122017-07-04 13:31:24 -060066 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
67 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010068 break;
69 default:
70 printf("Wrong mmc number %d\n", sdc_no);
71 return -1;
72 }
Simon Glass3f5af122017-07-04 13:31:24 -060073 priv->mmc_no = sdc_no;
Ian Campbelle24ea552014-05-05 14:42:31 +010074
Hans de Goede967325f2014-10-31 16:55:02 +010075 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goede90641f82015-04-22 17:03:17 +020076 if (cd_pin >= 0) {
Hans de Goede967325f2014-10-31 16:55:02 +010077 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goede1c09fa32015-05-30 16:39:10 +020078 if (!ret) {
79 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Linb0c4ae12014-12-20 11:41:25 +080080 ret = gpio_direction_input(cd_pin);
Hans de Goede1c09fa32015-05-30 16:39:10 +020081 }
Axel Linb0c4ae12014-12-20 11:41:25 +080082 }
Hans de Goede967325f2014-10-31 16:55:02 +010083
84 return ret;
Ian Campbelle24ea552014-05-05 14:42:31 +010085}
86
Simon Glass3f5af122017-07-04 13:31:24 -060087static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goedefc3a8322014-12-07 20:55:10 +010088{
89 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
90
91 if (hz <= 24000000) {
92 pll = CCM_MMC_CTRL_OSCM24;
93 pll_hz = 24000000;
94 } else {
Hans de Goededaf22632015-01-14 19:05:03 +010095#ifdef CONFIG_MACH_SUN9I
96 pll = CCM_MMC_CTRL_PLL_PERIPH0;
97 pll_hz = clock_get_pll4_periph0();
98#else
Hans de Goedefc3a8322014-12-07 20:55:10 +010099 pll = CCM_MMC_CTRL_PLL6;
100 pll_hz = clock_get_pll6();
Hans de Goededaf22632015-01-14 19:05:03 +0100101#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100102 }
103
104 div = pll_hz / hz;
105 if (pll_hz % hz)
106 div++;
107
108 n = 0;
109 while (div > 16) {
110 n++;
111 div = (div + 1) / 2;
112 }
113
114 if (n > 3) {
Simon Glass3f5af122017-07-04 13:31:24 -0600115 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
116 hz);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100117 return -1;
118 }
119
120 /* determine delays */
121 if (hz <= 400000) {
122 oclk_dly = 0;
Hans de Goedebe909742015-09-23 16:13:10 +0200123 sclk_dly = 0;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100124 } else if (hz <= 25000000) {
125 oclk_dly = 0;
126 sclk_dly = 5;
Hans de Goedebe909742015-09-23 16:13:10 +0200127#ifdef CONFIG_MACH_SUN9I
Hans de Goedefc3a8322014-12-07 20:55:10 +0100128 } else if (hz <= 50000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200129 oclk_dly = 5;
130 sclk_dly = 4;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100131 } else {
132 /* hz > 50000000 */
133 oclk_dly = 2;
134 sclk_dly = 4;
Hans de Goedebe909742015-09-23 16:13:10 +0200135#else
136 } else if (hz <= 50000000) {
137 oclk_dly = 3;
138 sclk_dly = 4;
139 } else {
140 /* hz > 50000000 */
141 oclk_dly = 1;
142 sclk_dly = 4;
143#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100144 }
145
146 writel(CCM_MMC_CTRL_ENABLE | pll | CCM_MMC_CTRL_SCLK_DLY(sclk_dly) |
147 CCM_MMC_CTRL_N(n) | CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
Simon Glass3f5af122017-07-04 13:31:24 -0600148 CCM_MMC_CTRL_M(div), priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100149
150 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600151 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100152
153 return 0;
154}
155
Ian Campbelle24ea552014-05-05 14:42:31 +0100156static int mmc_clk_io_on(int sdc_no)
157{
Simon Glass3f5af122017-07-04 13:31:24 -0600158 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +0100159 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
160
161 debug("init mmc %d clock and io\n", sdc_no);
162
163 /* config ahb clock */
164 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
165
Hans de Goede44d8ae52015-04-06 20:33:34 +0200166#ifdef CONFIG_SUNXI_GEN_SUN6I
Hans de Goede1d1bd422014-10-03 20:16:26 +0800167 /* unassert reset */
168 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
169#endif
Hans de Goededaf22632015-01-14 19:05:03 +0100170#if defined(CONFIG_MACH_SUN9I)
171 /* sun9i has a mmc-common module, also set the gate and reset there */
172 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
173 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
174#endif
Hans de Goede1d1bd422014-10-03 20:16:26 +0800175
Simon Glass3f5af122017-07-04 13:31:24 -0600176 return mmc_set_mod_clk(priv, 24000000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100177}
178
Simon Glass034e2262017-07-04 13:31:25 -0600179static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100180{
Ian Campbelle24ea552014-05-05 14:42:31 +0100181 unsigned int cmd;
182 unsigned timeout_msecs = 2000;
183
184 cmd = SUNXI_MMC_CMD_START |
185 SUNXI_MMC_CMD_UPCLK_ONLY |
186 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Simon Glass3f5af122017-07-04 13:31:24 -0600187 writel(cmd, &priv->reg->cmd);
188 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100189 if (!timeout_msecs--)
190 return -1;
191 udelay(1000);
192 }
193
194 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600195 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100196
197 return 0;
198}
199
Simon Glass034e2262017-07-04 13:31:25 -0600200static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100201{
Simon Glass3f5af122017-07-04 13:31:24 -0600202 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100203
204 /* Disable Clock */
205 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600206 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600207 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100208 return -1;
209
Hans de Goedefc3a8322014-12-07 20:55:10 +0100210 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600211 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100212 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100213
214 /* Clear internal divider */
215 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600216 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100217
Ian Campbelle24ea552014-05-05 14:42:31 +0100218 /* Re-enable Clock */
219 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600220 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600221 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100222 return -1;
223
224 return 0;
225}
226
Simon Glass034e2262017-07-04 13:31:25 -0600227static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
228 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100229{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100230 debug("set ios: bus_width: %x, clock: %d\n",
231 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100232
233 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600234 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600235 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900236 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100237 }
238
239 /* Change bus width */
240 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600241 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100242 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600243 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100244 else
Simon Glass3f5af122017-07-04 13:31:24 -0600245 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900246
247 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100248}
249
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200250static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100251{
Simon Glass3f5af122017-07-04 13:31:24 -0600252 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100253
254 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600255 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200256 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100257
258 return 0;
259}
260
Simon Glass034e2262017-07-04 13:31:25 -0600261static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
262 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100263{
Ian Campbelle24ea552014-05-05 14:42:31 +0100264 const int reading = !!(data->flags & MMC_DATA_READ);
265 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
266 SUNXI_MMC_STATUS_FIFO_FULL;
267 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100268 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Yousong Zhou28f69b92015-08-29 21:26:11 +0800269 unsigned byte_cnt = data->blocksize * data->blocks;
Tobias Doerffel26c0c152016-07-08 12:40:14 +0200270 unsigned timeout_usecs = (byte_cnt >> 8) * 1000;
271 if (timeout_usecs < 2000000)
272 timeout_usecs = 2000000;
Ian Campbelle24ea552014-05-05 14:42:31 +0100273
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200274 /* Always read / write data through the CPU */
Simon Glass3f5af122017-07-04 13:31:24 -0600275 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200276
Ian Campbelle24ea552014-05-05 14:42:31 +0100277 for (i = 0; i < (byte_cnt >> 2); i++) {
Simon Glass3f5af122017-07-04 13:31:24 -0600278 while (readl(&priv->reg->status) & status_bit) {
Tobias Doerffel26c0c152016-07-08 12:40:14 +0200279 if (!timeout_usecs--)
Ian Campbelle24ea552014-05-05 14:42:31 +0100280 return -1;
Tobias Doerffel26c0c152016-07-08 12:40:14 +0200281 udelay(1);
Ian Campbelle24ea552014-05-05 14:42:31 +0100282 }
283
284 if (reading)
Simon Glass3f5af122017-07-04 13:31:24 -0600285 buff[i] = readl(&priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100286 else
Simon Glass3f5af122017-07-04 13:31:24 -0600287 writel(buff[i], &priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100288 }
289
290 return 0;
291}
292
Simon Glass034e2262017-07-04 13:31:25 -0600293static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
294 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100295{
Ian Campbelle24ea552014-05-05 14:42:31 +0100296 unsigned int status;
297
298 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600299 status = readl(&priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100300 if (!timeout_msecs-- ||
301 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
302 debug("%s timeout %x\n", what,
303 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900304 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100305 }
306 udelay(1000);
307 } while (!(status & done_bit));
308
309 return 0;
310}
311
Simon Glass034e2262017-07-04 13:31:25 -0600312static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
313 struct mmc *mmc, struct mmc_cmd *cmd,
314 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100315{
Ian Campbelle24ea552014-05-05 14:42:31 +0100316 unsigned int cmdval = SUNXI_MMC_CMD_START;
317 unsigned int timeout_msecs;
318 int error = 0;
319 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100320 unsigned int bytecnt = 0;
321
Simon Glass3f5af122017-07-04 13:31:24 -0600322 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100323 return -1;
324 if (cmd->resp_type & MMC_RSP_BUSY)
325 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
326 if (cmd->cmdidx == 12)
327 return 0;
328
329 if (!cmd->cmdidx)
330 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
331 if (cmd->resp_type & MMC_RSP_PRESENT)
332 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
333 if (cmd->resp_type & MMC_RSP_136)
334 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
335 if (cmd->resp_type & MMC_RSP_CRC)
336 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
337
338 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200339 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100340 error = -1;
341 goto out;
342 }
343
344 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
345 if (data->flags & MMC_DATA_WRITE)
346 cmdval |= SUNXI_MMC_CMD_WRITE;
347 if (data->blocks > 1)
348 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600349 writel(data->blocksize, &priv->reg->blksz);
350 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100351 }
352
Simon Glass3f5af122017-07-04 13:31:24 -0600353 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100354 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600355 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100356
357 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600358 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100359
360 /*
361 * transfer data and check status
362 * STATREG[2] : FIFO empty
363 * STATREG[3] : FIFO full
364 */
365 if (data) {
366 int ret = 0;
367
368 bytecnt = data->blocksize * data->blocks;
369 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600370 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600371 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100372 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600373 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100374 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900375 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100376 goto out;
377 }
378 }
379
Simon Glass034e2262017-07-04 13:31:25 -0600380 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
381 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100382 if (error)
383 goto out;
384
385 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200386 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100387 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600388 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100389 data->blocks > 1 ?
390 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
391 SUNXI_MMC_RINT_DATA_OVER,
392 "data");
393 if (error)
394 goto out;
395 }
396
397 if (cmd->resp_type & MMC_RSP_BUSY) {
398 timeout_msecs = 2000;
399 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600400 status = readl(&priv->reg->status);
Ian Campbelle24ea552014-05-05 14:42:31 +0100401 if (!timeout_msecs--) {
402 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900403 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100404 goto out;
405 }
406 udelay(1000);
407 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
408 }
409
410 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600411 cmd->response[0] = readl(&priv->reg->resp3);
412 cmd->response[1] = readl(&priv->reg->resp2);
413 cmd->response[2] = readl(&priv->reg->resp1);
414 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100415 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
416 cmd->response[3], cmd->response[2],
417 cmd->response[1], cmd->response[0]);
418 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600419 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100420 debug("mmc resp 0x%08x\n", cmd->response[0]);
421 }
422out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100423 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600424 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600425 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100426 }
Simon Glass3f5af122017-07-04 13:31:24 -0600427 writel(0xffffffff, &priv->reg->rint);
428 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
429 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100430
431 return error;
432}
433
Simon Glass034e2262017-07-04 13:31:25 -0600434static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
435{
436 struct sunxi_mmc_priv *priv = mmc->priv;
437
438 return sunxi_mmc_set_ios_common(priv, mmc);
439}
440
441static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
442 struct mmc_data *data)
443{
444 struct sunxi_mmc_priv *priv = mmc->priv;
445
446 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
447}
448
449static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200450{
Simon Glass3f5af122017-07-04 13:31:24 -0600451 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100452 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200453
Simon Glass3f5af122017-07-04 13:31:24 -0600454 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200455 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200456 return 1;
457
Axel Linb0c4ae12014-12-20 11:41:25 +0800458 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200459}
460
Ian Campbelle24ea552014-05-05 14:42:31 +0100461static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600462 .send_cmd = sunxi_mmc_send_cmd_legacy,
463 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200464 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600465 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100466};
467
Hans de Goedee79c7c82014-10-02 21:13:54 +0200468struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100469{
Simon Glass034e2262017-07-04 13:31:25 -0600470 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
471 struct mmc_config *cfg = &priv->cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +0100472
Simon Glass034e2262017-07-04 13:31:25 -0600473 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100474
475 cfg->name = "SUNXI SD/MMC";
476 cfg->ops = &sunxi_mmc_ops;
477
478 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
479 cfg->host_caps = MMC_MODE_4BIT;
Maxime Ripardfb013182016-11-04 16:18:09 +0100480#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I)
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200481 if (sdc_no == 2)
482 cfg->host_caps = MMC_MODE_8BIT;
483#endif
Rob Herring5a203972015-03-23 17:56:59 -0500484 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100485 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
486
487 cfg->f_min = 400000;
488 cfg->f_max = 52000000;
489
Hans de Goede967325f2014-10-31 16:55:02 +0100490 if (mmc_resource_init(sdc_no) != 0)
491 return NULL;
492
Ian Campbelle24ea552014-05-05 14:42:31 +0100493 mmc_clk_io_on(sdc_no);
494
Simon Glass034e2262017-07-04 13:31:25 -0600495 return mmc_create(cfg, mmc_host);
Ian Campbelle24ea552014-05-05 14:42:31 +0100496}