blob: 588574fab6a9a02ff2dae4b49d1a8f1729e209f6 [file] [log] [blame]
Ian Campbellb4e9f2f2014-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>
Simon Glass7484ae72017-07-04 13:31:27 -060012#include <dm.h>
Hans de Goedeb1e107a2015-04-22 17:03:17 +020013#include <errno.h>
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010014#include <malloc.h>
15#include <mmc.h>
16#include <asm/io.h>
17#include <asm/arch/clock.h>
18#include <asm/arch/cpu.h>
Hans de Goede7412ef82014-10-02 20:29:26 +020019#include <asm/arch/gpio.h>
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010020#include <asm/arch/mmc.h>
Hans de Goede7412ef82014-10-02 20:29:26 +020021#include <asm-generic/gpio.h>
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010022
Simon Glass7484ae72017-07-04 13:31:27 -060023struct sunxi_mmc_plat {
24 struct mmc_config cfg;
25 struct mmc mmc;
26};
27
Simon Glass3f19fbf2017-07-04 13:31:23 -060028struct sunxi_mmc_priv {
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010029 unsigned mmc_no;
30 uint32_t *mclkreg;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010031 unsigned fatal_err;
Simon Glass7484ae72017-07-04 13:31:27 -060032 struct gpio_desc cd_gpio; /* Change Detect GPIO */
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010033 struct sunxi_mmc *reg;
34 struct mmc_config cfg;
35};
36
Simon Glass7484ae72017-07-04 13:31:27 -060037#if !CONFIG_IS_ENABLED(DM_MMC)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010038/* support 4 mmc hosts */
Simon Glass3f19fbf2017-07-04 13:31:23 -060039struct sunxi_mmc_priv mmc_host[4];
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010040
Hans de Goede3d1095f2014-10-31 16:55:02 +010041static int sunxi_mmc_getcd_gpio(int sdc_no)
42{
43 switch (sdc_no) {
44 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
45 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
46 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
47 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
48 }
Hans de Goedeb1e107a2015-04-22 17:03:17 +020049 return -EINVAL;
Hans de Goede3d1095f2014-10-31 16:55:02 +010050}
51
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010052static int mmc_resource_init(int sdc_no)
53{
Simon Glass8e659a22017-07-04 13:31:24 -060054 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010055 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede3d1095f2014-10-31 16:55:02 +010056 int cd_pin, ret = 0;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010057
58 debug("init mmc %d resource\n", sdc_no);
59
60 switch (sdc_no) {
61 case 0:
Simon Glass8e659a22017-07-04 13:31:24 -060062 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
63 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010064 break;
65 case 1:
Simon Glass8e659a22017-07-04 13:31:24 -060066 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
67 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010068 break;
69 case 2:
Simon Glass8e659a22017-07-04 13:31:24 -060070 priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
71 priv->mclkreg = &ccm->sd2_clk_cfg;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010072 break;
73 case 3:
Simon Glass8e659a22017-07-04 13:31:24 -060074 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
75 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010076 break;
77 default:
78 printf("Wrong mmc number %d\n", sdc_no);
79 return -1;
80 }
Simon Glass8e659a22017-07-04 13:31:24 -060081 priv->mmc_no = sdc_no;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010082
Hans de Goede3d1095f2014-10-31 16:55:02 +010083 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goedeb1e107a2015-04-22 17:03:17 +020084 if (cd_pin >= 0) {
Hans de Goede3d1095f2014-10-31 16:55:02 +010085 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goedee6525302015-05-30 16:39:10 +020086 if (!ret) {
87 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Lin06da3462014-12-20 11:41:25 +080088 ret = gpio_direction_input(cd_pin);
Hans de Goedee6525302015-05-30 16:39:10 +020089 }
Axel Lin06da3462014-12-20 11:41:25 +080090 }
Hans de Goede3d1095f2014-10-31 16:55:02 +010091
92 return ret;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010093}
Simon Glass7484ae72017-07-04 13:31:27 -060094#endif
Ian Campbellb4e9f2f2014-05-05 14:42:31 +010095
Simon Glass8e659a22017-07-04 13:31:24 -060096static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goede06bfab02014-12-07 20:55:10 +010097{
98 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
99
100 if (hz <= 24000000) {
101 pll = CCM_MMC_CTRL_OSCM24;
102 pll_hz = 24000000;
103 } else {
Hans de Goedef1865db2015-01-14 19:05:03 +0100104#ifdef CONFIG_MACH_SUN9I
105 pll = CCM_MMC_CTRL_PLL_PERIPH0;
106 pll_hz = clock_get_pll4_periph0();
107#else
Hans de Goede06bfab02014-12-07 20:55:10 +0100108 pll = CCM_MMC_CTRL_PLL6;
109 pll_hz = clock_get_pll6();
Hans de Goedef1865db2015-01-14 19:05:03 +0100110#endif
Hans de Goede06bfab02014-12-07 20:55:10 +0100111 }
112
113 div = pll_hz / hz;
114 if (pll_hz % hz)
115 div++;
116
117 n = 0;
118 while (div > 16) {
119 n++;
120 div = (div + 1) / 2;
121 }
122
123 if (n > 3) {
Simon Glass8e659a22017-07-04 13:31:24 -0600124 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
125 hz);
Hans de Goede06bfab02014-12-07 20:55:10 +0100126 return -1;
127 }
128
129 /* determine delays */
130 if (hz <= 400000) {
131 oclk_dly = 0;
Hans de Goede5192ba22015-09-23 16:13:10 +0200132 sclk_dly = 0;
Hans de Goede06bfab02014-12-07 20:55:10 +0100133 } else if (hz <= 25000000) {
134 oclk_dly = 0;
135 sclk_dly = 5;
Hans de Goede5192ba22015-09-23 16:13:10 +0200136#ifdef CONFIG_MACH_SUN9I
Hans de Goede06bfab02014-12-07 20:55:10 +0100137 } else if (hz <= 50000000) {
Hans de Goede5192ba22015-09-23 16:13:10 +0200138 oclk_dly = 5;
139 sclk_dly = 4;
Hans de Goede06bfab02014-12-07 20:55:10 +0100140 } else {
141 /* hz > 50000000 */
142 oclk_dly = 2;
143 sclk_dly = 4;
Hans de Goede5192ba22015-09-23 16:13:10 +0200144#else
145 } else if (hz <= 50000000) {
146 oclk_dly = 3;
147 sclk_dly = 4;
148 } else {
149 /* hz > 50000000 */
150 oclk_dly = 1;
151 sclk_dly = 4;
152#endif
Hans de Goede06bfab02014-12-07 20:55:10 +0100153 }
154
155 writel(CCM_MMC_CTRL_ENABLE | pll | CCM_MMC_CTRL_SCLK_DLY(sclk_dly) |
156 CCM_MMC_CTRL_N(n) | CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
Simon Glass8e659a22017-07-04 13:31:24 -0600157 CCM_MMC_CTRL_M(div), priv->mclkreg);
Hans de Goede06bfab02014-12-07 20:55:10 +0100158
159 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass8e659a22017-07-04 13:31:24 -0600160 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goede06bfab02014-12-07 20:55:10 +0100161
162 return 0;
163}
164
Simon Glass87ff0f72017-07-04 13:31:25 -0600165static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100166{
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100167 unsigned int cmd;
168 unsigned timeout_msecs = 2000;
169
170 cmd = SUNXI_MMC_CMD_START |
171 SUNXI_MMC_CMD_UPCLK_ONLY |
172 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Simon Glass8e659a22017-07-04 13:31:24 -0600173 writel(cmd, &priv->reg->cmd);
174 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100175 if (!timeout_msecs--)
176 return -1;
177 udelay(1000);
178 }
179
180 /* clock update sets various irq status bits, clear these */
Simon Glass8e659a22017-07-04 13:31:24 -0600181 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100182
183 return 0;
184}
185
Simon Glass87ff0f72017-07-04 13:31:25 -0600186static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100187{
Simon Glass8e659a22017-07-04 13:31:24 -0600188 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100189
190 /* Disable Clock */
191 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass8e659a22017-07-04 13:31:24 -0600192 writel(rval, &priv->reg->clkcr);
Simon Glass87ff0f72017-07-04 13:31:25 -0600193 if (mmc_update_clk(priv))
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100194 return -1;
195
Hans de Goede06bfab02014-12-07 20:55:10 +0100196 /* Set mod_clk to new rate */
Simon Glass8e659a22017-07-04 13:31:24 -0600197 if (mmc_set_mod_clk(priv, mmc->clock))
Hans de Goede06bfab02014-12-07 20:55:10 +0100198 return -1;
199
200 /* Clear internal divider */
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100201 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass8e659a22017-07-04 13:31:24 -0600202 writel(rval, &priv->reg->clkcr);
Hans de Goede06bfab02014-12-07 20:55:10 +0100203
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100204 /* Re-enable Clock */
205 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass8e659a22017-07-04 13:31:24 -0600206 writel(rval, &priv->reg->clkcr);
Simon Glass87ff0f72017-07-04 13:31:25 -0600207 if (mmc_update_clk(priv))
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100208 return -1;
209
210 return 0;
211}
212
Simon Glass87ff0f72017-07-04 13:31:25 -0600213static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
214 struct mmc *mmc)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100215{
Hans de Goede06bfab02014-12-07 20:55:10 +0100216 debug("set ios: bus_width: %x, clock: %d\n",
217 mmc->bus_width, mmc->clock);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100218
219 /* Change clock first */
Simon Glass87ff0f72017-07-04 13:31:25 -0600220 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass8e659a22017-07-04 13:31:24 -0600221 priv->fatal_err = 1;
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900222 return -EINVAL;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100223 }
224
225 /* Change bus width */
226 if (mmc->bus_width == 8)
Simon Glass8e659a22017-07-04 13:31:24 -0600227 writel(0x2, &priv->reg->width);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100228 else if (mmc->bus_width == 4)
Simon Glass8e659a22017-07-04 13:31:24 -0600229 writel(0x1, &priv->reg->width);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100230 else
Simon Glass8e659a22017-07-04 13:31:24 -0600231 writel(0x0, &priv->reg->width);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900232
233 return 0;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100234}
235
Simon Glass7484ae72017-07-04 13:31:27 -0600236#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka253d77d2015-02-01 00:42:14 +0200237static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100238{
Simon Glass8e659a22017-07-04 13:31:24 -0600239 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100240
241 /* Reset controller */
Simon Glass8e659a22017-07-04 13:31:24 -0600242 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goede411dc872014-06-09 11:36:55 +0200243 udelay(1000);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100244
245 return 0;
246}
Simon Glass7484ae72017-07-04 13:31:27 -0600247#endif
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100248
Simon Glass87ff0f72017-07-04 13:31:25 -0600249static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
250 struct mmc_data *data)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100251{
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100252 const int reading = !!(data->flags & MMC_DATA_READ);
253 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
254 SUNXI_MMC_STATUS_FIFO_FULL;
255 unsigned i;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100256 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Yousong Zhoub0170092015-08-29 21:26:11 +0800257 unsigned byte_cnt = data->blocksize * data->blocks;
Tobias Doerffele2ead482016-07-08 12:40:14 +0200258 unsigned timeout_usecs = (byte_cnt >> 8) * 1000;
259 if (timeout_usecs < 2000000)
260 timeout_usecs = 2000000;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100261
Hans de Goede411dc872014-06-09 11:36:55 +0200262 /* Always read / write data through the CPU */
Simon Glass8e659a22017-07-04 13:31:24 -0600263 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goede411dc872014-06-09 11:36:55 +0200264
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100265 for (i = 0; i < (byte_cnt >> 2); i++) {
Simon Glass8e659a22017-07-04 13:31:24 -0600266 while (readl(&priv->reg->status) & status_bit) {
Tobias Doerffele2ead482016-07-08 12:40:14 +0200267 if (!timeout_usecs--)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100268 return -1;
Tobias Doerffele2ead482016-07-08 12:40:14 +0200269 udelay(1);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100270 }
271
272 if (reading)
Simon Glass8e659a22017-07-04 13:31:24 -0600273 buff[i] = readl(&priv->reg->fifo);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100274 else
Simon Glass8e659a22017-07-04 13:31:24 -0600275 writel(buff[i], &priv->reg->fifo);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100276 }
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100277
278 return 0;
279}
280
Simon Glass87ff0f72017-07-04 13:31:25 -0600281static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
282 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100283{
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100284 unsigned int status;
285
286 do {
Simon Glass8e659a22017-07-04 13:31:24 -0600287 status = readl(&priv->reg->rint);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100288 if (!timeout_msecs-- ||
289 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
290 debug("%s timeout %x\n", what,
291 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900292 return -ETIMEDOUT;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100293 }
294 udelay(1000);
295 } while (!(status & done_bit));
296
297 return 0;
298}
299
Simon Glass87ff0f72017-07-04 13:31:25 -0600300static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
301 struct mmc *mmc, struct mmc_cmd *cmd,
302 struct mmc_data *data)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100303{
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100304 unsigned int cmdval = SUNXI_MMC_CMD_START;
305 unsigned int timeout_msecs;
306 int error = 0;
307 unsigned int status = 0;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100308 unsigned int bytecnt = 0;
309
Simon Glass8e659a22017-07-04 13:31:24 -0600310 if (priv->fatal_err)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100311 return -1;
312 if (cmd->resp_type & MMC_RSP_BUSY)
313 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
314 if (cmd->cmdidx == 12)
315 return 0;
316
317 if (!cmd->cmdidx)
318 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
319 if (cmd->resp_type & MMC_RSP_PRESENT)
320 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
321 if (cmd->resp_type & MMC_RSP_136)
322 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
323 if (cmd->resp_type & MMC_RSP_CRC)
324 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
325
326 if (data) {
Alexander Grafee1d8252016-03-29 17:29:09 +0200327 if ((u32)(long)data->dest & 0x3) {
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100328 error = -1;
329 goto out;
330 }
331
332 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
333 if (data->flags & MMC_DATA_WRITE)
334 cmdval |= SUNXI_MMC_CMD_WRITE;
335 if (data->blocks > 1)
336 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass8e659a22017-07-04 13:31:24 -0600337 writel(data->blocksize, &priv->reg->blksz);
338 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100339 }
340
Simon Glass8e659a22017-07-04 13:31:24 -0600341 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100342 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass8e659a22017-07-04 13:31:24 -0600343 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100344
345 if (!data)
Simon Glass8e659a22017-07-04 13:31:24 -0600346 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100347
348 /*
349 * transfer data and check status
350 * STATREG[2] : FIFO empty
351 * STATREG[3] : FIFO full
352 */
353 if (data) {
354 int ret = 0;
355
356 bytecnt = data->blocksize * data->blocks;
357 debug("trans data %d bytes\n", bytecnt);
Simon Glass8e659a22017-07-04 13:31:24 -0600358 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass87ff0f72017-07-04 13:31:25 -0600359 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100360 if (ret) {
Simon Glass8e659a22017-07-04 13:31:24 -0600361 error = readl(&priv->reg->rint) &
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100362 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung7825d202016-07-19 16:33:36 +0900363 error = -ETIMEDOUT;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100364 goto out;
365 }
366 }
367
Simon Glass87ff0f72017-07-04 13:31:25 -0600368 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
369 "cmd");
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100370 if (error)
371 goto out;
372
373 if (data) {
Hans de Goede411dc872014-06-09 11:36:55 +0200374 timeout_msecs = 120;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100375 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass87ff0f72017-07-04 13:31:25 -0600376 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100377 data->blocks > 1 ?
378 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
379 SUNXI_MMC_RINT_DATA_OVER,
380 "data");
381 if (error)
382 goto out;
383 }
384
385 if (cmd->resp_type & MMC_RSP_BUSY) {
386 timeout_msecs = 2000;
387 do {
Simon Glass8e659a22017-07-04 13:31:24 -0600388 status = readl(&priv->reg->status);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100389 if (!timeout_msecs--) {
390 debug("busy timeout\n");
Jaehoon Chung7825d202016-07-19 16:33:36 +0900391 error = -ETIMEDOUT;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100392 goto out;
393 }
394 udelay(1000);
395 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
396 }
397
398 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass8e659a22017-07-04 13:31:24 -0600399 cmd->response[0] = readl(&priv->reg->resp3);
400 cmd->response[1] = readl(&priv->reg->resp2);
401 cmd->response[2] = readl(&priv->reg->resp1);
402 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100403 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
404 cmd->response[3], cmd->response[2],
405 cmd->response[1], cmd->response[0]);
406 } else {
Simon Glass8e659a22017-07-04 13:31:24 -0600407 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100408 debug("mmc resp 0x%08x\n", cmd->response[0]);
409 }
410out:
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100411 if (error < 0) {
Simon Glass8e659a22017-07-04 13:31:24 -0600412 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass87ff0f72017-07-04 13:31:25 -0600413 mmc_update_clk(priv);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100414 }
Simon Glass8e659a22017-07-04 13:31:24 -0600415 writel(0xffffffff, &priv->reg->rint);
416 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
417 &priv->reg->gctrl);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100418
419 return error;
420}
421
Simon Glass7484ae72017-07-04 13:31:27 -0600422#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass87ff0f72017-07-04 13:31:25 -0600423static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
424{
425 struct sunxi_mmc_priv *priv = mmc->priv;
426
427 return sunxi_mmc_set_ios_common(priv, mmc);
428}
429
430static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
431 struct mmc_data *data)
432{
433 struct sunxi_mmc_priv *priv = mmc->priv;
434
435 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
436}
437
438static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goede7412ef82014-10-02 20:29:26 +0200439{
Simon Glass8e659a22017-07-04 13:31:24 -0600440 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede3d1095f2014-10-31 16:55:02 +0100441 int cd_pin;
Hans de Goede7412ef82014-10-02 20:29:26 +0200442
Simon Glass8e659a22017-07-04 13:31:24 -0600443 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goedeb1e107a2015-04-22 17:03:17 +0200444 if (cd_pin < 0)
Hans de Goede7412ef82014-10-02 20:29:26 +0200445 return 1;
446
Axel Lin06da3462014-12-20 11:41:25 +0800447 return !gpio_get_value(cd_pin);
Hans de Goede7412ef82014-10-02 20:29:26 +0200448}
449
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100450static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass87ff0f72017-07-04 13:31:25 -0600451 .send_cmd = sunxi_mmc_send_cmd_legacy,
452 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka253d77d2015-02-01 00:42:14 +0200453 .init = sunxi_mmc_core_init,
Simon Glass87ff0f72017-07-04 13:31:25 -0600454 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100455};
456
Hans de Goede63deaa82014-10-02 21:13:54 +0200457struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100458{
Simon Glass3a654152017-07-04 13:31:26 -0600459 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass87ff0f72017-07-04 13:31:25 -0600460 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
461 struct mmc_config *cfg = &priv->cfg;
Simon Glass3a654152017-07-04 13:31:26 -0600462 int ret;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100463
Simon Glass87ff0f72017-07-04 13:31:25 -0600464 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100465
466 cfg->name = "SUNXI SD/MMC";
467 cfg->ops = &sunxi_mmc_ops;
468
469 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
470 cfg->host_caps = MMC_MODE_4BIT;
Maxime Ripard584d7ae2016-11-04 16:18:09 +0100471#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I)
Siarhei Siamashka26c50fb2016-03-29 17:29:10 +0200472 if (sdc_no == 2)
473 cfg->host_caps = MMC_MODE_8BIT;
474#endif
Rob Herring5fd3edd2015-03-23 17:56:59 -0500475 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100476 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
477
478 cfg->f_min = 400000;
479 cfg->f_max = 52000000;
480
Hans de Goede3d1095f2014-10-31 16:55:02 +0100481 if (mmc_resource_init(sdc_no) != 0)
482 return NULL;
483
Simon Glass3a654152017-07-04 13:31:26 -0600484 /* config ahb clock */
485 debug("init mmc %d clock and io\n", sdc_no);
486 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
487
488#ifdef CONFIG_SUNXI_GEN_SUN6I
489 /* unassert reset */
490 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
491#endif
492#if defined(CONFIG_MACH_SUN9I)
493 /* sun9i has a mmc-common module, also set the gate and reset there */
494 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
495 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
496#endif
497 ret = mmc_set_mod_clk(priv, 24000000);
498 if (ret)
499 return NULL;
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100500
Simon Glass87ff0f72017-07-04 13:31:25 -0600501 return mmc_create(cfg, mmc_host);
Ian Campbellb4e9f2f2014-05-05 14:42:31 +0100502}
Simon Glass7484ae72017-07-04 13:31:27 -0600503#else
504
505static int sunxi_mmc_set_ios(struct udevice *dev)
506{
507 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
508 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
509
510 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
511}
512
513static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
514 struct mmc_data *data)
515{
516 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
517 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
518
519 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
520}
521
522static int sunxi_mmc_getcd(struct udevice *dev)
523{
524 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
525
526 if (dm_gpio_is_valid(&priv->cd_gpio))
527 return dm_gpio_get_value(&priv->cd_gpio);
528
529 return 1;
530}
531
532static const struct dm_mmc_ops sunxi_mmc_ops = {
533 .send_cmd = sunxi_mmc_send_cmd,
534 .set_ios = sunxi_mmc_set_ios,
535 .get_cd = sunxi_mmc_getcd,
536};
537
538static int sunxi_mmc_probe(struct udevice *dev)
539{
540 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
541 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
542 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
543 struct mmc_config *cfg = &plat->cfg;
544 struct ofnode_phandle_args args;
545 u32 *gate_reg;
546 int bus_width, ret;
547
548 cfg->name = dev->name;
549 bus_width = dev_read_u32_default(dev, "bus-width", 1);
550
551 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
552 cfg->host_caps = 0;
553 if (bus_width == 8)
554 cfg->host_caps |= MMC_MODE_8BIT;
555 if (bus_width >= 4)
556 cfg->host_caps |= MMC_MODE_4BIT;
557 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
558 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
559
560 cfg->f_min = 400000;
561 cfg->f_max = 52000000;
562
563 priv->reg = (void *)dev_read_addr(dev);
564
565 /* We don't have a sunxi clock driver so find the clock address here */
566 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
567 1, &args);
568 if (ret)
569 return ret;
570 priv->mclkreg = (u32 *)ofnode_get_addr(args.node);
571
572 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
573 0, &args);
574 if (ret)
575 return ret;
576 gate_reg = (u32 *)ofnode_get_addr(args.node);
577 setbits_le32(gate_reg, 1 << args.args[0]);
578 priv->mmc_no = args.args[0] - 8;
579
580 ret = mmc_set_mod_clk(priv, 24000000);
581 if (ret)
582 return ret;
583
584 /* This GPIO is optional */
585 if (!gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
586 GPIOD_IS_IN)) {
587 int cd_pin = gpio_get_number(&priv->cd_gpio);
588
589 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
590 }
591
592 upriv->mmc = &plat->mmc;
593
594 /* Reset controller */
595 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
596 udelay(1000);
597
598 return 0;
599}
600
601static int sunxi_mmc_bind(struct udevice *dev)
602{
603 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
604
605 return mmc_bind(dev, &plat->mmc, &plat->cfg);
606}
607
608static const struct udevice_id sunxi_mmc_ids[] = {
609 { .compatible = "allwinner,sun5i-a13-mmc" },
610 { }
611};
612
613U_BOOT_DRIVER(sunxi_mmc_drv) = {
614 .name = "sunxi_mmc",
615 .id = UCLASS_MMC,
616 .of_match = sunxi_mmc_ids,
617 .bind = sunxi_mmc_bind,
618 .probe = sunxi_mmc_probe,
619 .ops = &sunxi_mmc_ops,
620 .platdata_auto_alloc_size = sizeof(struct sunxi_mmc_plat),
621 .priv_auto_alloc_size = sizeof(struct sunxi_mmc_priv),
622};
623#endif