blob: 869af993d35d7c0436b0f5d3c1ebfdac1da9617f [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
Simon Glassdd279182017-07-04 13:31:27 -060026struct sunxi_mmc_plat {
27 struct mmc_config cfg;
28 struct mmc mmc;
29};
30
Simon Glasse3c794e2017-07-04 13:31:23 -060031struct sunxi_mmc_priv {
Ian Campbelle24ea552014-05-05 14:42:31 +010032 unsigned mmc_no;
33 uint32_t *mclkreg;
Ian Campbelle24ea552014-05-05 14:42:31 +010034 unsigned fatal_err;
Simon Glassdd279182017-07-04 13:31:27 -060035 struct gpio_desc cd_gpio; /* Change Detect GPIO */
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +010036 int cd_inverted; /* Inverted Card Detect */
Ian Campbelle24ea552014-05-05 14:42:31 +010037 struct sunxi_mmc *reg;
38 struct mmc_config cfg;
39};
40
Simon Glassdd279182017-07-04 13:31:27 -060041#if !CONFIG_IS_ENABLED(DM_MMC)
Ian Campbelle24ea552014-05-05 14:42:31 +010042/* support 4 mmc hosts */
Simon Glasse3c794e2017-07-04 13:31:23 -060043struct sunxi_mmc_priv mmc_host[4];
Ian Campbelle24ea552014-05-05 14:42:31 +010044
Hans de Goede967325f2014-10-31 16:55:02 +010045static int sunxi_mmc_getcd_gpio(int sdc_no)
46{
47 switch (sdc_no) {
48 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
49 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
50 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
51 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
52 }
Hans de Goede90641f82015-04-22 17:03:17 +020053 return -EINVAL;
Hans de Goede967325f2014-10-31 16:55:02 +010054}
55
Ian Campbelle24ea552014-05-05 14:42:31 +010056static int mmc_resource_init(int sdc_no)
57{
Simon Glass3f5af122017-07-04 13:31:24 -060058 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +010059 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede967325f2014-10-31 16:55:02 +010060 int cd_pin, ret = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +010061
62 debug("init mmc %d resource\n", sdc_no);
63
64 switch (sdc_no) {
65 case 0:
Simon Glass3f5af122017-07-04 13:31:24 -060066 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
67 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010068 break;
69 case 1:
Simon Glass3f5af122017-07-04 13:31:24 -060070 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
71 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010072 break;
73 case 2:
Simon Glass3f5af122017-07-04 13:31:24 -060074 priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
75 priv->mclkreg = &ccm->sd2_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010076 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080077#ifdef SUNXI_MMC3_BASE
Ian Campbelle24ea552014-05-05 14:42:31 +010078 case 3:
Simon Glass3f5af122017-07-04 13:31:24 -060079 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
80 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010081 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080082#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010083 default:
84 printf("Wrong mmc number %d\n", sdc_no);
85 return -1;
86 }
Simon Glass3f5af122017-07-04 13:31:24 -060087 priv->mmc_no = sdc_no;
Ian Campbelle24ea552014-05-05 14:42:31 +010088
Hans de Goede967325f2014-10-31 16:55:02 +010089 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goede90641f82015-04-22 17:03:17 +020090 if (cd_pin >= 0) {
Hans de Goede967325f2014-10-31 16:55:02 +010091 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goede1c09fa32015-05-30 16:39:10 +020092 if (!ret) {
93 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Linb0c4ae12014-12-20 11:41:25 +080094 ret = gpio_direction_input(cd_pin);
Hans de Goede1c09fa32015-05-30 16:39:10 +020095 }
Axel Linb0c4ae12014-12-20 11:41:25 +080096 }
Hans de Goede967325f2014-10-31 16:55:02 +010097
98 return ret;
Ian Campbelle24ea552014-05-05 14:42:31 +010099}
Simon Glassdd279182017-07-04 13:31:27 -0600100#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100101
Simon Glass3f5af122017-07-04 13:31:24 -0600102static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goedefc3a8322014-12-07 20:55:10 +0100103{
104 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800105 bool new_mode = true;
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800106 bool calibrate = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200107 u32 val = 0;
108
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800109 if (!IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE))
110 new_mode = false;
111
112 /* A83T support new mode only on eMMC */
113 if (IS_ENABLED(CONFIG_MACH_SUN8I_A83T) && priv->mmc_no != 2)
114 new_mode = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200115
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100116#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_SUN50I_GEN_H6)
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800117 calibrate = true;
118#endif
119
Hans de Goedefc3a8322014-12-07 20:55:10 +0100120 if (hz <= 24000000) {
121 pll = CCM_MMC_CTRL_OSCM24;
122 pll_hz = 24000000;
123 } else {
Hans de Goededaf22632015-01-14 19:05:03 +0100124#ifdef CONFIG_MACH_SUN9I
125 pll = CCM_MMC_CTRL_PLL_PERIPH0;
126 pll_hz = clock_get_pll4_periph0();
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100127#elif defined(CONFIG_SUN50I_GEN_H6)
Icenowy Zheng42956f12018-07-21 16:20:29 +0800128 pll = CCM_MMC_CTRL_PLL6X2;
129 pll_hz = clock_get_pll6() * 2;
Hans de Goededaf22632015-01-14 19:05:03 +0100130#else
Hans de Goedefc3a8322014-12-07 20:55:10 +0100131 pll = CCM_MMC_CTRL_PLL6;
132 pll_hz = clock_get_pll6();
Hans de Goededaf22632015-01-14 19:05:03 +0100133#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100134 }
135
136 div = pll_hz / hz;
137 if (pll_hz % hz)
138 div++;
139
140 n = 0;
141 while (div > 16) {
142 n++;
143 div = (div + 1) / 2;
144 }
145
146 if (n > 3) {
Simon Glass3f5af122017-07-04 13:31:24 -0600147 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
148 hz);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100149 return -1;
150 }
151
152 /* determine delays */
153 if (hz <= 400000) {
154 oclk_dly = 0;
Hans de Goedebe909742015-09-23 16:13:10 +0200155 sclk_dly = 0;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100156 } else if (hz <= 25000000) {
157 oclk_dly = 0;
158 sclk_dly = 5;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100159 } else {
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000160 if (IS_ENABLED(CONFIG_MACH_SUN9I)) {
161 if (hz <= 52000000)
162 oclk_dly = 5;
163 else
164 oclk_dly = 2;
165 } else {
166 if (hz <= 52000000)
167 oclk_dly = 3;
168 else
169 oclk_dly = 1;
170 }
Hans de Goedefc3a8322014-12-07 20:55:10 +0100171 sclk_dly = 4;
172 }
173
Maxime Ripardde9b1772017-08-23 12:03:41 +0200174 if (new_mode) {
175#ifdef CONFIG_MMC_SUNXI_HAS_NEW_MODE
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800176#ifdef CONFIG_MMC_SUNXI_HAS_MODE_SWITCH
Maxime Ripardde9b1772017-08-23 12:03:41 +0200177 val = CCM_MMC_CTRL_MODE_SEL_NEW;
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800178#endif
Chen-Yu Tsai8a647fc2017-08-31 21:57:48 +0800179 setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
Maxime Ripardde9b1772017-08-23 12:03:41 +0200180#endif
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800181 } else if (!calibrate) {
182 /*
183 * Use hardcoded delay values if controller doesn't support
184 * calibration
185 */
Maxime Ripardde9b1772017-08-23 12:03:41 +0200186 val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
187 CCM_MMC_CTRL_SCLK_DLY(sclk_dly);
188 }
189
190 writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) |
191 CCM_MMC_CTRL_M(div) | val, priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100192
193 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600194 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100195
196 return 0;
197}
198
Simon Glass034e2262017-07-04 13:31:25 -0600199static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100200{
Ian Campbelle24ea552014-05-05 14:42:31 +0100201 unsigned int cmd;
202 unsigned timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100203 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100204
205 cmd = SUNXI_MMC_CMD_START |
206 SUNXI_MMC_CMD_UPCLK_ONLY |
207 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100208
Simon Glass3f5af122017-07-04 13:31:24 -0600209 writel(cmd, &priv->reg->cmd);
210 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100211 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100212 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100213 }
214
215 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600216 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100217
218 return 0;
219}
220
Simon Glass034e2262017-07-04 13:31:25 -0600221static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100222{
Simon Glass3f5af122017-07-04 13:31:24 -0600223 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100224
225 /* Disable Clock */
226 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600227 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600228 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100229 return -1;
230
Hans de Goedefc3a8322014-12-07 20:55:10 +0100231 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600232 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100233 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100234
235 /* Clear internal divider */
236 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600237 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100238
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100239#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_SUN50I_GEN_H6)
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800240 /* A64 supports calibration of delays on MMC controller and we
241 * have to set delay of zero before starting calibration.
242 * Allwinner BSP driver sets a delay only in the case of
243 * using HS400 which is not supported by mainline U-Boot or
244 * Linux at the moment
245 */
246 writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
247#endif
248
Ian Campbelle24ea552014-05-05 14:42:31 +0100249 /* Re-enable Clock */
250 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600251 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600252 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100253 return -1;
254
255 return 0;
256}
257
Simon Glass034e2262017-07-04 13:31:25 -0600258static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
259 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100260{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100261 debug("set ios: bus_width: %x, clock: %d\n",
262 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100263
264 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600265 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600266 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900267 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100268 }
269
270 /* Change bus width */
271 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600272 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100273 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600274 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100275 else
Simon Glass3f5af122017-07-04 13:31:24 -0600276 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900277
278 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100279}
280
Simon Glassdd279182017-07-04 13:31:27 -0600281#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200282static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100283{
Simon Glass3f5af122017-07-04 13:31:24 -0600284 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100285
286 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600287 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200288 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100289
290 return 0;
291}
Simon Glassdd279182017-07-04 13:31:27 -0600292#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100293
Simon Glass034e2262017-07-04 13:31:25 -0600294static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
295 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100296{
Ian Campbelle24ea552014-05-05 14:42:31 +0100297 const int reading = !!(data->flags & MMC_DATA_READ);
298 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
299 SUNXI_MMC_STATUS_FIFO_FULL;
300 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100301 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Yousong Zhou28f69b92015-08-29 21:26:11 +0800302 unsigned byte_cnt = data->blocksize * data->blocks;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100303 unsigned timeout_msecs = byte_cnt >> 8;
304 unsigned long start;
305
306 if (timeout_msecs < 2000)
307 timeout_msecs = 2000;
Ian Campbelle24ea552014-05-05 14:42:31 +0100308
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200309 /* Always read / write data through the CPU */
Simon Glass3f5af122017-07-04 13:31:24 -0600310 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200311
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100312 start = get_timer(0);
313
Ian Campbelle24ea552014-05-05 14:42:31 +0100314 for (i = 0; i < (byte_cnt >> 2); i++) {
Simon Glass3f5af122017-07-04 13:31:24 -0600315 while (readl(&priv->reg->status) & status_bit) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100316 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100317 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100318 }
319
320 if (reading)
Simon Glass3f5af122017-07-04 13:31:24 -0600321 buff[i] = readl(&priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100322 else
Simon Glass3f5af122017-07-04 13:31:24 -0600323 writel(buff[i], &priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100324 }
325
326 return 0;
327}
328
Simon Glass034e2262017-07-04 13:31:25 -0600329static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
330 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100331{
Ian Campbelle24ea552014-05-05 14:42:31 +0100332 unsigned int status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100333 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100334
335 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600336 status = readl(&priv->reg->rint);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100337 if ((get_timer(start) > timeout_msecs) ||
Ian Campbelle24ea552014-05-05 14:42:31 +0100338 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
339 debug("%s timeout %x\n", what,
340 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900341 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100342 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100343 } while (!(status & done_bit));
344
345 return 0;
346}
347
Simon Glass034e2262017-07-04 13:31:25 -0600348static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
349 struct mmc *mmc, struct mmc_cmd *cmd,
350 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100351{
Ian Campbelle24ea552014-05-05 14:42:31 +0100352 unsigned int cmdval = SUNXI_MMC_CMD_START;
353 unsigned int timeout_msecs;
354 int error = 0;
355 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100356 unsigned int bytecnt = 0;
357
Simon Glass3f5af122017-07-04 13:31:24 -0600358 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100359 return -1;
360 if (cmd->resp_type & MMC_RSP_BUSY)
361 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
362 if (cmd->cmdidx == 12)
363 return 0;
364
365 if (!cmd->cmdidx)
366 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
367 if (cmd->resp_type & MMC_RSP_PRESENT)
368 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
369 if (cmd->resp_type & MMC_RSP_136)
370 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
371 if (cmd->resp_type & MMC_RSP_CRC)
372 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
373
374 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200375 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100376 error = -1;
377 goto out;
378 }
379
380 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
381 if (data->flags & MMC_DATA_WRITE)
382 cmdval |= SUNXI_MMC_CMD_WRITE;
383 if (data->blocks > 1)
384 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600385 writel(data->blocksize, &priv->reg->blksz);
386 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100387 }
388
Simon Glass3f5af122017-07-04 13:31:24 -0600389 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100390 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600391 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100392
393 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600394 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100395
396 /*
397 * transfer data and check status
398 * STATREG[2] : FIFO empty
399 * STATREG[3] : FIFO full
400 */
401 if (data) {
402 int ret = 0;
403
404 bytecnt = data->blocksize * data->blocks;
405 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600406 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600407 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100408 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600409 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100410 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900411 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100412 goto out;
413 }
414 }
415
Simon Glass034e2262017-07-04 13:31:25 -0600416 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
417 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100418 if (error)
419 goto out;
420
421 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200422 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100423 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600424 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100425 data->blocks > 1 ?
426 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
427 SUNXI_MMC_RINT_DATA_OVER,
428 "data");
429 if (error)
430 goto out;
431 }
432
433 if (cmd->resp_type & MMC_RSP_BUSY) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100434 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100435 timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100436
Ian Campbelle24ea552014-05-05 14:42:31 +0100437 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600438 status = readl(&priv->reg->status);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100439 if (get_timer(start) > timeout_msecs) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100440 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900441 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100442 goto out;
443 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100444 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
445 }
446
447 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600448 cmd->response[0] = readl(&priv->reg->resp3);
449 cmd->response[1] = readl(&priv->reg->resp2);
450 cmd->response[2] = readl(&priv->reg->resp1);
451 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100452 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
453 cmd->response[3], cmd->response[2],
454 cmd->response[1], cmd->response[0]);
455 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600456 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100457 debug("mmc resp 0x%08x\n", cmd->response[0]);
458 }
459out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100460 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600461 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600462 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100463 }
Simon Glass3f5af122017-07-04 13:31:24 -0600464 writel(0xffffffff, &priv->reg->rint);
465 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
466 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100467
468 return error;
469}
470
Simon Glassdd279182017-07-04 13:31:27 -0600471#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass034e2262017-07-04 13:31:25 -0600472static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
473{
474 struct sunxi_mmc_priv *priv = mmc->priv;
475
476 return sunxi_mmc_set_ios_common(priv, mmc);
477}
478
479static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
480 struct mmc_data *data)
481{
482 struct sunxi_mmc_priv *priv = mmc->priv;
483
484 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
485}
486
487static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200488{
Simon Glass3f5af122017-07-04 13:31:24 -0600489 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100490 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200491
Simon Glass3f5af122017-07-04 13:31:24 -0600492 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200493 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200494 return 1;
495
Axel Linb0c4ae12014-12-20 11:41:25 +0800496 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200497}
498
Ian Campbelle24ea552014-05-05 14:42:31 +0100499static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600500 .send_cmd = sunxi_mmc_send_cmd_legacy,
501 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200502 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600503 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100504};
505
Hans de Goedee79c7c82014-10-02 21:13:54 +0200506struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100507{
Simon Glassec73d962017-07-04 13:31:26 -0600508 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass034e2262017-07-04 13:31:25 -0600509 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
510 struct mmc_config *cfg = &priv->cfg;
Simon Glassec73d962017-07-04 13:31:26 -0600511 int ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100512
Simon Glass034e2262017-07-04 13:31:25 -0600513 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100514
515 cfg->name = "SUNXI SD/MMC";
516 cfg->ops = &sunxi_mmc_ops;
517
518 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
519 cfg->host_caps = MMC_MODE_4BIT;
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000520
521 if ((IS_ENABLED(CONFIG_MACH_SUN50I) || IS_ENABLED(CONFIG_MACH_SUN8I) ||
522 IS_ENABLED(CONFIG_SUN50I_GEN_H6)) && (sdc_no == 2))
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200523 cfg->host_caps = MMC_MODE_8BIT;
Andre Przywaraf4826fb2020-12-18 22:02:11 +0000524
Rob Herring5a203972015-03-23 17:56:59 -0500525 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100526 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
527
528 cfg->f_min = 400000;
529 cfg->f_max = 52000000;
530
Hans de Goede967325f2014-10-31 16:55:02 +0100531 if (mmc_resource_init(sdc_no) != 0)
532 return NULL;
533
Simon Glassec73d962017-07-04 13:31:26 -0600534 /* config ahb clock */
535 debug("init mmc %d clock and io\n", sdc_no);
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100536#if !defined(CONFIG_SUN50I_GEN_H6)
Simon Glassec73d962017-07-04 13:31:26 -0600537 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
538
539#ifdef CONFIG_SUNXI_GEN_SUN6I
540 /* unassert reset */
541 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
542#endif
543#if defined(CONFIG_MACH_SUN9I)
544 /* sun9i has a mmc-common module, also set the gate and reset there */
545 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
546 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
547#endif
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100548#else /* CONFIG_SUN50I_GEN_H6 */
Icenowy Zheng42956f12018-07-21 16:20:29 +0800549 setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
550 /* unassert reset */
551 setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
552#endif
Simon Glassec73d962017-07-04 13:31:26 -0600553 ret = mmc_set_mod_clk(priv, 24000000);
554 if (ret)
555 return NULL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100556
Maxime Ripardead36972017-08-23 13:41:33 +0200557 return mmc_create(cfg, priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100558}
Simon Glassdd279182017-07-04 13:31:27 -0600559#else
560
561static int sunxi_mmc_set_ios(struct udevice *dev)
562{
Simon Glassc69cda22020-12-03 16:55:20 -0700563 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600564 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
565
566 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
567}
568
569static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
570 struct mmc_data *data)
571{
Simon Glassc69cda22020-12-03 16:55:20 -0700572 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600573 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
574
575 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
576}
577
578static int sunxi_mmc_getcd(struct udevice *dev)
579{
580 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
581
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100582 if (dm_gpio_is_valid(&priv->cd_gpio)) {
583 int cd_state = dm_gpio_get_value(&priv->cd_gpio);
Simon Glassdd279182017-07-04 13:31:27 -0600584
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100585 return cd_state ^ priv->cd_inverted;
586 }
Simon Glassdd279182017-07-04 13:31:27 -0600587 return 1;
588}
589
590static const struct dm_mmc_ops sunxi_mmc_ops = {
591 .send_cmd = sunxi_mmc_send_cmd,
592 .set_ios = sunxi_mmc_set_ios,
593 .get_cd = sunxi_mmc_getcd,
594};
595
Andre Przywara0237b302021-01-11 21:11:44 +0100596static unsigned get_mclk_offset(void)
597{
598 if (IS_ENABLED(CONFIG_MACH_SUN9I_A80))
599 return 0x410;
600
601 if (IS_ENABLED(CONFIG_SUN50I_GEN_H6))
602 return 0x830;
603
604 return 0x88;
605};
606
Simon Glassdd279182017-07-04 13:31:27 -0600607static int sunxi_mmc_probe(struct udevice *dev)
608{
609 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
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);
Andre Przywarac57572e2019-01-29 15:54:13 +0000612 struct reset_ctl_bulk reset_bulk;
613 struct clk gate_clk;
Simon Glassdd279182017-07-04 13:31:27 -0600614 struct mmc_config *cfg = &plat->cfg;
615 struct ofnode_phandle_args args;
Andre Przywarac57572e2019-01-29 15:54:13 +0000616 u32 *ccu_reg;
Simon Glassdd279182017-07-04 13:31:27 -0600617 int bus_width, ret;
618
619 cfg->name = dev->name;
620 bus_width = dev_read_u32_default(dev, "bus-width", 1);
621
622 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
623 cfg->host_caps = 0;
624 if (bus_width == 8)
625 cfg->host_caps |= MMC_MODE_8BIT;
626 if (bus_width >= 4)
627 cfg->host_caps |= MMC_MODE_4BIT;
628 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
629 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
630
631 cfg->f_min = 400000;
632 cfg->f_max = 52000000;
633
Andre Przywaraca496ba2021-04-29 09:31:58 +0100634 priv->reg = dev_read_addr_ptr(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600635
636 /* We don't have a sunxi clock driver so find the clock address here */
637 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
638 1, &args);
639 if (ret)
640 return ret;
Andre Przywaraca496ba2021-04-29 09:31:58 +0100641 ccu_reg = (u32 *)(uintptr_t)ofnode_get_addr(args.node);
Simon Glassdd279182017-07-04 13:31:27 -0600642
Jagan Tekie8f37f42019-01-09 16:58:39 +0530643 priv->mmc_no = ((uintptr_t)priv->reg - SUNXI_MMC0_BASE) / 0x1000;
Andre Przywara0237b302021-01-11 21:11:44 +0100644 priv->mclkreg = (void *)ccu_reg + get_mclk_offset() + priv->mmc_no * 4;
Andre Przywarac57572e2019-01-29 15:54:13 +0000645
646 ret = clk_get_by_name(dev, "ahb", &gate_clk);
647 if (!ret)
648 clk_enable(&gate_clk);
649
650 ret = reset_get_bulk(dev, &reset_bulk);
651 if (!ret)
652 reset_deassert_bulk(&reset_bulk);
Simon Glassdd279182017-07-04 13:31:27 -0600653
654 ret = mmc_set_mod_clk(priv, 24000000);
655 if (ret)
656 return ret;
657
658 /* This GPIO is optional */
Andre Przywara42336982019-01-19 01:30:53 +0000659 if (!dev_read_bool(dev, "non-removable") &&
660 !gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
Simon Glassdd279182017-07-04 13:31:27 -0600661 GPIOD_IS_IN)) {
662 int cd_pin = gpio_get_number(&priv->cd_gpio);
663
664 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
665 }
666
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100667 /* Check if card detect is inverted */
668 priv->cd_inverted = dev_read_bool(dev, "cd-inverted");
669
Simon Glassdd279182017-07-04 13:31:27 -0600670 upriv->mmc = &plat->mmc;
671
672 /* Reset controller */
673 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
674 udelay(1000);
675
676 return 0;
677}
678
679static int sunxi_mmc_bind(struct udevice *dev)
680{
Simon Glassc69cda22020-12-03 16:55:20 -0700681 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600682
683 return mmc_bind(dev, &plat->mmc, &plat->cfg);
684}
685
686static const struct udevice_id sunxi_mmc_ids[] = {
Andre Przywara0237b302021-01-11 21:11:44 +0100687 { .compatible = "allwinner,sun4i-a10-mmc" },
688 { .compatible = "allwinner,sun5i-a13-mmc" },
689 { .compatible = "allwinner,sun7i-a20-mmc" },
690 { .compatible = "allwinner,sun8i-a83t-emmc" },
691 { .compatible = "allwinner,sun9i-a80-mmc" },
692 { .compatible = "allwinner,sun50i-a64-mmc" },
693 { .compatible = "allwinner,sun50i-a64-emmc" },
694 { .compatible = "allwinner,sun50i-h6-mmc" },
695 { .compatible = "allwinner,sun50i-h6-emmc" },
696 { .compatible = "allwinner,sun50i-a100-mmc" },
697 { .compatible = "allwinner,sun50i-a100-emmc" },
Jagan Tekie8f37f42019-01-09 16:58:39 +0530698 { /* sentinel */ }
Simon Glassdd279182017-07-04 13:31:27 -0600699};
700
701U_BOOT_DRIVER(sunxi_mmc_drv) = {
702 .name = "sunxi_mmc",
703 .id = UCLASS_MMC,
704 .of_match = sunxi_mmc_ids,
705 .bind = sunxi_mmc_bind,
706 .probe = sunxi_mmc_probe,
707 .ops = &sunxi_mmc_ops,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700708 .plat_auto = sizeof(struct sunxi_mmc_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700709 .priv_auto = sizeof(struct sunxi_mmc_priv),
Simon Glassdd279182017-07-04 13:31:27 -0600710};
711#endif