blob: 560b7e889c779d677d6f598f8b1f87019c0de79e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Lei Wen142c8f92011-06-28 21:50:06 +00002/*
3 * Copyright 2011, Marvell Semiconductor Inc.
4 * Lei Wen <leiwen@marvell.com>
5 *
Lei Wen142c8f92011-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
Simon Glass63334482019-11-14 12:57:39 -070010#include <cpu_func.h>
Faiz Abbasf08f9d72019-06-11 00:43:34 +053011#include <dm.h>
Simon Glassb0842072016-06-12 23:30:27 -060012#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Lei Wen142c8f92011-06-28 21:50:06 +000014#include <malloc.h>
15#include <mmc.h>
16#include <sdhci.h>
Tom Rinidec7ea02024-05-20 13:35:03 -060017#include <time.h>
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <asm/cache.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060019#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060020#include <linux/delay.h>
Masahiro Yamada97e7e822020-02-14 16:40:26 +090021#include <linux/dma-mapping.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060022#include <linux/printk.h>
Jaehoon Chung27685932020-03-27 13:08:00 +090023#include <phys2bus.h>
Faiz Abbas6ede1212021-02-04 15:10:46 +053024#include <power/regulator.h>
Lei Wen142c8f92011-06-28 21:50:06 +000025
Lei Wen142c8f92011-06-28 21:50:06 +000026static void sdhci_reset(struct sdhci_host *host, u8 mask)
27{
28 unsigned long timeout;
29
30 /* Wait max 100 ms */
31 timeout = 100;
32 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
33 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
34 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -080035 printf("%s: Reset 0x%x never completed.\n",
36 __func__, (int)mask);
Lei Wen142c8f92011-06-28 21:50:06 +000037 return;
38 }
39 timeout--;
40 udelay(1000);
41 }
42}
43
44static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
45{
46 int i;
47 if (cmd->resp_type & MMC_RSP_136) {
48 /* CRC is stripped so we need to do some shifting. */
49 for (i = 0; i < 4; i++) {
50 cmd->response[i] = sdhci_readl(host,
51 SDHCI_RESPONSE + (3-i)*4) << 8;
52 if (i != 3)
53 cmd->response[i] |= sdhci_readb(host,
54 SDHCI_RESPONSE + (3-i)*4-1);
55 }
56 } else {
57 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
58 }
59}
60
61static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
62{
63 int i;
64 char *offs;
65 for (i = 0; i < data->blocksize; i += 4) {
66 offs = data->dest + i;
67 if (data->flags == MMC_DATA_READ)
68 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
69 else
70 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
71 }
72}
Faiz Abbas4c082a62019-04-16 23:06:58 +053073
Peter Geis4561ada2023-04-18 16:46:44 +000074#if (CONFIG_IS_ENABLED(MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas87102502019-04-16 23:06:57 +053075static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
76 int *is_aligned, int trans_bytes)
77{
Nicolas Saenz Julienne248a8f02021-01-12 13:55:29 +010078 dma_addr_t dma_addr;
Jaehoon Chungf77f0582012-09-20 20:31:55 +000079 unsigned char ctrl;
Masahiro Yamada97e7e822020-02-14 16:40:26 +090080 void *buf;
Faiz Abbas87102502019-04-16 23:06:57 +053081
82 if (data->flags == MMC_DATA_READ)
Masahiro Yamada97e7e822020-02-14 16:40:26 +090083 buf = data->dest;
Faiz Abbas87102502019-04-16 23:06:57 +053084 else
Masahiro Yamada97e7e822020-02-14 16:40:26 +090085 buf = (void *)data->src;
Faiz Abbas87102502019-04-16 23:06:57 +053086
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +000087 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chungf77f0582012-09-20 20:31:55 +000088 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Faiz Abbas4c082a62019-04-16 23:06:58 +053089 if (host->flags & USE_ADMA64)
90 ctrl |= SDHCI_CTRL_ADMA64;
91 else if (host->flags & USE_ADMA)
92 ctrl |= SDHCI_CTRL_ADMA32;
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +000093 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Faiz Abbas87102502019-04-16 23:06:57 +053094
Masahiro Yamada97e7e822020-02-14 16:40:26 +090095 if (host->flags & USE_SDMA &&
96 (host->force_align_buffer ||
97 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
98 ((unsigned long)buf & 0x7) != 0x0))) {
99 *is_aligned = 0;
100 if (data->flags != MMC_DATA_READ)
101 memcpy(host->align_buffer, buf, trans_bytes);
102 buf = host->align_buffer;
103 }
104
105 host->start_addr = dma_map_single(buf, trans_bytes,
106 mmc_get_dma_dir(data));
107
Faiz Abbas4c082a62019-04-16 23:06:58 +0530108 if (host->flags & USE_SDMA) {
Nicolas Saenz Julienne248a8f02021-01-12 13:55:29 +0100109 dma_addr = dev_phys_to_bus(mmc_to_dev(host->mmc), host->start_addr);
110 sdhci_writel(host, dma_addr, SDHCI_DMA_ADDRESS);
Michael Walle02016c62020-09-23 12:42:51 +0200111 }
112#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
113 else if (host->flags & (USE_ADMA | USE_ADMA64)) {
Ian Roberts6853d892024-04-22 15:00:02 -0400114 sdhci_prepare_adma_table(host, host->adma_desc_table, data,
Michael Walle02016c62020-09-23 12:42:51 +0200115 host->start_addr);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530116
Masahiro Yamada97eda292020-02-14 16:40:23 +0900117 sdhci_writel(host, lower_32_bits(host->adma_addr),
118 SDHCI_ADMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530119 if (host->flags & USE_ADMA64)
Masahiro Yamada97eda292020-02-14 16:40:23 +0900120 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas4c082a62019-04-16 23:06:58 +0530121 SDHCI_ADMA_ADDRESS_HI);
122 }
Michael Walle02016c62020-09-23 12:42:51 +0200123#endif
Faiz Abbas87102502019-04-16 23:06:57 +0530124}
125#else
126static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
127 int *is_aligned, int trans_bytes)
128{}
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000129#endif
Faiz Abbas87102502019-04-16 23:06:57 +0530130static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
131{
132 dma_addr_t start_addr = host->start_addr;
133 unsigned int stat, rdy, mask, timeout, block = 0;
134 bool transfer_done = false;
Lei Wen142c8f92011-06-28 21:50:06 +0000135
Jaehoon Chung30686bd2012-09-20 20:31:54 +0000136 timeout = 1000000;
Lei Wen142c8f92011-06-28 21:50:06 +0000137 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
138 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
139 do {
140 stat = sdhci_readl(host, SDHCI_INT_STATUS);
141 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada45256c42017-12-30 02:00:12 +0900142 pr_debug("%s: Error detected in status(0x%X)!\n",
143 __func__, stat);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900144 return -EIO;
Lei Wen142c8f92011-06-28 21:50:06 +0000145 }
Alex Deymod9b70232017-04-02 01:24:34 -0700146 if (!transfer_done && (stat & rdy)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000147 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
148 continue;
149 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
150 sdhci_transfer_pio(host, data);
151 data->dest += data->blocksize;
Alex Deymod9b70232017-04-02 01:24:34 -0700152 if (++block >= data->blocks) {
153 /* Keep looping until the SDHCI_INT_DATA_END is
154 * cleared, even if we finished sending all the
155 * blocks.
156 */
157 transfer_done = true;
158 continue;
159 }
Lei Wen142c8f92011-06-28 21:50:06 +0000160 }
Faiz Abbas4c082a62019-04-16 23:06:58 +0530161 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas87102502019-04-16 23:06:57 +0530162 (stat & SDHCI_INT_DMA_END)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000163 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530164 if (host->flags & USE_SDMA) {
165 start_addr &=
166 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
167 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Nicolas Saenz Julienne248a8f02021-01-12 13:55:29 +0100168 start_addr = dev_phys_to_bus(mmc_to_dev(host->mmc),
169 start_addr);
170 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530171 }
Lei Wen142c8f92011-06-28 21:50:06 +0000172 }
Lei Wen6c13c662011-10-08 04:14:57 +0000173 if (timeout-- > 0)
174 udelay(10);
175 else {
Darwin Rambo43558132013-12-19 15:13:25 -0800176 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900177 return -ETIMEDOUT;
Lei Wen6c13c662011-10-08 04:14:57 +0000178 }
Lei Wen142c8f92011-06-28 21:50:06 +0000179 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900180
Peter Geis4561ada2023-04-18 16:46:44 +0000181#if (CONFIG_IS_ENABLED(MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900182 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
183 mmc_get_dma_dir(data));
Yuezhang.Mo@sony.com1f838f62021-01-14 05:46:50 +0000184#endif
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900185
Lei Wen142c8f92011-06-28 21:50:06 +0000186 return 0;
187}
188
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200189/*
190 * No command will be sent by driver if card is busy, so driver must wait
191 * for card ready state.
192 * Every time when card is busy after timeout then (last) timeout value will be
193 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada96250112016-08-25 16:07:39 +0900194 * Each function call will use last timeout value.
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200195 */
Masahiro Yamada96250112016-08-25 16:07:39 +0900196#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad4512312016-08-25 16:07:38 +0900197#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed4780832016-06-29 13:42:01 -0700198#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200199
Simon Glasseba48f92017-07-29 11:35:31 -0600200#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600201static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
202 struct mmc_data *data)
203{
204 struct mmc *mmc = mmc_get_mmc_dev(dev);
205
206#else
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200207static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
Simon Glassb97f0fa2016-06-12 23:30:28 -0600208 struct mmc_data *data)
Lei Wen142c8f92011-06-28 21:50:06 +0000209{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600210#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200211 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000212 unsigned int stat = 0;
213 int ret = 0;
214 int trans_bytes = 0, is_aligned = 1;
Kunihiko Hayashia03df6c2022-09-09 16:23:32 +0900215 u32 mask, flags, mode = 0;
Faiz Abbas87102502019-04-16 23:06:57 +0530216 unsigned int time = 0;
Simon Glass97c78e82016-05-14 14:03:04 -0600217 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumardbad7b42018-05-03 12:20:54 +0530218 ulong start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000219
Faiz Abbas87102502019-04-16 23:06:57 +0530220 host->start_addr = 0;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200221 /* Timeout unit - ms */
Masahiro Yamadad4512312016-08-25 16:07:38 +0900222 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000223
Lei Wen142c8f92011-06-28 21:50:06 +0000224 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
225
226 /* We shouldn't wait for data inihibit for stop commands, even
227 though they might use busy signaling */
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530228 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530229 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
230 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wen142c8f92011-06-28 21:50:06 +0000231 mask &= ~SDHCI_DATA_INHIBIT;
232
233 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200234 if (time >= cmd_timeout) {
Darwin Rambo43558132013-12-19 15:13:25 -0800235 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada96250112016-08-25 16:07:39 +0900236 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200237 cmd_timeout += cmd_timeout;
238 printf("timeout increasing to: %u ms.\n",
239 cmd_timeout);
240 } else {
241 puts("timeout.\n");
Jaehoon Chung7825d202016-07-19 16:33:36 +0900242 return -ECOMM;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200243 }
Lei Wen142c8f92011-06-28 21:50:06 +0000244 }
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200245 time++;
Lei Wen142c8f92011-06-28 21:50:06 +0000246 udelay(1000);
247 }
248
Jorge Ramirez-Ortiz65da8be2017-11-02 15:10:21 +0100249 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
250
Lei Wen142c8f92011-06-28 21:50:06 +0000251 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530252 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
253 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530254 mask = SDHCI_INT_DATA_AVAIL;
255
Lei Wen142c8f92011-06-28 21:50:06 +0000256 if (!(cmd->resp_type & MMC_RSP_PRESENT))
257 flags = SDHCI_CMD_RESP_NONE;
258 else if (cmd->resp_type & MMC_RSP_136)
259 flags = SDHCI_CMD_RESP_LONG;
260 else if (cmd->resp_type & MMC_RSP_BUSY) {
261 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Yuezhang.Mo@sony.com05236432021-03-17 06:44:37 +0000262 mask |= SDHCI_INT_DATA_END;
Lei Wen142c8f92011-06-28 21:50:06 +0000263 } else
264 flags = SDHCI_CMD_RESP_SHORT;
265
266 if (cmd->resp_type & MMC_RSP_CRC)
267 flags |= SDHCI_CMD_CRC;
268 if (cmd->resp_type & MMC_RSP_OPCODE)
269 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu5d88ba72018-05-29 20:03:10 +0530270 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
271 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wen142c8f92011-06-28 21:50:06 +0000272 flags |= SDHCI_CMD_DATA;
273
Darwin Rambo43558132013-12-19 15:13:25 -0800274 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardt730636b2017-11-10 21:13:34 +0100275 if (data) {
Lei Wen142c8f92011-06-28 21:50:06 +0000276 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Kunihiko Hayashia03df6c2022-09-09 16:23:32 +0900277
278 if (!(host->quirks & SDHCI_QUIRK_SUPPORT_SINGLE))
279 mode = SDHCI_TRNS_BLK_CNT_EN;
Lei Wen142c8f92011-06-28 21:50:06 +0000280 trans_bytes = data->blocks * data->blocksize;
281 if (data->blocks > 1)
Kunihiko Hayashia03df6c2022-09-09 16:23:32 +0900282 mode |= SDHCI_TRNS_MULTI | SDHCI_TRNS_BLK_CNT_EN;
Lei Wen142c8f92011-06-28 21:50:06 +0000283
284 if (data->flags == MMC_DATA_READ)
285 mode |= SDHCI_TRNS_READ;
286
Faiz Abbas4c082a62019-04-16 23:06:58 +0530287 if (host->flags & USE_DMA) {
Faiz Abbas87102502019-04-16 23:06:57 +0530288 mode |= SDHCI_TRNS_DMA;
289 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000290 }
291
Lei Wen142c8f92011-06-28 21:50:06 +0000292 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
293 data->blocksize),
294 SDHCI_BLOCK_SIZE);
295 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
296 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu8e5db912015-03-23 17:57:00 -0500297 } else if (cmd->resp_type & MMC_RSP_BUSY) {
298 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000299 }
300
301 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wen142c8f92011-06-28 21:50:06 +0000302 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese42817a42015-06-29 14:58:08 +0200303 start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000304 do {
305 stat = sdhci_readl(host, SDHCI_INT_STATUS);
306 if (stat & SDHCI_INT_ERROR)
307 break;
Lei Wen142c8f92011-06-28 21:50:06 +0000308
Sean Andersonf96f96d2023-10-27 16:57:03 -0400309 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B &&
310 cmd->resp_type & MMC_RSP_BUSY && !data) {
311 unsigned int state =
312 sdhci_readl(host, SDHCI_PRESENT_STATE);
313
314 if (!(state & SDHCI_DAT_ACTIVE))
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900315 return 0;
Sean Andersonf96f96d2023-10-27 16:57:03 -0400316 }
317
318 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
319 printf("%s: Timeout for status update: %08x %08x\n",
320 __func__, stat, mask);
321 return -ETIMEDOUT;
Jaehoon Chung89237a82012-04-23 02:36:25 +0000322 }
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900323 } while ((stat & mask) != mask);
Jaehoon Chung89237a82012-04-23 02:36:25 +0000324
Lei Wen142c8f92011-06-28 21:50:06 +0000325 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
326 sdhci_cmd_done(host, cmd);
327 sdhci_writel(host, mask, SDHCI_INT_STATUS);
328 } else
329 ret = -1;
330
331 if (!ret && data)
Faiz Abbas87102502019-04-16 23:06:57 +0530332 ret = sdhci_transfer_data(host, data);
Lei Wen142c8f92011-06-28 21:50:06 +0000333
Tushar Behera0fba4c22012-09-20 20:31:57 +0000334 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
335 udelay(1000);
336
Lei Wen142c8f92011-06-28 21:50:06 +0000337 stat = sdhci_readl(host, SDHCI_INT_STATUS);
338 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
339 if (!ret) {
340 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
341 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900342 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000343 return 0;
344 }
345
346 sdhci_reset(host, SDHCI_RESET_CMD);
347 sdhci_reset(host, SDHCI_RESET_DATA);
348 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung7825d202016-07-19 16:33:36 +0900349 return -ETIMEDOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000350 else
Jaehoon Chung7825d202016-07-19 16:33:36 +0900351 return -ECOMM;
Lei Wen142c8f92011-06-28 21:50:06 +0000352}
353
Tom Rinidec7ea02024-05-20 13:35:03 -0600354#if defined(CONFIG_DM_MMC) && CONFIG_IS_ENABLED(MMC_SUPPORTS_TUNING)
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530355static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
356{
357 int err;
358 struct mmc *mmc = mmc_get_mmc_dev(dev);
359 struct sdhci_host *host = mmc->priv;
360
361 debug("%s\n", __func__);
362
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300363 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530364 err = host->ops->platform_execute_tuning(mmc, opcode);
365 if (err)
366 return err;
367 return 0;
368 }
369 return 0;
370}
371#endif
Faiz Abbasab619662019-06-11 00:43:35 +0530372int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000373{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200374 struct sdhci_host *host = mmc->priv;
Stefan Roesee9161032016-12-12 08:34:42 +0100375 unsigned int div, clk = 0, timeout;
Ashok Reddy Soma6b677782021-08-02 23:20:41 -0600376 int ret;
Wenyou Yang09456d92015-09-22 14:59:25 +0800377
378 /* Wait max 20 ms */
379 timeout = 200;
380 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
381 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
382 if (timeout == 0) {
383 printf("%s: Timeout to wait cmd & data inhibit\n",
384 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900385 return -EBUSY;
Wenyou Yang09456d92015-09-22 14:59:25 +0800386 }
387
388 timeout--;
389 udelay(100);
390 }
Lei Wen142c8f92011-06-28 21:50:06 +0000391
Stefan Roesee9161032016-12-12 08:34:42 +0100392 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000393
394 if (clock == 0)
395 return 0;
396
Ashok Reddy Soma6b677782021-08-02 23:20:41 -0600397 if (host->ops && host->ops->set_delay) {
398 ret = host->ops->set_delay(host);
399 if (ret) {
400 printf("%s: Error while setting tap delay\n", __func__);
401 return ret;
402 }
403 }
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530404
Ashok Reddy Soma4739aaa2023-01-10 04:31:22 -0700405 if (host->ops && host->ops->config_dll) {
406 ret = host->ops->config_dll(host, clock, false);
407 if (ret) {
408 printf("%s: Error while configuring dll\n", __func__);
409 return ret;
410 }
411 }
412
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900413 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800414 /*
415 * Check if the Host Controller supports Programmable Clock
416 * Mode.
417 */
418 if (host->clk_mul) {
419 for (div = 1; div <= 1024; div++) {
Wenyou Yangab877fe2017-04-26 09:32:30 +0800420 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000421 break;
422 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800423
424 /*
425 * Set Programmable Clock Mode in the Clock
426 * Control register.
427 */
428 clk = SDHCI_PROG_CLOCK_MODE;
429 div--;
430 } else {
431 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100432 if (host->max_clk <= clock) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800433 div = 1;
434 } else {
435 for (div = 2;
436 div < SDHCI_MAX_DIV_SPEC_300;
437 div += 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100438 if ((host->max_clk / div) <= clock)
Wenyou Yang3d734042016-09-18 09:01:22 +0800439 break;
440 }
441 }
442 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000443 }
444 } else {
445 /* Version 2.00 divisors must be a power of 2. */
446 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100447 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000448 break;
449 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800450 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000451 }
Lei Wen142c8f92011-06-28 21:50:06 +0000452
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900453 if (host->ops && host->ops->set_clock)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900454 host->ops->set_clock(host, div);
Jaehoon Chungb1929ea2012-08-30 16:24:11 +0000455
Ashok Reddy Soma4739aaa2023-01-10 04:31:22 -0700456 if (host->ops && host->ops->config_dll) {
457 ret = host->ops->config_dll(host, clock, true);
458 if (ret) {
459 printf("%s: Error while configuring dll\n", __func__);
460 return ret;
461 }
462 }
463
Wenyou Yang3d734042016-09-18 09:01:22 +0800464 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000465 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
466 << SDHCI_DIVIDER_HI_SHIFT;
467 clk |= SDHCI_CLOCK_INT_EN;
468 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
469
470 /* Wait max 20 ms */
471 timeout = 20;
472 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
473 & SDHCI_CLOCK_INT_STABLE)) {
474 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -0800475 printf("%s: Internal clock never stabilised.\n",
476 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900477 return -EBUSY;
Lei Wen142c8f92011-06-28 21:50:06 +0000478 }
479 timeout--;
480 udelay(1000);
481 }
482
483 clk |= SDHCI_CLOCK_CARD_EN;
484 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
485 return 0;
486}
487
488static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
489{
490 u8 pwr = 0;
491
492 if (power != (unsigned short)-1) {
493 switch (1 << power) {
494 case MMC_VDD_165_195:
495 pwr = SDHCI_POWER_180;
496 break;
497 case MMC_VDD_29_30:
498 case MMC_VDD_30_31:
499 pwr = SDHCI_POWER_300;
500 break;
501 case MMC_VDD_32_33:
502 case MMC_VDD_33_34:
503 pwr = SDHCI_POWER_330;
504 break;
505 }
506 }
507
508 if (pwr == 0) {
509 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
510 return;
511 }
512
513 pwr |= SDHCI_POWER_ON;
514
515 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
516}
517
Faiz Abbas2eddc002019-06-11 00:43:40 +0530518void sdhci_set_uhs_timing(struct sdhci_host *host)
519{
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900520 struct mmc *mmc = host->mmc;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530521 u32 reg;
522
523 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
524 reg &= ~SDHCI_CTRL_UHS_MASK;
525
526 switch (mmc->selected_mode) {
Jonas Karlman787ce612023-04-18 16:46:24 +0000527 case UHS_SDR25:
528 case MMC_HS:
529 reg |= SDHCI_CTRL_UHS_SDR25;
530 break;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530531 case UHS_SDR50:
532 case MMC_HS_52:
533 reg |= SDHCI_CTRL_UHS_SDR50;
534 break;
535 case UHS_DDR50:
536 case MMC_DDR_52:
537 reg |= SDHCI_CTRL_UHS_DDR50;
538 break;
539 case UHS_SDR104:
540 case MMC_HS_200:
541 reg |= SDHCI_CTRL_UHS_SDR104;
542 break;
Faiz Abbas9bf56ea2021-04-05 20:14:28 +0530543 case MMC_HS_400:
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300544 case MMC_HS_400_ES:
Faiz Abbas9bf56ea2021-04-05 20:14:28 +0530545 reg |= SDHCI_CTRL_HS400;
546 break;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530547 default:
548 reg |= SDHCI_CTRL_UHS_SDR12;
549 }
550
551 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
552}
553
Faiz Abbas6ede1212021-02-04 15:10:46 +0530554static void sdhci_set_voltage(struct sdhci_host *host)
555{
556 if (IS_ENABLED(CONFIG_MMC_IO_VOLTAGE)) {
557 struct mmc *mmc = (struct mmc *)host->mmc;
558 u32 ctrl;
559
560 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
561
562 switch (mmc->signal_voltage) {
563 case MMC_SIGNAL_VOLTAGE_330:
564#if CONFIG_IS_ENABLED(DM_REGULATOR)
565 if (mmc->vqmmc_supply) {
566 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
567 pr_err("failed to disable vqmmc-supply\n");
568 return;
569 }
570
571 if (regulator_set_value(mmc->vqmmc_supply, 3300000)) {
572 pr_err("failed to set vqmmc-voltage to 3.3V\n");
573 return;
574 }
575
576 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
577 pr_err("failed to enable vqmmc-supply\n");
578 return;
579 }
580 }
581#endif
582 if (IS_SD(mmc)) {
583 ctrl &= ~SDHCI_CTRL_VDD_180;
584 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
585 }
586
587 /* Wait for 5ms */
588 mdelay(5);
589
590 /* 3.3V regulator output should be stable within 5 ms */
591 if (IS_SD(mmc)) {
592 if (ctrl & SDHCI_CTRL_VDD_180) {
593 pr_err("3.3V regulator output did not become stable\n");
594 return;
595 }
596 }
597
598 break;
599 case MMC_SIGNAL_VOLTAGE_180:
600#if CONFIG_IS_ENABLED(DM_REGULATOR)
601 if (mmc->vqmmc_supply) {
602 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
603 pr_err("failed to disable vqmmc-supply\n");
604 return;
605 }
606
607 if (regulator_set_value(mmc->vqmmc_supply, 1800000)) {
608 pr_err("failed to set vqmmc-voltage to 1.8V\n");
609 return;
610 }
611
612 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
613 pr_err("failed to enable vqmmc-supply\n");
614 return;
615 }
616 }
617#endif
618 if (IS_SD(mmc)) {
619 ctrl |= SDHCI_CTRL_VDD_180;
620 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
621 }
622
623 /* Wait for 5 ms */
624 mdelay(5);
625
626 /* 1.8V regulator output has to be stable within 5 ms */
627 if (IS_SD(mmc)) {
628 if (!(ctrl & SDHCI_CTRL_VDD_180)) {
629 pr_err("1.8V regulator output did not become stable\n");
630 return;
631 }
632 }
633
634 break;
635 default:
636 /* No signal voltage switch required */
637 return;
638 }
639 }
640}
641
642void sdhci_set_control_reg(struct sdhci_host *host)
643{
644 sdhci_set_voltage(host);
645 sdhci_set_uhs_timing(host);
646}
647
Simon Glasseba48f92017-07-29 11:35:31 -0600648#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600649static int sdhci_set_ios(struct udevice *dev)
650{
651 struct mmc *mmc = mmc_get_mmc_dev(dev);
652#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900653static int sdhci_set_ios(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000654{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600655#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000656 u32 ctrl;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200657 struct sdhci_host *host = mmc->priv;
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530658 bool no_hispd_bit = false;
Lei Wen142c8f92011-06-28 21:50:06 +0000659
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900660 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900661 host->ops->set_control_reg(host);
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000662
Lei Wen142c8f92011-06-28 21:50:06 +0000663 if (mmc->clock != host->clock)
664 sdhci_set_clock(mmc, mmc->clock);
665
Siva Durga Prasad Paladugu9fccd8a2018-04-19 12:37:04 +0530666 if (mmc->clk_disable)
667 sdhci_set_clock(mmc, 0);
668
Lei Wen142c8f92011-06-28 21:50:06 +0000669 /* Set bus width */
670 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
671 if (mmc->bus_width == 8) {
672 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900673 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
674 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000675 ctrl |= SDHCI_CTRL_8BITBUS;
676 } else {
Matt Reimer9651f592015-02-19 11:22:53 -0700677 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
678 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000679 ctrl &= ~SDHCI_CTRL_8BITBUS;
680 if (mmc->bus_width == 4)
681 ctrl |= SDHCI_CTRL_4BITBUS;
682 else
683 ctrl &= ~SDHCI_CTRL_4BITBUS;
684 }
685
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100686 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530687 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)) {
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000688 ctrl &= ~SDHCI_CTRL_HISPD;
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530689 no_hispd_bit = true;
690 }
691
692 if (!no_hispd_bit) {
693 if (mmc->selected_mode == MMC_HS ||
694 mmc->selected_mode == SD_HS ||
Jonas Karlmanbd303aa2023-04-18 16:46:23 +0000695 mmc->selected_mode == MMC_HS_52 ||
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530696 mmc->selected_mode == MMC_DDR_52 ||
697 mmc->selected_mode == MMC_HS_200 ||
698 mmc->selected_mode == MMC_HS_400 ||
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300699 mmc->selected_mode == MMC_HS_400_ES ||
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530700 mmc->selected_mode == UHS_SDR25 ||
701 mmc->selected_mode == UHS_SDR50 ||
702 mmc->selected_mode == UHS_SDR104 ||
703 mmc->selected_mode == UHS_DDR50)
704 ctrl |= SDHCI_CTRL_HISPD;
705 else
706 ctrl &= ~SDHCI_CTRL_HISPD;
707 }
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000708
Lei Wen142c8f92011-06-28 21:50:06 +0000709 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900710
Stefan Roesea3554ef2016-12-12 08:24:56 +0100711 /* If available, call the driver specific "post" set_ios() function */
712 if (host->ops && host->ops->set_ios_post)
Faiz Abbas375acf82019-06-11 00:43:37 +0530713 return host->ops->set_ios_post(host);
Stefan Roesea3554ef2016-12-12 08:24:56 +0100714
Simon Glassb97f0fa2016-06-12 23:30:28 -0600715 return 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000716}
717
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200718static int sdhci_init(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000719{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200720 struct sdhci_host *host = mmc->priv;
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200721#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
722 struct udevice *dev = mmc->dev;
723
Baruch Siach6b907192019-07-22 19:14:06 +0300724 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200725 &host->cd_gpio, GPIOD_IS_IN);
726#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000727
Masahiro Yamadaea04d902016-08-25 16:07:34 +0900728 sdhci_reset(host, SDHCI_RESET_ALL);
729
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900730#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
731 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamada32d12132020-02-14 16:40:22 +0900732 /*
733 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
734 * is defined.
735 */
736 host->force_align_buffer = true;
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900737#else
738 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
739 host->align_buffer = memalign(8, 512 * 1024);
740 if (!host->align_buffer) {
Darwin Rambo43558132013-12-19 15:13:25 -0800741 printf("%s: Aligned buffer alloc failed!!!\n",
742 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900743 return -ENOMEM;
Lei Wen142c8f92011-06-28 21:50:06 +0000744 }
745 }
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900746#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000747
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200748 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000749
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900750 if (host->ops && host->ops->get_cd)
Jaehoon Chung730a5952016-12-30 15:30:15 +0900751 host->ops->get_cd(host);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000752
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000753 /* Enable only interrupts served by the SD controller */
Darwin Rambo43558132013-12-19 15:13:25 -0800754 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
755 SDHCI_INT_ENABLE);
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000756 /* Mask all sdhci interrupt sources */
757 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wen142c8f92011-06-28 21:50:06 +0000758
Lei Wen142c8f92011-06-28 21:50:06 +0000759 return 0;
760}
761
Simon Glasseba48f92017-07-29 11:35:31 -0600762#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600763int sdhci_probe(struct udevice *dev)
764{
765 struct mmc *mmc = mmc_get_mmc_dev(dev);
766
767 return sdhci_init(mmc);
768}
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200769
Faiz Abbasd2229212020-02-26 13:44:31 +0530770static int sdhci_deferred_probe(struct udevice *dev)
771{
772 int err;
773 struct mmc *mmc = mmc_get_mmc_dev(dev);
774 struct sdhci_host *host = mmc->priv;
775
776 if (host->ops && host->ops->deferred_probe) {
777 err = host->ops->deferred_probe(host);
778 if (err)
779 return err;
780 }
781 return 0;
782}
783
Baruch Siach4c280a92019-11-03 12:00:27 +0200784static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200785{
786 struct mmc *mmc = mmc_get_mmc_dev(dev);
787 struct sdhci_host *host = mmc->priv;
788 int value;
789
790 /* If nonremovable, assume that the card is always present. */
791 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
792 return 1;
793 /* If polling, assume that the card is always present. */
794 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
795 return 1;
796
797#if CONFIG_IS_ENABLED(DM_GPIO)
798 value = dm_gpio_get_value(&host->cd_gpio);
799 if (value >= 0) {
800 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
801 return !value;
802 else
803 return value;
804 }
805#endif
806 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
807 SDHCI_CARD_PRESENT);
808 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
809 return !value;
810 else
811 return value;
812}
813
Stephen Carlson8cd31282021-08-17 12:46:41 -0700814static int sdhci_wait_dat0(struct udevice *dev, int state,
815 int timeout_us)
816{
817 int tmp;
818 struct mmc *mmc = mmc_get_mmc_dev(dev);
819 struct sdhci_host *host = mmc->priv;
820 unsigned long timeout = timer_get_us() + timeout_us;
821
822 // readx_poll_timeout is unsuitable because sdhci_readl accepts
823 // two arguments
824 do {
825 tmp = sdhci_readl(host, SDHCI_PRESENT_STATE);
826 if (!!(tmp & SDHCI_DATA_0_LVL_MASK) == !!state)
827 return 0;
828 } while (!timeout_us || !time_after(timer_get_us(), timeout));
829
830 return -ETIMEDOUT;
831}
832
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300833#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
834static int sdhci_set_enhanced_strobe(struct udevice *dev)
835{
836 struct mmc *mmc = mmc_get_mmc_dev(dev);
837 struct sdhci_host *host = mmc->priv;
838
839 if (host->ops && host->ops->set_enhanced_strobe)
840 return host->ops->set_enhanced_strobe(host);
841
842 return -ENOTSUPP;
843}
844#endif
845
Simon Glassb97f0fa2016-06-12 23:30:28 -0600846const struct dm_mmc_ops sdhci_ops = {
847 .send_cmd = sdhci_send_command,
848 .set_ios = sdhci_set_ios,
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200849 .get_cd = sdhci_get_cd,
Faiz Abbasd2229212020-02-26 13:44:31 +0530850 .deferred_probe = sdhci_deferred_probe,
Tom Rinidec7ea02024-05-20 13:35:03 -0600851#if CONFIG_IS_ENABLED(MMC_SUPPORTS_TUNING)
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530852 .execute_tuning = sdhci_execute_tuning,
853#endif
Stephen Carlson8cd31282021-08-17 12:46:41 -0700854 .wait_dat0 = sdhci_wait_dat0,
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300855#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
856 .set_enhanced_strobe = sdhci_set_enhanced_strobe,
857#endif
Simon Glassb97f0fa2016-06-12 23:30:28 -0600858};
859#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200860static const struct mmc_ops sdhci_ops = {
861 .send_cmd = sdhci_send_command,
862 .set_ios = sdhci_set_ios,
863 .init = sdhci_init,
864};
Simon Glassb97f0fa2016-06-12 23:30:28 -0600865#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200866
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900867int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100868 u32 f_max, u32 f_min)
Lei Wen142c8f92011-06-28 21:50:06 +0000869{
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530870 u32 caps, caps_1 = 0;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530871#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200872 u64 dt_caps, dt_caps_mask;
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900873
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200874 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
875 "sdhci-caps-mask", 0);
876 dt_caps = dev_read_u64_default(host->mmc->dev,
877 "sdhci-caps", 0);
Michal Simek64341a62020-07-29 15:42:26 +0200878 caps = ~lower_32_bits(dt_caps_mask) &
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200879 sdhci_readl(host, SDHCI_CAPABILITIES);
Michal Simek64341a62020-07-29 15:42:26 +0200880 caps |= lower_32_bits(dt_caps);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530881#else
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900882 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530883#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200884 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900885
Peter Geis4561ada2023-04-18 16:46:44 +0000886#if CONFIG_IS_ENABLED(MMC_SDHCI_SDMA)
Jaehoon Chungd9a86c12020-03-27 13:08:01 +0900887 if ((caps & SDHCI_CAN_DO_SDMA)) {
888 host->flags |= USE_SDMA;
889 } else {
Matthias Brugger44354b02020-05-12 12:02:06 +0200890 debug("%s: Your controller doesn't support SDMA!!\n",
891 __func__);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900892 }
893#endif
Faiz Abbas4c082a62019-04-16 23:06:58 +0530894#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
895 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
Peter Geis4561ada2023-04-18 16:46:44 +0000896 printf("%s: Your controller doesn't support ADMA!!\n",
Faiz Abbas4c082a62019-04-16 23:06:58 +0530897 __func__);
898 return -EINVAL;
899 }
Ian Roberts6853d892024-04-22 15:00:02 -0400900 if (!host->adma_desc_table) {
901 host->adma_desc_table = sdhci_adma_init();
902 host->adma_addr = virt_to_phys(host->adma_desc_table);
903 }
Michael Walle02016c62020-09-23 12:42:51 +0200904
Greg Malysaeb92ef12024-03-25 22:28:08 -0400905 if (IS_ENABLED(CONFIG_MMC_SDHCI_ADMA_64BIT))
906 host->flags |= USE_ADMA64;
907 else
908 host->flags |= USE_ADMA;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530909#endif
Jaehoon Chung6c5b3592016-09-26 08:10:01 +0900910 if (host->quirks & SDHCI_QUIRK_REG32_RW)
911 host->version =
912 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
913 else
914 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900915
916 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600917#ifndef CONFIG_DM_MMC
Simon Glassb0842072016-06-12 23:30:27 -0600918 cfg->ops = &sdhci_ops;
Lei Wen142c8f92011-06-28 21:50:06 +0000919#endif
Wenyou Yangab877fe2017-04-26 09:32:30 +0800920
921 /* Check whether the clock multiplier is supported or not */
922 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530923#if CONFIG_IS_ENABLED(DM_MMC)
Michal Simek64341a62020-07-29 15:42:26 +0200924 caps_1 = ~upper_32_bits(dt_caps_mask) &
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200925 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Michal Simek64341a62020-07-29 15:42:26 +0200926 caps_1 |= upper_32_bits(dt_caps);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530927#else
Wenyou Yangab877fe2017-04-26 09:32:30 +0800928 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530929#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200930 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yangab877fe2017-04-26 09:32:30 +0800931 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
932 SDHCI_CLOCK_MUL_SHIFT;
cmachida2886f402024-04-12 12:26:40 -0700933
934 /*
935 * In case the value in Clock Multiplier is 0, then programmable
936 * clock mode is not supported, otherwise the actual clock
937 * multiplier is one more than the value of Clock Multiplier
938 * in the Capabilities Register.
939 */
940 if (host->clk_mul)
941 host->clk_mul += 1;
Wenyou Yangab877fe2017-04-26 09:32:30 +0800942 }
943
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100944 if (host->max_clk == 0) {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900945 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100946 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600947 SDHCI_CLOCK_BASE_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000948 else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100949 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600950 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100951 host->max_clk *= 1000000;
Wenyou Yangab877fe2017-04-26 09:32:30 +0800952 if (host->clk_mul)
953 host->max_clk *= host->clk_mul;
Lei Wen142c8f92011-06-28 21:50:06 +0000954 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100955 if (host->max_clk == 0) {
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900956 printf("%s: Hardware doesn't specify base clock frequency\n",
957 __func__);
Simon Glassb0842072016-06-12 23:30:27 -0600958 return -EINVAL;
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900959 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100960 if (f_max && (f_max < host->max_clk))
961 cfg->f_max = f_max;
962 else
963 cfg->f_max = host->max_clk;
964 if (f_min)
965 cfg->f_min = f_min;
Lei Wen142c8f92011-06-28 21:50:06 +0000966 else {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900967 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glassb0842072016-06-12 23:30:27 -0600968 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
Lei Wen142c8f92011-06-28 21:50:06 +0000969 else
Simon Glassb0842072016-06-12 23:30:27 -0600970 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
Lei Wen142c8f92011-06-28 21:50:06 +0000971 }
Simon Glassb0842072016-06-12 23:30:27 -0600972 cfg->voltages = 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000973 if (caps & SDHCI_CAN_VDD_330)
Simon Glassb0842072016-06-12 23:30:27 -0600974 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Lei Wen142c8f92011-06-28 21:50:06 +0000975 if (caps & SDHCI_CAN_VDD_300)
Simon Glassb0842072016-06-12 23:30:27 -0600976 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
Lei Wen142c8f92011-06-28 21:50:06 +0000977 if (caps & SDHCI_CAN_VDD_180)
Simon Glassb0842072016-06-12 23:30:27 -0600978 cfg->voltages |= MMC_VDD_165_195;
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000979
Masahiro Yamada4b338772016-08-25 16:07:36 +0900980 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
981 cfg->voltages |= host->voltages;
982
Faiz Abbas3ff634d2020-07-23 09:42:19 +0530983 if (caps & SDHCI_CAN_DO_HISPD)
984 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
985
986 cfg->host_caps |= MMC_MODE_4BIT;
Jaehoon Chungbc00a542016-12-30 15:30:21 +0900987
988 /* Since Host Controller Version3.0 */
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900989 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chung665152e2016-12-30 15:30:11 +0900990 if (!(caps & SDHCI_CAN_DO_8BIT))
991 cfg->host_caps &= ~MMC_MODE_8BIT;
Jagannadha Sutradharudu Teki08706be2013-05-21 15:01:36 +0530992 }
Siva Durga Prasad Paladugub0fbb492016-01-12 15:12:15 +0530993
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100994 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
995 cfg->host_caps &= ~MMC_MODE_HS;
996 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
997 }
998
Ashok Reddy Soma61e0df92020-10-23 04:58:57 -0600999 if (!(cfg->voltages & MMC_VDD_165_195) ||
1000 (host->quirks & SDHCI_QUIRK_NO_1_8_V))
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +05301001 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
1002 SDHCI_SUPPORT_DDR50);
1003
1004 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
1005 SDHCI_SUPPORT_DDR50))
1006 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
1007
1008 if (caps_1 & SDHCI_SUPPORT_SDR104) {
1009 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
1010 /*
1011 * SD3.0: SDR104 is supported so (for eMMC) the caps2
1012 * field can be promoted to support HS200.
1013 */
1014 cfg->host_caps |= MMC_CAP(MMC_HS_200);
1015 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
1016 cfg->host_caps |= MMC_CAP(UHS_SDR50);
1017 }
1018
Ashok Reddy Somae9f087e2023-01-10 04:31:23 -07001019 if ((host->quirks & SDHCI_QUIRK_CAPS_BIT63_FOR_HS400) &&
1020 (caps_1 & SDHCI_SUPPORT_HS400))
1021 cfg->host_caps |= MMC_CAP(MMC_HS_400);
1022
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +05301023 if (caps_1 & SDHCI_SUPPORT_DDR50)
1024 cfg->host_caps |= MMC_CAP(UHS_DDR50);
1025
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +09001026 if (host->host_caps)
1027 cfg->host_caps |= host->host_caps;
Pantelis Antoniou2c850462014-03-11 19:34:20 +02001028
Simon Glassb0842072016-06-12 23:30:27 -06001029 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
1030
1031 return 0;
1032}
1033
Simon Glassb97f0fa2016-06-12 23:30:28 -06001034#ifdef CONFIG_BLK
1035int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
1036{
1037 return mmc_bind(dev, mmc, cfg);
1038}
1039#else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +01001040int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Simon Glassb0842072016-06-12 23:30:27 -06001041{
Masahiro Yamadada957dd2016-08-25 16:07:35 +09001042 int ret;
1043
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +01001044 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamadada957dd2016-08-25 16:07:35 +09001045 if (ret)
1046 return ret;
Simon Glassb0842072016-06-12 23:30:27 -06001047
Pantelis Antoniou2c850462014-03-11 19:34:20 +02001048 host->mmc = mmc_create(&host->cfg, host);
1049 if (host->mmc == NULL) {
1050 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +09001051 return -ENOMEM;
Pantelis Antoniou2c850462014-03-11 19:34:20 +02001052 }
Lei Wen142c8f92011-06-28 21:50:06 +00001053
1054 return 0;
1055}
Simon Glassb97f0fa2016-06-12 23:30:28 -06001056#endif