blob: 1bb7b6d0e92bb44c281b20f15b5dff8744c0b635 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ian Campbelle24ea552014-05-05 14:42:31 +01002/*
3 * (C) Copyright 2007-2011
4 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
5 * Aaron <leafy.myeh@allwinnertech.com>
6 *
7 * MMC driver for allwinner sunxi platform.
Ian Campbelle24ea552014-05-05 14:42:31 +01008 */
9
10#include <common.h>
Simon Glassdd279182017-07-04 13:31:27 -060011#include <dm.h>
Hans de Goede90641f82015-04-22 17:03:17 +020012#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010014#include <malloc.h>
15#include <mmc.h>
Andre Przywarac57572e2019-01-29 15:54:13 +000016#include <clk.h>
17#include <reset.h>
Samuel Holland42508462021-09-11 16:50:47 -050018#include <asm/gpio.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010019#include <asm/io.h>
20#include <asm/arch/clock.h>
21#include <asm/arch/cpu.h>
22#include <asm/arch/mmc.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010024
Andre Przywaraf85c0912021-05-05 09:57:47 +010025#ifndef CCM_MMC_CTRL_MODE_SEL_NEW
26#define CCM_MMC_CTRL_MODE_SEL_NEW 0
27#endif
28
Simon Glassdd279182017-07-04 13:31:27 -060029struct sunxi_mmc_plat {
30 struct mmc_config cfg;
31 struct mmc mmc;
32};
33
Simon Glasse3c794e2017-07-04 13:31:23 -060034struct sunxi_mmc_priv {
Ian Campbelle24ea552014-05-05 14:42:31 +010035 unsigned mmc_no;
36 uint32_t *mclkreg;
Ian Campbelle24ea552014-05-05 14:42:31 +010037 unsigned fatal_err;
Simon Glassdd279182017-07-04 13:31:27 -060038 struct gpio_desc cd_gpio; /* Change Detect GPIO */
Ian Campbelle24ea552014-05-05 14:42:31 +010039 struct sunxi_mmc *reg;
40 struct mmc_config cfg;
41};
42
Simon Glassdd279182017-07-04 13:31:27 -060043#if !CONFIG_IS_ENABLED(DM_MMC)
Ian Campbelle24ea552014-05-05 14:42:31 +010044/* support 4 mmc hosts */
Simon Glasse3c794e2017-07-04 13:31:23 -060045struct sunxi_mmc_priv mmc_host[4];
Ian Campbelle24ea552014-05-05 14:42:31 +010046
Hans de Goede967325f2014-10-31 16:55:02 +010047static int sunxi_mmc_getcd_gpio(int sdc_no)
48{
49 switch (sdc_no) {
50 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
51 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
52 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
53 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
54 }
Hans de Goede90641f82015-04-22 17:03:17 +020055 return -EINVAL;
Hans de Goede967325f2014-10-31 16:55:02 +010056}
57
Ian Campbelle24ea552014-05-05 14:42:31 +010058static int mmc_resource_init(int sdc_no)
59{
Simon Glass3f5af122017-07-04 13:31:24 -060060 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +010061 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede967325f2014-10-31 16:55:02 +010062 int cd_pin, ret = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +010063
64 debug("init mmc %d resource\n", sdc_no);
65
66 switch (sdc_no) {
67 case 0:
Simon Glass3f5af122017-07-04 13:31:24 -060068 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
69 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010070 break;
71 case 1:
Simon Glass3f5af122017-07-04 13:31:24 -060072 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
73 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010074 break;
Icenowy Zhengc846fe42021-07-22 14:30:05 +080075#ifdef SUNXI_MMC2_BASE
Ian Campbelle24ea552014-05-05 14:42:31 +010076 case 2:
Simon Glass3f5af122017-07-04 13:31:24 -060077 priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
78 priv->mclkreg = &ccm->sd2_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010079 break;
Icenowy Zhengc846fe42021-07-22 14:30:05 +080080#endif
Icenowy Zheng42956f12018-07-21 16:20:29 +080081#ifdef SUNXI_MMC3_BASE
Ian Campbelle24ea552014-05-05 14:42:31 +010082 case 3:
Simon Glass3f5af122017-07-04 13:31:24 -060083 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
84 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010085 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080086#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010087 default:
88 printf("Wrong mmc number %d\n", sdc_no);
89 return -1;
90 }
Simon Glass3f5af122017-07-04 13:31:24 -060091 priv->mmc_no = sdc_no;
Ian Campbelle24ea552014-05-05 14:42:31 +010092
Hans de Goede967325f2014-10-31 16:55:02 +010093 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goede90641f82015-04-22 17:03:17 +020094 if (cd_pin >= 0) {
Hans de Goede967325f2014-10-31 16:55:02 +010095 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goede1c09fa32015-05-30 16:39:10 +020096 if (!ret) {
97 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Linb0c4ae12014-12-20 11:41:25 +080098 ret = gpio_direction_input(cd_pin);
Hans de Goede1c09fa32015-05-30 16:39:10 +020099 }
Axel Linb0c4ae12014-12-20 11:41:25 +0800100 }
Hans de Goede967325f2014-10-31 16:55:02 +0100101
102 return ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100103}
Simon Glassdd279182017-07-04 13:31:27 -0600104#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100105
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100106/*
107 * All A64 and later MMC controllers feature auto-calibration. This would
108 * normally be detected via the compatible string, but we need something
109 * which works in the SPL as well.
110 */
111static bool sunxi_mmc_can_calibrate(void)
112{
113 return IS_ENABLED(CONFIG_MACH_SUN50I) ||
114 IS_ENABLED(CONFIG_MACH_SUN50I_H5) ||
115 IS_ENABLED(CONFIG_SUN50I_GEN_H6) ||
116 IS_ENABLED(CONFIG_MACH_SUN8I_R40);
117}
118
Simon Glass3f5af122017-07-04 13:31:24 -0600119static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goedefc3a8322014-12-07 20:55:10 +0100120{
121 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
Andre Przywaraf85c0912021-05-05 09:57:47 +0100122 bool new_mode = IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE);
Maxime Ripardde9b1772017-08-23 12:03:41 +0200123 u32 val = 0;
124
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800125 /* A83T support new mode only on eMMC */
126 if (IS_ENABLED(CONFIG_MACH_SUN8I_A83T) && priv->mmc_no != 2)
127 new_mode = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200128
Hans de Goedefc3a8322014-12-07 20:55:10 +0100129 if (hz <= 24000000) {
130 pll = CCM_MMC_CTRL_OSCM24;
131 pll_hz = 24000000;
132 } else {
Hans de Goededaf22632015-01-14 19:05:03 +0100133#ifdef CONFIG_MACH_SUN9I
134 pll = CCM_MMC_CTRL_PLL_PERIPH0;
135 pll_hz = clock_get_pll4_periph0();
136#else
Andre Przywara937ee312021-05-05 09:57:47 +0100137 /*
138 * SoCs since the A64 (H5, H6, H616) actually use the doubled
139 * rate of PLL6/PERIPH0 as an input clock, but compensate for
140 * that with a fixed post-divider of 2 in the mod clock.
141 * This cancels each other out, so for simplicity we just
142 * pretend it's always PLL6 without a post divider here.
143 */
Hans de Goedefc3a8322014-12-07 20:55:10 +0100144 pll = CCM_MMC_CTRL_PLL6;
145 pll_hz = clock_get_pll6();
Hans de Goededaf22632015-01-14 19:05:03 +0100146#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100147 }
148
149 div = pll_hz / hz;
150 if (pll_hz % hz)
151 div++;
152
153 n = 0;
154 while (div > 16) {
155 n++;
156 div = (div + 1) / 2;
157 }
158
159 if (n > 3) {
Simon Glass3f5af122017-07-04 13:31:24 -0600160 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
161 hz);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100162 return -1;
163 }
164
165 /* determine delays */
166 if (hz <= 400000) {
167 oclk_dly = 0;
Hans de Goedebe909742015-09-23 16:13:10 +0200168 sclk_dly = 0;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100169 } else if (hz <= 25000000) {
170 oclk_dly = 0;
171 sclk_dly = 5;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100172 } else {
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000173 if (IS_ENABLED(CONFIG_MACH_SUN9I)) {
174 if (hz <= 52000000)
175 oclk_dly = 5;
176 else
177 oclk_dly = 2;
178 } else {
179 if (hz <= 52000000)
180 oclk_dly = 3;
181 else
182 oclk_dly = 1;
183 }
Hans de Goedefc3a8322014-12-07 20:55:10 +0100184 sclk_dly = 4;
185 }
186
Maxime Ripardde9b1772017-08-23 12:03:41 +0200187 if (new_mode) {
Andre Przywaraf85c0912021-05-05 09:57:47 +0100188 val |= CCM_MMC_CTRL_MODE_SEL_NEW;
Chen-Yu Tsai8a647fc2017-08-31 21:57:48 +0800189 setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100190 }
191
192 if (!sunxi_mmc_can_calibrate()) {
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800193 /*
194 * Use hardcoded delay values if controller doesn't support
195 * calibration
196 */
Maxime Ripardde9b1772017-08-23 12:03:41 +0200197 val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
198 CCM_MMC_CTRL_SCLK_DLY(sclk_dly);
199 }
200
201 writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) |
202 CCM_MMC_CTRL_M(div) | val, priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100203
204 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600205 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100206
207 return 0;
208}
209
Simon Glass034e2262017-07-04 13:31:25 -0600210static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100211{
Ian Campbelle24ea552014-05-05 14:42:31 +0100212 unsigned int cmd;
213 unsigned timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100214 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100215
216 cmd = SUNXI_MMC_CMD_START |
217 SUNXI_MMC_CMD_UPCLK_ONLY |
218 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100219
Simon Glass3f5af122017-07-04 13:31:24 -0600220 writel(cmd, &priv->reg->cmd);
221 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100222 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100223 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100224 }
225
226 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600227 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100228
229 return 0;
230}
231
Simon Glass034e2262017-07-04 13:31:25 -0600232static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100233{
Simon Glass3f5af122017-07-04 13:31:24 -0600234 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100235
236 /* Disable Clock */
237 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600238 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600239 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100240 return -1;
241
Hans de Goedefc3a8322014-12-07 20:55:10 +0100242 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600243 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100244 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100245
246 /* Clear internal divider */
247 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600248 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100249
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100250#if defined(CONFIG_SUNXI_GEN_SUN6I) || defined(CONFIG_SUN50I_GEN_H6)
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800251 /* A64 supports calibration of delays on MMC controller and we
252 * have to set delay of zero before starting calibration.
253 * Allwinner BSP driver sets a delay only in the case of
254 * using HS400 which is not supported by mainline U-Boot or
255 * Linux at the moment
256 */
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100257 if (sunxi_mmc_can_calibrate())
258 writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800259#endif
260
Ian Campbelle24ea552014-05-05 14:42:31 +0100261 /* Re-enable Clock */
262 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600263 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600264 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100265 return -1;
266
267 return 0;
268}
269
Simon Glass034e2262017-07-04 13:31:25 -0600270static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
271 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100272{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100273 debug("set ios: bus_width: %x, clock: %d\n",
274 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100275
276 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600277 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600278 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900279 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100280 }
281
282 /* Change bus width */
283 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600284 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100285 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600286 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100287 else
Simon Glass3f5af122017-07-04 13:31:24 -0600288 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900289
290 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100291}
292
Simon Glassdd279182017-07-04 13:31:27 -0600293#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200294static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100295{
Simon Glass3f5af122017-07-04 13:31:24 -0600296 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100297
298 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600299 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200300 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100301
302 return 0;
303}
Simon Glassdd279182017-07-04 13:31:27 -0600304#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100305
Simon Glass034e2262017-07-04 13:31:25 -0600306static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
307 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100308{
Ian Campbelle24ea552014-05-05 14:42:31 +0100309 const int reading = !!(data->flags & MMC_DATA_READ);
310 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
311 SUNXI_MMC_STATUS_FIFO_FULL;
312 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100313 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Andre Przywara9faae542021-05-05 11:33:40 +0100314 unsigned word_cnt = (data->blocksize * data->blocks) >> 2;
315 unsigned timeout_msecs = word_cnt >> 6;
316 uint32_t status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100317 unsigned long start;
318
319 if (timeout_msecs < 2000)
320 timeout_msecs = 2000;
Ian Campbelle24ea552014-05-05 14:42:31 +0100321
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200322 /* Always read / write data through the CPU */
Simon Glass3f5af122017-07-04 13:31:24 -0600323 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200324
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100325 start = get_timer(0);
326
Andre Przywara9faae542021-05-05 11:33:40 +0100327 for (i = 0; i < word_cnt;) {
328 unsigned int in_fifo;
329
330 while ((status = readl(&priv->reg->status)) & status_bit) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100331 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100332 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100333 }
334
Andre Przywara9faae542021-05-05 11:33:40 +0100335 /*
336 * For writing we do not easily know the FIFO size, so have
337 * to check the FIFO status after every word written.
338 * TODO: For optimisation we could work out a minimum FIFO
339 * size across all SoCs, and use that together with the current
340 * fill level to write chunks of words.
341 */
342 if (!reading) {
343 writel(buff[i++], &priv->reg->fifo);
344 continue;
345 }
346
347 /*
348 * The status register holds the current FIFO level, so we
349 * can be sure to collect as many words from the FIFO
350 * register without checking the status register after every
351 * read. That saves half of the costly MMIO reads, effectively
352 * doubling the read performance.
Andre Przywara0b508ca2021-09-03 16:49:16 +0100353 * Some SoCs (A20) report a level of 0 if the FIFO is
354 * completely full (value masked out?). Use a safe minimal
355 * FIFO size in this case.
Andre Przywara9faae542021-05-05 11:33:40 +0100356 */
Andre Przywara0b508ca2021-09-03 16:49:16 +0100357 in_fifo = SUNXI_MMC_STATUS_FIFO_LEVEL(status);
358 if (in_fifo == 0 && (status & SUNXI_MMC_STATUS_FIFO_FULL))
359 in_fifo = 32;
360 for (; in_fifo > 0; in_fifo--)
Andre Przywara9faae542021-05-05 11:33:40 +0100361 buff[i++] = readl_relaxed(&priv->reg->fifo);
362 dmb();
Ian Campbelle24ea552014-05-05 14:42:31 +0100363 }
364
365 return 0;
366}
367
Simon Glass034e2262017-07-04 13:31:25 -0600368static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
369 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100370{
Ian Campbelle24ea552014-05-05 14:42:31 +0100371 unsigned int status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100372 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100373
374 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600375 status = readl(&priv->reg->rint);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100376 if ((get_timer(start) > timeout_msecs) ||
Ian Campbelle24ea552014-05-05 14:42:31 +0100377 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
378 debug("%s timeout %x\n", what,
379 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900380 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100381 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100382 } while (!(status & done_bit));
383
384 return 0;
385}
386
Simon Glass034e2262017-07-04 13:31:25 -0600387static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
388 struct mmc *mmc, struct mmc_cmd *cmd,
389 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100390{
Ian Campbelle24ea552014-05-05 14:42:31 +0100391 unsigned int cmdval = SUNXI_MMC_CMD_START;
392 unsigned int timeout_msecs;
393 int error = 0;
394 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100395 unsigned int bytecnt = 0;
396
Simon Glass3f5af122017-07-04 13:31:24 -0600397 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100398 return -1;
399 if (cmd->resp_type & MMC_RSP_BUSY)
400 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
401 if (cmd->cmdidx == 12)
402 return 0;
403
404 if (!cmd->cmdidx)
405 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
406 if (cmd->resp_type & MMC_RSP_PRESENT)
407 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
408 if (cmd->resp_type & MMC_RSP_136)
409 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
410 if (cmd->resp_type & MMC_RSP_CRC)
411 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
412
413 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200414 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100415 error = -1;
416 goto out;
417 }
418
419 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
420 if (data->flags & MMC_DATA_WRITE)
421 cmdval |= SUNXI_MMC_CMD_WRITE;
422 if (data->blocks > 1)
423 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600424 writel(data->blocksize, &priv->reg->blksz);
425 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100426 }
427
Simon Glass3f5af122017-07-04 13:31:24 -0600428 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100429 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600430 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100431
432 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600433 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100434
435 /*
436 * transfer data and check status
437 * STATREG[2] : FIFO empty
438 * STATREG[3] : FIFO full
439 */
440 if (data) {
441 int ret = 0;
442
443 bytecnt = data->blocksize * data->blocks;
444 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600445 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600446 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100447 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600448 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100449 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900450 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100451 goto out;
452 }
453 }
454
Simon Glass034e2262017-07-04 13:31:25 -0600455 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
456 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100457 if (error)
458 goto out;
459
460 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200461 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100462 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600463 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100464 data->blocks > 1 ?
465 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
466 SUNXI_MMC_RINT_DATA_OVER,
467 "data");
468 if (error)
469 goto out;
470 }
471
472 if (cmd->resp_type & MMC_RSP_BUSY) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100473 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100474 timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100475
Ian Campbelle24ea552014-05-05 14:42:31 +0100476 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600477 status = readl(&priv->reg->status);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100478 if (get_timer(start) > timeout_msecs) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100479 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900480 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100481 goto out;
482 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100483 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
484 }
485
486 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600487 cmd->response[0] = readl(&priv->reg->resp3);
488 cmd->response[1] = readl(&priv->reg->resp2);
489 cmd->response[2] = readl(&priv->reg->resp1);
490 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100491 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
492 cmd->response[3], cmd->response[2],
493 cmd->response[1], cmd->response[0]);
494 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600495 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100496 debug("mmc resp 0x%08x\n", cmd->response[0]);
497 }
498out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100499 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600500 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600501 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100502 }
Simon Glass3f5af122017-07-04 13:31:24 -0600503 writel(0xffffffff, &priv->reg->rint);
504 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
505 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100506
507 return error;
508}
509
Simon Glassdd279182017-07-04 13:31:27 -0600510#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass034e2262017-07-04 13:31:25 -0600511static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
512{
513 struct sunxi_mmc_priv *priv = mmc->priv;
514
515 return sunxi_mmc_set_ios_common(priv, mmc);
516}
517
518static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
519 struct mmc_data *data)
520{
521 struct sunxi_mmc_priv *priv = mmc->priv;
522
523 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
524}
525
526static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200527{
Simon Glass3f5af122017-07-04 13:31:24 -0600528 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100529 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200530
Simon Glass3f5af122017-07-04 13:31:24 -0600531 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200532 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200533 return 1;
534
Axel Linb0c4ae12014-12-20 11:41:25 +0800535 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200536}
537
Ian Campbelle24ea552014-05-05 14:42:31 +0100538static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600539 .send_cmd = sunxi_mmc_send_cmd_legacy,
540 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200541 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600542 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100543};
544
Hans de Goedee79c7c82014-10-02 21:13:54 +0200545struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100546{
Simon Glassec73d962017-07-04 13:31:26 -0600547 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass034e2262017-07-04 13:31:25 -0600548 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
549 struct mmc_config *cfg = &priv->cfg;
Simon Glassec73d962017-07-04 13:31:26 -0600550 int ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100551
Simon Glass034e2262017-07-04 13:31:25 -0600552 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100553
554 cfg->name = "SUNXI SD/MMC";
555 cfg->ops = &sunxi_mmc_ops;
556
557 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
558 cfg->host_caps = MMC_MODE_4BIT;
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000559
560 if ((IS_ENABLED(CONFIG_MACH_SUN50I) || IS_ENABLED(CONFIG_MACH_SUN8I) ||
561 IS_ENABLED(CONFIG_SUN50I_GEN_H6)) && (sdc_no == 2))
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200562 cfg->host_caps = MMC_MODE_8BIT;
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000563
Rob Herring5a203972015-03-23 17:56:59 -0500564 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100565 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
566
567 cfg->f_min = 400000;
568 cfg->f_max = 52000000;
569
Hans de Goede967325f2014-10-31 16:55:02 +0100570 if (mmc_resource_init(sdc_no) != 0)
571 return NULL;
572
Simon Glassec73d962017-07-04 13:31:26 -0600573 /* config ahb clock */
574 debug("init mmc %d clock and io\n", sdc_no);
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100575#if !defined(CONFIG_SUN50I_GEN_H6)
Simon Glassec73d962017-07-04 13:31:26 -0600576 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
577
578#ifdef CONFIG_SUNXI_GEN_SUN6I
579 /* unassert reset */
580 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
581#endif
582#if defined(CONFIG_MACH_SUN9I)
583 /* sun9i has a mmc-common module, also set the gate and reset there */
584 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
585 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
586#endif
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100587#else /* CONFIG_SUN50I_GEN_H6 */
Icenowy Zheng42956f12018-07-21 16:20:29 +0800588 setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
589 /* unassert reset */
590 setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
591#endif
Simon Glassec73d962017-07-04 13:31:26 -0600592 ret = mmc_set_mod_clk(priv, 24000000);
593 if (ret)
594 return NULL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100595
Maxime Ripardead36972017-08-23 13:41:33 +0200596 return mmc_create(cfg, priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100597}
Simon Glassdd279182017-07-04 13:31:27 -0600598#else
599
600static int sunxi_mmc_set_ios(struct udevice *dev)
601{
Simon Glassc69cda22020-12-03 16:55:20 -0700602 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600603 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
604
605 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
606}
607
608static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
609 struct mmc_data *data)
610{
Simon Glassc69cda22020-12-03 16:55:20 -0700611 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600612 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
613
614 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
615}
616
617static int sunxi_mmc_getcd(struct udevice *dev)
618{
Andre Przywaraac62dad2021-04-21 09:33:04 +0100619 struct mmc *mmc = mmc_get_mmc_dev(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600620 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
621
Andre Przywaraac62dad2021-04-21 09:33:04 +0100622 /* If polling, assume that the card is always present. */
623 if ((mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE) ||
624 (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL))
625 return 1;
626
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100627 if (dm_gpio_is_valid(&priv->cd_gpio)) {
628 int cd_state = dm_gpio_get_value(&priv->cd_gpio);
Simon Glassdd279182017-07-04 13:31:27 -0600629
Andre Przywaraac62dad2021-04-21 09:33:04 +0100630 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
631 return !cd_state;
632 else
633 return cd_state;
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100634 }
Simon Glassdd279182017-07-04 13:31:27 -0600635 return 1;
636}
637
638static const struct dm_mmc_ops sunxi_mmc_ops = {
639 .send_cmd = sunxi_mmc_send_cmd,
640 .set_ios = sunxi_mmc_set_ios,
641 .get_cd = sunxi_mmc_getcd,
642};
643
Andre Przywara0237b302021-01-11 21:11:44 +0100644static unsigned get_mclk_offset(void)
645{
646 if (IS_ENABLED(CONFIG_MACH_SUN9I_A80))
647 return 0x410;
648
649 if (IS_ENABLED(CONFIG_SUN50I_GEN_H6))
650 return 0x830;
651
652 return 0x88;
653};
654
Simon Glassdd279182017-07-04 13:31:27 -0600655static int sunxi_mmc_probe(struct udevice *dev)
656{
657 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -0700658 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600659 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
Andre Przywarac57572e2019-01-29 15:54:13 +0000660 struct reset_ctl_bulk reset_bulk;
661 struct clk gate_clk;
Simon Glassdd279182017-07-04 13:31:27 -0600662 struct mmc_config *cfg = &plat->cfg;
663 struct ofnode_phandle_args args;
Andre Przywarac57572e2019-01-29 15:54:13 +0000664 u32 *ccu_reg;
Andre Przywaraac62dad2021-04-21 09:33:04 +0100665 int ret;
Simon Glassdd279182017-07-04 13:31:27 -0600666
667 cfg->name = dev->name;
Simon Glassdd279182017-07-04 13:31:27 -0600668
669 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
Andre Przywaraac62dad2021-04-21 09:33:04 +0100670 cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
Simon Glassdd279182017-07-04 13:31:27 -0600671 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
672
673 cfg->f_min = 400000;
674 cfg->f_max = 52000000;
675
Andre Przywaraac62dad2021-04-21 09:33:04 +0100676 ret = mmc_of_parse(dev, cfg);
677 if (ret)
678 return ret;
679
Andre Przywaraca496ba2021-04-29 09:31:58 +0100680 priv->reg = dev_read_addr_ptr(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600681
682 /* We don't have a sunxi clock driver so find the clock address here */
683 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
684 1, &args);
685 if (ret)
686 return ret;
Andre Przywaraca496ba2021-04-29 09:31:58 +0100687 ccu_reg = (u32 *)(uintptr_t)ofnode_get_addr(args.node);
Simon Glassdd279182017-07-04 13:31:27 -0600688
Jagan Tekie8f37f42019-01-09 16:58:39 +0530689 priv->mmc_no = ((uintptr_t)priv->reg - SUNXI_MMC0_BASE) / 0x1000;
Andre Przywara0237b302021-01-11 21:11:44 +0100690 priv->mclkreg = (void *)ccu_reg + get_mclk_offset() + priv->mmc_no * 4;
Andre Przywarac57572e2019-01-29 15:54:13 +0000691
692 ret = clk_get_by_name(dev, "ahb", &gate_clk);
693 if (!ret)
694 clk_enable(&gate_clk);
695
696 ret = reset_get_bulk(dev, &reset_bulk);
697 if (!ret)
698 reset_deassert_bulk(&reset_bulk);
Simon Glassdd279182017-07-04 13:31:27 -0600699
700 ret = mmc_set_mod_clk(priv, 24000000);
701 if (ret)
702 return ret;
703
704 /* This GPIO is optional */
Samuel Hollandfb6f6702021-10-20 23:52:57 -0500705 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
706 GPIOD_IS_IN | GPIOD_PULL_UP);
Simon Glassdd279182017-07-04 13:31:27 -0600707
708 upriv->mmc = &plat->mmc;
709
710 /* Reset controller */
711 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
712 udelay(1000);
713
714 return 0;
715}
716
717static int sunxi_mmc_bind(struct udevice *dev)
718{
Simon Glassc69cda22020-12-03 16:55:20 -0700719 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600720
721 return mmc_bind(dev, &plat->mmc, &plat->cfg);
722}
723
724static const struct udevice_id sunxi_mmc_ids[] = {
Andre Przywara0237b302021-01-11 21:11:44 +0100725 { .compatible = "allwinner,sun4i-a10-mmc" },
726 { .compatible = "allwinner,sun5i-a13-mmc" },
727 { .compatible = "allwinner,sun7i-a20-mmc" },
728 { .compatible = "allwinner,sun8i-a83t-emmc" },
729 { .compatible = "allwinner,sun9i-a80-mmc" },
730 { .compatible = "allwinner,sun50i-a64-mmc" },
731 { .compatible = "allwinner,sun50i-a64-emmc" },
732 { .compatible = "allwinner,sun50i-h6-mmc" },
733 { .compatible = "allwinner,sun50i-h6-emmc" },
734 { .compatible = "allwinner,sun50i-a100-mmc" },
735 { .compatible = "allwinner,sun50i-a100-emmc" },
Jagan Tekie8f37f42019-01-09 16:58:39 +0530736 { /* sentinel */ }
Simon Glassdd279182017-07-04 13:31:27 -0600737};
738
739U_BOOT_DRIVER(sunxi_mmc_drv) = {
740 .name = "sunxi_mmc",
741 .id = UCLASS_MMC,
742 .of_match = sunxi_mmc_ids,
743 .bind = sunxi_mmc_bind,
744 .probe = sunxi_mmc_probe,
745 .ops = &sunxi_mmc_ops,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700746 .plat_auto = sizeof(struct sunxi_mmc_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700747 .priv_auto = sizeof(struct sunxi_mmc_priv),
Simon Glassdd279182017-07-04 13:31:27 -0600748};
749#endif