blob: 2903d89ef3479085b626e7d34004fd5bd386ed62 [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>
Ian Campbelle24ea552014-05-05 14:42:31 +010024
Jagan Tekie8f37f42019-01-09 16:58:39 +053025#ifdef CONFIG_DM_MMC
26struct sunxi_mmc_variant {
Jagan Tekie8f37f42019-01-09 16:58:39 +053027 u16 mclk_offset;
28};
29#endif
30
Simon Glassdd279182017-07-04 13:31:27 -060031struct sunxi_mmc_plat {
32 struct mmc_config cfg;
33 struct mmc mmc;
34};
35
Simon Glasse3c794e2017-07-04 13:31:23 -060036struct sunxi_mmc_priv {
Ian Campbelle24ea552014-05-05 14:42:31 +010037 unsigned mmc_no;
38 uint32_t *mclkreg;
Ian Campbelle24ea552014-05-05 14:42:31 +010039 unsigned fatal_err;
Simon Glassdd279182017-07-04 13:31:27 -060040 struct gpio_desc cd_gpio; /* Change Detect GPIO */
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +010041 int cd_inverted; /* Inverted Card Detect */
Ian Campbelle24ea552014-05-05 14:42:31 +010042 struct sunxi_mmc *reg;
43 struct mmc_config cfg;
Jagan Tekie8f37f42019-01-09 16:58:39 +053044#ifdef CONFIG_DM_MMC
45 const struct sunxi_mmc_variant *variant;
46#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010047};
48
Simon Glassdd279182017-07-04 13:31:27 -060049#if !CONFIG_IS_ENABLED(DM_MMC)
Ian Campbelle24ea552014-05-05 14:42:31 +010050/* support 4 mmc hosts */
Simon Glasse3c794e2017-07-04 13:31:23 -060051struct sunxi_mmc_priv mmc_host[4];
Ian Campbelle24ea552014-05-05 14:42:31 +010052
Hans de Goede967325f2014-10-31 16:55:02 +010053static int sunxi_mmc_getcd_gpio(int sdc_no)
54{
55 switch (sdc_no) {
56 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
57 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
58 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
59 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
60 }
Hans de Goede90641f82015-04-22 17:03:17 +020061 return -EINVAL;
Hans de Goede967325f2014-10-31 16:55:02 +010062}
63
Ian Campbelle24ea552014-05-05 14:42:31 +010064static int mmc_resource_init(int sdc_no)
65{
Simon Glass3f5af122017-07-04 13:31:24 -060066 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +010067 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede967325f2014-10-31 16:55:02 +010068 int cd_pin, ret = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +010069
70 debug("init mmc %d resource\n", sdc_no);
71
72 switch (sdc_no) {
73 case 0:
Simon Glass3f5af122017-07-04 13:31:24 -060074 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
75 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010076 break;
77 case 1:
Simon Glass3f5af122017-07-04 13:31:24 -060078 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
79 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010080 break;
81 case 2:
Simon Glass3f5af122017-07-04 13:31:24 -060082 priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
83 priv->mclkreg = &ccm->sd2_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010084 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080085#ifdef SUNXI_MMC3_BASE
Ian Campbelle24ea552014-05-05 14:42:31 +010086 case 3:
Simon Glass3f5af122017-07-04 13:31:24 -060087 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
88 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010089 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080090#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010091 default:
92 printf("Wrong mmc number %d\n", sdc_no);
93 return -1;
94 }
Simon Glass3f5af122017-07-04 13:31:24 -060095 priv->mmc_no = sdc_no;
Ian Campbelle24ea552014-05-05 14:42:31 +010096
Hans de Goede967325f2014-10-31 16:55:02 +010097 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goede90641f82015-04-22 17:03:17 +020098 if (cd_pin >= 0) {
Hans de Goede967325f2014-10-31 16:55:02 +010099 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goede1c09fa32015-05-30 16:39:10 +0200100 if (!ret) {
101 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Linb0c4ae12014-12-20 11:41:25 +0800102 ret = gpio_direction_input(cd_pin);
Hans de Goede1c09fa32015-05-30 16:39:10 +0200103 }
Axel Linb0c4ae12014-12-20 11:41:25 +0800104 }
Hans de Goede967325f2014-10-31 16:55:02 +0100105
106 return ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100107}
Simon Glassdd279182017-07-04 13:31:27 -0600108#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100109
Simon Glass3f5af122017-07-04 13:31:24 -0600110static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goedefc3a8322014-12-07 20:55:10 +0100111{
112 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800113 bool new_mode = true;
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800114 bool calibrate = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200115 u32 val = 0;
116
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800117 if (!IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE))
118 new_mode = false;
119
120 /* A83T support new mode only on eMMC */
121 if (IS_ENABLED(CONFIG_MACH_SUN8I_A83T) && priv->mmc_no != 2)
122 new_mode = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200123
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800124#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
125 calibrate = true;
126#endif
127
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();
Icenowy Zheng42956f12018-07-21 16:20:29 +0800135#elif defined(CONFIG_MACH_SUN50I_H6)
136 pll = CCM_MMC_CTRL_PLL6X2;
137 pll_hz = clock_get_pll6() * 2;
Hans de Goededaf22632015-01-14 19:05:03 +0100138#else
Hans de Goedefc3a8322014-12-07 20:55:10 +0100139 pll = CCM_MMC_CTRL_PLL6;
140 pll_hz = clock_get_pll6();
Hans de Goededaf22632015-01-14 19:05:03 +0100141#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100142 }
143
144 div = pll_hz / hz;
145 if (pll_hz % hz)
146 div++;
147
148 n = 0;
149 while (div > 16) {
150 n++;
151 div = (div + 1) / 2;
152 }
153
154 if (n > 3) {
Simon Glass3f5af122017-07-04 13:31:24 -0600155 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
156 hz);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100157 return -1;
158 }
159
160 /* determine delays */
161 if (hz <= 400000) {
162 oclk_dly = 0;
Hans de Goedebe909742015-09-23 16:13:10 +0200163 sclk_dly = 0;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100164 } else if (hz <= 25000000) {
165 oclk_dly = 0;
166 sclk_dly = 5;
Hans de Goedebe909742015-09-23 16:13:10 +0200167#ifdef CONFIG_MACH_SUN9I
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300168 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200169 oclk_dly = 5;
170 sclk_dly = 4;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100171 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300172 /* hz > 52000000 */
Hans de Goedefc3a8322014-12-07 20:55:10 +0100173 oclk_dly = 2;
174 sclk_dly = 4;
Hans de Goedebe909742015-09-23 16:13:10 +0200175#else
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300176 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200177 oclk_dly = 3;
178 sclk_dly = 4;
179 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300180 /* hz > 52000000 */
Hans de Goedebe909742015-09-23 16:13:10 +0200181 oclk_dly = 1;
182 sclk_dly = 4;
183#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100184 }
185
Maxime Ripardde9b1772017-08-23 12:03:41 +0200186 if (new_mode) {
187#ifdef CONFIG_MMC_SUNXI_HAS_NEW_MODE
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800188#ifdef CONFIG_MMC_SUNXI_HAS_MODE_SWITCH
Maxime Ripardde9b1772017-08-23 12:03:41 +0200189 val = CCM_MMC_CTRL_MODE_SEL_NEW;
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800190#endif
Chen-Yu Tsai8a647fc2017-08-31 21:57:48 +0800191 setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
Maxime Ripardde9b1772017-08-23 12:03:41 +0200192#endif
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800193 } else if (!calibrate) {
194 /*
195 * Use hardcoded delay values if controller doesn't support
196 * calibration
197 */
Maxime Ripardde9b1772017-08-23 12:03:41 +0200198 val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
199 CCM_MMC_CTRL_SCLK_DLY(sclk_dly);
200 }
201
202 writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) |
203 CCM_MMC_CTRL_M(div) | val, priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100204
205 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600206 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100207
208 return 0;
209}
210
Simon Glass034e2262017-07-04 13:31:25 -0600211static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100212{
Ian Campbelle24ea552014-05-05 14:42:31 +0100213 unsigned int cmd;
214 unsigned timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100215 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100216
217 cmd = SUNXI_MMC_CMD_START |
218 SUNXI_MMC_CMD_UPCLK_ONLY |
219 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100220
Simon Glass3f5af122017-07-04 13:31:24 -0600221 writel(cmd, &priv->reg->cmd);
222 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100223 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100224 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100225 }
226
227 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600228 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100229
230 return 0;
231}
232
Simon Glass034e2262017-07-04 13:31:25 -0600233static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100234{
Simon Glass3f5af122017-07-04 13:31:24 -0600235 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100236
237 /* Disable Clock */
238 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600239 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600240 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100241 return -1;
242
Hans de Goedefc3a8322014-12-07 20:55:10 +0100243 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600244 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100245 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100246
247 /* Clear internal divider */
248 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600249 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100250
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800251#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
252 /* A64 supports calibration of delays on MMC controller and we
253 * have to set delay of zero before starting calibration.
254 * Allwinner BSP driver sets a delay only in the case of
255 * using HS400 which is not supported by mainline U-Boot or
256 * Linux at the moment
257 */
258 writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
259#endif
260
Ian Campbelle24ea552014-05-05 14:42:31 +0100261 /* Re-enable Clock */
262 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600263 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600264 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100265 return -1;
266
267 return 0;
268}
269
Simon Glass034e2262017-07-04 13:31:25 -0600270static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
271 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100272{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100273 debug("set ios: bus_width: %x, clock: %d\n",
274 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100275
276 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600277 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600278 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900279 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100280 }
281
282 /* Change bus width */
283 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600284 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100285 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600286 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100287 else
Simon Glass3f5af122017-07-04 13:31:24 -0600288 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900289
290 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100291}
292
Simon Glassdd279182017-07-04 13:31:27 -0600293#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200294static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100295{
Simon Glass3f5af122017-07-04 13:31:24 -0600296 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100297
298 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600299 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200300 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100301
302 return 0;
303}
Simon Glassdd279182017-07-04 13:31:27 -0600304#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100305
Simon Glass034e2262017-07-04 13:31:25 -0600306static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
307 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100308{
Ian Campbelle24ea552014-05-05 14:42:31 +0100309 const int reading = !!(data->flags & MMC_DATA_READ);
310 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
311 SUNXI_MMC_STATUS_FIFO_FULL;
312 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100313 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Yousong Zhou28f69b92015-08-29 21:26:11 +0800314 unsigned byte_cnt = data->blocksize * data->blocks;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100315 unsigned timeout_msecs = byte_cnt >> 8;
316 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
Ian Campbelle24ea552014-05-05 14:42:31 +0100326 for (i = 0; i < (byte_cnt >> 2); i++) {
Simon Glass3f5af122017-07-04 13:31:24 -0600327 while (readl(&priv->reg->status) & status_bit) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100328 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100329 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100330 }
331
332 if (reading)
Simon Glass3f5af122017-07-04 13:31:24 -0600333 buff[i] = readl(&priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100334 else
Simon Glass3f5af122017-07-04 13:31:24 -0600335 writel(buff[i], &priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100336 }
337
338 return 0;
339}
340
Simon Glass034e2262017-07-04 13:31:25 -0600341static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
342 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100343{
Ian Campbelle24ea552014-05-05 14:42:31 +0100344 unsigned int status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100345 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100346
347 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600348 status = readl(&priv->reg->rint);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100349 if ((get_timer(start) > timeout_msecs) ||
Ian Campbelle24ea552014-05-05 14:42:31 +0100350 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
351 debug("%s timeout %x\n", what,
352 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900353 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100354 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100355 } while (!(status & done_bit));
356
357 return 0;
358}
359
Simon Glass034e2262017-07-04 13:31:25 -0600360static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
361 struct mmc *mmc, struct mmc_cmd *cmd,
362 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100363{
Ian Campbelle24ea552014-05-05 14:42:31 +0100364 unsigned int cmdval = SUNXI_MMC_CMD_START;
365 unsigned int timeout_msecs;
366 int error = 0;
367 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100368 unsigned int bytecnt = 0;
369
Simon Glass3f5af122017-07-04 13:31:24 -0600370 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100371 return -1;
372 if (cmd->resp_type & MMC_RSP_BUSY)
373 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
374 if (cmd->cmdidx == 12)
375 return 0;
376
377 if (!cmd->cmdidx)
378 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
379 if (cmd->resp_type & MMC_RSP_PRESENT)
380 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
381 if (cmd->resp_type & MMC_RSP_136)
382 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
383 if (cmd->resp_type & MMC_RSP_CRC)
384 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
385
386 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200387 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100388 error = -1;
389 goto out;
390 }
391
392 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
393 if (data->flags & MMC_DATA_WRITE)
394 cmdval |= SUNXI_MMC_CMD_WRITE;
395 if (data->blocks > 1)
396 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600397 writel(data->blocksize, &priv->reg->blksz);
398 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100399 }
400
Simon Glass3f5af122017-07-04 13:31:24 -0600401 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100402 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600403 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100404
405 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600406 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100407
408 /*
409 * transfer data and check status
410 * STATREG[2] : FIFO empty
411 * STATREG[3] : FIFO full
412 */
413 if (data) {
414 int ret = 0;
415
416 bytecnt = data->blocksize * data->blocks;
417 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600418 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600419 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100420 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600421 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100422 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900423 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100424 goto out;
425 }
426 }
427
Simon Glass034e2262017-07-04 13:31:25 -0600428 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
429 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100430 if (error)
431 goto out;
432
433 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200434 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100435 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600436 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100437 data->blocks > 1 ?
438 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
439 SUNXI_MMC_RINT_DATA_OVER,
440 "data");
441 if (error)
442 goto out;
443 }
444
445 if (cmd->resp_type & MMC_RSP_BUSY) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100446 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100447 timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100448
Ian Campbelle24ea552014-05-05 14:42:31 +0100449 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600450 status = readl(&priv->reg->status);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100451 if (get_timer(start) > timeout_msecs) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100452 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900453 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100454 goto out;
455 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100456 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
457 }
458
459 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600460 cmd->response[0] = readl(&priv->reg->resp3);
461 cmd->response[1] = readl(&priv->reg->resp2);
462 cmd->response[2] = readl(&priv->reg->resp1);
463 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100464 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
465 cmd->response[3], cmd->response[2],
466 cmd->response[1], cmd->response[0]);
467 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600468 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100469 debug("mmc resp 0x%08x\n", cmd->response[0]);
470 }
471out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100472 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600473 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600474 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100475 }
Simon Glass3f5af122017-07-04 13:31:24 -0600476 writel(0xffffffff, &priv->reg->rint);
477 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
478 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100479
480 return error;
481}
482
Simon Glassdd279182017-07-04 13:31:27 -0600483#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass034e2262017-07-04 13:31:25 -0600484static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
485{
486 struct sunxi_mmc_priv *priv = mmc->priv;
487
488 return sunxi_mmc_set_ios_common(priv, mmc);
489}
490
491static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
492 struct mmc_data *data)
493{
494 struct sunxi_mmc_priv *priv = mmc->priv;
495
496 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
497}
498
499static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200500{
Simon Glass3f5af122017-07-04 13:31:24 -0600501 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100502 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200503
Simon Glass3f5af122017-07-04 13:31:24 -0600504 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200505 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200506 return 1;
507
Axel Linb0c4ae12014-12-20 11:41:25 +0800508 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200509}
510
Ian Campbelle24ea552014-05-05 14:42:31 +0100511static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600512 .send_cmd = sunxi_mmc_send_cmd_legacy,
513 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200514 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600515 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100516};
517
Hans de Goedee79c7c82014-10-02 21:13:54 +0200518struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100519{
Simon Glassec73d962017-07-04 13:31:26 -0600520 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass034e2262017-07-04 13:31:25 -0600521 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
522 struct mmc_config *cfg = &priv->cfg;
Simon Glassec73d962017-07-04 13:31:26 -0600523 int ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100524
Simon Glass034e2262017-07-04 13:31:25 -0600525 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100526
527 cfg->name = "SUNXI SD/MMC";
528 cfg->ops = &sunxi_mmc_ops;
529
530 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
531 cfg->host_caps = MMC_MODE_4BIT;
Icenowy Zheng42956f12018-07-21 16:20:29 +0800532#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I_H6)
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200533 if (sdc_no == 2)
534 cfg->host_caps = MMC_MODE_8BIT;
535#endif
Rob Herring5a203972015-03-23 17:56:59 -0500536 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100537 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
538
539 cfg->f_min = 400000;
540 cfg->f_max = 52000000;
541
Hans de Goede967325f2014-10-31 16:55:02 +0100542 if (mmc_resource_init(sdc_no) != 0)
543 return NULL;
544
Simon Glassec73d962017-07-04 13:31:26 -0600545 /* config ahb clock */
546 debug("init mmc %d clock and io\n", sdc_no);
Icenowy Zheng42956f12018-07-21 16:20:29 +0800547#if !defined(CONFIG_MACH_SUN50I_H6)
Simon Glassec73d962017-07-04 13:31:26 -0600548 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
549
550#ifdef CONFIG_SUNXI_GEN_SUN6I
551 /* unassert reset */
552 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
553#endif
554#if defined(CONFIG_MACH_SUN9I)
555 /* sun9i has a mmc-common module, also set the gate and reset there */
556 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
557 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
558#endif
Icenowy Zheng42956f12018-07-21 16:20:29 +0800559#else /* CONFIG_MACH_SUN50I_H6 */
560 setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
561 /* unassert reset */
562 setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
563#endif
Simon Glassec73d962017-07-04 13:31:26 -0600564 ret = mmc_set_mod_clk(priv, 24000000);
565 if (ret)
566 return NULL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100567
Maxime Ripardead36972017-08-23 13:41:33 +0200568 return mmc_create(cfg, priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100569}
Simon Glassdd279182017-07-04 13:31:27 -0600570#else
571
572static int sunxi_mmc_set_ios(struct udevice *dev)
573{
574 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
575 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
576
577 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
578}
579
580static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
581 struct mmc_data *data)
582{
583 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
584 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
585
586 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
587}
588
589static int sunxi_mmc_getcd(struct udevice *dev)
590{
591 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
592
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100593 if (dm_gpio_is_valid(&priv->cd_gpio)) {
594 int cd_state = dm_gpio_get_value(&priv->cd_gpio);
Simon Glassdd279182017-07-04 13:31:27 -0600595
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100596 return cd_state ^ priv->cd_inverted;
597 }
Simon Glassdd279182017-07-04 13:31:27 -0600598 return 1;
599}
600
601static const struct dm_mmc_ops sunxi_mmc_ops = {
602 .send_cmd = sunxi_mmc_send_cmd,
603 .set_ios = sunxi_mmc_set_ios,
604 .get_cd = sunxi_mmc_getcd,
605};
606
607static int sunxi_mmc_probe(struct udevice *dev)
608{
609 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
610 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
611 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
634 priv->reg = (void *)dev_read_addr(dev);
Jagan Tekie8f37f42019-01-09 16:58:39 +0530635 priv->variant =
636 (const struct sunxi_mmc_variant *)dev_get_driver_data(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600637
638 /* We don't have a sunxi clock driver so find the clock address here */
639 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
640 1, &args);
641 if (ret)
642 return ret;
Jagan Tekie8f37f42019-01-09 16:58:39 +0530643 ccu_reg = (u32 *)ofnode_get_addr(args.node);
Simon Glassdd279182017-07-04 13:31:27 -0600644
Jagan Tekie8f37f42019-01-09 16:58:39 +0530645 priv->mmc_no = ((uintptr_t)priv->reg - SUNXI_MMC0_BASE) / 0x1000;
646 priv->mclkreg = (void *)ccu_reg +
647 (priv->variant->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{
684 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
685
686 return mmc_bind(dev, &plat->mmc, &plat->cfg);
687}
688
Jagan Tekie8f37f42019-01-09 16:58:39 +0530689static const struct sunxi_mmc_variant sun4i_a10_variant = {
Jagan Tekie8f37f42019-01-09 16:58:39 +0530690 .mclk_offset = 0x88,
691};
692
Jagan Teki3c8c7da2019-01-21 16:01:12 +0530693static const struct sunxi_mmc_variant sun9i_a80_variant = {
694 .mclk_offset = 0x410,
695};
696
Jagan Teki9e233382019-01-29 15:54:12 +0000697static const struct sunxi_mmc_variant sun50i_h6_variant = {
698 .mclk_offset = 0x830,
699};
700
Simon Glassdd279182017-07-04 13:31:27 -0600701static const struct udevice_id sunxi_mmc_ids[] = {
Jagan Tekie8f37f42019-01-09 16:58:39 +0530702 {
703 .compatible = "allwinner,sun4i-a10-mmc",
704 .data = (ulong)&sun4i_a10_variant,
705 },
706 {
707 .compatible = "allwinner,sun5i-a13-mmc",
708 .data = (ulong)&sun4i_a10_variant,
709 },
710 {
711 .compatible = "allwinner,sun7i-a20-mmc",
712 .data = (ulong)&sun4i_a10_variant,
713 },
Jagan Tekia1925a62019-01-29 15:54:11 +0000714 {
715 .compatible = "allwinner,sun8i-a83t-emmc",
716 .data = (ulong)&sun4i_a10_variant,
717 },
718 {
Jagan Teki3c8c7da2019-01-21 16:01:12 +0530719 .compatible = "allwinner,sun9i-a80-mmc",
720 .data = (ulong)&sun9i_a80_variant,
721 },
722 {
Jagan Tekia1925a62019-01-29 15:54:11 +0000723 .compatible = "allwinner,sun50i-a64-mmc",
724 .data = (ulong)&sun4i_a10_variant,
725 },
726 {
727 .compatible = "allwinner,sun50i-a64-emmc",
728 .data = (ulong)&sun4i_a10_variant,
729 },
Jagan Teki9e233382019-01-29 15:54:12 +0000730 {
731 .compatible = "allwinner,sun50i-h6-mmc",
732 .data = (ulong)&sun50i_h6_variant,
733 },
734 {
735 .compatible = "allwinner,sun50i-h6-emmc",
736 .data = (ulong)&sun50i_h6_variant,
737 },
Jagan Tekie8f37f42019-01-09 16:58:39 +0530738 { /* sentinel */ }
Simon Glassdd279182017-07-04 13:31:27 -0600739};
740
741U_BOOT_DRIVER(sunxi_mmc_drv) = {
742 .name = "sunxi_mmc",
743 .id = UCLASS_MMC,
744 .of_match = sunxi_mmc_ids,
745 .bind = sunxi_mmc_bind,
746 .probe = sunxi_mmc_probe,
747 .ops = &sunxi_mmc_ops,
748 .platdata_auto_alloc_size = sizeof(struct sunxi_mmc_plat),
749 .priv_auto_alloc_size = sizeof(struct sunxi_mmc_priv),
750};
751#endif