]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/mmc/sunxi_mmc.c
sunxi: mmc: set transfer timeout according to byte_cnt.
[karo-tx-uboot.git] / drivers / mmc / sunxi_mmc.c
1 /*
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>
12 #include <errno.h>
13 #include <malloc.h>
14 #include <mmc.h>
15 #include <asm/io.h>
16 #include <asm/arch/clock.h>
17 #include <asm/arch/cpu.h>
18 #include <asm/arch/gpio.h>
19 #include <asm/arch/mmc.h>
20 #include <asm-generic/gpio.h>
21
22 struct sunxi_mmc_host {
23         unsigned mmc_no;
24         uint32_t *mclkreg;
25         unsigned fatal_err;
26         struct sunxi_mmc *reg;
27         struct mmc_config cfg;
28 };
29
30 /* support 4 mmc hosts */
31 struct sunxi_mmc_host mmc_host[4];
32
33 static 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         }
41         return -EINVAL;
42 }
43
44 static int mmc_resource_init(int sdc_no)
45 {
46         struct sunxi_mmc_host *mmchost = &mmc_host[sdc_no];
47         struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
48         int cd_pin, ret = 0;
49
50         debug("init mmc %d resource\n", sdc_no);
51
52         switch (sdc_no) {
53         case 0:
54                 mmchost->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
55                 mmchost->mclkreg = &ccm->sd0_clk_cfg;
56                 break;
57         case 1:
58                 mmchost->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
59                 mmchost->mclkreg = &ccm->sd1_clk_cfg;
60                 break;
61         case 2:
62                 mmchost->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
63                 mmchost->mclkreg = &ccm->sd2_clk_cfg;
64                 break;
65         case 3:
66                 mmchost->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
67                 mmchost->mclkreg = &ccm->sd3_clk_cfg;
68                 break;
69         default:
70                 printf("Wrong mmc number %d\n", sdc_no);
71                 return -1;
72         }
73         mmchost->mmc_no = sdc_no;
74
75         cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
76         if (cd_pin >= 0) {
77                 ret = gpio_request(cd_pin, "mmc_cd");
78                 if (!ret) {
79                         sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
80                         ret = gpio_direction_input(cd_pin);
81                 }
82         }
83
84         return ret;
85 }
86
87 static int mmc_set_mod_clk(struct sunxi_mmc_host *mmchost, unsigned int hz)
88 {
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 {
95 #ifdef CONFIG_MACH_SUN9I
96                 pll = CCM_MMC_CTRL_PLL_PERIPH0;
97                 pll_hz = clock_get_pll4_periph0();
98 #else
99                 pll = CCM_MMC_CTRL_PLL6;
100                 pll_hz = clock_get_pll6();
101 #endif
102         }
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) {
115                 printf("mmc %u error cannot set clock to %u\n",
116                        mmchost->mmc_no, hz);
117                 return -1;
118         }
119
120         /* determine delays */
121         if (hz <= 400000) {
122                 oclk_dly = 0;
123                 sclk_dly = 7;
124         } else if (hz <= 25000000) {
125                 oclk_dly = 0;
126                 sclk_dly = 5;
127         } else if (hz <= 50000000) {
128                 oclk_dly = 3;
129                 sclk_dly = 5;
130         } else {
131                 /* hz > 50000000 */
132                 oclk_dly = 2;
133                 sclk_dly = 4;
134         }
135
136         writel(CCM_MMC_CTRL_ENABLE | pll | CCM_MMC_CTRL_SCLK_DLY(sclk_dly) |
137                CCM_MMC_CTRL_N(n) | CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
138                CCM_MMC_CTRL_M(div), mmchost->mclkreg);
139
140         debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
141               mmchost->mmc_no, hz, pll_hz, 1u << n, div,
142               pll_hz / (1u << n) / div);
143
144         return 0;
145 }
146
147 static int mmc_clk_io_on(int sdc_no)
148 {
149         struct sunxi_mmc_host *mmchost = &mmc_host[sdc_no];
150         struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
151
152         debug("init mmc %d clock and io\n", sdc_no);
153
154         /* config ahb clock */
155         setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
156
157 #ifdef CONFIG_SUNXI_GEN_SUN6I
158         /* unassert reset */
159         setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
160 #endif
161 #if defined(CONFIG_MACH_SUN9I)
162         /* sun9i has a mmc-common module, also set the gate and reset there */
163         writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
164                SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
165 #endif
166
167         return mmc_set_mod_clk(mmchost, 24000000);
168 }
169
170 static int mmc_update_clk(struct mmc *mmc)
171 {
172         struct sunxi_mmc_host *mmchost = mmc->priv;
173         unsigned int cmd;
174         unsigned timeout_msecs = 2000;
175
176         cmd = SUNXI_MMC_CMD_START |
177               SUNXI_MMC_CMD_UPCLK_ONLY |
178               SUNXI_MMC_CMD_WAIT_PRE_OVER;
179         writel(cmd, &mmchost->reg->cmd);
180         while (readl(&mmchost->reg->cmd) & SUNXI_MMC_CMD_START) {
181                 if (!timeout_msecs--)
182                         return -1;
183                 udelay(1000);
184         }
185
186         /* clock update sets various irq status bits, clear these */
187         writel(readl(&mmchost->reg->rint), &mmchost->reg->rint);
188
189         return 0;
190 }
191
192 static int mmc_config_clock(struct mmc *mmc)
193 {
194         struct sunxi_mmc_host *mmchost = mmc->priv;
195         unsigned rval = readl(&mmchost->reg->clkcr);
196
197         /* Disable Clock */
198         rval &= ~SUNXI_MMC_CLK_ENABLE;
199         writel(rval, &mmchost->reg->clkcr);
200         if (mmc_update_clk(mmc))
201                 return -1;
202
203         /* Set mod_clk to new rate */
204         if (mmc_set_mod_clk(mmchost, mmc->clock))
205                 return -1;
206
207         /* Clear internal divider */
208         rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
209         writel(rval, &mmchost->reg->clkcr);
210
211         /* Re-enable Clock */
212         rval |= SUNXI_MMC_CLK_ENABLE;
213         writel(rval, &mmchost->reg->clkcr);
214         if (mmc_update_clk(mmc))
215                 return -1;
216
217         return 0;
218 }
219
220 static void sunxi_mmc_set_ios(struct mmc *mmc)
221 {
222         struct sunxi_mmc_host *mmchost = mmc->priv;
223
224         debug("set ios: bus_width: %x, clock: %d\n",
225               mmc->bus_width, mmc->clock);
226
227         /* Change clock first */
228         if (mmc->clock && mmc_config_clock(mmc) != 0) {
229                 mmchost->fatal_err = 1;
230                 return;
231         }
232
233         /* Change bus width */
234         if (mmc->bus_width == 8)
235                 writel(0x2, &mmchost->reg->width);
236         else if (mmc->bus_width == 4)
237                 writel(0x1, &mmchost->reg->width);
238         else
239                 writel(0x0, &mmchost->reg->width);
240 }
241
242 static int sunxi_mmc_core_init(struct mmc *mmc)
243 {
244         struct sunxi_mmc_host *mmchost = mmc->priv;
245
246         /* Reset controller */
247         writel(SUNXI_MMC_GCTRL_RESET, &mmchost->reg->gctrl);
248         udelay(1000);
249
250         return 0;
251 }
252
253 static int mmc_trans_data_by_cpu(struct mmc *mmc, struct mmc_data *data)
254 {
255         struct sunxi_mmc_host *mmchost = mmc->priv;
256         const int reading = !!(data->flags & MMC_DATA_READ);
257         const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
258                                               SUNXI_MMC_STATUS_FIFO_FULL;
259         unsigned i;
260         unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
261         unsigned byte_cnt = data->blocksize * data->blocks;
262         unsigned timeout_msecs = byte_cnt >> 8;
263         if (timeout_msecs < 2000)
264                 timeout_msecs = 2000;
265
266         /* Always read / write data through the CPU */
267         setbits_le32(&mmchost->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
268
269         for (i = 0; i < (byte_cnt >> 2); i++) {
270                 while (readl(&mmchost->reg->status) & status_bit) {
271                         if (!timeout_msecs--)
272                                 return -1;
273                         udelay(1000);
274                 }
275
276                 if (reading)
277                         buff[i] = readl(&mmchost->reg->fifo);
278                 else
279                         writel(buff[i], &mmchost->reg->fifo);
280         }
281
282         return 0;
283 }
284
285 static int mmc_rint_wait(struct mmc *mmc, unsigned int timeout_msecs,
286                          unsigned int done_bit, const char *what)
287 {
288         struct sunxi_mmc_host *mmchost = mmc->priv;
289         unsigned int status;
290
291         do {
292                 status = readl(&mmchost->reg->rint);
293                 if (!timeout_msecs-- ||
294                     (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
295                         debug("%s timeout %x\n", what,
296                               status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
297                         return TIMEOUT;
298                 }
299                 udelay(1000);
300         } while (!(status & done_bit));
301
302         return 0;
303 }
304
305 static int sunxi_mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
306                               struct mmc_data *data)
307 {
308         struct sunxi_mmc_host *mmchost = mmc->priv;
309         unsigned int cmdval = SUNXI_MMC_CMD_START;
310         unsigned int timeout_msecs;
311         int error = 0;
312         unsigned int status = 0;
313         unsigned int bytecnt = 0;
314
315         if (mmchost->fatal_err)
316                 return -1;
317         if (cmd->resp_type & MMC_RSP_BUSY)
318                 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
319         if (cmd->cmdidx == 12)
320                 return 0;
321
322         if (!cmd->cmdidx)
323                 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
324         if (cmd->resp_type & MMC_RSP_PRESENT)
325                 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
326         if (cmd->resp_type & MMC_RSP_136)
327                 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
328         if (cmd->resp_type & MMC_RSP_CRC)
329                 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
330
331         if (data) {
332                 if ((u32) data->dest & 0x3) {
333                         error = -1;
334                         goto out;
335                 }
336
337                 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
338                 if (data->flags & MMC_DATA_WRITE)
339                         cmdval |= SUNXI_MMC_CMD_WRITE;
340                 if (data->blocks > 1)
341                         cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
342                 writel(data->blocksize, &mmchost->reg->blksz);
343                 writel(data->blocks * data->blocksize, &mmchost->reg->bytecnt);
344         }
345
346         debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", mmchost->mmc_no,
347               cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
348         writel(cmd->cmdarg, &mmchost->reg->arg);
349
350         if (!data)
351                 writel(cmdval | cmd->cmdidx, &mmchost->reg->cmd);
352
353         /*
354          * transfer data and check status
355          * STATREG[2] : FIFO empty
356          * STATREG[3] : FIFO full
357          */
358         if (data) {
359                 int ret = 0;
360
361                 bytecnt = data->blocksize * data->blocks;
362                 debug("trans data %d bytes\n", bytecnt);
363                 writel(cmdval | cmd->cmdidx, &mmchost->reg->cmd);
364                 ret = mmc_trans_data_by_cpu(mmc, data);
365                 if (ret) {
366                         error = readl(&mmchost->reg->rint) & \
367                                 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
368                         error = TIMEOUT;
369                         goto out;
370                 }
371         }
372
373         error = mmc_rint_wait(mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE, "cmd");
374         if (error)
375                 goto out;
376
377         if (data) {
378                 timeout_msecs = 120;
379                 debug("cacl timeout %x msec\n", timeout_msecs);
380                 error = mmc_rint_wait(mmc, timeout_msecs,
381                                       data->blocks > 1 ?
382                                       SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
383                                       SUNXI_MMC_RINT_DATA_OVER,
384                                       "data");
385                 if (error)
386                         goto out;
387         }
388
389         if (cmd->resp_type & MMC_RSP_BUSY) {
390                 timeout_msecs = 2000;
391                 do {
392                         status = readl(&mmchost->reg->status);
393                         if (!timeout_msecs--) {
394                                 debug("busy timeout\n");
395                                 error = TIMEOUT;
396                                 goto out;
397                         }
398                         udelay(1000);
399                 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
400         }
401
402         if (cmd->resp_type & MMC_RSP_136) {
403                 cmd->response[0] = readl(&mmchost->reg->resp3);
404                 cmd->response[1] = readl(&mmchost->reg->resp2);
405                 cmd->response[2] = readl(&mmchost->reg->resp1);
406                 cmd->response[3] = readl(&mmchost->reg->resp0);
407                 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
408                       cmd->response[3], cmd->response[2],
409                       cmd->response[1], cmd->response[0]);
410         } else {
411                 cmd->response[0] = readl(&mmchost->reg->resp0);
412                 debug("mmc resp 0x%08x\n", cmd->response[0]);
413         }
414 out:
415         if (error < 0) {
416                 writel(SUNXI_MMC_GCTRL_RESET, &mmchost->reg->gctrl);
417                 mmc_update_clk(mmc);
418         }
419         writel(0xffffffff, &mmchost->reg->rint);
420         writel(readl(&mmchost->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
421                &mmchost->reg->gctrl);
422
423         return error;
424 }
425
426 static int sunxi_mmc_getcd(struct mmc *mmc)
427 {
428         struct sunxi_mmc_host *mmchost = mmc->priv;
429         int cd_pin;
430
431         cd_pin = sunxi_mmc_getcd_gpio(mmchost->mmc_no);
432         if (cd_pin < 0)
433                 return 1;
434
435         return !gpio_get_value(cd_pin);
436 }
437
438 int sunxi_mmc_has_egon_boot_signature(struct mmc *mmc)
439 {
440         char *buf = malloc(512);
441         int valid_signature = 0;
442
443         if (buf == NULL)
444                 panic("Failed to allocate memory\n");
445
446         if (mmc_getcd(mmc) && mmc_init(mmc) == 0 &&
447             mmc->block_dev.block_read(mmc->block_dev.dev, 16, 1, buf) == 1 &&
448             strncmp(&buf[4], "eGON.BT0", 8) == 0)
449                 valid_signature = 1;
450
451         free(buf);
452         return valid_signature;
453 }
454
455 static const struct mmc_ops sunxi_mmc_ops = {
456         .send_cmd       = sunxi_mmc_send_cmd,
457         .set_ios        = sunxi_mmc_set_ios,
458         .init           = sunxi_mmc_core_init,
459         .getcd          = sunxi_mmc_getcd,
460 };
461
462 struct mmc *sunxi_mmc_init(int sdc_no)
463 {
464         struct mmc_config *cfg = &mmc_host[sdc_no].cfg;
465
466         memset(&mmc_host[sdc_no], 0, sizeof(struct sunxi_mmc_host));
467
468         cfg->name = "SUNXI SD/MMC";
469         cfg->ops  = &sunxi_mmc_ops;
470
471         cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
472         cfg->host_caps = MMC_MODE_4BIT;
473         cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
474         cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
475
476         cfg->f_min = 400000;
477         cfg->f_max = 52000000;
478
479         if (mmc_resource_init(sdc_no) != 0)
480                 return NULL;
481
482         mmc_clk_io_on(sdc_no);
483
484         return mmc_create(cfg, &mmc_host[sdc_no]);
485 }