blob: c6b250b9a1b5f64de83ab938813b17a06a1039a7 [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>
Simon Glass90526e92020-05-10 11:39:56 -060018#include <asm/cache.h>
Simon Glasscd93d622020-05-10 11:40:13 -060019#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060020#include <linux/delay.h>
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090021#include <linux/dma-mapping.h>
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +090022#include <phys2bus.h>
Faiz Abbas43392b52021-02-04 15:10:46 +053023#include <power/regulator.h>
Lei Wenaf62a552011-06-28 21:50:06 +000024
Lei Wenaf62a552011-06-28 21:50:06 +000025static void sdhci_reset(struct sdhci_host *host, u8 mask)
26{
27 unsigned long timeout;
28
29 /* Wait max 100 ms */
30 timeout = 100;
31 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
32 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
33 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080034 printf("%s: Reset 0x%x never completed.\n",
35 __func__, (int)mask);
Lei Wenaf62a552011-06-28 21:50:06 +000036 return;
37 }
38 timeout--;
39 udelay(1000);
40 }
41}
42
43static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
44{
45 int i;
46 if (cmd->resp_type & MMC_RSP_136) {
47 /* CRC is stripped so we need to do some shifting. */
48 for (i = 0; i < 4; i++) {
49 cmd->response[i] = sdhci_readl(host,
50 SDHCI_RESPONSE + (3-i)*4) << 8;
51 if (i != 3)
52 cmd->response[i] |= sdhci_readb(host,
53 SDHCI_RESPONSE + (3-i)*4-1);
54 }
55 } else {
56 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
57 }
58}
59
60static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
61{
62 int i;
63 char *offs;
64 for (i = 0; i < data->blocksize; i += 4) {
65 offs = data->dest + i;
66 if (data->flags == MMC_DATA_READ)
67 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
68 else
69 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
70 }
71}
Faiz Abbas37cb6262019-04-16 23:06:58 +053072
Faiz Abbas37cb6262019-04-16 23:06:58 +053073#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas6d6af202019-04-16 23:06:57 +053074static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
75 int *is_aligned, int trans_bytes)
76{
Nicolas Saenz Juliennec89c96d2021-01-12 13:55:29 +010077 dma_addr_t dma_addr;
Jaehoon Chung804c7f42012-09-20 20:31:55 +000078 unsigned char ctrl;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090079 void *buf;
Faiz Abbas6d6af202019-04-16 23:06:57 +053080
81 if (data->flags == MMC_DATA_READ)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090082 buf = data->dest;
Faiz Abbas6d6af202019-04-16 23:06:57 +053083 else
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090084 buf = (void *)data->src;
Faiz Abbas6d6af202019-04-16 23:06:57 +053085
Faiz Abbas37cb6262019-04-16 23:06:58 +053086 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
87 ctrl &= ~SDHCI_CTRL_DMA_MASK;
88 if (host->flags & USE_ADMA64)
89 ctrl |= SDHCI_CTRL_ADMA64;
90 else if (host->flags & USE_ADMA)
91 ctrl |= SDHCI_CTRL_ADMA32;
92 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
93
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090094 if (host->flags & USE_SDMA &&
95 (host->force_align_buffer ||
96 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
97 ((unsigned long)buf & 0x7) != 0x0))) {
98 *is_aligned = 0;
99 if (data->flags != MMC_DATA_READ)
100 memcpy(host->align_buffer, buf, trans_bytes);
101 buf = host->align_buffer;
102 }
103
104 host->start_addr = dma_map_single(buf, trans_bytes,
105 mmc_get_dma_dir(data));
106
Faiz Abbas37cb6262019-04-16 23:06:58 +0530107 if (host->flags & USE_SDMA) {
Nicolas Saenz Juliennec89c96d2021-01-12 13:55:29 +0100108 dma_addr = dev_phys_to_bus(mmc_to_dev(host->mmc), host->start_addr);
109 sdhci_writel(host, dma_addr, SDHCI_DMA_ADDRESS);
Michael Walle4d6a7732020-09-23 12:42:51 +0200110 }
111#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
112 else if (host->flags & (USE_ADMA | USE_ADMA64)) {
113 sdhci_prepare_adma_table(host->adma_desc_table, data,
114 host->start_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530115
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900116 sdhci_writel(host, lower_32_bits(host->adma_addr),
117 SDHCI_ADMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530118 if (host->flags & USE_ADMA64)
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900119 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530120 SDHCI_ADMA_ADDRESS_HI);
Faiz Abbas6d6af202019-04-16 23:06:57 +0530121 }
Michael Walle4d6a7732020-09-23 12:42:51 +0200122#endif
Faiz Abbas6d6af202019-04-16 23:06:57 +0530123}
124#else
125static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
126 int *is_aligned, int trans_bytes)
127{}
128#endif
129static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
130{
131 dma_addr_t start_addr = host->start_addr;
132 unsigned int stat, rdy, mask, timeout, block = 0;
133 bool transfer_done = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000134
Jaehoon Chung5d48e422012-09-20 20:31:54 +0000135 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +0000136 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
137 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
138 do {
139 stat = sdhci_readl(host, SDHCI_INT_STATUS);
140 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada61f2e5e2017-12-30 02:00:12 +0900141 pr_debug("%s: Error detected in status(0x%X)!\n",
142 __func__, stat);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900143 return -EIO;
Lei Wenaf62a552011-06-28 21:50:06 +0000144 }
Alex Deymo7dde50d2017-04-02 01:24:34 -0700145 if (!transfer_done && (stat & rdy)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000146 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
147 continue;
148 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
149 sdhci_transfer_pio(host, data);
150 data->dest += data->blocksize;
Alex Deymo7dde50d2017-04-02 01:24:34 -0700151 if (++block >= data->blocks) {
152 /* Keep looping until the SDHCI_INT_DATA_END is
153 * cleared, even if we finished sending all the
154 * blocks.
155 */
156 transfer_done = true;
157 continue;
158 }
Lei Wenaf62a552011-06-28 21:50:06 +0000159 }
Faiz Abbas37cb6262019-04-16 23:06:58 +0530160 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas6d6af202019-04-16 23:06:57 +0530161 (stat & SDHCI_INT_DMA_END)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000162 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530163 if (host->flags & USE_SDMA) {
164 start_addr &=
165 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
166 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Nicolas Saenz Juliennec89c96d2021-01-12 13:55:29 +0100167 start_addr = dev_phys_to_bus(mmc_to_dev(host->mmc),
168 start_addr);
169 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530170 }
Lei Wenaf62a552011-06-28 21:50:06 +0000171 }
Lei Wena004abd2011-10-08 04:14:57 +0000172 if (timeout-- > 0)
173 udelay(10);
174 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800175 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900176 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000177 }
Lei Wenaf62a552011-06-28 21:50:06 +0000178 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamada4155ad92020-02-14 16:40:27 +0900179
Yuezhang.Mo@sony.com37e13622021-01-14 05:46:50 +0000180#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Masahiro Yamada4155ad92020-02-14 16:40:27 +0900181 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
182 mmc_get_dma_dir(data));
Yuezhang.Mo@sony.com37e13622021-01-14 05:46:50 +0000183#endif
Masahiro Yamada4155ad92020-02-14 16:40:27 +0900184
Lei Wenaf62a552011-06-28 21:50:06 +0000185 return 0;
186}
187
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200188/*
189 * No command will be sent by driver if card is busy, so driver must wait
190 * for card ready state.
191 * Every time when card is busy after timeout then (last) timeout value will be
192 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900193 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200194 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900195#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900196#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700197#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200198
Simon Glasse7881d82017-07-29 11:35:31 -0600199#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600200static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
201 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000202{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600203 struct mmc *mmc = mmc_get_mmc_dev(dev);
204
205#else
206static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
207 struct mmc_data *data)
208{
209#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200210 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000211 unsigned int stat = 0;
212 int ret = 0;
213 int trans_bytes = 0, is_aligned = 1;
Kunihiko Hayashi2b0dd412022-09-09 16:23:32 +0900214 u32 mask, flags, mode = 0;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530215 unsigned int time = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600216 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumar36332b62018-05-03 12:20:54 +0530217 ulong start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000218
Faiz Abbas6d6af202019-04-16 23:06:57 +0530219 host->start_addr = 0;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200220 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900221 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000222
Lei Wenaf62a552011-06-28 21:50:06 +0000223 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
224
225 /* We shouldn't wait for data inihibit for stop commands, even
226 though they might use busy signaling */
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530227 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530228 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
229 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wenaf62a552011-06-28 21:50:06 +0000230 mask &= ~SDHCI_DATA_INHIBIT;
231
232 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200233 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800234 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900235 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200236 cmd_timeout += cmd_timeout;
237 printf("timeout increasing to: %u ms.\n",
238 cmd_timeout);
239 } else {
240 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900241 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200242 }
Lei Wenaf62a552011-06-28 21:50:06 +0000243 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200244 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000245 udelay(1000);
246 }
247
Jorge Ramirez-Ortiz713e6812017-11-02 15:10:21 +0100248 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
249
Lei Wenaf62a552011-06-28 21:50:06 +0000250 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530251 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
252 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530253 mask = SDHCI_INT_DATA_AVAIL;
254
Lei Wenaf62a552011-06-28 21:50:06 +0000255 if (!(cmd->resp_type & MMC_RSP_PRESENT))
256 flags = SDHCI_CMD_RESP_NONE;
257 else if (cmd->resp_type & MMC_RSP_136)
258 flags = SDHCI_CMD_RESP_LONG;
259 else if (cmd->resp_type & MMC_RSP_BUSY) {
260 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Yuezhang.Mo@sony.com4a3ea752021-03-17 06:44:37 +0000261 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000262 } else
263 flags = SDHCI_CMD_RESP_SHORT;
264
265 if (cmd->resp_type & MMC_RSP_CRC)
266 flags |= SDHCI_CMD_CRC;
267 if (cmd->resp_type & MMC_RSP_OPCODE)
268 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu434f9d42018-05-29 20:03:10 +0530269 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
270 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wenaf62a552011-06-28 21:50:06 +0000271 flags |= SDHCI_CMD_DATA;
272
Darwin Rambo30e6d972013-12-19 15:13:25 -0800273 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100274 if (data) {
Lei Wenaf62a552011-06-28 21:50:06 +0000275 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Kunihiko Hayashi2b0dd412022-09-09 16:23:32 +0900276
277 if (!(host->quirks & SDHCI_QUIRK_SUPPORT_SINGLE))
278 mode = SDHCI_TRNS_BLK_CNT_EN;
Lei Wenaf62a552011-06-28 21:50:06 +0000279 trans_bytes = data->blocks * data->blocksize;
280 if (data->blocks > 1)
Kunihiko Hayashi2b0dd412022-09-09 16:23:32 +0900281 mode |= SDHCI_TRNS_MULTI | SDHCI_TRNS_BLK_CNT_EN;
Lei Wenaf62a552011-06-28 21:50:06 +0000282
283 if (data->flags == MMC_DATA_READ)
284 mode |= SDHCI_TRNS_READ;
285
Faiz Abbas37cb6262019-04-16 23:06:58 +0530286 if (host->flags & USE_DMA) {
Faiz Abbas6d6af202019-04-16 23:06:57 +0530287 mode |= SDHCI_TRNS_DMA;
288 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000289 }
290
Lei Wenaf62a552011-06-28 21:50:06 +0000291 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
292 data->blocksize),
293 SDHCI_BLOCK_SIZE);
294 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
295 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500296 } else if (cmd->resp_type & MMC_RSP_BUSY) {
297 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000298 }
299
300 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wenaf62a552011-06-28 21:50:06 +0000301 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200302 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000303 do {
304 stat = sdhci_readl(host, SDHCI_INT_STATUS);
305 if (stat & SDHCI_INT_ERROR)
306 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000307
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900308 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
309 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
310 return 0;
311 } else {
312 printf("%s: Timeout for status update!\n",
313 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900314 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900315 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000316 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900317 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000318
Lei Wenaf62a552011-06-28 21:50:06 +0000319 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
320 sdhci_cmd_done(host, cmd);
321 sdhci_writel(host, mask, SDHCI_INT_STATUS);
322 } else
323 ret = -1;
324
325 if (!ret && data)
Faiz Abbas6d6af202019-04-16 23:06:57 +0530326 ret = sdhci_transfer_data(host, data);
Lei Wenaf62a552011-06-28 21:50:06 +0000327
Tushar Behera13243f22012-09-20 20:31:57 +0000328 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
329 udelay(1000);
330
Lei Wenaf62a552011-06-28 21:50:06 +0000331 stat = sdhci_readl(host, SDHCI_INT_STATUS);
332 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
333 if (!ret) {
334 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
335 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900336 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000337 return 0;
338 }
339
340 sdhci_reset(host, SDHCI_RESET_CMD);
341 sdhci_reset(host, SDHCI_RESET_DATA);
342 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900343 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000344 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900345 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000346}
347
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530348#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
349static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
350{
351 int err;
352 struct mmc *mmc = mmc_get_mmc_dev(dev);
353 struct sdhci_host *host = mmc->priv;
354
355 debug("%s\n", __func__);
356
Ramon Friedb70fe962018-05-14 15:02:30 +0300357 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530358 err = host->ops->platform_execute_tuning(mmc, opcode);
359 if (err)
360 return err;
361 return 0;
362 }
363 return 0;
364}
365#endif
Faiz Abbas3966c7d2019-06-11 00:43:35 +0530366int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000367{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200368 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100369 unsigned int div, clk = 0, timeout;
Ashok Reddy Soma16b593b2021-08-02 23:20:41 -0600370 int ret;
Lei Wenaf62a552011-06-28 21:50:06 +0000371
Wenyou Yang79667b72015-09-22 14:59:25 +0800372 /* Wait max 20 ms */
373 timeout = 200;
374 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
375 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
376 if (timeout == 0) {
377 printf("%s: Timeout to wait cmd & data inhibit\n",
378 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900379 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800380 }
381
382 timeout--;
383 udelay(100);
384 }
385
Stefan Roese899fb9e2016-12-12 08:34:42 +0100386 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000387
388 if (clock == 0)
389 return 0;
390
Ashok Reddy Soma16b593b2021-08-02 23:20:41 -0600391 if (host->ops && host->ops->set_delay) {
392 ret = host->ops->set_delay(host);
393 if (ret) {
394 printf("%s: Error while setting tap delay\n", __func__);
395 return ret;
396 }
397 }
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530398
Ashok Reddy Soma6f5bb992023-01-10 04:31:22 -0700399 if (host->ops && host->ops->config_dll) {
400 ret = host->ops->config_dll(host, clock, false);
401 if (ret) {
402 printf("%s: Error while configuring dll\n", __func__);
403 return ret;
404 }
405 }
406
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900407 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800408 /*
409 * Check if the Host Controller supports Programmable Clock
410 * Mode.
411 */
412 if (host->clk_mul) {
413 for (div = 1; div <= 1024; div++) {
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800414 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000415 break;
416 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800417
418 /*
419 * Set Programmable Clock Mode in the Clock
420 * Control register.
421 */
422 clk = SDHCI_PROG_CLOCK_MODE;
423 div--;
424 } else {
425 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100426 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800427 div = 1;
428 } else {
429 for (div = 2;
430 div < SDHCI_MAX_DIV_SPEC_300;
431 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100432 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800433 break;
434 }
435 }
436 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000437 }
438 } else {
439 /* Version 2.00 divisors must be a power of 2. */
440 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100441 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000442 break;
443 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800444 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000445 }
Lei Wenaf62a552011-06-28 21:50:06 +0000446
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900447 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900448 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000449
Ashok Reddy Soma6f5bb992023-01-10 04:31:22 -0700450 if (host->ops && host->ops->config_dll) {
451 ret = host->ops->config_dll(host, clock, true);
452 if (ret) {
453 printf("%s: Error while configuring dll\n", __func__);
454 return ret;
455 }
456 }
457
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800458 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000459 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
460 << SDHCI_DIVIDER_HI_SHIFT;
461 clk |= SDHCI_CLOCK_INT_EN;
462 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
463
464 /* Wait max 20 ms */
465 timeout = 20;
466 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
467 & SDHCI_CLOCK_INT_STABLE)) {
468 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800469 printf("%s: Internal clock never stabilised.\n",
470 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900471 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000472 }
473 timeout--;
474 udelay(1000);
475 }
476
477 clk |= SDHCI_CLOCK_CARD_EN;
478 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
479 return 0;
480}
481
482static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
483{
484 u8 pwr = 0;
485
486 if (power != (unsigned short)-1) {
487 switch (1 << power) {
488 case MMC_VDD_165_195:
489 pwr = SDHCI_POWER_180;
490 break;
491 case MMC_VDD_29_30:
492 case MMC_VDD_30_31:
493 pwr = SDHCI_POWER_300;
494 break;
495 case MMC_VDD_32_33:
496 case MMC_VDD_33_34:
497 pwr = SDHCI_POWER_330;
498 break;
499 }
500 }
501
502 if (pwr == 0) {
503 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
504 return;
505 }
506
507 pwr |= SDHCI_POWER_ON;
508
509 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
510}
511
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530512void sdhci_set_uhs_timing(struct sdhci_host *host)
513{
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900514 struct mmc *mmc = host->mmc;
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530515 u32 reg;
516
517 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
518 reg &= ~SDHCI_CTRL_UHS_MASK;
519
520 switch (mmc->selected_mode) {
521 case UHS_SDR50:
522 case MMC_HS_52:
523 reg |= SDHCI_CTRL_UHS_SDR50;
524 break;
525 case UHS_DDR50:
526 case MMC_DDR_52:
527 reg |= SDHCI_CTRL_UHS_DDR50;
528 break;
529 case UHS_SDR104:
530 case MMC_HS_200:
531 reg |= SDHCI_CTRL_UHS_SDR104;
532 break;
Faiz Abbasbda47be2021-04-05 20:14:28 +0530533 case MMC_HS_400:
Alper Nebi Yasak2a1d7c62022-03-15 20:46:26 +0300534 case MMC_HS_400_ES:
Faiz Abbasbda47be2021-04-05 20:14:28 +0530535 reg |= SDHCI_CTRL_HS400;
536 break;
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530537 default:
538 reg |= SDHCI_CTRL_UHS_SDR12;
539 }
540
541 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
542}
543
Faiz Abbas43392b52021-02-04 15:10:46 +0530544static void sdhci_set_voltage(struct sdhci_host *host)
545{
546 if (IS_ENABLED(CONFIG_MMC_IO_VOLTAGE)) {
547 struct mmc *mmc = (struct mmc *)host->mmc;
548 u32 ctrl;
549
550 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
551
552 switch (mmc->signal_voltage) {
553 case MMC_SIGNAL_VOLTAGE_330:
554#if CONFIG_IS_ENABLED(DM_REGULATOR)
555 if (mmc->vqmmc_supply) {
556 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
557 pr_err("failed to disable vqmmc-supply\n");
558 return;
559 }
560
561 if (regulator_set_value(mmc->vqmmc_supply, 3300000)) {
562 pr_err("failed to set vqmmc-voltage to 3.3V\n");
563 return;
564 }
565
566 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
567 pr_err("failed to enable vqmmc-supply\n");
568 return;
569 }
570 }
571#endif
572 if (IS_SD(mmc)) {
573 ctrl &= ~SDHCI_CTRL_VDD_180;
574 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
575 }
576
577 /* Wait for 5ms */
578 mdelay(5);
579
580 /* 3.3V regulator output should be stable within 5 ms */
581 if (IS_SD(mmc)) {
582 if (ctrl & SDHCI_CTRL_VDD_180) {
583 pr_err("3.3V regulator output did not become stable\n");
584 return;
585 }
586 }
587
588 break;
589 case MMC_SIGNAL_VOLTAGE_180:
590#if CONFIG_IS_ENABLED(DM_REGULATOR)
591 if (mmc->vqmmc_supply) {
592 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
593 pr_err("failed to disable vqmmc-supply\n");
594 return;
595 }
596
597 if (regulator_set_value(mmc->vqmmc_supply, 1800000)) {
598 pr_err("failed to set vqmmc-voltage to 1.8V\n");
599 return;
600 }
601
602 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
603 pr_err("failed to enable vqmmc-supply\n");
604 return;
605 }
606 }
607#endif
608 if (IS_SD(mmc)) {
609 ctrl |= SDHCI_CTRL_VDD_180;
610 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
611 }
612
613 /* Wait for 5 ms */
614 mdelay(5);
615
616 /* 1.8V regulator output has to be stable within 5 ms */
617 if (IS_SD(mmc)) {
618 if (!(ctrl & SDHCI_CTRL_VDD_180)) {
619 pr_err("1.8V regulator output did not become stable\n");
620 return;
621 }
622 }
623
624 break;
625 default:
626 /* No signal voltage switch required */
627 return;
628 }
629 }
630}
631
632void sdhci_set_control_reg(struct sdhci_host *host)
633{
634 sdhci_set_voltage(host);
635 sdhci_set_uhs_timing(host);
636}
637
Simon Glasse7881d82017-07-29 11:35:31 -0600638#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600639static int sdhci_set_ios(struct udevice *dev)
640{
641 struct mmc *mmc = mmc_get_mmc_dev(dev);
642#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900643static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000644{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600645#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000646 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200647 struct sdhci_host *host = mmc->priv;
Jagan Tekif12341a2020-06-18 19:33:12 +0530648 bool no_hispd_bit = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000649
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900650 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900651 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000652
Lei Wenaf62a552011-06-28 21:50:06 +0000653 if (mmc->clock != host->clock)
654 sdhci_set_clock(mmc, mmc->clock);
655
Siva Durga Prasad Paladugu2a2d7ef2018-04-19 12:37:04 +0530656 if (mmc->clk_disable)
657 sdhci_set_clock(mmc, 0);
658
Lei Wenaf62a552011-06-28 21:50:06 +0000659 /* Set bus width */
660 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
661 if (mmc->bus_width == 8) {
662 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900663 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
664 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000665 ctrl |= SDHCI_CTRL_8BITBUS;
666 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700667 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
668 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000669 ctrl &= ~SDHCI_CTRL_8BITBUS;
670 if (mmc->bus_width == 4)
671 ctrl |= SDHCI_CTRL_4BITBUS;
672 else
673 ctrl &= ~SDHCI_CTRL_4BITBUS;
674 }
675
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100676 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
Jagan Tekif12341a2020-06-18 19:33:12 +0530677 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)) {
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000678 ctrl &= ~SDHCI_CTRL_HISPD;
Jagan Tekif12341a2020-06-18 19:33:12 +0530679 no_hispd_bit = true;
680 }
681
682 if (!no_hispd_bit) {
683 if (mmc->selected_mode == MMC_HS ||
684 mmc->selected_mode == SD_HS ||
685 mmc->selected_mode == MMC_DDR_52 ||
686 mmc->selected_mode == MMC_HS_200 ||
687 mmc->selected_mode == MMC_HS_400 ||
Alper Nebi Yasak2a1d7c62022-03-15 20:46:26 +0300688 mmc->selected_mode == MMC_HS_400_ES ||
Jagan Tekif12341a2020-06-18 19:33:12 +0530689 mmc->selected_mode == UHS_SDR25 ||
690 mmc->selected_mode == UHS_SDR50 ||
691 mmc->selected_mode == UHS_SDR104 ||
692 mmc->selected_mode == UHS_DDR50)
693 ctrl |= SDHCI_CTRL_HISPD;
694 else
695 ctrl &= ~SDHCI_CTRL_HISPD;
696 }
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000697
Lei Wenaf62a552011-06-28 21:50:06 +0000698 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900699
Stefan Roese210841c2016-12-12 08:24:56 +0100700 /* If available, call the driver specific "post" set_ios() function */
701 if (host->ops && host->ops->set_ios_post)
Faiz Abbasa8185c52019-06-11 00:43:37 +0530702 return host->ops->set_ios_post(host);
Stefan Roese210841c2016-12-12 08:24:56 +0100703
Simon Glassef1e4ed2016-06-12 23:30:28 -0600704 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000705}
706
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200707static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000708{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200709 struct sdhci_host *host = mmc->priv;
T Karthik Reddy451931e2019-06-25 13:39:03 +0200710#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
711 struct udevice *dev = mmc->dev;
712
Baruch Siach58d65d52019-07-22 19:14:06 +0300713 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy451931e2019-06-25 13:39:03 +0200714 &host->cd_gpio, GPIOD_IS_IN);
715#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000716
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900717 sdhci_reset(host, SDHCI_RESET_ALL);
718
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900719#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
720 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamadaf5df6aa2020-02-14 16:40:22 +0900721 /*
722 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
723 * is defined.
724 */
725 host->force_align_buffer = true;
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900726#else
727 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
728 host->align_buffer = memalign(8, 512 * 1024);
729 if (!host->align_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800730 printf("%s: Aligned buffer alloc failed!!!\n",
731 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900732 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000733 }
734 }
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900735#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000736
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200737 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000738
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900739 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900740 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000741
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000742 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800743 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
744 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000745 /* Mask all sdhci interrupt sources */
746 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000747
Lei Wenaf62a552011-06-28 21:50:06 +0000748 return 0;
749}
750
Simon Glasse7881d82017-07-29 11:35:31 -0600751#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600752int sdhci_probe(struct udevice *dev)
753{
754 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200755
Simon Glassef1e4ed2016-06-12 23:30:28 -0600756 return sdhci_init(mmc);
757}
758
Faiz Abbascb884342020-02-26 13:44:31 +0530759static int sdhci_deferred_probe(struct udevice *dev)
760{
761 int err;
762 struct mmc *mmc = mmc_get_mmc_dev(dev);
763 struct sdhci_host *host = mmc->priv;
764
765 if (host->ops && host->ops->deferred_probe) {
766 err = host->ops->deferred_probe(host);
767 if (err)
768 return err;
769 }
770 return 0;
771}
772
Baruch Siach1b716952019-11-03 12:00:27 +0200773static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyda18c622019-06-25 13:39:04 +0200774{
775 struct mmc *mmc = mmc_get_mmc_dev(dev);
776 struct sdhci_host *host = mmc->priv;
777 int value;
778
779 /* If nonremovable, assume that the card is always present. */
780 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
781 return 1;
782 /* If polling, assume that the card is always present. */
783 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
784 return 1;
785
786#if CONFIG_IS_ENABLED(DM_GPIO)
787 value = dm_gpio_get_value(&host->cd_gpio);
788 if (value >= 0) {
789 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
790 return !value;
791 else
792 return value;
793 }
794#endif
795 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
796 SDHCI_CARD_PRESENT);
797 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
798 return !value;
799 else
800 return value;
801}
802
Stephen Carlson40e6f522021-08-17 12:46:41 -0700803static int sdhci_wait_dat0(struct udevice *dev, int state,
804 int timeout_us)
805{
806 int tmp;
807 struct mmc *mmc = mmc_get_mmc_dev(dev);
808 struct sdhci_host *host = mmc->priv;
809 unsigned long timeout = timer_get_us() + timeout_us;
810
811 // readx_poll_timeout is unsuitable because sdhci_readl accepts
812 // two arguments
813 do {
814 tmp = sdhci_readl(host, SDHCI_PRESENT_STATE);
815 if (!!(tmp & SDHCI_DATA_0_LVL_MASK) == !!state)
816 return 0;
817 } while (!timeout_us || !time_after(timer_get_us(), timeout));
818
819 return -ETIMEDOUT;
820}
821
Alper Nebi Yasak2a1d7c62022-03-15 20:46:26 +0300822#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
823static int sdhci_set_enhanced_strobe(struct udevice *dev)
824{
825 struct mmc *mmc = mmc_get_mmc_dev(dev);
826 struct sdhci_host *host = mmc->priv;
827
828 if (host->ops && host->ops->set_enhanced_strobe)
829 return host->ops->set_enhanced_strobe(host);
830
831 return -ENOTSUPP;
832}
833#endif
834
Simon Glassef1e4ed2016-06-12 23:30:28 -0600835const struct dm_mmc_ops sdhci_ops = {
836 .send_cmd = sdhci_send_command,
837 .set_ios = sdhci_set_ios,
T Karthik Reddyda18c622019-06-25 13:39:04 +0200838 .get_cd = sdhci_get_cd,
Faiz Abbascb884342020-02-26 13:44:31 +0530839 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530840#ifdef MMC_SUPPORTS_TUNING
841 .execute_tuning = sdhci_execute_tuning,
842#endif
Stephen Carlson40e6f522021-08-17 12:46:41 -0700843 .wait_dat0 = sdhci_wait_dat0,
Alper Nebi Yasak2a1d7c62022-03-15 20:46:26 +0300844#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
845 .set_enhanced_strobe = sdhci_set_enhanced_strobe,
846#endif
Simon Glassef1e4ed2016-06-12 23:30:28 -0600847};
848#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200849static const struct mmc_ops sdhci_ops = {
850 .send_cmd = sdhci_send_command,
851 .set_ios = sdhci_set_ios,
852 .init = sdhci_init,
853};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600854#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200855
Jaehoon Chung14bed522016-07-26 19:06:24 +0900856int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100857 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600858{
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530859 u32 caps, caps_1 = 0;
Faiz Abbas3d296362019-06-11 00:43:34 +0530860#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200861 u64 dt_caps, dt_caps_mask;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900862
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200863 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
864 "sdhci-caps-mask", 0);
865 dt_caps = dev_read_u64_default(host->mmc->dev,
866 "sdhci-caps", 0);
Michal Simekb5a33872020-07-29 15:42:26 +0200867 caps = ~lower_32_bits(dt_caps_mask) &
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200868 sdhci_readl(host, SDHCI_CAPABILITIES);
Michal Simekb5a33872020-07-29 15:42:26 +0200869 caps |= lower_32_bits(dt_caps);
Faiz Abbas3d296362019-06-11 00:43:34 +0530870#else
Jaehoon Chung14bed522016-07-26 19:06:24 +0900871 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbas3d296362019-06-11 00:43:34 +0530872#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200873 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900874
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900875#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungfabb3a42020-03-27 13:08:01 +0900876 if ((caps & SDHCI_CAN_DO_SDMA)) {
877 host->flags |= USE_SDMA;
878 } else {
Matthias Brugger7acdc9a2020-05-12 12:02:06 +0200879 debug("%s: Your controller doesn't support SDMA!!\n",
880 __func__);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900881 }
882#endif
Faiz Abbas37cb6262019-04-16 23:06:58 +0530883#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
884 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
885 printf("%s: Your controller doesn't support SDMA!!\n",
886 __func__);
887 return -EINVAL;
888 }
Michael Walle4d6a7732020-09-23 12:42:51 +0200889 host->adma_desc_table = sdhci_adma_init();
Faiz Abbas37cb6262019-04-16 23:06:58 +0530890 host->adma_addr = (dma_addr_t)host->adma_desc_table;
Michael Walle4d6a7732020-09-23 12:42:51 +0200891
Faiz Abbas37cb6262019-04-16 23:06:58 +0530892#ifdef CONFIG_DMA_ADDR_T_64BIT
893 host->flags |= USE_ADMA64;
894#else
895 host->flags |= USE_ADMA;
896#endif
897#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900898 if (host->quirks & SDHCI_QUIRK_REG32_RW)
899 host->version =
900 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
901 else
902 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900903
904 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600905#ifndef CONFIG_DM_MMC
Simon Glass2a809092016-06-12 23:30:27 -0600906 cfg->ops = &sdhci_ops;
907#endif
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800908
909 /* Check whether the clock multiplier is supported or not */
910 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbas3d296362019-06-11 00:43:34 +0530911#if CONFIG_IS_ENABLED(DM_MMC)
Michal Simekb5a33872020-07-29 15:42:26 +0200912 caps_1 = ~upper_32_bits(dt_caps_mask) &
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200913 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Michal Simekb5a33872020-07-29 15:42:26 +0200914 caps_1 |= upper_32_bits(dt_caps);
Faiz Abbas3d296362019-06-11 00:43:34 +0530915#else
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800916 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbas3d296362019-06-11 00:43:34 +0530917#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200918 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800919 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
920 SDHCI_CLOCK_MUL_SHIFT;
921 }
922
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100923 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900924 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100925 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600926 SDHCI_CLOCK_BASE_SHIFT;
927 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100928 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600929 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100930 host->max_clk *= 1000000;
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800931 if (host->clk_mul)
932 host->max_clk *= host->clk_mul;
Simon Glass2a809092016-06-12 23:30:27 -0600933 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100934 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900935 printf("%s: Hardware doesn't specify base clock frequency\n",
936 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600937 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900938 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100939 if (f_max && (f_max < host->max_clk))
940 cfg->f_max = f_max;
941 else
942 cfg->f_max = host->max_clk;
943 if (f_min)
944 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600945 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900946 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600947 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
948 else
949 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
950 }
951 cfg->voltages = 0;
952 if (caps & SDHCI_CAN_VDD_330)
953 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
954 if (caps & SDHCI_CAN_VDD_300)
955 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
956 if (caps & SDHCI_CAN_VDD_180)
957 cfg->voltages |= MMC_VDD_165_195;
958
Masahiro Yamada3137e642016-08-25 16:07:36 +0900959 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
960 cfg->voltages |= host->voltages;
961
Faiz Abbas620bb462020-07-23 09:42:19 +0530962 if (caps & SDHCI_CAN_DO_HISPD)
963 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
964
965 cfg->host_caps |= MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900966
967 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900968 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900969 if (!(caps & SDHCI_CAN_DO_8BIT))
970 cfg->host_caps &= ~MMC_MODE_8BIT;
Simon Glass2a809092016-06-12 23:30:27 -0600971 }
972
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100973 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
974 cfg->host_caps &= ~MMC_MODE_HS;
975 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
976 }
977
Ashok Reddy Soma7a49a162020-10-23 04:58:57 -0600978 if (!(cfg->voltages & MMC_VDD_165_195) ||
979 (host->quirks & SDHCI_QUIRK_NO_1_8_V))
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530980 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
981 SDHCI_SUPPORT_DDR50);
982
983 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
984 SDHCI_SUPPORT_DDR50))
985 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
986
987 if (caps_1 & SDHCI_SUPPORT_SDR104) {
988 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
989 /*
990 * SD3.0: SDR104 is supported so (for eMMC) the caps2
991 * field can be promoted to support HS200.
992 */
993 cfg->host_caps |= MMC_CAP(MMC_HS_200);
994 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
995 cfg->host_caps |= MMC_CAP(UHS_SDR50);
996 }
997
Ashok Reddy Soma386f5d32023-01-10 04:31:23 -0700998 if ((host->quirks & SDHCI_QUIRK_CAPS_BIT63_FOR_HS400) &&
999 (caps_1 & SDHCI_SUPPORT_HS400))
1000 cfg->host_caps |= MMC_CAP(MMC_HS_400);
1001
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +05301002 if (caps_1 & SDHCI_SUPPORT_DDR50)
1003 cfg->host_caps |= MMC_CAP(UHS_DDR50);
1004
Jaehoon Chung14bed522016-07-26 19:06:24 +09001005 if (host->host_caps)
1006 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -06001007
1008 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
1009
1010 return 0;
1011}
1012
Simon Glassef1e4ed2016-06-12 23:30:28 -06001013#ifdef CONFIG_BLK
1014int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
1015{
1016 return mmc_bind(dev, mmc, cfg);
1017}
1018#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +01001019int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +00001020{
Masahiro Yamada6c679542016-08-25 16:07:35 +09001021 int ret;
1022
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +01001023 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +09001024 if (ret)
1025 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +00001026
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001027 host->mmc = mmc_create(&host->cfg, host);
1028 if (host->mmc == NULL) {
1029 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +09001030 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001031 }
Lei Wenaf62a552011-06-28 21:50:06 +00001032
1033 return 0;
1034}
Simon Glassef1e4ed2016-06-12 23:30:28 -06001035#endif