blob: 3503ccdb2ee87a194746b29e109aa794286ab5a6 [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 Goedebe909742015-09-23 16:13:10 +0200159#ifdef CONFIG_MACH_SUN9I
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300160 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200161 oclk_dly = 5;
162 sclk_dly = 4;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100163 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300164 /* hz > 52000000 */
Hans de Goedefc3a8322014-12-07 20:55:10 +0100165 oclk_dly = 2;
166 sclk_dly = 4;
Hans de Goedebe909742015-09-23 16:13:10 +0200167#else
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300168 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200169 oclk_dly = 3;
170 sclk_dly = 4;
171 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300172 /* hz > 52000000 */
Hans de Goedebe909742015-09-23 16:13:10 +0200173 oclk_dly = 1;
174 sclk_dly = 4;
175#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100176 }
177
Maxime Ripardde9b1772017-08-23 12:03:41 +0200178 if (new_mode) {
179#ifdef CONFIG_MMC_SUNXI_HAS_NEW_MODE
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800180#ifdef CONFIG_MMC_SUNXI_HAS_MODE_SWITCH
Maxime Ripardde9b1772017-08-23 12:03:41 +0200181 val = CCM_MMC_CTRL_MODE_SEL_NEW;
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800182#endif
Chen-Yu Tsai8a647fc2017-08-31 21:57:48 +0800183 setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
Maxime Ripardde9b1772017-08-23 12:03:41 +0200184#endif
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800185 } else if (!calibrate) {
186 /*
187 * Use hardcoded delay values if controller doesn't support
188 * calibration
189 */
Maxime Ripardde9b1772017-08-23 12:03:41 +0200190 val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
191 CCM_MMC_CTRL_SCLK_DLY(sclk_dly);
192 }
193
194 writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) |
195 CCM_MMC_CTRL_M(div) | val, priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100196
197 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600198 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100199
200 return 0;
201}
202
Simon Glass034e2262017-07-04 13:31:25 -0600203static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100204{
Ian Campbelle24ea552014-05-05 14:42:31 +0100205 unsigned int cmd;
206 unsigned timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100207 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100208
209 cmd = SUNXI_MMC_CMD_START |
210 SUNXI_MMC_CMD_UPCLK_ONLY |
211 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100212
Simon Glass3f5af122017-07-04 13:31:24 -0600213 writel(cmd, &priv->reg->cmd);
214 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100215 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100216 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100217 }
218
219 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600220 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100221
222 return 0;
223}
224
Simon Glass034e2262017-07-04 13:31:25 -0600225static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100226{
Simon Glass3f5af122017-07-04 13:31:24 -0600227 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100228
229 /* Disable Clock */
230 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600231 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600232 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100233 return -1;
234
Hans de Goedefc3a8322014-12-07 20:55:10 +0100235 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600236 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100237 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100238
239 /* Clear internal divider */
240 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600241 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100242
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100243#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_SUN50I_GEN_H6)
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800244 /* A64 supports calibration of delays on MMC controller and we
245 * have to set delay of zero before starting calibration.
246 * Allwinner BSP driver sets a delay only in the case of
247 * using HS400 which is not supported by mainline U-Boot or
248 * Linux at the moment
249 */
250 writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
251#endif
252
Ian Campbelle24ea552014-05-05 14:42:31 +0100253 /* Re-enable Clock */
254 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600255 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600256 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100257 return -1;
258
259 return 0;
260}
261
Simon Glass034e2262017-07-04 13:31:25 -0600262static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
263 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100264{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100265 debug("set ios: bus_width: %x, clock: %d\n",
266 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100267
268 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600269 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600270 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900271 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100272 }
273
274 /* Change bus width */
275 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600276 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100277 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600278 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100279 else
Simon Glass3f5af122017-07-04 13:31:24 -0600280 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900281
282 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100283}
284
Simon Glassdd279182017-07-04 13:31:27 -0600285#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200286static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100287{
Simon Glass3f5af122017-07-04 13:31:24 -0600288 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100289
290 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600291 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200292 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100293
294 return 0;
295}
Simon Glassdd279182017-07-04 13:31:27 -0600296#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100297
Simon Glass034e2262017-07-04 13:31:25 -0600298static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
299 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100300{
Ian Campbelle24ea552014-05-05 14:42:31 +0100301 const int reading = !!(data->flags & MMC_DATA_READ);
302 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
303 SUNXI_MMC_STATUS_FIFO_FULL;
304 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100305 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Yousong Zhou28f69b92015-08-29 21:26:11 +0800306 unsigned byte_cnt = data->blocksize * data->blocks;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100307 unsigned timeout_msecs = byte_cnt >> 8;
308 unsigned long start;
309
310 if (timeout_msecs < 2000)
311 timeout_msecs = 2000;
Ian Campbelle24ea552014-05-05 14:42:31 +0100312
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200313 /* Always read / write data through the CPU */
Simon Glass3f5af122017-07-04 13:31:24 -0600314 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200315
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100316 start = get_timer(0);
317
Ian Campbelle24ea552014-05-05 14:42:31 +0100318 for (i = 0; i < (byte_cnt >> 2); i++) {
Simon Glass3f5af122017-07-04 13:31:24 -0600319 while (readl(&priv->reg->status) & status_bit) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100320 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100321 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100322 }
323
324 if (reading)
Simon Glass3f5af122017-07-04 13:31:24 -0600325 buff[i] = readl(&priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100326 else
Simon Glass3f5af122017-07-04 13:31:24 -0600327 writel(buff[i], &priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100328 }
329
330 return 0;
331}
332
Simon Glass034e2262017-07-04 13:31:25 -0600333static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
334 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100335{
Ian Campbelle24ea552014-05-05 14:42:31 +0100336 unsigned int status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100337 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100338
339 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600340 status = readl(&priv->reg->rint);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100341 if ((get_timer(start) > timeout_msecs) ||
Ian Campbelle24ea552014-05-05 14:42:31 +0100342 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
343 debug("%s timeout %x\n", what,
344 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900345 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100346 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100347 } while (!(status & done_bit));
348
349 return 0;
350}
351
Simon Glass034e2262017-07-04 13:31:25 -0600352static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
353 struct mmc *mmc, struct mmc_cmd *cmd,
354 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100355{
Ian Campbelle24ea552014-05-05 14:42:31 +0100356 unsigned int cmdval = SUNXI_MMC_CMD_START;
357 unsigned int timeout_msecs;
358 int error = 0;
359 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100360 unsigned int bytecnt = 0;
361
Simon Glass3f5af122017-07-04 13:31:24 -0600362 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100363 return -1;
364 if (cmd->resp_type & MMC_RSP_BUSY)
365 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
366 if (cmd->cmdidx == 12)
367 return 0;
368
369 if (!cmd->cmdidx)
370 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
371 if (cmd->resp_type & MMC_RSP_PRESENT)
372 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
373 if (cmd->resp_type & MMC_RSP_136)
374 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
375 if (cmd->resp_type & MMC_RSP_CRC)
376 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
377
378 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200379 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100380 error = -1;
381 goto out;
382 }
383
384 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
385 if (data->flags & MMC_DATA_WRITE)
386 cmdval |= SUNXI_MMC_CMD_WRITE;
387 if (data->blocks > 1)
388 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600389 writel(data->blocksize, &priv->reg->blksz);
390 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100391 }
392
Simon Glass3f5af122017-07-04 13:31:24 -0600393 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100394 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600395 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100396
397 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600398 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100399
400 /*
401 * transfer data and check status
402 * STATREG[2] : FIFO empty
403 * STATREG[3] : FIFO full
404 */
405 if (data) {
406 int ret = 0;
407
408 bytecnt = data->blocksize * data->blocks;
409 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600410 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600411 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100412 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600413 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100414 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900415 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100416 goto out;
417 }
418 }
419
Simon Glass034e2262017-07-04 13:31:25 -0600420 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
421 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100422 if (error)
423 goto out;
424
425 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200426 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100427 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600428 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100429 data->blocks > 1 ?
430 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
431 SUNXI_MMC_RINT_DATA_OVER,
432 "data");
433 if (error)
434 goto out;
435 }
436
437 if (cmd->resp_type & MMC_RSP_BUSY) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100438 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100439 timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100440
Ian Campbelle24ea552014-05-05 14:42:31 +0100441 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600442 status = readl(&priv->reg->status);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100443 if (get_timer(start) > timeout_msecs) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100444 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900445 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100446 goto out;
447 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100448 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
449 }
450
451 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600452 cmd->response[0] = readl(&priv->reg->resp3);
453 cmd->response[1] = readl(&priv->reg->resp2);
454 cmd->response[2] = readl(&priv->reg->resp1);
455 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100456 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
457 cmd->response[3], cmd->response[2],
458 cmd->response[1], cmd->response[0]);
459 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600460 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100461 debug("mmc resp 0x%08x\n", cmd->response[0]);
462 }
463out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100464 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600465 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600466 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100467 }
Simon Glass3f5af122017-07-04 13:31:24 -0600468 writel(0xffffffff, &priv->reg->rint);
469 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
470 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100471
472 return error;
473}
474
Simon Glassdd279182017-07-04 13:31:27 -0600475#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass034e2262017-07-04 13:31:25 -0600476static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
477{
478 struct sunxi_mmc_priv *priv = mmc->priv;
479
480 return sunxi_mmc_set_ios_common(priv, mmc);
481}
482
483static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
484 struct mmc_data *data)
485{
486 struct sunxi_mmc_priv *priv = mmc->priv;
487
488 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
489}
490
491static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200492{
Simon Glass3f5af122017-07-04 13:31:24 -0600493 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100494 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200495
Simon Glass3f5af122017-07-04 13:31:24 -0600496 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200497 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200498 return 1;
499
Axel Linb0c4ae12014-12-20 11:41:25 +0800500 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200501}
502
Ian Campbelle24ea552014-05-05 14:42:31 +0100503static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600504 .send_cmd = sunxi_mmc_send_cmd_legacy,
505 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200506 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600507 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100508};
509
Hans de Goedee79c7c82014-10-02 21:13:54 +0200510struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100511{
Simon Glassec73d962017-07-04 13:31:26 -0600512 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass034e2262017-07-04 13:31:25 -0600513 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
514 struct mmc_config *cfg = &priv->cfg;
Simon Glassec73d962017-07-04 13:31:26 -0600515 int ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100516
Simon Glass034e2262017-07-04 13:31:25 -0600517 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100518
519 cfg->name = "SUNXI SD/MMC";
520 cfg->ops = &sunxi_mmc_ops;
521
522 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
523 cfg->host_caps = MMC_MODE_4BIT;
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100524#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I) || defined(CONFIG_SUN50I_GEN_H6)
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200525 if (sdc_no == 2)
526 cfg->host_caps = MMC_MODE_8BIT;
527#endif
Rob Herring5a203972015-03-23 17:56:59 -0500528 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100529 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
530
531 cfg->f_min = 400000;
532 cfg->f_max = 52000000;
533
Hans de Goede967325f2014-10-31 16:55:02 +0100534 if (mmc_resource_init(sdc_no) != 0)
535 return NULL;
536
Simon Glassec73d962017-07-04 13:31:26 -0600537 /* config ahb clock */
538 debug("init mmc %d clock and io\n", sdc_no);
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100539#if !defined(CONFIG_SUN50I_GEN_H6)
Simon Glassec73d962017-07-04 13:31:26 -0600540 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
541
542#ifdef CONFIG_SUNXI_GEN_SUN6I
543 /* unassert reset */
544 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
545#endif
546#if defined(CONFIG_MACH_SUN9I)
547 /* sun9i has a mmc-common module, also set the gate and reset there */
548 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
549 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
550#endif
Jernej Skrabecaaebb902021-01-11 21:11:35 +0100551#else /* CONFIG_SUN50I_GEN_H6 */
Icenowy Zheng42956f12018-07-21 16:20:29 +0800552 setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
553 /* unassert reset */
554 setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
555#endif
Simon Glassec73d962017-07-04 13:31:26 -0600556 ret = mmc_set_mod_clk(priv, 24000000);
557 if (ret)
558 return NULL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100559
Maxime Ripardead36972017-08-23 13:41:33 +0200560 return mmc_create(cfg, priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100561}
Simon Glassdd279182017-07-04 13:31:27 -0600562#else
563
564static int sunxi_mmc_set_ios(struct udevice *dev)
565{
Simon Glassc69cda22020-12-03 16:55:20 -0700566 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600567 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
568
569 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
570}
571
572static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
573 struct mmc_data *data)
574{
Simon Glassc69cda22020-12-03 16:55:20 -0700575 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600576 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
577
578 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
579}
580
581static int sunxi_mmc_getcd(struct udevice *dev)
582{
583 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
584
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100585 if (dm_gpio_is_valid(&priv->cd_gpio)) {
586 int cd_state = dm_gpio_get_value(&priv->cd_gpio);
Simon Glassdd279182017-07-04 13:31:27 -0600587
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100588 return cd_state ^ priv->cd_inverted;
589 }
Simon Glassdd279182017-07-04 13:31:27 -0600590 return 1;
591}
592
593static const struct dm_mmc_ops sunxi_mmc_ops = {
594 .send_cmd = sunxi_mmc_send_cmd,
595 .set_ios = sunxi_mmc_set_ios,
596 .get_cd = sunxi_mmc_getcd,
597};
598
Andre Przywara0237b302021-01-11 21:11:44 +0100599static unsigned get_mclk_offset(void)
600{
601 if (IS_ENABLED(CONFIG_MACH_SUN9I_A80))
602 return 0x410;
603
604 if (IS_ENABLED(CONFIG_SUN50I_GEN_H6))
605 return 0x830;
606
607 return 0x88;
608};
609
Simon Glassdd279182017-07-04 13:31:27 -0600610static int sunxi_mmc_probe(struct udevice *dev)
611{
612 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -0700613 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600614 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
Andre Przywarac57572e2019-01-29 15:54:13 +0000615 struct reset_ctl_bulk reset_bulk;
616 struct clk gate_clk;
Simon Glassdd279182017-07-04 13:31:27 -0600617 struct mmc_config *cfg = &plat->cfg;
618 struct ofnode_phandle_args args;
Andre Przywarac57572e2019-01-29 15:54:13 +0000619 u32 *ccu_reg;
Simon Glassdd279182017-07-04 13:31:27 -0600620 int bus_width, ret;
621
622 cfg->name = dev->name;
623 bus_width = dev_read_u32_default(dev, "bus-width", 1);
624
625 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
626 cfg->host_caps = 0;
627 if (bus_width == 8)
628 cfg->host_caps |= MMC_MODE_8BIT;
629 if (bus_width >= 4)
630 cfg->host_caps |= MMC_MODE_4BIT;
631 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
632 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
633
634 cfg->f_min = 400000;
635 cfg->f_max = 52000000;
636
637 priv->reg = (void *)dev_read_addr(dev);
638
639 /* We don't have a sunxi clock driver so find the clock address here */
640 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
641 1, &args);
642 if (ret)
643 return ret;
Jagan Tekie8f37f42019-01-09 16:58:39 +0530644 ccu_reg = (u32 *)ofnode_get_addr(args.node);
Simon Glassdd279182017-07-04 13:31:27 -0600645
Jagan Tekie8f37f42019-01-09 16:58:39 +0530646 priv->mmc_no = ((uintptr_t)priv->reg - SUNXI_MMC0_BASE) / 0x1000;
Andre Przywara0237b302021-01-11 21:11:44 +0100647 priv->mclkreg = (void *)ccu_reg + get_mclk_offset() + priv->mmc_no * 4;
Andre Przywarac57572e2019-01-29 15:54:13 +0000648
649 ret = clk_get_by_name(dev, "ahb", &gate_clk);
650 if (!ret)
651 clk_enable(&gate_clk);
652
653 ret = reset_get_bulk(dev, &reset_bulk);
654 if (!ret)
655 reset_deassert_bulk(&reset_bulk);
Simon Glassdd279182017-07-04 13:31:27 -0600656
657 ret = mmc_set_mod_clk(priv, 24000000);
658 if (ret)
659 return ret;
660
661 /* This GPIO is optional */
Andre Przywara42336982019-01-19 01:30:53 +0000662 if (!dev_read_bool(dev, "non-removable") &&
663 !gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
Simon Glassdd279182017-07-04 13:31:27 -0600664 GPIOD_IS_IN)) {
665 int cd_pin = gpio_get_number(&priv->cd_gpio);
666
667 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
668 }
669
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100670 /* Check if card detect is inverted */
671 priv->cd_inverted = dev_read_bool(dev, "cd-inverted");
672
Simon Glassdd279182017-07-04 13:31:27 -0600673 upriv->mmc = &plat->mmc;
674
675 /* Reset controller */
676 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
677 udelay(1000);
678
679 return 0;
680}
681
682static int sunxi_mmc_bind(struct udevice *dev)
683{
Simon Glassc69cda22020-12-03 16:55:20 -0700684 struct sunxi_mmc_plat *plat = dev_get_plat(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600685
686 return mmc_bind(dev, &plat->mmc, &plat->cfg);
687}
688
689static const struct udevice_id sunxi_mmc_ids[] = {
Andre Przywara0237b302021-01-11 21:11:44 +0100690 { .compatible = "allwinner,sun4i-a10-mmc" },
691 { .compatible = "allwinner,sun5i-a13-mmc" },
692 { .compatible = "allwinner,sun7i-a20-mmc" },
693 { .compatible = "allwinner,sun8i-a83t-emmc" },
694 { .compatible = "allwinner,sun9i-a80-mmc" },
695 { .compatible = "allwinner,sun50i-a64-mmc" },
696 { .compatible = "allwinner,sun50i-a64-emmc" },
697 { .compatible = "allwinner,sun50i-h6-mmc" },
698 { .compatible = "allwinner,sun50i-h6-emmc" },
699 { .compatible = "allwinner,sun50i-a100-mmc" },
700 { .compatible = "allwinner,sun50i-a100-emmc" },
Jagan Tekie8f37f42019-01-09 16:58:39 +0530701 { /* sentinel */ }
Simon Glassdd279182017-07-04 13:31:27 -0600702};
703
704U_BOOT_DRIVER(sunxi_mmc_drv) = {
705 .name = "sunxi_mmc",
706 .id = UCLASS_MMC,
707 .of_match = sunxi_mmc_ids,
708 .bind = sunxi_mmc_bind,
709 .probe = sunxi_mmc_probe,
710 .ops = &sunxi_mmc_ops,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700711 .plat_auto = sizeof(struct sunxi_mmc_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700712 .priv_auto = sizeof(struct sunxi_mmc_priv),
Simon Glassdd279182017-07-04 13:31:27 -0600713};
714#endif