blob: e50b2c3343195847b2d800228cc6d808c97c801b [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>
Ian Campbelle24ea552014-05-05 14:42:31 +010013#include <malloc.h>
14#include <mmc.h>
15#include <asm/io.h>
16#include <asm/arch/clock.h>
17#include <asm/arch/cpu.h>
Hans de Goedecd821132014-10-02 20:29:26 +020018#include <asm/arch/gpio.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010019#include <asm/arch/mmc.h>
Hans de Goedecd821132014-10-02 20:29:26 +020020#include <asm-generic/gpio.h>
Ian Campbelle24ea552014-05-05 14:42:31 +010021
Simon Glassdd279182017-07-04 13:31:27 -060022struct sunxi_mmc_plat {
23 struct mmc_config cfg;
24 struct mmc mmc;
25};
26
Simon Glasse3c794e2017-07-04 13:31:23 -060027struct sunxi_mmc_priv {
Ian Campbelle24ea552014-05-05 14:42:31 +010028 unsigned mmc_no;
29 uint32_t *mclkreg;
Ian Campbelle24ea552014-05-05 14:42:31 +010030 unsigned fatal_err;
Simon Glassdd279182017-07-04 13:31:27 -060031 struct gpio_desc cd_gpio; /* Change Detect GPIO */
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +010032 int cd_inverted; /* Inverted Card Detect */
Ian Campbelle24ea552014-05-05 14:42:31 +010033 struct sunxi_mmc *reg;
34 struct mmc_config cfg;
35};
36
Simon Glassdd279182017-07-04 13:31:27 -060037#if !CONFIG_IS_ENABLED(DM_MMC)
Ian Campbelle24ea552014-05-05 14:42:31 +010038/* support 4 mmc hosts */
Simon Glasse3c794e2017-07-04 13:31:23 -060039struct sunxi_mmc_priv mmc_host[4];
Ian Campbelle24ea552014-05-05 14:42:31 +010040
Hans de Goede967325f2014-10-31 16:55:02 +010041static int sunxi_mmc_getcd_gpio(int sdc_no)
42{
43 switch (sdc_no) {
44 case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN);
45 case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN);
46 case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN);
47 case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN);
48 }
Hans de Goede90641f82015-04-22 17:03:17 +020049 return -EINVAL;
Hans de Goede967325f2014-10-31 16:55:02 +010050}
51
Ian Campbelle24ea552014-05-05 14:42:31 +010052static int mmc_resource_init(int sdc_no)
53{
Simon Glass3f5af122017-07-04 13:31:24 -060054 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
Ian Campbelle24ea552014-05-05 14:42:31 +010055 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede967325f2014-10-31 16:55:02 +010056 int cd_pin, ret = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +010057
58 debug("init mmc %d resource\n", sdc_no);
59
60 switch (sdc_no) {
61 case 0:
Simon Glass3f5af122017-07-04 13:31:24 -060062 priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE;
63 priv->mclkreg = &ccm->sd0_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010064 break;
65 case 1:
Simon Glass3f5af122017-07-04 13:31:24 -060066 priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE;
67 priv->mclkreg = &ccm->sd1_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010068 break;
69 case 2:
Simon Glass3f5af122017-07-04 13:31:24 -060070 priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE;
71 priv->mclkreg = &ccm->sd2_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010072 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080073#ifdef SUNXI_MMC3_BASE
Ian Campbelle24ea552014-05-05 14:42:31 +010074 case 3:
Simon Glass3f5af122017-07-04 13:31:24 -060075 priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE;
76 priv->mclkreg = &ccm->sd3_clk_cfg;
Ian Campbelle24ea552014-05-05 14:42:31 +010077 break;
Icenowy Zheng42956f12018-07-21 16:20:29 +080078#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010079 default:
80 printf("Wrong mmc number %d\n", sdc_no);
81 return -1;
82 }
Simon Glass3f5af122017-07-04 13:31:24 -060083 priv->mmc_no = sdc_no;
Ian Campbelle24ea552014-05-05 14:42:31 +010084
Hans de Goede967325f2014-10-31 16:55:02 +010085 cd_pin = sunxi_mmc_getcd_gpio(sdc_no);
Hans de Goede90641f82015-04-22 17:03:17 +020086 if (cd_pin >= 0) {
Hans de Goede967325f2014-10-31 16:55:02 +010087 ret = gpio_request(cd_pin, "mmc_cd");
Hans de Goede1c09fa32015-05-30 16:39:10 +020088 if (!ret) {
89 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
Axel Linb0c4ae12014-12-20 11:41:25 +080090 ret = gpio_direction_input(cd_pin);
Hans de Goede1c09fa32015-05-30 16:39:10 +020091 }
Axel Linb0c4ae12014-12-20 11:41:25 +080092 }
Hans de Goede967325f2014-10-31 16:55:02 +010093
94 return ret;
Ian Campbelle24ea552014-05-05 14:42:31 +010095}
Simon Glassdd279182017-07-04 13:31:27 -060096#endif
Ian Campbelle24ea552014-05-05 14:42:31 +010097
Simon Glass3f5af122017-07-04 13:31:24 -060098static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
Hans de Goedefc3a8322014-12-07 20:55:10 +010099{
100 unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200101 bool new_mode = false;
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800102 bool calibrate = false;
Maxime Ripardde9b1772017-08-23 12:03:41 +0200103 u32 val = 0;
104
105 if (IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE) && (priv->mmc_no == 2))
106 new_mode = true;
107
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800108#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
109 calibrate = true;
110#endif
111
Hans de Goedefc3a8322014-12-07 20:55:10 +0100112 if (hz <= 24000000) {
113 pll = CCM_MMC_CTRL_OSCM24;
114 pll_hz = 24000000;
115 } else {
Hans de Goededaf22632015-01-14 19:05:03 +0100116#ifdef CONFIG_MACH_SUN9I
117 pll = CCM_MMC_CTRL_PLL_PERIPH0;
118 pll_hz = clock_get_pll4_periph0();
Icenowy Zheng42956f12018-07-21 16:20:29 +0800119#elif defined(CONFIG_MACH_SUN50I_H6)
120 pll = CCM_MMC_CTRL_PLL6X2;
121 pll_hz = clock_get_pll6() * 2;
Hans de Goededaf22632015-01-14 19:05:03 +0100122#else
Hans de Goedefc3a8322014-12-07 20:55:10 +0100123 pll = CCM_MMC_CTRL_PLL6;
124 pll_hz = clock_get_pll6();
Hans de Goededaf22632015-01-14 19:05:03 +0100125#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100126 }
127
128 div = pll_hz / hz;
129 if (pll_hz % hz)
130 div++;
131
132 n = 0;
133 while (div > 16) {
134 n++;
135 div = (div + 1) / 2;
136 }
137
138 if (n > 3) {
Simon Glass3f5af122017-07-04 13:31:24 -0600139 printf("mmc %u error cannot set clock to %u\n", priv->mmc_no,
140 hz);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100141 return -1;
142 }
143
144 /* determine delays */
145 if (hz <= 400000) {
146 oclk_dly = 0;
Hans de Goedebe909742015-09-23 16:13:10 +0200147 sclk_dly = 0;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100148 } else if (hz <= 25000000) {
149 oclk_dly = 0;
150 sclk_dly = 5;
Hans de Goedebe909742015-09-23 16:13:10 +0200151#ifdef CONFIG_MACH_SUN9I
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300152 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200153 oclk_dly = 5;
154 sclk_dly = 4;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100155 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300156 /* hz > 52000000 */
Hans de Goedefc3a8322014-12-07 20:55:10 +0100157 oclk_dly = 2;
158 sclk_dly = 4;
Hans de Goedebe909742015-09-23 16:13:10 +0200159#else
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300160 } else if (hz <= 52000000) {
Hans de Goedebe909742015-09-23 16:13:10 +0200161 oclk_dly = 3;
162 sclk_dly = 4;
163 } else {
Stefan Mavrodiev4744d812018-03-27 16:57:23 +0300164 /* hz > 52000000 */
Hans de Goedebe909742015-09-23 16:13:10 +0200165 oclk_dly = 1;
166 sclk_dly = 4;
167#endif
Hans de Goedefc3a8322014-12-07 20:55:10 +0100168 }
169
Maxime Ripardde9b1772017-08-23 12:03:41 +0200170 if (new_mode) {
171#ifdef CONFIG_MMC_SUNXI_HAS_NEW_MODE
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800172#ifdef CONFIG_MMC_SUNXI_HAS_MODE_SWITCH
Maxime Ripardde9b1772017-08-23 12:03:41 +0200173 val = CCM_MMC_CTRL_MODE_SEL_NEW;
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800174#endif
Chen-Yu Tsai8a647fc2017-08-31 21:57:48 +0800175 setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
Maxime Ripardde9b1772017-08-23 12:03:41 +0200176#endif
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800177 } else if (!calibrate) {
178 /*
179 * Use hardcoded delay values if controller doesn't support
180 * calibration
181 */
Maxime Ripardde9b1772017-08-23 12:03:41 +0200182 val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) |
183 CCM_MMC_CTRL_SCLK_DLY(sclk_dly);
184 }
185
186 writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) |
187 CCM_MMC_CTRL_M(div) | val, priv->mclkreg);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100188
189 debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n",
Simon Glass3f5af122017-07-04 13:31:24 -0600190 priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100191
192 return 0;
193}
194
Simon Glass034e2262017-07-04 13:31:25 -0600195static int mmc_update_clk(struct sunxi_mmc_priv *priv)
Ian Campbelle24ea552014-05-05 14:42:31 +0100196{
Ian Campbelle24ea552014-05-05 14:42:31 +0100197 unsigned int cmd;
198 unsigned timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100199 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100200
201 cmd = SUNXI_MMC_CMD_START |
202 SUNXI_MMC_CMD_UPCLK_ONLY |
203 SUNXI_MMC_CMD_WAIT_PRE_OVER;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100204
Simon Glass3f5af122017-07-04 13:31:24 -0600205 writel(cmd, &priv->reg->cmd);
206 while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100207 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100208 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100209 }
210
211 /* clock update sets various irq status bits, clear these */
Simon Glass3f5af122017-07-04 13:31:24 -0600212 writel(readl(&priv->reg->rint), &priv->reg->rint);
Ian Campbelle24ea552014-05-05 14:42:31 +0100213
214 return 0;
215}
216
Simon Glass034e2262017-07-04 13:31:25 -0600217static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100218{
Simon Glass3f5af122017-07-04 13:31:24 -0600219 unsigned rval = readl(&priv->reg->clkcr);
Ian Campbelle24ea552014-05-05 14:42:31 +0100220
221 /* Disable Clock */
222 rval &= ~SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600223 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600224 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100225 return -1;
226
Hans de Goedefc3a8322014-12-07 20:55:10 +0100227 /* Set mod_clk to new rate */
Simon Glass3f5af122017-07-04 13:31:24 -0600228 if (mmc_set_mod_clk(priv, mmc->clock))
Ian Campbelle24ea552014-05-05 14:42:31 +0100229 return -1;
Hans de Goedefc3a8322014-12-07 20:55:10 +0100230
231 /* Clear internal divider */
232 rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
Simon Glass3f5af122017-07-04 13:31:24 -0600233 writel(rval, &priv->reg->clkcr);
Hans de Goedefc3a8322014-12-07 20:55:10 +0100234
Vasily Khoruzhick20940ef2018-11-05 20:24:28 -0800235#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
236 /* A64 supports calibration of delays on MMC controller and we
237 * have to set delay of zero before starting calibration.
238 * Allwinner BSP driver sets a delay only in the case of
239 * using HS400 which is not supported by mainline U-Boot or
240 * Linux at the moment
241 */
242 writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
243#endif
244
Ian Campbelle24ea552014-05-05 14:42:31 +0100245 /* Re-enable Clock */
246 rval |= SUNXI_MMC_CLK_ENABLE;
Simon Glass3f5af122017-07-04 13:31:24 -0600247 writel(rval, &priv->reg->clkcr);
Simon Glass034e2262017-07-04 13:31:25 -0600248 if (mmc_update_clk(priv))
Ian Campbelle24ea552014-05-05 14:42:31 +0100249 return -1;
250
251 return 0;
252}
253
Simon Glass034e2262017-07-04 13:31:25 -0600254static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv,
255 struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100256{
Hans de Goedefc3a8322014-12-07 20:55:10 +0100257 debug("set ios: bus_width: %x, clock: %d\n",
258 mmc->bus_width, mmc->clock);
Ian Campbelle24ea552014-05-05 14:42:31 +0100259
260 /* Change clock first */
Simon Glass034e2262017-07-04 13:31:25 -0600261 if (mmc->clock && mmc_config_clock(priv, mmc) != 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600262 priv->fatal_err = 1;
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900263 return -EINVAL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100264 }
265
266 /* Change bus width */
267 if (mmc->bus_width == 8)
Simon Glass3f5af122017-07-04 13:31:24 -0600268 writel(0x2, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100269 else if (mmc->bus_width == 4)
Simon Glass3f5af122017-07-04 13:31:24 -0600270 writel(0x1, &priv->reg->width);
Ian Campbelle24ea552014-05-05 14:42:31 +0100271 else
Simon Glass3f5af122017-07-04 13:31:24 -0600272 writel(0x0, &priv->reg->width);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900273
274 return 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100275}
276
Simon Glassdd279182017-07-04 13:31:27 -0600277#if !CONFIG_IS_ENABLED(DM_MMC)
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200278static int sunxi_mmc_core_init(struct mmc *mmc)
Ian Campbelle24ea552014-05-05 14:42:31 +0100279{
Simon Glass3f5af122017-07-04 13:31:24 -0600280 struct sunxi_mmc_priv *priv = mmc->priv;
Ian Campbelle24ea552014-05-05 14:42:31 +0100281
282 /* Reset controller */
Simon Glass3f5af122017-07-04 13:31:24 -0600283 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200284 udelay(1000);
Ian Campbelle24ea552014-05-05 14:42:31 +0100285
286 return 0;
287}
Simon Glassdd279182017-07-04 13:31:27 -0600288#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100289
Simon Glass034e2262017-07-04 13:31:25 -0600290static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
291 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100292{
Ian Campbelle24ea552014-05-05 14:42:31 +0100293 const int reading = !!(data->flags & MMC_DATA_READ);
294 const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY :
295 SUNXI_MMC_STATUS_FIFO_FULL;
296 unsigned i;
Ian Campbelle24ea552014-05-05 14:42:31 +0100297 unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
Yousong Zhou28f69b92015-08-29 21:26:11 +0800298 unsigned byte_cnt = data->blocksize * data->blocks;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100299 unsigned timeout_msecs = byte_cnt >> 8;
300 unsigned long start;
301
302 if (timeout_msecs < 2000)
303 timeout_msecs = 2000;
Ian Campbelle24ea552014-05-05 14:42:31 +0100304
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200305 /* Always read / write data through the CPU */
Simon Glass3f5af122017-07-04 13:31:24 -0600306 setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB);
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200307
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100308 start = get_timer(0);
309
Ian Campbelle24ea552014-05-05 14:42:31 +0100310 for (i = 0; i < (byte_cnt >> 2); i++) {
Simon Glass3f5af122017-07-04 13:31:24 -0600311 while (readl(&priv->reg->status) & status_bit) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100312 if (get_timer(start) > timeout_msecs)
Ian Campbelle24ea552014-05-05 14:42:31 +0100313 return -1;
Ian Campbelle24ea552014-05-05 14:42:31 +0100314 }
315
316 if (reading)
Simon Glass3f5af122017-07-04 13:31:24 -0600317 buff[i] = readl(&priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100318 else
Simon Glass3f5af122017-07-04 13:31:24 -0600319 writel(buff[i], &priv->reg->fifo);
Ian Campbelle24ea552014-05-05 14:42:31 +0100320 }
321
322 return 0;
323}
324
Simon Glass034e2262017-07-04 13:31:25 -0600325static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc,
326 uint timeout_msecs, uint done_bit, const char *what)
Ian Campbelle24ea552014-05-05 14:42:31 +0100327{
Ian Campbelle24ea552014-05-05 14:42:31 +0100328 unsigned int status;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100329 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100330
331 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600332 status = readl(&priv->reg->rint);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100333 if ((get_timer(start) > timeout_msecs) ||
Ian Campbelle24ea552014-05-05 14:42:31 +0100334 (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) {
335 debug("%s timeout %x\n", what,
336 status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900337 return -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100338 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100339 } while (!(status & done_bit));
340
341 return 0;
342}
343
Simon Glass034e2262017-07-04 13:31:25 -0600344static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv,
345 struct mmc *mmc, struct mmc_cmd *cmd,
346 struct mmc_data *data)
Ian Campbelle24ea552014-05-05 14:42:31 +0100347{
Ian Campbelle24ea552014-05-05 14:42:31 +0100348 unsigned int cmdval = SUNXI_MMC_CMD_START;
349 unsigned int timeout_msecs;
350 int error = 0;
351 unsigned int status = 0;
Ian Campbelle24ea552014-05-05 14:42:31 +0100352 unsigned int bytecnt = 0;
353
Simon Glass3f5af122017-07-04 13:31:24 -0600354 if (priv->fatal_err)
Ian Campbelle24ea552014-05-05 14:42:31 +0100355 return -1;
356 if (cmd->resp_type & MMC_RSP_BUSY)
357 debug("mmc cmd %d check rsp busy\n", cmd->cmdidx);
358 if (cmd->cmdidx == 12)
359 return 0;
360
361 if (!cmd->cmdidx)
362 cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ;
363 if (cmd->resp_type & MMC_RSP_PRESENT)
364 cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE;
365 if (cmd->resp_type & MMC_RSP_136)
366 cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE;
367 if (cmd->resp_type & MMC_RSP_CRC)
368 cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC;
369
370 if (data) {
Alexander Graf0ea5a042016-03-29 17:29:09 +0200371 if ((u32)(long)data->dest & 0x3) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100372 error = -1;
373 goto out;
374 }
375
376 cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER;
377 if (data->flags & MMC_DATA_WRITE)
378 cmdval |= SUNXI_MMC_CMD_WRITE;
379 if (data->blocks > 1)
380 cmdval |= SUNXI_MMC_CMD_AUTO_STOP;
Simon Glass3f5af122017-07-04 13:31:24 -0600381 writel(data->blocksize, &priv->reg->blksz);
382 writel(data->blocks * data->blocksize, &priv->reg->bytecnt);
Ian Campbelle24ea552014-05-05 14:42:31 +0100383 }
384
Simon Glass3f5af122017-07-04 13:31:24 -0600385 debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no,
Ian Campbelle24ea552014-05-05 14:42:31 +0100386 cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg);
Simon Glass3f5af122017-07-04 13:31:24 -0600387 writel(cmd->cmdarg, &priv->reg->arg);
Ian Campbelle24ea552014-05-05 14:42:31 +0100388
389 if (!data)
Simon Glass3f5af122017-07-04 13:31:24 -0600390 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Ian Campbelle24ea552014-05-05 14:42:31 +0100391
392 /*
393 * transfer data and check status
394 * STATREG[2] : FIFO empty
395 * STATREG[3] : FIFO full
396 */
397 if (data) {
398 int ret = 0;
399
400 bytecnt = data->blocksize * data->blocks;
401 debug("trans data %d bytes\n", bytecnt);
Simon Glass3f5af122017-07-04 13:31:24 -0600402 writel(cmdval | cmd->cmdidx, &priv->reg->cmd);
Simon Glass034e2262017-07-04 13:31:25 -0600403 ret = mmc_trans_data_by_cpu(priv, mmc, data);
Ian Campbelle24ea552014-05-05 14:42:31 +0100404 if (ret) {
Simon Glass3f5af122017-07-04 13:31:24 -0600405 error = readl(&priv->reg->rint) &
Ian Campbelle24ea552014-05-05 14:42:31 +0100406 SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900407 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100408 goto out;
409 }
410 }
411
Simon Glass034e2262017-07-04 13:31:25 -0600412 error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE,
413 "cmd");
Ian Campbelle24ea552014-05-05 14:42:31 +0100414 if (error)
415 goto out;
416
417 if (data) {
Hans de Goedeb6ae6762014-06-09 11:36:55 +0200418 timeout_msecs = 120;
Ian Campbelle24ea552014-05-05 14:42:31 +0100419 debug("cacl timeout %x msec\n", timeout_msecs);
Simon Glass034e2262017-07-04 13:31:25 -0600420 error = mmc_rint_wait(priv, mmc, timeout_msecs,
Ian Campbelle24ea552014-05-05 14:42:31 +0100421 data->blocks > 1 ?
422 SUNXI_MMC_RINT_AUTO_COMMAND_DONE :
423 SUNXI_MMC_RINT_DATA_OVER,
424 "data");
425 if (error)
426 goto out;
427 }
428
429 if (cmd->resp_type & MMC_RSP_BUSY) {
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100430 unsigned long start = get_timer(0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100431 timeout_msecs = 2000;
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100432
Ian Campbelle24ea552014-05-05 14:42:31 +0100433 do {
Simon Glass3f5af122017-07-04 13:31:24 -0600434 status = readl(&priv->reg->status);
Philipp Tomsich5ff8e542018-03-21 12:18:58 +0100435 if (get_timer(start) > timeout_msecs) {
Ian Campbelle24ea552014-05-05 14:42:31 +0100436 debug("busy timeout\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900437 error = -ETIMEDOUT;
Ian Campbelle24ea552014-05-05 14:42:31 +0100438 goto out;
439 }
Ian Campbelle24ea552014-05-05 14:42:31 +0100440 } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY);
441 }
442
443 if (cmd->resp_type & MMC_RSP_136) {
Simon Glass3f5af122017-07-04 13:31:24 -0600444 cmd->response[0] = readl(&priv->reg->resp3);
445 cmd->response[1] = readl(&priv->reg->resp2);
446 cmd->response[2] = readl(&priv->reg->resp1);
447 cmd->response[3] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100448 debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n",
449 cmd->response[3], cmd->response[2],
450 cmd->response[1], cmd->response[0]);
451 } else {
Simon Glass3f5af122017-07-04 13:31:24 -0600452 cmd->response[0] = readl(&priv->reg->resp0);
Ian Campbelle24ea552014-05-05 14:42:31 +0100453 debug("mmc resp 0x%08x\n", cmd->response[0]);
454 }
455out:
Ian Campbelle24ea552014-05-05 14:42:31 +0100456 if (error < 0) {
Simon Glass3f5af122017-07-04 13:31:24 -0600457 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
Simon Glass034e2262017-07-04 13:31:25 -0600458 mmc_update_clk(priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100459 }
Simon Glass3f5af122017-07-04 13:31:24 -0600460 writel(0xffffffff, &priv->reg->rint);
461 writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET,
462 &priv->reg->gctrl);
Ian Campbelle24ea552014-05-05 14:42:31 +0100463
464 return error;
465}
466
Simon Glassdd279182017-07-04 13:31:27 -0600467#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass034e2262017-07-04 13:31:25 -0600468static int sunxi_mmc_set_ios_legacy(struct mmc *mmc)
469{
470 struct sunxi_mmc_priv *priv = mmc->priv;
471
472 return sunxi_mmc_set_ios_common(priv, mmc);
473}
474
475static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd,
476 struct mmc_data *data)
477{
478 struct sunxi_mmc_priv *priv = mmc->priv;
479
480 return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data);
481}
482
483static int sunxi_mmc_getcd_legacy(struct mmc *mmc)
Hans de Goedecd821132014-10-02 20:29:26 +0200484{
Simon Glass3f5af122017-07-04 13:31:24 -0600485 struct sunxi_mmc_priv *priv = mmc->priv;
Hans de Goede967325f2014-10-31 16:55:02 +0100486 int cd_pin;
Hans de Goedecd821132014-10-02 20:29:26 +0200487
Simon Glass3f5af122017-07-04 13:31:24 -0600488 cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no);
Hans de Goede90641f82015-04-22 17:03:17 +0200489 if (cd_pin < 0)
Hans de Goedecd821132014-10-02 20:29:26 +0200490 return 1;
491
Axel Linb0c4ae12014-12-20 11:41:25 +0800492 return !gpio_get_value(cd_pin);
Hans de Goedecd821132014-10-02 20:29:26 +0200493}
494
Ian Campbelle24ea552014-05-05 14:42:31 +0100495static const struct mmc_ops sunxi_mmc_ops = {
Simon Glass034e2262017-07-04 13:31:25 -0600496 .send_cmd = sunxi_mmc_send_cmd_legacy,
497 .set_ios = sunxi_mmc_set_ios_legacy,
Siarhei Siamashka5abdb152015-02-01 00:42:14 +0200498 .init = sunxi_mmc_core_init,
Simon Glass034e2262017-07-04 13:31:25 -0600499 .getcd = sunxi_mmc_getcd_legacy,
Ian Campbelle24ea552014-05-05 14:42:31 +0100500};
501
Hans de Goedee79c7c82014-10-02 21:13:54 +0200502struct mmc *sunxi_mmc_init(int sdc_no)
Ian Campbelle24ea552014-05-05 14:42:31 +0100503{
Simon Glassec73d962017-07-04 13:31:26 -0600504 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Simon Glass034e2262017-07-04 13:31:25 -0600505 struct sunxi_mmc_priv *priv = &mmc_host[sdc_no];
506 struct mmc_config *cfg = &priv->cfg;
Simon Glassec73d962017-07-04 13:31:26 -0600507 int ret;
Ian Campbelle24ea552014-05-05 14:42:31 +0100508
Simon Glass034e2262017-07-04 13:31:25 -0600509 memset(priv, '\0', sizeof(struct sunxi_mmc_priv));
Ian Campbelle24ea552014-05-05 14:42:31 +0100510
511 cfg->name = "SUNXI SD/MMC";
512 cfg->ops = &sunxi_mmc_ops;
513
514 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
515 cfg->host_caps = MMC_MODE_4BIT;
Icenowy Zheng42956f12018-07-21 16:20:29 +0800516#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I_H6)
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200517 if (sdc_no == 2)
518 cfg->host_caps = MMC_MODE_8BIT;
519#endif
Rob Herring5a203972015-03-23 17:56:59 -0500520 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Ian Campbelle24ea552014-05-05 14:42:31 +0100521 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
522
523 cfg->f_min = 400000;
524 cfg->f_max = 52000000;
525
Hans de Goede967325f2014-10-31 16:55:02 +0100526 if (mmc_resource_init(sdc_no) != 0)
527 return NULL;
528
Simon Glassec73d962017-07-04 13:31:26 -0600529 /* config ahb clock */
530 debug("init mmc %d clock and io\n", sdc_no);
Icenowy Zheng42956f12018-07-21 16:20:29 +0800531#if !defined(CONFIG_MACH_SUN50I_H6)
Simon Glassec73d962017-07-04 13:31:26 -0600532 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
533
534#ifdef CONFIG_SUNXI_GEN_SUN6I
535 /* unassert reset */
536 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no));
537#endif
538#if defined(CONFIG_MACH_SUN9I)
539 /* sun9i has a mmc-common module, also set the gate and reset there */
540 writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
541 SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
542#endif
Icenowy Zheng42956f12018-07-21 16:20:29 +0800543#else /* CONFIG_MACH_SUN50I_H6 */
544 setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
545 /* unassert reset */
546 setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
547#endif
Simon Glassec73d962017-07-04 13:31:26 -0600548 ret = mmc_set_mod_clk(priv, 24000000);
549 if (ret)
550 return NULL;
Ian Campbelle24ea552014-05-05 14:42:31 +0100551
Maxime Ripardead36972017-08-23 13:41:33 +0200552 return mmc_create(cfg, priv);
Ian Campbelle24ea552014-05-05 14:42:31 +0100553}
Simon Glassdd279182017-07-04 13:31:27 -0600554#else
555
556static int sunxi_mmc_set_ios(struct udevice *dev)
557{
558 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
559 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
560
561 return sunxi_mmc_set_ios_common(priv, &plat->mmc);
562}
563
564static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
565 struct mmc_data *data)
566{
567 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
568 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
569
570 return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
571}
572
573static int sunxi_mmc_getcd(struct udevice *dev)
574{
575 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
576
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100577 if (dm_gpio_is_valid(&priv->cd_gpio)) {
578 int cd_state = dm_gpio_get_value(&priv->cd_gpio);
Simon Glassdd279182017-07-04 13:31:27 -0600579
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100580 return cd_state ^ priv->cd_inverted;
581 }
Simon Glassdd279182017-07-04 13:31:27 -0600582 return 1;
583}
584
585static const struct dm_mmc_ops sunxi_mmc_ops = {
586 .send_cmd = sunxi_mmc_send_cmd,
587 .set_ios = sunxi_mmc_set_ios,
588 .get_cd = sunxi_mmc_getcd,
589};
590
591static int sunxi_mmc_probe(struct udevice *dev)
592{
593 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
594 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
595 struct sunxi_mmc_priv *priv = dev_get_priv(dev);
596 struct mmc_config *cfg = &plat->cfg;
597 struct ofnode_phandle_args args;
598 u32 *gate_reg;
599 int bus_width, ret;
600
601 cfg->name = dev->name;
602 bus_width = dev_read_u32_default(dev, "bus-width", 1);
603
604 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
605 cfg->host_caps = 0;
606 if (bus_width == 8)
607 cfg->host_caps |= MMC_MODE_8BIT;
608 if (bus_width >= 4)
609 cfg->host_caps |= MMC_MODE_4BIT;
610 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
611 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
612
613 cfg->f_min = 400000;
614 cfg->f_max = 52000000;
615
616 priv->reg = (void *)dev_read_addr(dev);
617
618 /* We don't have a sunxi clock driver so find the clock address here */
619 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
620 1, &args);
621 if (ret)
622 return ret;
623 priv->mclkreg = (u32 *)ofnode_get_addr(args.node);
624
625 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
626 0, &args);
627 if (ret)
628 return ret;
629 gate_reg = (u32 *)ofnode_get_addr(args.node);
630 setbits_le32(gate_reg, 1 << args.args[0]);
631 priv->mmc_no = args.args[0] - 8;
632
633 ret = mmc_set_mod_clk(priv, 24000000);
634 if (ret)
635 return ret;
636
637 /* This GPIO is optional */
638 if (!gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
639 GPIOD_IS_IN)) {
640 int cd_pin = gpio_get_number(&priv->cd_gpio);
641
642 sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
643 }
644
Heinrich Schuchardt8be4e612018-02-01 23:39:19 +0100645 /* Check if card detect is inverted */
646 priv->cd_inverted = dev_read_bool(dev, "cd-inverted");
647
Simon Glassdd279182017-07-04 13:31:27 -0600648 upriv->mmc = &plat->mmc;
649
650 /* Reset controller */
651 writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl);
652 udelay(1000);
653
654 return 0;
655}
656
657static int sunxi_mmc_bind(struct udevice *dev)
658{
659 struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
660
661 return mmc_bind(dev, &plat->mmc, &plat->cfg);
662}
663
664static const struct udevice_id sunxi_mmc_ids[] = {
Adam Sampson979b2392018-06-30 01:02:28 +0100665 { .compatible = "allwinner,sun4i-a10-mmc" },
Simon Glassdd279182017-07-04 13:31:27 -0600666 { .compatible = "allwinner,sun5i-a13-mmc" },
Adam Sampson979b2392018-06-30 01:02:28 +0100667 { .compatible = "allwinner,sun7i-a20-mmc" },
Simon Glassdd279182017-07-04 13:31:27 -0600668 { }
669};
670
671U_BOOT_DRIVER(sunxi_mmc_drv) = {
672 .name = "sunxi_mmc",
673 .id = UCLASS_MMC,
674 .of_match = sunxi_mmc_ids,
675 .bind = sunxi_mmc_bind,
676 .probe = sunxi_mmc_probe,
677 .ops = &sunxi_mmc_ops,
678 .platdata_auto_alloc_size = sizeof(struct sunxi_mmc_plat),
679 .priv_auto_alloc_size = sizeof(struct sunxi_mmc_priv),
680};
681#endif