blob: ee942bb939f86c45bd88ae4ba64c2dc21a029767 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Lei Wenaf62a552011-06-28 21:50:06 +00002/*
3 * Copyright 2011, Marvell Semiconductor Inc.
4 * Lei Wen <leiwen@marvell.com>
5 *
Lei Wenaf62a552011-06-28 21:50:06 +00006 * Back ported to the 8xx platform (from the 8260 platform) by
7 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
8 */
9
10#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070011#include <cpu_func.h>
Faiz Abbas3d296362019-06-11 00:43:34 +053012#include <dm.h>
Simon Glass2a809092016-06-12 23:30:27 -060013#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Lei Wenaf62a552011-06-28 21:50:06 +000015#include <malloc.h>
16#include <mmc.h>
17#include <sdhci.h>
T Karthik Reddyda18c622019-06-25 13:39:04 +020018#include <dm.h>
Simon Glass90526e92020-05-10 11:39:56 -060019#include <asm/cache.h>
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090020#include <linux/dma-mapping.h>
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +090021#include <phys2bus.h>
Lei Wenaf62a552011-06-28 21:50:06 +000022
Lei Wenaf62a552011-06-28 21:50:06 +000023static void sdhci_reset(struct sdhci_host *host, u8 mask)
24{
25 unsigned long timeout;
26
27 /* Wait max 100 ms */
28 timeout = 100;
29 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
30 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
31 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080032 printf("%s: Reset 0x%x never completed.\n",
33 __func__, (int)mask);
Lei Wenaf62a552011-06-28 21:50:06 +000034 return;
35 }
36 timeout--;
37 udelay(1000);
38 }
39}
40
41static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
42{
43 int i;
44 if (cmd->resp_type & MMC_RSP_136) {
45 /* CRC is stripped so we need to do some shifting. */
46 for (i = 0; i < 4; i++) {
47 cmd->response[i] = sdhci_readl(host,
48 SDHCI_RESPONSE + (3-i)*4) << 8;
49 if (i != 3)
50 cmd->response[i] |= sdhci_readb(host,
51 SDHCI_RESPONSE + (3-i)*4-1);
52 }
53 } else {
54 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
55 }
56}
57
58static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
59{
60 int i;
61 char *offs;
62 for (i = 0; i < data->blocksize; i += 4) {
63 offs = data->dest + i;
64 if (data->flags == MMC_DATA_READ)
65 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
66 else
67 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
68 }
69}
Faiz Abbas37cb6262019-04-16 23:06:58 +053070
71#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090072static void sdhci_adma_desc(struct sdhci_host *host, dma_addr_t dma_addr,
73 u16 len, bool end)
Faiz Abbas37cb6262019-04-16 23:06:58 +053074{
75 struct sdhci_adma_desc *desc;
76 u8 attr;
77
78 desc = &host->adma_desc_table[host->desc_slot];
79
80 attr = ADMA_DESC_ATTR_VALID | ADMA_DESC_TRANSFER_DATA;
81 if (!end)
82 host->desc_slot++;
83 else
84 attr |= ADMA_DESC_ATTR_END;
85
86 desc->attr = attr;
87 desc->len = len;
88 desc->reserved = 0;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090089 desc->addr_lo = lower_32_bits(dma_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +053090#ifdef CONFIG_DMA_ADDR_T_64BIT
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090091 desc->addr_hi = upper_32_bits(dma_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +053092#endif
93}
94
95static void sdhci_prepare_adma_table(struct sdhci_host *host,
96 struct mmc_data *data)
97{
98 uint trans_bytes = data->blocksize * data->blocks;
99 uint desc_count = DIV_ROUND_UP(trans_bytes, ADMA_MAX_LEN);
100 int i = desc_count;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900101 dma_addr_t dma_addr = host->start_addr;
Faiz Abbas37cb6262019-04-16 23:06:58 +0530102
103 host->desc_slot = 0;
104
Faiz Abbas37cb6262019-04-16 23:06:58 +0530105 while (--i) {
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900106 sdhci_adma_desc(host, dma_addr, ADMA_MAX_LEN, false);
107 dma_addr += ADMA_MAX_LEN;
Faiz Abbas37cb6262019-04-16 23:06:58 +0530108 trans_bytes -= ADMA_MAX_LEN;
109 }
110
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900111 sdhci_adma_desc(host, dma_addr, trans_bytes, true);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530112
113 flush_cache((dma_addr_t)host->adma_desc_table,
114 ROUND(desc_count * sizeof(struct sdhci_adma_desc),
115 ARCH_DMA_MINALIGN));
116}
117#elif defined(CONFIG_MMC_SDHCI_SDMA)
118static void sdhci_prepare_adma_table(struct sdhci_host *host,
119 struct mmc_data *data)
120{}
121#endif
122#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas6d6af202019-04-16 23:06:57 +0530123static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
124 int *is_aligned, int trans_bytes)
125{
Jaehoon Chung804c7f42012-09-20 20:31:55 +0000126 unsigned char ctrl;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900127 void *buf;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530128
129 if (data->flags == MMC_DATA_READ)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900130 buf = data->dest;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530131 else
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900132 buf = (void *)data->src;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530133
Faiz Abbas37cb6262019-04-16 23:06:58 +0530134 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
135 ctrl &= ~SDHCI_CTRL_DMA_MASK;
136 if (host->flags & USE_ADMA64)
137 ctrl |= SDHCI_CTRL_ADMA64;
138 else if (host->flags & USE_ADMA)
139 ctrl |= SDHCI_CTRL_ADMA32;
140 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
141
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900142 if (host->flags & USE_SDMA &&
143 (host->force_align_buffer ||
144 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
145 ((unsigned long)buf & 0x7) != 0x0))) {
146 *is_aligned = 0;
147 if (data->flags != MMC_DATA_READ)
148 memcpy(host->align_buffer, buf, trans_bytes);
149 buf = host->align_buffer;
150 }
151
152 host->start_addr = dma_map_single(buf, trans_bytes,
153 mmc_get_dma_dir(data));
154
Faiz Abbas37cb6262019-04-16 23:06:58 +0530155 if (host->flags & USE_SDMA) {
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900156 sdhci_writel(host, phys_to_bus((ulong)host->start_addr),
157 SDHCI_DMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530158 } else if (host->flags & (USE_ADMA | USE_ADMA64)) {
159 sdhci_prepare_adma_table(host, data);
160
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900161 sdhci_writel(host, lower_32_bits(host->adma_addr),
162 SDHCI_ADMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530163 if (host->flags & USE_ADMA64)
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900164 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530165 SDHCI_ADMA_ADDRESS_HI);
Faiz Abbas6d6af202019-04-16 23:06:57 +0530166 }
Faiz Abbas6d6af202019-04-16 23:06:57 +0530167}
168#else
169static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
170 int *is_aligned, int trans_bytes)
171{}
172#endif
173static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
174{
175 dma_addr_t start_addr = host->start_addr;
176 unsigned int stat, rdy, mask, timeout, block = 0;
177 bool transfer_done = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000178
Jaehoon Chung5d48e422012-09-20 20:31:54 +0000179 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +0000180 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
181 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
182 do {
183 stat = sdhci_readl(host, SDHCI_INT_STATUS);
184 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada61f2e5e2017-12-30 02:00:12 +0900185 pr_debug("%s: Error detected in status(0x%X)!\n",
186 __func__, stat);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900187 return -EIO;
Lei Wenaf62a552011-06-28 21:50:06 +0000188 }
Alex Deymo7dde50d2017-04-02 01:24:34 -0700189 if (!transfer_done && (stat & rdy)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000190 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
191 continue;
192 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
193 sdhci_transfer_pio(host, data);
194 data->dest += data->blocksize;
Alex Deymo7dde50d2017-04-02 01:24:34 -0700195 if (++block >= data->blocks) {
196 /* Keep looping until the SDHCI_INT_DATA_END is
197 * cleared, even if we finished sending all the
198 * blocks.
199 */
200 transfer_done = true;
201 continue;
202 }
Lei Wenaf62a552011-06-28 21:50:06 +0000203 }
Faiz Abbas37cb6262019-04-16 23:06:58 +0530204 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas6d6af202019-04-16 23:06:57 +0530205 (stat & SDHCI_INT_DMA_END)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000206 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530207 if (host->flags & USE_SDMA) {
208 start_addr &=
209 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
210 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900211 sdhci_writel(host, phys_to_bus((ulong)start_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530212 SDHCI_DMA_ADDRESS);
213 }
Lei Wenaf62a552011-06-28 21:50:06 +0000214 }
Lei Wena004abd2011-10-08 04:14:57 +0000215 if (timeout-- > 0)
216 udelay(10);
217 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800218 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900219 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000220 }
Lei Wenaf62a552011-06-28 21:50:06 +0000221 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamada4155ad92020-02-14 16:40:27 +0900222
223 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
224 mmc_get_dma_dir(data));
225
Lei Wenaf62a552011-06-28 21:50:06 +0000226 return 0;
227}
228
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200229/*
230 * No command will be sent by driver if card is busy, so driver must wait
231 * for card ready state.
232 * Every time when card is busy after timeout then (last) timeout value will be
233 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900234 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200235 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900236#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900237#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700238#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200239
Simon Glasse7881d82017-07-29 11:35:31 -0600240#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600241static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
242 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000243{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600244 struct mmc *mmc = mmc_get_mmc_dev(dev);
245
246#else
247static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
248 struct mmc_data *data)
249{
250#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200251 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000252 unsigned int stat = 0;
253 int ret = 0;
254 int trans_bytes = 0, is_aligned = 1;
255 u32 mask, flags, mode;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530256 unsigned int time = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600257 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumar36332b62018-05-03 12:20:54 +0530258 ulong start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000259
Faiz Abbas6d6af202019-04-16 23:06:57 +0530260 host->start_addr = 0;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200261 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900262 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000263
Lei Wenaf62a552011-06-28 21:50:06 +0000264 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
265
266 /* We shouldn't wait for data inihibit for stop commands, even
267 though they might use busy signaling */
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530268 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530269 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
270 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wenaf62a552011-06-28 21:50:06 +0000271 mask &= ~SDHCI_DATA_INHIBIT;
272
273 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200274 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800275 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900276 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200277 cmd_timeout += cmd_timeout;
278 printf("timeout increasing to: %u ms.\n",
279 cmd_timeout);
280 } else {
281 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900282 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200283 }
Lei Wenaf62a552011-06-28 21:50:06 +0000284 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200285 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000286 udelay(1000);
287 }
288
Jorge Ramirez-Ortiz713e6812017-11-02 15:10:21 +0100289 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
290
Lei Wenaf62a552011-06-28 21:50:06 +0000291 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530292 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
293 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530294 mask = SDHCI_INT_DATA_AVAIL;
295
Lei Wenaf62a552011-06-28 21:50:06 +0000296 if (!(cmd->resp_type & MMC_RSP_PRESENT))
297 flags = SDHCI_CMD_RESP_NONE;
298 else if (cmd->resp_type & MMC_RSP_136)
299 flags = SDHCI_CMD_RESP_LONG;
300 else if (cmd->resp_type & MMC_RSP_BUSY) {
301 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900302 if (data)
303 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000304 } else
305 flags = SDHCI_CMD_RESP_SHORT;
306
307 if (cmd->resp_type & MMC_RSP_CRC)
308 flags |= SDHCI_CMD_CRC;
309 if (cmd->resp_type & MMC_RSP_OPCODE)
310 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu434f9d42018-05-29 20:03:10 +0530311 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
312 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wenaf62a552011-06-28 21:50:06 +0000313 flags |= SDHCI_CMD_DATA;
314
Darwin Rambo30e6d972013-12-19 15:13:25 -0800315 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100316 if (data) {
Lei Wenaf62a552011-06-28 21:50:06 +0000317 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
318 mode = SDHCI_TRNS_BLK_CNT_EN;
319 trans_bytes = data->blocks * data->blocksize;
320 if (data->blocks > 1)
321 mode |= SDHCI_TRNS_MULTI;
322
323 if (data->flags == MMC_DATA_READ)
324 mode |= SDHCI_TRNS_READ;
325
Faiz Abbas37cb6262019-04-16 23:06:58 +0530326 if (host->flags & USE_DMA) {
Faiz Abbas6d6af202019-04-16 23:06:57 +0530327 mode |= SDHCI_TRNS_DMA;
328 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000329 }
330
Lei Wenaf62a552011-06-28 21:50:06 +0000331 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
332 data->blocksize),
333 SDHCI_BLOCK_SIZE);
334 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
335 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500336 } else if (cmd->resp_type & MMC_RSP_BUSY) {
337 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000338 }
339
340 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wenaf62a552011-06-28 21:50:06 +0000341 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200342 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000343 do {
344 stat = sdhci_readl(host, SDHCI_INT_STATUS);
345 if (stat & SDHCI_INT_ERROR)
346 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000347
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900348 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
349 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
350 return 0;
351 } else {
352 printf("%s: Timeout for status update!\n",
353 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900354 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900355 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000356 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900357 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000358
Lei Wenaf62a552011-06-28 21:50:06 +0000359 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
360 sdhci_cmd_done(host, cmd);
361 sdhci_writel(host, mask, SDHCI_INT_STATUS);
362 } else
363 ret = -1;
364
365 if (!ret && data)
Faiz Abbas6d6af202019-04-16 23:06:57 +0530366 ret = sdhci_transfer_data(host, data);
Lei Wenaf62a552011-06-28 21:50:06 +0000367
Tushar Behera13243f22012-09-20 20:31:57 +0000368 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
369 udelay(1000);
370
Lei Wenaf62a552011-06-28 21:50:06 +0000371 stat = sdhci_readl(host, SDHCI_INT_STATUS);
372 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
373 if (!ret) {
374 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
375 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900376 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000377 return 0;
378 }
379
380 sdhci_reset(host, SDHCI_RESET_CMD);
381 sdhci_reset(host, SDHCI_RESET_DATA);
382 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900383 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000384 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900385 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000386}
387
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530388#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
389static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
390{
391 int err;
392 struct mmc *mmc = mmc_get_mmc_dev(dev);
393 struct sdhci_host *host = mmc->priv;
394
395 debug("%s\n", __func__);
396
Ramon Friedb70fe962018-05-14 15:02:30 +0300397 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530398 err = host->ops->platform_execute_tuning(mmc, opcode);
399 if (err)
400 return err;
401 return 0;
402 }
403 return 0;
404}
405#endif
Faiz Abbas3966c7d2019-06-11 00:43:35 +0530406int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000407{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200408 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100409 unsigned int div, clk = 0, timeout;
Lei Wenaf62a552011-06-28 21:50:06 +0000410
Wenyou Yang79667b72015-09-22 14:59:25 +0800411 /* Wait max 20 ms */
412 timeout = 200;
413 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
414 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
415 if (timeout == 0) {
416 printf("%s: Timeout to wait cmd & data inhibit\n",
417 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900418 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800419 }
420
421 timeout--;
422 udelay(100);
423 }
424
Stefan Roese899fb9e2016-12-12 08:34:42 +0100425 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000426
427 if (clock == 0)
428 return 0;
429
Ramon Friedb70fe962018-05-14 15:02:30 +0300430 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530431 host->ops->set_delay(host);
432
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900433 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800434 /*
435 * Check if the Host Controller supports Programmable Clock
436 * Mode.
437 */
438 if (host->clk_mul) {
439 for (div = 1; div <= 1024; div++) {
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800440 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000441 break;
442 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800443
444 /*
445 * Set Programmable Clock Mode in the Clock
446 * Control register.
447 */
448 clk = SDHCI_PROG_CLOCK_MODE;
449 div--;
450 } else {
451 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100452 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800453 div = 1;
454 } else {
455 for (div = 2;
456 div < SDHCI_MAX_DIV_SPEC_300;
457 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100458 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800459 break;
460 }
461 }
462 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000463 }
464 } else {
465 /* Version 2.00 divisors must be a power of 2. */
466 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100467 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000468 break;
469 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800470 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000471 }
Lei Wenaf62a552011-06-28 21:50:06 +0000472
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900473 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900474 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000475
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800476 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000477 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
478 << SDHCI_DIVIDER_HI_SHIFT;
479 clk |= SDHCI_CLOCK_INT_EN;
480 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
481
482 /* Wait max 20 ms */
483 timeout = 20;
484 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
485 & SDHCI_CLOCK_INT_STABLE)) {
486 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800487 printf("%s: Internal clock never stabilised.\n",
488 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900489 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000490 }
491 timeout--;
492 udelay(1000);
493 }
494
495 clk |= SDHCI_CLOCK_CARD_EN;
496 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
497 return 0;
498}
499
500static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
501{
502 u8 pwr = 0;
503
504 if (power != (unsigned short)-1) {
505 switch (1 << power) {
506 case MMC_VDD_165_195:
507 pwr = SDHCI_POWER_180;
508 break;
509 case MMC_VDD_29_30:
510 case MMC_VDD_30_31:
511 pwr = SDHCI_POWER_300;
512 break;
513 case MMC_VDD_32_33:
514 case MMC_VDD_33_34:
515 pwr = SDHCI_POWER_330;
516 break;
517 }
518 }
519
520 if (pwr == 0) {
521 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
522 return;
523 }
524
525 pwr |= SDHCI_POWER_ON;
526
527 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
528}
529
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530530void sdhci_set_uhs_timing(struct sdhci_host *host)
531{
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900532 struct mmc *mmc = host->mmc;
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530533 u32 reg;
534
535 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
536 reg &= ~SDHCI_CTRL_UHS_MASK;
537
538 switch (mmc->selected_mode) {
539 case UHS_SDR50:
540 case MMC_HS_52:
541 reg |= SDHCI_CTRL_UHS_SDR50;
542 break;
543 case UHS_DDR50:
544 case MMC_DDR_52:
545 reg |= SDHCI_CTRL_UHS_DDR50;
546 break;
547 case UHS_SDR104:
548 case MMC_HS_200:
549 reg |= SDHCI_CTRL_UHS_SDR104;
550 break;
551 default:
552 reg |= SDHCI_CTRL_UHS_SDR12;
553 }
554
555 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
556}
557
Simon Glasse7881d82017-07-29 11:35:31 -0600558#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600559static int sdhci_set_ios(struct udevice *dev)
560{
561 struct mmc *mmc = mmc_get_mmc_dev(dev);
562#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900563static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000564{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600565#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000566 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200567 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000568
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900569 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900570 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000571
Lei Wenaf62a552011-06-28 21:50:06 +0000572 if (mmc->clock != host->clock)
573 sdhci_set_clock(mmc, mmc->clock);
574
Siva Durga Prasad Paladugu2a2d7ef2018-04-19 12:37:04 +0530575 if (mmc->clk_disable)
576 sdhci_set_clock(mmc, 0);
577
Lei Wenaf62a552011-06-28 21:50:06 +0000578 /* Set bus width */
579 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
580 if (mmc->bus_width == 8) {
581 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900582 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
583 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000584 ctrl |= SDHCI_CTRL_8BITBUS;
585 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700586 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
587 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000588 ctrl &= ~SDHCI_CTRL_8BITBUS;
589 if (mmc->bus_width == 4)
590 ctrl |= SDHCI_CTRL_4BITBUS;
591 else
592 ctrl &= ~SDHCI_CTRL_4BITBUS;
593 }
594
595 if (mmc->clock > 26000000)
596 ctrl |= SDHCI_CTRL_HISPD;
597 else
598 ctrl &= ~SDHCI_CTRL_HISPD;
599
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100600 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
601 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE))
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000602 ctrl &= ~SDHCI_CTRL_HISPD;
603
Lei Wenaf62a552011-06-28 21:50:06 +0000604 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900605
Stefan Roese210841c2016-12-12 08:24:56 +0100606 /* If available, call the driver specific "post" set_ios() function */
607 if (host->ops && host->ops->set_ios_post)
Faiz Abbasa8185c52019-06-11 00:43:37 +0530608 return host->ops->set_ios_post(host);
Stefan Roese210841c2016-12-12 08:24:56 +0100609
Simon Glassef1e4ed2016-06-12 23:30:28 -0600610 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000611}
612
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200613static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000614{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200615 struct sdhci_host *host = mmc->priv;
T Karthik Reddy451931e2019-06-25 13:39:03 +0200616#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
617 struct udevice *dev = mmc->dev;
618
Baruch Siach58d65d52019-07-22 19:14:06 +0300619 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy451931e2019-06-25 13:39:03 +0200620 &host->cd_gpio, GPIOD_IS_IN);
621#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000622
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900623 sdhci_reset(host, SDHCI_RESET_ALL);
624
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900625#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
626 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamadaf5df6aa2020-02-14 16:40:22 +0900627 /*
628 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
629 * is defined.
630 */
631 host->force_align_buffer = true;
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900632#else
633 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
634 host->align_buffer = memalign(8, 512 * 1024);
635 if (!host->align_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800636 printf("%s: Aligned buffer alloc failed!!!\n",
637 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900638 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000639 }
640 }
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900641#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000642
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200643 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000644
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900645 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900646 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000647
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000648 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800649 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
650 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000651 /* Mask all sdhci interrupt sources */
652 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000653
Lei Wenaf62a552011-06-28 21:50:06 +0000654 return 0;
655}
656
Simon Glasse7881d82017-07-29 11:35:31 -0600657#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600658int sdhci_probe(struct udevice *dev)
659{
660 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200661
Simon Glassef1e4ed2016-06-12 23:30:28 -0600662 return sdhci_init(mmc);
663}
664
Faiz Abbascb884342020-02-26 13:44:31 +0530665static int sdhci_deferred_probe(struct udevice *dev)
666{
667 int err;
668 struct mmc *mmc = mmc_get_mmc_dev(dev);
669 struct sdhci_host *host = mmc->priv;
670
671 if (host->ops && host->ops->deferred_probe) {
672 err = host->ops->deferred_probe(host);
673 if (err)
674 return err;
675 }
676 return 0;
677}
678
Baruch Siach1b716952019-11-03 12:00:27 +0200679static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyda18c622019-06-25 13:39:04 +0200680{
681 struct mmc *mmc = mmc_get_mmc_dev(dev);
682 struct sdhci_host *host = mmc->priv;
683 int value;
684
685 /* If nonremovable, assume that the card is always present. */
686 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
687 return 1;
688 /* If polling, assume that the card is always present. */
689 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
690 return 1;
691
692#if CONFIG_IS_ENABLED(DM_GPIO)
693 value = dm_gpio_get_value(&host->cd_gpio);
694 if (value >= 0) {
695 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
696 return !value;
697 else
698 return value;
699 }
700#endif
701 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
702 SDHCI_CARD_PRESENT);
703 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
704 return !value;
705 else
706 return value;
707}
708
Simon Glassef1e4ed2016-06-12 23:30:28 -0600709const struct dm_mmc_ops sdhci_ops = {
710 .send_cmd = sdhci_send_command,
711 .set_ios = sdhci_set_ios,
T Karthik Reddyda18c622019-06-25 13:39:04 +0200712 .get_cd = sdhci_get_cd,
Faiz Abbascb884342020-02-26 13:44:31 +0530713 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530714#ifdef MMC_SUPPORTS_TUNING
715 .execute_tuning = sdhci_execute_tuning,
716#endif
Simon Glassef1e4ed2016-06-12 23:30:28 -0600717};
718#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200719static const struct mmc_ops sdhci_ops = {
720 .send_cmd = sdhci_send_command,
721 .set_ios = sdhci_set_ios,
722 .init = sdhci_init,
723};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600724#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200725
Jaehoon Chung14bed522016-07-26 19:06:24 +0900726int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100727 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600728{
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530729 u32 caps, caps_1 = 0;
Faiz Abbas3d296362019-06-11 00:43:34 +0530730#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200731 u64 dt_caps, dt_caps_mask;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900732
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200733 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
734 "sdhci-caps-mask", 0);
735 dt_caps = dev_read_u64_default(host->mmc->dev,
736 "sdhci-caps", 0);
737 caps = ~(u32)dt_caps_mask &
738 sdhci_readl(host, SDHCI_CAPABILITIES);
739 caps |= (u32)dt_caps;
Faiz Abbas3d296362019-06-11 00:43:34 +0530740#else
Jaehoon Chung14bed522016-07-26 19:06:24 +0900741 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbas3d296362019-06-11 00:43:34 +0530742#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200743 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900744
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900745#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungfabb3a42020-03-27 13:08:01 +0900746 if ((caps & SDHCI_CAN_DO_SDMA)) {
747 host->flags |= USE_SDMA;
748 } else {
Matthias Brugger7acdc9a2020-05-12 12:02:06 +0200749 debug("%s: Your controller doesn't support SDMA!!\n",
750 __func__);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900751 }
752#endif
Faiz Abbas37cb6262019-04-16 23:06:58 +0530753#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
754 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
755 printf("%s: Your controller doesn't support SDMA!!\n",
756 __func__);
757 return -EINVAL;
758 }
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900759 host->adma_desc_table = memalign(ARCH_DMA_MINALIGN, ADMA_TABLE_SZ);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530760
761 host->adma_addr = (dma_addr_t)host->adma_desc_table;
762#ifdef CONFIG_DMA_ADDR_T_64BIT
763 host->flags |= USE_ADMA64;
764#else
765 host->flags |= USE_ADMA;
766#endif
767#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900768 if (host->quirks & SDHCI_QUIRK_REG32_RW)
769 host->version =
770 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
771 else
772 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900773
774 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600775#ifndef CONFIG_DM_MMC
Simon Glass2a809092016-06-12 23:30:27 -0600776 cfg->ops = &sdhci_ops;
777#endif
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800778
779 /* Check whether the clock multiplier is supported or not */
780 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbas3d296362019-06-11 00:43:34 +0530781#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200782 caps_1 = ~(u32)(dt_caps_mask >> 32) &
783 sdhci_readl(host, SDHCI_CAPABILITIES_1);
784 caps_1 |= (u32)(dt_caps >> 32);
Faiz Abbas3d296362019-06-11 00:43:34 +0530785#else
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800786 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbas3d296362019-06-11 00:43:34 +0530787#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200788 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800789 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
790 SDHCI_CLOCK_MUL_SHIFT;
791 }
792
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100793 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900794 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100795 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600796 SDHCI_CLOCK_BASE_SHIFT;
797 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100798 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600799 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100800 host->max_clk *= 1000000;
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800801 if (host->clk_mul)
802 host->max_clk *= host->clk_mul;
Simon Glass2a809092016-06-12 23:30:27 -0600803 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100804 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900805 printf("%s: Hardware doesn't specify base clock frequency\n",
806 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600807 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900808 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100809 if (f_max && (f_max < host->max_clk))
810 cfg->f_max = f_max;
811 else
812 cfg->f_max = host->max_clk;
813 if (f_min)
814 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600815 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900816 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600817 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
818 else
819 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
820 }
821 cfg->voltages = 0;
822 if (caps & SDHCI_CAN_VDD_330)
823 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
824 if (caps & SDHCI_CAN_VDD_300)
825 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
826 if (caps & SDHCI_CAN_VDD_180)
827 cfg->voltages |= MMC_VDD_165_195;
828
Masahiro Yamada3137e642016-08-25 16:07:36 +0900829 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
830 cfg->voltages |= host->voltages;
831
Masahiro Yamadabe165fb2017-12-30 02:00:08 +0900832 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900833
834 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900835 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900836 if (!(caps & SDHCI_CAN_DO_8BIT))
837 cfg->host_caps &= ~MMC_MODE_8BIT;
Simon Glass2a809092016-06-12 23:30:27 -0600838 }
839
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100840 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
841 cfg->host_caps &= ~MMC_MODE_HS;
842 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
843 }
844
Benedikt Grassl942b5fc2020-04-14 07:32:12 +0200845 if (!(cfg->voltages & MMC_VDD_165_195))
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530846 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
847 SDHCI_SUPPORT_DDR50);
848
849 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
850 SDHCI_SUPPORT_DDR50))
851 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
852
853 if (caps_1 & SDHCI_SUPPORT_SDR104) {
854 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
855 /*
856 * SD3.0: SDR104 is supported so (for eMMC) the caps2
857 * field can be promoted to support HS200.
858 */
859 cfg->host_caps |= MMC_CAP(MMC_HS_200);
860 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
861 cfg->host_caps |= MMC_CAP(UHS_SDR50);
862 }
863
864 if (caps_1 & SDHCI_SUPPORT_DDR50)
865 cfg->host_caps |= MMC_CAP(UHS_DDR50);
866
Jaehoon Chung14bed522016-07-26 19:06:24 +0900867 if (host->host_caps)
868 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -0600869
870 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
871
872 return 0;
873}
874
Simon Glassef1e4ed2016-06-12 23:30:28 -0600875#ifdef CONFIG_BLK
876int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
877{
878 return mmc_bind(dev, mmc, cfg);
879}
880#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100881int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +0000882{
Masahiro Yamada6c679542016-08-25 16:07:35 +0900883 int ret;
884
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100885 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +0900886 if (ret)
887 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000888
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200889 host->mmc = mmc_create(&host->cfg, host);
890 if (host->mmc == NULL) {
891 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900892 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200893 }
Lei Wenaf62a552011-06-28 21:50:06 +0000894
895 return 0;
896}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600897#endif