blob: 0e03b07ce555fec568cbfb56b4efdea1579a5599 [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
Jagan Tekie8f37f42019-01-09 16:58:39 +053026#ifdef CONFIG_DM_MMC
27struct sunxi_mmc_variant {
Jagan Tekie8f37f42019-01-09 16:58:39 +053028 u16 mclk_offset;
29};
30#endif
31
Simon Glassdd279182017-07-04 13:31:27 -060032struct sunxi_mmc_plat {
33 struct mmc_config cfg;
34 struct mmc mmc;
35};
36
Simon Glasse3c794e2017-07-04 13:31:23 -060037struct sunxi_mmc_priv {
Ian Campbelle24ea552014-05-05 14:42:31 +010038 unsigned mmc_no;
39 uint32_t *mclkreg;
Ian Campbelle24ea552014-05-05 14:42:31 +010040 unsigned fatal_err;
Simon Glassdd279182017-07-04 13:31:27 -060041 struct gpio_desc cd_gpio; /* Change Detect GPIO */
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +010042 int cd_inverted; /* Inverted Card Detect */
Ian Campbelle24ea552014-05-05 14:42:31 +010043 struct sunxi_mmc *reg;
44 struct mmc_config cfg;
Jagan Tekie8f37f42019-01-09 16:58:39 +053045#ifdef CONFIG_DM_MMC
46 const struct sunxi_mmc_variant *variant;
47#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010048};
49
Simon Glassdd279182017-07-04 13:31:27 -060050#if !CONFIG_IS_ENABLED(DM_MMC)
Ian Campbelle24ea552014-05-05 14:42:31 +010051/* support 4 mmc hosts */
Simon Glasse3c794e2017-07-04 13:31:23 -060052struct sunxi_mmc_priv mmc_host[4];
Ian Campbelle24ea552014-05-05 14:42:31 +010053
Hans de Goede967325f2014-10-31 16:55:02 +010054static int sunxi_mmc_getcd_gpio(int sdc_no)
55{
56 switch (sdc_no) {
57 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
58 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
59 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
60 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
61 }
Hans de Goede90641f82015-04-22 17:03:17 +020062 return -EINVAL;
Hans de Goede967325f2014-10-31 16:55:02 +010063}
64
Ian Campbelle24ea552014-05-05 14:42:31 +010065static int mmc_resource_init(int sdc_no)
66{
Simon Glass3f5af122017-07-04 13:31:24 -060067 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +010068 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede967325f2014-10-31 16:55:02 +010069 int cd_pin, ret = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +010070
71 debug("init mmc %d resource\n", sdc_no);
72
73 switch (sdc_no) {
74 case 0:
Simon Glass3f5af122017-07-04 13:31:24 -060075 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
76 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010077 break;
78 case 1:
Simon Glass3f5af122017-07-04 13:31:24 -060079 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
80 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010081 break;
82 case 2:
Simon Glass3f5af122017-07-04 13:31:24 -060083 priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
84 priv->mclkreg = &ccm->sd2_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010085 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080086#ifdef SUNXI_MMC3_BASE
Ian Campbelle24ea552014-05-05 14:42:31 +010087 case 3:
Simon Glass3f5af122017-07-04 13:31:24 -060088 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
89 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010090 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080091#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010092 default:
93 printf("Wrong mmc number %d\n", sdc_no);
94 return -1;
95 }
Simon Glass3f5af122017-07-04 13:31:24 -060096 priv->mmc_no = sdc_no;
Ian Campbelle24ea552014-05-05 14:42:31 +010097
Hans de Goede967325f2014-10-31 16:55:02 +010098 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goede90641f82015-04-22 17:03:17 +020099 if (cd_pin >= 0) {
Hans de Goede967325f2014-10-31 16:55:02 +0100100 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goede1c09fa32015-05-30 16:39:10 +0200101 if (!ret) {
102 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Linb0c4ae12014-12-20 11:41:25 +0800103 ret = gpio_direction_input(cd_pin);
Hans de Goede1c09fa32015-05-30 16:39:10 +0200104 }
Axel Linb0c4ae12014-12-20 11:41:25 +0800105 }
Hans de Goede967325f2014-10-31 16:55:02 +0100106
107 return ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100108}
Simon Glassdd279182017-07-04 13:31:27 -0600109#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100110
Simon Glass3f5af122017-07-04 13:31:24 -0600111static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goedefc3a8322014-12-07 20:55:10 +0100112{
113 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800114 bool new_mode = true;
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800115 bool calibrate = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200116 u32 val = 0;
117
Vasily Khoruzhick0e21a2f2018-11-09 20:41:46 -0800118 if (!IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE))
119 new_mode = false;
120
121 /* A83T support new mode only on eMMC */
122 if (IS_ENABLED(CONFIG_MACH_SUN8I_A83T) && priv->mmc_no != 2)
123 new_mode = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200124
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800125#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
126 calibrate = true;
127#endif
128
Hans de Goedefc3a8322014-12-07 20:55:10 +0100129 if (hz <= 24000000) {
130 pll = CCM_MMC_CTRL_OSCM24;
131 pll_hz = 24000000;
132 } else {
Hans de Goededaf22632015-01-14 19:05:03 +0100133#ifdef CONFIG_MACH_SUN9I
134 pll = CCM_MMC_CTRL_PLL_PERIPH0;
135 pll_hz = clock_get_pll4_periph0();
Icenowy Zheng42956f12018-07-21 16:20:29 +0800136#elif defined(CONFIG_MACH_SUN50I_H6)
137 pll = CCM_MMC_CTRL_PLL6X2;
138 pll_hz = clock_get_pll6() * 2;
Hans de Goededaf22632015-01-14 19:05:03 +0100139#else
Hans de Goedefc3a8322014-12-07 20:55:10 +0100140 pll = CCM_MMC_CTRL_PLL6;
141 pll_hz = clock_get_pll6();
Hans de Goededaf22632015-01-14 19:05:03 +0100142#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100143 }
144
145 div = pll_hz / hz;
146 if (pll_hz % hz)
147 div++;
148
149 n = 0;
150 while (div > 16) {
151 n++;
152 div = (div + 1) / 2;
153 }
154
155 if (n > 3) {
Simon Glass3f5af122017-07-04 13:31:24 -0600156 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
157 hz);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100158 return -1;
159 }
160
161 /* determine delays */
162 if (hz <= 400000) {
163 oclk_dly = 0;
Hans de Goedebe909742015-09-23 16:13:10 +0200164 sclk_dly = 0;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100165 } else if (hz <= 25000000) {
166 oclk_dly = 0;
167 sclk_dly = 5;
Hans de Goedebe909742015-09-23 16:13:10 +0200168#ifdef CONFIG_MACH_SUN9I
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300169 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200170 oclk_dly = 5;
171 sclk_dly = 4;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100172 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300173 /* hz > 52000000 */
Hans de Goedefc3a8322014-12-07 20:55:10 +0100174 oclk_dly = 2;
175 sclk_dly = 4;
Hans de Goedebe909742015-09-23 16:13:10 +0200176#else
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300177 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200178 oclk_dly = 3;
179 sclk_dly = 4;
180 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300181 /* hz > 52000000 */
Hans de Goedebe909742015-09-23 16:13:10 +0200182 oclk_dly = 1;
183 sclk_dly = 4;
184#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100185 }
186
Maxime Ripardde9b1772017-08-23 12:03:41 +0200187 if (new_mode) {
188#ifdef CONFIG_MMC_SUNXI_HAS_NEW_MODE
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800189#ifdef CONFIG_MMC_SUNXI_HAS_MODE_SWITCH
Maxime Ripardde9b1772017-08-23 12:03:41 +0200190 val = CCM_MMC_CTRL_MODE_SEL_NEW;
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800191#endif
Chen-Yu Tsai8a647fc2017-08-31 21:57:48 +0800192 setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
Maxime Ripardde9b1772017-08-23 12:03:41 +0200193#endif
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800194 } else if (!calibrate) {
195 /*
196 * Use hardcoded delay values if controller doesn't support
197 * calibration
198 */
Maxime Ripardde9b1772017-08-23 12:03:41 +0200199 val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
200 CCM_MMC_CTRL_SCLK_DLY(sclk_dly);
201 }
202
203 writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) |
204 CCM_MMC_CTRL_M(div) | val, priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100205
206 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600207 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100208
209 return 0;
210}
211
Simon Glass034e2262017-07-04 13:31:25 -0600212static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100213{
Ian Campbelle24ea552014-05-05 14:42:31 +0100214 unsigned int cmd;
215 unsigned timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100216 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100217
218 cmd = SUNXI_MMC_CMD_START |
219 SUNXI_MMC_CMD_UPCLK_ONLY |
220 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100221
Simon Glass3f5af122017-07-04 13:31:24 -0600222 writel(cmd, &priv->reg->cmd);
223 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100224 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100225 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100226 }
227
228 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600229 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100230
231 return 0;
232}
233
Simon Glass034e2262017-07-04 13:31:25 -0600234static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100235{
Simon Glass3f5af122017-07-04 13:31:24 -0600236 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100237
238 /* Disable Clock */
239 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600240 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600241 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100242 return -1;
243
Hans de Goedefc3a8322014-12-07 20:55:10 +0100244 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600245 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100246 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100247
248 /* Clear internal divider */
249 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600250 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100251
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800252#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
253 /* A64 supports calibration of delays on MMC controller and we
254 * have to set delay of zero before starting calibration.
255 * Allwinner BSP driver sets a delay only in the case of
256 * using HS400 which is not supported by mainline U-Boot or
257 * Linux at the moment
258 */
259 writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
260#endif
261
Ian Campbelle24ea552014-05-05 14:42:31 +0100262 /* Re-enable Clock */
263 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600264 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600265 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100266 return -1;
267
268 return 0;
269}
270
Simon Glass034e2262017-07-04 13:31:25 -0600271static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
272 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100273{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100274 debug("set ios: bus_width: %x, clock: %d\n",
275 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100276
277 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600278 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600279 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900280 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100281 }
282
283 /* Change bus width */
284 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600285 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100286 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600287 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100288 else
Simon Glass3f5af122017-07-04 13:31:24 -0600289 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900290
291 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100292}
293
Simon Glassdd279182017-07-04 13:31:27 -0600294#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200295static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100296{
Simon Glass3f5af122017-07-04 13:31:24 -0600297 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100298
299 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600300 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200301 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100302
303 return 0;
304}
Simon Glassdd279182017-07-04 13:31:27 -0600305#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100306
Simon Glass034e2262017-07-04 13:31:25 -0600307static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
308 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100309{
Ian Campbelle24ea552014-05-05 14:42:31 +0100310 const int reading = !!(data->flags & MMC_DATA_READ);
311 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
312 SUNXI_MMC_STATUS_FIFO_FULL;
313 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100314 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Yousong Zhou28f69b92015-08-29 21:26:11 +0800315 unsigned byte_cnt = data->blocksize * data->blocks;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100316 unsigned timeout_msecs = byte_cnt >> 8;
317 unsigned long start;
318
319 if (timeout_msecs < 2000)
320 timeout_msecs = 2000;
Ian Campbelle24ea552014-05-05 14:42:31 +0100321
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200322 /* Always read / write data through the CPU */
Simon Glass3f5af122017-07-04 13:31:24 -0600323 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200324
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100325 start = get_timer(0);
326
Ian Campbelle24ea552014-05-05 14:42:31 +0100327 for (i = 0; i < (byte_cnt >> 2); i++) {
Simon Glass3f5af122017-07-04 13:31:24 -0600328 while (readl(&priv->reg->status) & status_bit) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100329 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100330 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100331 }
332
333 if (reading)
Simon Glass3f5af122017-07-04 13:31:24 -0600334 buff[i] = readl(&priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100335 else
Simon Glass3f5af122017-07-04 13:31:24 -0600336 writel(buff[i], &priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100337 }
338
339 return 0;
340}
341
Simon Glass034e2262017-07-04 13:31:25 -0600342static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
343 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100344{
Ian Campbelle24ea552014-05-05 14:42:31 +0100345 unsigned int status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100346 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100347
348 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600349 status = readl(&priv->reg->rint);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100350 if ((get_timer(start) > timeout_msecs) ||
Ian Campbelle24ea552014-05-05 14:42:31 +0100351 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
352 debug("%s timeout %x\n", what,
353 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900354 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100355 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100356 } while (!(status & done_bit));
357
358 return 0;
359}
360
Simon Glass034e2262017-07-04 13:31:25 -0600361static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
362 struct mmc *mmc, struct mmc_cmd *cmd,
363 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100364{
Ian Campbelle24ea552014-05-05 14:42:31 +0100365 unsigned int cmdval = SUNXI_MMC_CMD_START;
366 unsigned int timeout_msecs;
367 int error = 0;
368 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100369 unsigned int bytecnt = 0;
370
Simon Glass3f5af122017-07-04 13:31:24 -0600371 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100372 return -1;
373 if (cmd->resp_type & MMC_RSP_BUSY)
374 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
375 if (cmd->cmdidx == 12)
376 return 0;
377
378 if (!cmd->cmdidx)
379 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
380 if (cmd->resp_type & MMC_RSP_PRESENT)
381 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
382 if (cmd->resp_type & MMC_RSP_136)
383 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
384 if (cmd->resp_type & MMC_RSP_CRC)
385 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
386
387 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200388 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100389 error = -1;
390 goto out;
391 }
392
393 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
394 if (data->flags & MMC_DATA_WRITE)
395 cmdval |= SUNXI_MMC_CMD_WRITE;
396 if (data->blocks > 1)
397 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600398 writel(data->blocksize, &priv->reg->blksz);
399 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100400 }
401
Simon Glass3f5af122017-07-04 13:31:24 -0600402 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100403 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600404 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100405
406 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600407 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100408
409 /*
410 * transfer data and check status
411 * STATREG[2] : FIFO empty
412 * STATREG[3] : FIFO full
413 */
414 if (data) {
415 int ret = 0;
416
417 bytecnt = data->blocksize * data->blocks;
418 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600419 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600420 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100421 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600422 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100423 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900424 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100425 goto out;
426 }
427 }
428
Simon Glass034e2262017-07-04 13:31:25 -0600429 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
430 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100431 if (error)
432 goto out;
433
434 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200435 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100436 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600437 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100438 data->blocks > 1 ?
439 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
440 SUNXI_MMC_RINT_DATA_OVER,
441 "data");
442 if (error)
443 goto out;
444 }
445
446 if (cmd->resp_type & MMC_RSP_BUSY) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100447 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100448 timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100449
Ian Campbelle24ea552014-05-05 14:42:31 +0100450 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600451 status = readl(&priv->reg->status);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100452 if (get_timer(start) > timeout_msecs) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100453 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900454 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100455 goto out;
456 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100457 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
458 }
459
460 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600461 cmd->response[0] = readl(&priv->reg->resp3);
462 cmd->response[1] = readl(&priv->reg->resp2);
463 cmd->response[2] = readl(&priv->reg->resp1);
464 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100465 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
466 cmd->response[3], cmd->response[2],
467 cmd->response[1], cmd->response[0]);
468 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600469 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100470 debug("mmc resp 0x%08x\n", cmd->response[0]);
471 }
472out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100473 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600474 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600475 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100476 }
Simon Glass3f5af122017-07-04 13:31:24 -0600477 writel(0xffffffff, &priv->reg->rint);
478 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
479 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100480
481 return error;
482}
483
Simon Glassdd279182017-07-04 13:31:27 -0600484#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass034e2262017-07-04 13:31:25 -0600485static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
486{
487 struct sunxi_mmc_priv *priv = mmc->priv;
488
489 return sunxi_mmc_set_ios_common(priv, mmc);
490}
491
492static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
493 struct mmc_data *data)
494{
495 struct sunxi_mmc_priv *priv = mmc->priv;
496
497 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
498}
499
500static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200501{
Simon Glass3f5af122017-07-04 13:31:24 -0600502 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100503 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200504
Simon Glass3f5af122017-07-04 13:31:24 -0600505 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200506 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200507 return 1;
508
Axel Linb0c4ae12014-12-20 11:41:25 +0800509 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200510}
511
Ian Campbelle24ea552014-05-05 14:42:31 +0100512static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600513 .send_cmd = sunxi_mmc_send_cmd_legacy,
514 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200515 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600516 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100517};
518
Hans de Goedee79c7c82014-10-02 21:13:54 +0200519struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100520{
Simon Glassec73d962017-07-04 13:31:26 -0600521 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass034e2262017-07-04 13:31:25 -0600522 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
523 struct mmc_config *cfg = &priv->cfg;
Simon Glassec73d962017-07-04 13:31:26 -0600524 int ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100525
Simon Glass034e2262017-07-04 13:31:25 -0600526 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100527
528 cfg->name = "SUNXI SD/MMC";
529 cfg->ops = &sunxi_mmc_ops;
530
531 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
532 cfg->host_caps = MMC_MODE_4BIT;
Icenowy Zheng42956f12018-07-21 16:20:29 +0800533#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I_H6)
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200534 if (sdc_no == 2)
535 cfg->host_caps = MMC_MODE_8BIT;
536#endif
Rob Herring5a203972015-03-23 17:56:59 -0500537 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100538 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
539
540 cfg->f_min = 400000;
541 cfg->f_max = 52000000;
542
Hans de Goede967325f2014-10-31 16:55:02 +0100543 if (mmc_resource_init(sdc_no) != 0)
544 return NULL;
545
Simon Glassec73d962017-07-04 13:31:26 -0600546 /* config ahb clock */
547 debug("init mmc %d clock and io\n", sdc_no);
Icenowy Zheng42956f12018-07-21 16:20:29 +0800548#if !defined(CONFIG_MACH_SUN50I_H6)
Simon Glassec73d962017-07-04 13:31:26 -0600549 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
550
551#ifdef CONFIG_SUNXI_GEN_SUN6I
552 /* unassert reset */
553 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
554#endif
555#if defined(CONFIG_MACH_SUN9I)
556 /* sun9i has a mmc-common module, also set the gate and reset there */
557 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
558 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
559#endif
Icenowy Zheng42956f12018-07-21 16:20:29 +0800560#else /* CONFIG_MACH_SUN50I_H6 */
561 setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
562 /* unassert reset */
563 setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
564#endif
Simon Glassec73d962017-07-04 13:31:26 -0600565 ret = mmc_set_mod_clk(priv, 24000000);
566 if (ret)
567 return NULL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100568
Maxime Ripardead36972017-08-23 13:41:33 +0200569 return mmc_create(cfg, priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100570}
Simon Glassdd279182017-07-04 13:31:27 -0600571#else
572
573static int sunxi_mmc_set_ios(struct udevice *dev)
574{
575 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
576 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
577
578 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
579}
580
581static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
582 struct mmc_data *data)
583{
584 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
585 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
586
587 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
588}
589
590static int sunxi_mmc_getcd(struct udevice *dev)
591{
592 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
593
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100594 if (dm_gpio_is_valid(&priv->cd_gpio)) {
595 int cd_state = dm_gpio_get_value(&priv->cd_gpio);
Simon Glassdd279182017-07-04 13:31:27 -0600596
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100597 return cd_state ^ priv->cd_inverted;
598 }
Simon Glassdd279182017-07-04 13:31:27 -0600599 return 1;
600}
601
602static const struct dm_mmc_ops sunxi_mmc_ops = {
603 .send_cmd = sunxi_mmc_send_cmd,
604 .set_ios = sunxi_mmc_set_ios,
605 .get_cd = sunxi_mmc_getcd,
606};
607
608static int sunxi_mmc_probe(struct udevice *dev)
609{
610 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
611 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
612 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
Andre Przywarac57572e2019-01-29 15:54:13 +0000613 struct reset_ctl_bulk reset_bulk;
614 struct clk gate_clk;
Simon Glassdd279182017-07-04 13:31:27 -0600615 struct mmc_config *cfg = &plat->cfg;
616 struct ofnode_phandle_args args;
Andre Przywarac57572e2019-01-29 15:54:13 +0000617 u32 *ccu_reg;
Simon Glassdd279182017-07-04 13:31:27 -0600618 int bus_width, ret;
619
620 cfg->name = dev->name;
621 bus_width = dev_read_u32_default(dev, "bus-width", 1);
622
623 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
624 cfg->host_caps = 0;
625 if (bus_width == 8)
626 cfg->host_caps |= MMC_MODE_8BIT;
627 if (bus_width >= 4)
628 cfg->host_caps |= MMC_MODE_4BIT;
629 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
630 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
631
632 cfg->f_min = 400000;
633 cfg->f_max = 52000000;
634
635 priv->reg = (void *)dev_read_addr(dev);
Jagan Tekie8f37f42019-01-09 16:58:39 +0530636 priv->variant =
637 (const struct sunxi_mmc_variant *)dev_get_driver_data(dev);
Simon Glassdd279182017-07-04 13:31:27 -0600638
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;
647 priv->mclkreg = (void *)ccu_reg +
648 (priv->variant->mclk_offset + (priv->mmc_no * 4));
Andre Przywarac57572e2019-01-29 15:54:13 +0000649
650 ret = clk_get_by_name(dev, "ahb", &gate_clk);
651 if (!ret)
652 clk_enable(&gate_clk);
653
654 ret = reset_get_bulk(dev, &reset_bulk);
655 if (!ret)
656 reset_deassert_bulk(&reset_bulk);
Simon Glassdd279182017-07-04 13:31:27 -0600657
658 ret = mmc_set_mod_clk(priv, 24000000);
659 if (ret)
660 return ret;
661
662 /* This GPIO is optional */
Andre Przywara42336982019-01-19 01:30:53 +0000663 if (!dev_read_bool(dev, "non-removable") &&
664 !gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
Simon Glassdd279182017-07-04 13:31:27 -0600665 GPIOD_IS_IN)) {
666 int cd_pin = gpio_get_number(&priv->cd_gpio);
667
668 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
669 }
670
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100671 /* Check if card detect is inverted */
672 priv->cd_inverted = dev_read_bool(dev, "cd-inverted");
673
Simon Glassdd279182017-07-04 13:31:27 -0600674 upriv->mmc = &plat->mmc;
675
676 /* Reset controller */
677 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
678 udelay(1000);
679
680 return 0;
681}
682
683static int sunxi_mmc_bind(struct udevice *dev)
684{
685 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
686
687 return mmc_bind(dev, &plat->mmc, &plat->cfg);
688}
689
Jagan Tekie8f37f42019-01-09 16:58:39 +0530690static const struct sunxi_mmc_variant sun4i_a10_variant = {
Jagan Tekie8f37f42019-01-09 16:58:39 +0530691 .mclk_offset = 0x88,
692};
693
Jagan Teki3c8c7da2019-01-21 16:01:12 +0530694static const struct sunxi_mmc_variant sun9i_a80_variant = {
695 .mclk_offset = 0x410,
696};
697
Jagan Teki9e233382019-01-29 15:54:12 +0000698static const struct sunxi_mmc_variant sun50i_h6_variant = {
699 .mclk_offset = 0x830,
700};
701
Simon Glassdd279182017-07-04 13:31:27 -0600702static const struct udevice_id sunxi_mmc_ids[] = {
Jagan Tekie8f37f42019-01-09 16:58:39 +0530703 {
704 .compatible = "allwinner,sun4i-a10-mmc",
705 .data = (ulong)&sun4i_a10_variant,
706 },
707 {
708 .compatible = "allwinner,sun5i-a13-mmc",
709 .data = (ulong)&sun4i_a10_variant,
710 },
711 {
712 .compatible = "allwinner,sun7i-a20-mmc",
713 .data = (ulong)&sun4i_a10_variant,
714 },
Jagan Tekia1925a62019-01-29 15:54:11 +0000715 {
716 .compatible = "allwinner,sun8i-a83t-emmc",
717 .data = (ulong)&sun4i_a10_variant,
718 },
719 {
Jagan Teki3c8c7da2019-01-21 16:01:12 +0530720 .compatible = "allwinner,sun9i-a80-mmc",
721 .data = (ulong)&sun9i_a80_variant,
722 },
723 {
Jagan Tekia1925a62019-01-29 15:54:11 +0000724 .compatible = "allwinner,sun50i-a64-mmc",
725 .data = (ulong)&sun4i_a10_variant,
726 },
727 {
728 .compatible = "allwinner,sun50i-a64-emmc",
729 .data = (ulong)&sun4i_a10_variant,
730 },
Jagan Teki9e233382019-01-29 15:54:12 +0000731 {
732 .compatible = "allwinner,sun50i-h6-mmc",
733 .data = (ulong)&sun50i_h6_variant,
734 },
735 {
736 .compatible = "allwinner,sun50i-h6-emmc",
737 .data = (ulong)&sun50i_h6_variant,
738 },
Jagan Tekie8f37f42019-01-09 16:58:39 +0530739 { /* sentinel */ }
Simon Glassdd279182017-07-04 13:31:27 -0600740};
741
742U_BOOT_DRIVER(sunxi_mmc_drv) = {
743 .name = "sunxi_mmc",
744 .id = UCLASS_MMC,
745 .of_match = sunxi_mmc_ids,
746 .bind = sunxi_mmc_bind,
747 .probe = sunxi_mmc_probe,
748 .ops = &sunxi_mmc_ops,
749 .platdata_auto_alloc_size = sizeof(struct sunxi_mmc_plat),
750 .priv_auto_alloc_size = sizeof(struct sunxi_mmc_priv),
751};
752#endif