blob: aaab0cf86687e6138c5d9e41098c26461eb40ed1 [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>
Ian Campbelle24ea552014-05-05 14:42:31 +010018#include <asm/io.h>
19#include <asm/arch/clock.h>
20#include <asm/arch/cpu.h>
Hans de Goedecd821132014-10-02 20:29:26 +020021#include <asm/arch/gpio.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010022#include <asm/arch/mmc.h>
Hans de Goedecd821132014-10-02 20:29:26 +020023#include <asm-generic/gpio.h>
Simon Glassc05ed002020-05-10 11:40:11 -060024#include <linux/delay.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010025
Andre Przywaraf85c0912021-05-05 09:57:47 +010026#ifndef CCM_MMC_CTRL_MODE_SEL_NEW
27#define CCM_MMC_CTRL_MODE_SEL_NEW 0
28#endif
29
Simon Glassdd279182017-07-04 13:31:27 -060030struct sunxi_mmc_plat {
31 struct mmc_config cfg;
32 struct mmc mmc;
33};
34
Simon Glasse3c794e2017-07-04 13:31:23 -060035struct sunxi_mmc_priv {
Ian Campbelle24ea552014-05-05 14:42:31 +010036 unsigned mmc_no;
37 uint32_t *mclkreg;
Ian Campbelle24ea552014-05-05 14:42:31 +010038 unsigned fatal_err;
Simon Glassdd279182017-07-04 13:31:27 -060039 struct gpio_desc cd_gpio; /* Change Detect GPIO */
Ian Campbelle24ea552014-05-05 14:42:31 +010040 struct sunxi_mmc *reg;
41 struct mmc_config cfg;
42};
43
Simon Glassdd279182017-07-04 13:31:27 -060044#if !CONFIG_IS_ENABLED(DM_MMC)
Ian Campbelle24ea552014-05-05 14:42:31 +010045/* support 4 mmc hosts */
Simon Glasse3c794e2017-07-04 13:31:23 -060046struct sunxi_mmc_priv mmc_host[4];
Ian Campbelle24ea552014-05-05 14:42:31 +010047
Hans de Goede967325f2014-10-31 16:55:02 +010048static int sunxi_mmc_getcd_gpio(int sdc_no)
49{
50 switch (sdc_no) {
51 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
52 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
53 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
54 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
55 }
Hans de Goede90641f82015-04-22 17:03:17 +020056 return -EINVAL;
Hans de Goede967325f2014-10-31 16:55:02 +010057}
58
Ian Campbelle24ea552014-05-05 14:42:31 +010059static int mmc_resource_init(int sdc_no)
60{
Simon Glass3f5af122017-07-04 13:31:24 -060061 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +010062 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede967325f2014-10-31 16:55:02 +010063 int cd_pin, ret = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +010064
65 debug("init mmc %d resource\n", sdc_no);
66
67 switch (sdc_no) {
68 case 0:
Simon Glass3f5af122017-07-04 13:31:24 -060069 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
70 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010071 break;
72 case 1:
Simon Glass3f5af122017-07-04 13:31:24 -060073 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
74 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010075 break;
76 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 Zheng42956f12018-07-21 16:20:29 +080080#ifdef SUNXI_MMC3_BASE
Ian Campbelle24ea552014-05-05 14:42:31 +010081 case 3:
Simon Glass3f5af122017-07-04 13:31:24 -060082 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
83 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010084 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080085#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010086 default:
87 printf("Wrong mmc number %d\n", sdc_no);
88 return -1;
89 }
Simon Glass3f5af122017-07-04 13:31:24 -060090 priv->mmc_no = sdc_no;
Ian Campbelle24ea552014-05-05 14:42:31 +010091
Hans de Goede967325f2014-10-31 16:55:02 +010092 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goede90641f82015-04-22 17:03:17 +020093 if (cd_pin >= 0) {
Hans de Goede967325f2014-10-31 16:55:02 +010094 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goede1c09fa32015-05-30 16:39:10 +020095 if (!ret) {
96 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Linb0c4ae12014-12-20 11:41:25 +080097 ret = gpio_direction_input(cd_pin);
Hans de Goede1c09fa32015-05-30 16:39:10 +020098 }
Axel Linb0c4ae12014-12-20 11:41:25 +080099 }
Hans de Goede967325f2014-10-31 16:55:02 +0100100
101 return ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100102}
Simon Glassdd279182017-07-04 13:31:27 -0600103#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100104
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100105/*
106 * All A64 and later MMC controllers feature auto-calibration. This would
107 * normally be detected via the compatible string, but we need something
108 * which works in the SPL as well.
109 */
110static bool sunxi_mmc_can_calibrate(void)
111{
112 return IS_ENABLED(CONFIG_MACH_SUN50I) ||
113 IS_ENABLED(CONFIG_MACH_SUN50I_H5) ||
114 IS_ENABLED(CONFIG_SUN50I_GEN_H6) ||
115 IS_ENABLED(CONFIG_MACH_SUN8I_R40);
116}
117
Simon Glass3f5af122017-07-04 13:31:24 -0600118static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goedefc3a8322014-12-07 20:55:10 +0100119{
120 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
Andre Przywaraf85c0912021-05-05 09:57:47 +0100121 bool new_mode = IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE);
Maxime Ripardde9b1772017-08-23 12:03:41 +0200122 u32 val = 0;
123
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800124 /* A83T support new mode only on eMMC */
125 if (IS_ENABLED(CONFIG_MACH_SUN8I_A83T) && priv->mmc_no != 2)
126 new_mode = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200127
Hans de Goedefc3a8322014-12-07 20:55:10 +0100128 if (hz <= 24000000) {
129 pll = CCM_MMC_CTRL_OSCM24;
130 pll_hz = 24000000;
131 } else {
Hans de Goededaf22632015-01-14 19:05:03 +0100132#ifdef CONFIG_MACH_SUN9I
133 pll = CCM_MMC_CTRL_PLL_PERIPH0;
134 pll_hz = clock_get_pll4_periph0();
135#else
Andre Przywara937ee312021-05-05 09:57:47 +0100136 /*
137 * SoCs since the A64 (H5, H6, H616) actually use the doubled
138 * rate of PLL6/PERIPH0 as an input clock, but compensate for
139 * that with a fixed post-divider of 2 in the mod clock.
140 * This cancels each other out, so for simplicity we just
141 * pretend it's always PLL6 without a post divider here.
142 */
Hans de Goedefc3a8322014-12-07 20:55:10 +0100143 pll = CCM_MMC_CTRL_PLL6;
144 pll_hz = clock_get_pll6();
Hans de Goededaf22632015-01-14 19:05:03 +0100145#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100146 }
147
148 div = pll_hz / hz;
149 if (pll_hz % hz)
150 div++;
151
152 n = 0;
153 while (div > 16) {
154 n++;
155 div = (div + 1) / 2;
156 }
157
158 if (n > 3) {
Simon Glass3f5af122017-07-04 13:31:24 -0600159 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
160 hz);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100161 return -1;
162 }
163
164 /* determine delays */
165 if (hz <= 400000) {
166 oclk_dly = 0;
Hans de Goedebe909742015-09-23 16:13:10 +0200167 sclk_dly = 0;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100168 } else if (hz <= 25000000) {
169 oclk_dly = 0;
170 sclk_dly = 5;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100171 } else {
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000172 if (IS_ENABLED(CONFIG_MACH_SUN9I)) {
173 if (hz <= 52000000)
174 oclk_dly = 5;
175 else
176 oclk_dly = 2;
177 } else {
178 if (hz <= 52000000)
179 oclk_dly = 3;
180 else
181 oclk_dly = 1;
182 }
Hans de Goedefc3a8322014-12-07 20:55:10 +0100183 sclk_dly = 4;
184 }
185
Maxime Ripardde9b1772017-08-23 12:03:41 +0200186 if (new_mode) {
Andre Przywaraf85c0912021-05-05 09:57:47 +0100187 val |= CCM_MMC_CTRL_MODE_SEL_NEW;
Chen-Yu Tsai8a647fc2017-08-31 21:57:48 +0800188 setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100189 }
190
191 if (!sunxi_mmc_can_calibrate()) {
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800192 /*
193 * Use hardcoded delay values if controller doesn't support
194 * calibration
195 */
Maxime Ripardde9b1772017-08-23 12:03:41 +0200196 val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
197 CCM_MMC_CTRL_SCLK_DLY(sclk_dly);
198 }
199
200 writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) |
201 CCM_MMC_CTRL_M(div) | val, priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100202
203 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600204 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100205
206 return 0;
207}
208
Simon Glass034e2262017-07-04 13:31:25 -0600209static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100210{
Ian Campbelle24ea552014-05-05 14:42:31 +0100211 unsigned int cmd;
212 unsigned timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100213 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100214
215 cmd = SUNXI_MMC_CMD_START |
216 SUNXI_MMC_CMD_UPCLK_ONLY |
217 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100218
Simon Glass3f5af122017-07-04 13:31:24 -0600219 writel(cmd, &priv->reg->cmd);
220 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100221 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100222 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100223 }
224
225 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600226 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100227
228 return 0;
229}
230
Simon Glass034e2262017-07-04 13:31:25 -0600231static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100232{
Simon Glass3f5af122017-07-04 13:31:24 -0600233 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100234
235 /* Disable Clock */
236 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600237 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600238 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100239 return -1;
240
Hans de Goedefc3a8322014-12-07 20:55:10 +0100241 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600242 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100243 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100244
245 /* Clear internal divider */
246 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600247 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100248
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100249#if defined(CONFIG_SUNXI_GEN_SUN6I) || defined(CONFIG_SUN50I_GEN_H6)
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800250 /* A64 supports calibration of delays on MMC controller and we
251 * have to set delay of zero before starting calibration.
252 * Allwinner BSP driver sets a delay only in the case of
253 * using HS400 which is not supported by mainline U-Boot or
254 * Linux at the moment
255 */
Andre Przywarab5dd39c2021-05-05 10:06:24 +0100256 if (sunxi_mmc_can_calibrate())
257 writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800258#endif
259
Ian Campbelle24ea552014-05-05 14:42:31 +0100260 /* Re-enable Clock */
261 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600262 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600263 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100264 return -1;
265
266 return 0;
267}
268
Simon Glass034e2262017-07-04 13:31:25 -0600269static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
270 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100271{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100272 debug("set ios: bus_width: %x, clock: %d\n",
273 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100274
275 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600276 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600277 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900278 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100279 }
280
281 /* Change bus width */
282 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600283 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100284 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600285 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100286 else
Simon Glass3f5af122017-07-04 13:31:24 -0600287 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900288
289 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100290}
291
Simon Glassdd279182017-07-04 13:31:27 -0600292#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200293static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100294{
Simon Glass3f5af122017-07-04 13:31:24 -0600295 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100296
297 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600298 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200299 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100300
301 return 0;
302}
Simon Glassdd279182017-07-04 13:31:27 -0600303#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100304
Simon Glass034e2262017-07-04 13:31:25 -0600305static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
306 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100307{
Ian Campbelle24ea552014-05-05 14:42:31 +0100308 const int reading = !!(data->flags & MMC_DATA_READ);
309 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
310 SUNXI_MMC_STATUS_FIFO_FULL;
311 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100312 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Andre Przywara9faae542021-05-05 11:33:40 +0100313 unsigned word_cnt = (data->blocksize * data->blocks) >> 2;
314 unsigned timeout_msecs = word_cnt >> 6;
315 uint32_t status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100316 unsigned long start;
317
318 if (timeout_msecs < 2000)
319 timeout_msecs = 2000;
Ian Campbelle24ea552014-05-05 14:42:31 +0100320
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200321 /* Always read / write data through the CPU */
Simon Glass3f5af122017-07-04 13:31:24 -0600322 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200323
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100324 start = get_timer(0);
325
Andre Przywara9faae542021-05-05 11:33:40 +0100326 for (i = 0; i < word_cnt;) {
327 unsigned int in_fifo;
328
329 while ((status = readl(&priv->reg->status)) & status_bit) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100330 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100331 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100332 }
333
Andre Przywara9faae542021-05-05 11:33:40 +0100334 /*
335 * For writing we do not easily know the FIFO size, so have
336 * to check the FIFO status after every word written.
337 * TODO: For optimisation we could work out a minimum FIFO
338 * size across all SoCs, and use that together with the current
339 * fill level to write chunks of words.
340 */
341 if (!reading) {
342 writel(buff[i++], &priv->reg->fifo);
343 continue;
344 }
345
346 /*
347 * The status register holds the current FIFO level, so we
348 * can be sure to collect as many words from the FIFO
349 * register without checking the status register after every
350 * read. That saves half of the costly MMIO reads, effectively
351 * doubling the read performance.
Andre Przywara0b508ca2021-09-03 16:49:16 +0100352 * Some SoCs (A20) report a level of 0 if the FIFO is
353 * completely full (value masked out?). Use a safe minimal
354 * FIFO size in this case.
Andre Przywara9faae542021-05-05 11:33:40 +0100355 */
Andre Przywara0b508ca2021-09-03 16:49:16 +0100356 in_fifo = SUNXI_MMC_STATUS_FIFO_LEVEL(status);
357 if (in_fifo == 0 && (status & SUNXI_MMC_STATUS_FIFO_FULL))
358 in_fifo = 32;
359 for (; in_fifo > 0; in_fifo--)
Andre Przywara9faae542021-05-05 11:33:40 +0100360 buff[i++] = readl_relaxed(&priv->reg->fifo);
361 dmb();
Ian Campbelle24ea552014-05-05 14:42:31 +0100362 }
363
364 return 0;
365}
366
Simon Glass034e2262017-07-04 13:31:25 -0600367static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
368 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100369{
Ian Campbelle24ea552014-05-05 14:42:31 +0100370 unsigned int status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100371 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100372
373 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600374 status = readl(&priv->reg->rint);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100375 if ((get_timer(start) > timeout_msecs) ||
Ian Campbelle24ea552014-05-05 14:42:31 +0100376 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
377 debug("%s timeout %x\n", what,
378 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900379 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100380 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100381 } while (!(status & done_bit));
382
383 return 0;
384}
385
Simon Glass034e2262017-07-04 13:31:25 -0600386static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
387 struct mmc *mmc, struct mmc_cmd *cmd,
388 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100389{
Ian Campbelle24ea552014-05-05 14:42:31 +0100390 unsigned int cmdval = SUNXI_MMC_CMD_START;
391 unsigned int timeout_msecs;
392 int error = 0;
393 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100394 unsigned int bytecnt = 0;
395
Simon Glass3f5af122017-07-04 13:31:24 -0600396 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100397 return -1;
398 if (cmd->resp_type & MMC_RSP_BUSY)
399 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
400 if (cmd->cmdidx == 12)
401 return 0;
402
403 if (!cmd->cmdidx)
404 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
405 if (cmd->resp_type & MMC_RSP_PRESENT)
406 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
407 if (cmd->resp_type & MMC_RSP_136)
408 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
409 if (cmd->resp_type & MMC_RSP_CRC)
410 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
411
412 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200413 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100414 error = -1;
415 goto out;
416 }
417
418 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
419 if (data->flags & MMC_DATA_WRITE)
420 cmdval |= SUNXI_MMC_CMD_WRITE;
421 if (data->blocks > 1)
422 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600423 writel(data->blocksize, &priv->reg->blksz);
424 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100425 }
426
Simon Glass3f5af122017-07-04 13:31:24 -0600427 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100428 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600429 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100430
431 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600432 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100433
434 /*
435 * transfer data and check status
436 * STATREG[2] : FIFO empty
437 * STATREG[3] : FIFO full
438 */
439 if (data) {
440 int ret = 0;
441
442 bytecnt = data->blocksize * data->blocks;
443 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600444 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600445 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100446 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600447 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100448 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900449 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100450 goto out;
451 }
452 }
453
Simon Glass034e2262017-07-04 13:31:25 -0600454 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
455 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100456 if (error)
457 goto out;
458
459 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200460 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100461 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600462 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100463 data->blocks > 1 ?
464 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
465 SUNXI_MMC_RINT_DATA_OVER,
466 "data");
467 if (error)
468 goto out;
469 }
470
471 if (cmd->resp_type & MMC_RSP_BUSY) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100472 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100473 timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100474
Ian Campbelle24ea552014-05-05 14:42:31 +0100475 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600476 status = readl(&priv->reg->status);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100477 if (get_timer(start) > timeout_msecs) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100478 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900479 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100480 goto out;
481 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100482 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
483 }
484
485 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600486 cmd->response[0] = readl(&priv->reg->resp3);
487 cmd->response[1] = readl(&priv->reg->resp2);
488 cmd->response[2] = readl(&priv->reg->resp1);
489 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100490 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
491 cmd->response[3], cmd->response[2],
492 cmd->response[1], cmd->response[0]);
493 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600494 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100495 debug("mmc resp 0x%08x\n", cmd->response[0]);
496 }
497out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100498 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600499 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600500 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100501 }
Simon Glass3f5af122017-07-04 13:31:24 -0600502 writel(0xffffffff, &priv->reg->rint);
503 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
504 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100505
506 return error;
507}
508
Simon Glassdd279182017-07-04 13:31:27 -0600509#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass034e2262017-07-04 13:31:25 -0600510static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
511{
512 struct sunxi_mmc_priv *priv = mmc->priv;
513
514 return sunxi_mmc_set_ios_common(priv, mmc);
515}
516
517static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
518 struct mmc_data *data)
519{
520 struct sunxi_mmc_priv *priv = mmc->priv;
521
522 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
523}
524
525static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200526{
Simon Glass3f5af122017-07-04 13:31:24 -0600527 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100528 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200529
Simon Glass3f5af122017-07-04 13:31:24 -0600530 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200531 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200532 return 1;
533
Axel Linb0c4ae12014-12-20 11:41:25 +0800534 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200535}
536
Ian Campbelle24ea552014-05-05 14:42:31 +0100537static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600538 .send_cmd = sunxi_mmc_send_cmd_legacy,
539 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200540 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600541 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100542};
543
Hans de Goedee79c7c82014-10-02 21:13:54 +0200544struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100545{
Simon Glassec73d962017-07-04 13:31:26 -0600546 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass034e2262017-07-04 13:31:25 -0600547 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
548 struct mmc_config *cfg = &priv->cfg;
Simon Glassec73d962017-07-04 13:31:26 -0600549 int ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100550
Simon Glass034e2262017-07-04 13:31:25 -0600551 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100552
553 cfg->name = "SUNXI SD/MMC";
554 cfg->ops = &sunxi_mmc_ops;
555
556 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
557 cfg->host_caps = MMC_MODE_4BIT;
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000558
559 if ((IS_ENABLED(CONFIG_MACH_SUN50I) || IS_ENABLED(CONFIG_MACH_SUN8I) ||
560 IS_ENABLED(CONFIG_SUN50I_GEN_H6)) && (sdc_no == 2))
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200561 cfg->host_caps = MMC_MODE_8BIT;
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000562
Rob Herring5a203972015-03-23 17:56:59 -0500563 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100564 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
565
566 cfg->f_min = 400000;
567 cfg->f_max = 52000000;
568
Hans de Goede967325f2014-10-31 16:55:02 +0100569 if (mmc_resource_init(sdc_no) != 0)
570 return NULL;
571
Simon Glassec73d962017-07-04 13:31:26 -0600572 /* config ahb clock */
573 debug("init mmc %d clock and io\n", sdc_no);
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100574#if !defined(CONFIG_SUN50I_GEN_H6)
Simon Glassec73d962017-07-04 13:31:26 -0600575 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
576
577#ifdef CONFIG_SUNXI_GEN_SUN6I
578 /* unassert reset */
579 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
580#endif
581#if defined(CONFIG_MACH_SUN9I)
582 /* sun9i has a mmc-common module, also set the gate and reset there */
583 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
584 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
585#endif
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100586#else /* CONFIG_SUN50I_GEN_H6 */
Icenowy Zheng42956f12018-07-21 16:20:29 +0800587 setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
588 /* unassert reset */
589 setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
590#endif
Simon Glassec73d962017-07-04 13:31:26 -0600591 ret = mmc_set_mod_clk(priv, 24000000);
592 if (ret)
593 return NULL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100594
Maxime Ripardead36972017-08-23 13:41:33 +0200595 return mmc_create(cfg, priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100596}
Simon Glassdd279182017-07-04 13:31:27 -0600597#else
598
599static int sunxi_mmc_set_ios(struct udevice *dev)
600{
Simon Glassc69cda22020-12-03 16:55:20 -0700601 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600602 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
603
604 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
605}
606
607static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
608 struct mmc_data *data)
609{
Simon Glassc69cda22020-12-03 16:55:20 -0700610 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600611 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
612
613 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
614}
615
616static int sunxi_mmc_getcd(struct udevice *dev)
617{
Andre Przywaraac62dad2021-04-21 09:33:04 +0100618 struct mmc *mmc = mmc_get_mmc_dev(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600619 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
620
Andre Przywaraac62dad2021-04-21 09:33:04 +0100621 /* If polling, assume that the card is always present. */
622 if ((mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE) ||
623 (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL))
624 return 1;
625
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100626 if (dm_gpio_is_valid(&priv->cd_gpio)) {
627 int cd_state = dm_gpio_get_value(&priv->cd_gpio);
Simon Glassdd279182017-07-04 13:31:27 -0600628
Andre Przywaraac62dad2021-04-21 09:33:04 +0100629 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
630 return !cd_state;
631 else
632 return cd_state;
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100633 }
Simon Glassdd279182017-07-04 13:31:27 -0600634 return 1;
635}
636
637static const struct dm_mmc_ops sunxi_mmc_ops = {
638 .send_cmd = sunxi_mmc_send_cmd,
639 .set_ios = sunxi_mmc_set_ios,
640 .get_cd = sunxi_mmc_getcd,
641};
642
Andre Przywara0237b302021-01-11 21:11:44 +0100643static unsigned get_mclk_offset(void)
644{
645 if (IS_ENABLED(CONFIG_MACH_SUN9I_A80))
646 return 0x410;
647
648 if (IS_ENABLED(CONFIG_SUN50I_GEN_H6))
649 return 0x830;
650
651 return 0x88;
652};
653
Simon Glassdd279182017-07-04 13:31:27 -0600654static int sunxi_mmc_probe(struct udevice *dev)
655{
656 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -0700657 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600658 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
Andre Przywarac57572e2019-01-29 15:54:13 +0000659 struct reset_ctl_bulk reset_bulk;
660 struct clk gate_clk;
Simon Glassdd279182017-07-04 13:31:27 -0600661 struct mmc_config *cfg = &plat->cfg;
662 struct ofnode_phandle_args args;
Andre Przywarac57572e2019-01-29 15:54:13 +0000663 u32 *ccu_reg;
Andre Przywaraac62dad2021-04-21 09:33:04 +0100664 int ret;
Simon Glassdd279182017-07-04 13:31:27 -0600665
666 cfg->name = dev->name;
Simon Glassdd279182017-07-04 13:31:27 -0600667
668 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
Andre Przywaraac62dad2021-04-21 09:33:04 +0100669 cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
Simon Glassdd279182017-07-04 13:31:27 -0600670 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
671
672 cfg->f_min = 400000;
673 cfg->f_max = 52000000;
674
Andre Przywaraac62dad2021-04-21 09:33:04 +0100675 ret = mmc_of_parse(dev, cfg);
676 if (ret)
677 return ret;
678
Andre Przywaraca496ba2021-04-29 09:31:58 +0100679 priv->reg = dev_read_addr_ptr(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600680
681 /* We don't have a sunxi clock driver so find the clock address here */
682 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
683 1, &args);
684 if (ret)
685 return ret;
Andre Przywaraca496ba2021-04-29 09:31:58 +0100686 ccu_reg = (u32 *)(uintptr_t)ofnode_get_addr(args.node);
Simon Glassdd279182017-07-04 13:31:27 -0600687
Jagan Tekie8f37f42019-01-09 16:58:39 +0530688 priv->mmc_no = ((uintptr_t)priv->reg - SUNXI_MMC0_BASE) / 0x1000;
Andre Przywara0237b302021-01-11 21:11:44 +0100689 priv->mclkreg = (void *)ccu_reg + get_mclk_offset() + priv->mmc_no * 4;
Andre Przywarac57572e2019-01-29 15:54:13 +0000690
691 ret = clk_get_by_name(dev, "ahb", &gate_clk);
692 if (!ret)
693 clk_enable(&gate_clk);
694
695 ret = reset_get_bulk(dev, &reset_bulk);
696 if (!ret)
697 reset_deassert_bulk(&reset_bulk);
Simon Glassdd279182017-07-04 13:31:27 -0600698
699 ret = mmc_set_mod_clk(priv, 24000000);
700 if (ret)
701 return ret;
702
703 /* This GPIO is optional */
Andre Przywaraac62dad2021-04-21 09:33:04 +0100704 if (!gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
Simon Glassdd279182017-07-04 13:31:27 -0600705 GPIOD_IS_IN)) {
706 int cd_pin = gpio_get_number(&priv->cd_gpio);
707
708 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
709 }
710
711 upriv->mmc = &plat->mmc;
712
713 /* Reset controller */
714 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
715 udelay(1000);
716
717 return 0;
718}
719
720static int sunxi_mmc_bind(struct udevice *dev)
721{
Simon Glassc69cda22020-12-03 16:55:20 -0700722 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600723
724 return mmc_bind(dev, &plat->mmc, &plat->cfg);
725}
726
727static const struct udevice_id sunxi_mmc_ids[] = {
Andre Przywara0237b302021-01-11 21:11:44 +0100728 { .compatible = "allwinner,sun4i-a10-mmc" },
729 { .compatible = "allwinner,sun5i-a13-mmc" },
730 { .compatible = "allwinner,sun7i-a20-mmc" },
731 { .compatible = "allwinner,sun8i-a83t-emmc" },
732 { .compatible = "allwinner,sun9i-a80-mmc" },
733 { .compatible = "allwinner,sun50i-a64-mmc" },
734 { .compatible = "allwinner,sun50i-a64-emmc" },
735 { .compatible = "allwinner,sun50i-h6-mmc" },
736 { .compatible = "allwinner,sun50i-h6-emmc" },
737 { .compatible = "allwinner,sun50i-a100-mmc" },
738 { .compatible = "allwinner,sun50i-a100-emmc" },
Jagan Tekie8f37f42019-01-09 16:58:39 +0530739 { /* sentinel */ }
Simon Glassdd279182017-07-04 13:31:27 -0600740};
741
742U_BOOT_DRIVER(sunxi_mmc_drv) = {
743 .name = "sunxi_mmc",
744 .id = UCLASS_MMC,
745 .of_match = sunxi_mmc_ids,
746 .bind = sunxi_mmc_bind,
747 .probe = sunxi_mmc_probe,
748 .ops = &sunxi_mmc_ops,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700749 .plat_auto = sizeof(struct sunxi_mmc_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700750 .priv_auto = sizeof(struct sunxi_mmc_priv),
Simon Glassdd279182017-07-04 13:31:27 -0600751};
752#endif