blob: bf989a594f7e38c85262b9a56d6e4a8ceb592871 [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
10#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070011#include <cpu_func.h>
Faiz Abbasf08f9d72019-06-11 00:43:34 +053012#include <dm.h>
Simon Glassb0842072016-06-12 23:30:27 -060013#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Lei Wen142c8f92011-06-28 21:50:06 +000015#include <malloc.h>
16#include <mmc.h>
17#include <sdhci.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>
Jaehoon Chung27685932020-03-27 13:08:00 +090022#include <phys2bus.h>
Faiz Abbas6ede1212021-02-04 15:10:46 +053023#include <power/regulator.h>
Lei Wen142c8f92011-06-28 21:50:06 +000024
Lei Wen142c8f92011-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 Rambo43558132013-12-19 15:13:25 -080034 printf("%s: Reset 0x%x never completed.\n",
35 __func__, (int)mask);
Lei Wen142c8f92011-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 Abbas4c082a62019-04-16 23:06:58 +053072
Faiz Abbas4c082a62019-04-16 23:06:58 +053073#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas87102502019-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 Julienne248a8f02021-01-12 13:55:29 +010077 dma_addr_t dma_addr;
Jaehoon Chungf77f0582012-09-20 20:31:55 +000078 unsigned char ctrl;
Masahiro Yamada97e7e822020-02-14 16:40:26 +090079 void *buf;
Faiz Abbas87102502019-04-16 23:06:57 +053080
81 if (data->flags == MMC_DATA_READ)
Masahiro Yamada97e7e822020-02-14 16:40:26 +090082 buf = data->dest;
Faiz Abbas87102502019-04-16 23:06:57 +053083 else
Masahiro Yamada97e7e822020-02-14 16:40:26 +090084 buf = (void *)data->src;
Faiz Abbas87102502019-04-16 23:06:57 +053085
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +000086 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chungf77f0582012-09-20 20:31:55 +000087 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Faiz Abbas4c082a62019-04-16 23:06:58 +053088 if (host->flags & USE_ADMA64)
89 ctrl |= SDHCI_CTRL_ADMA64;
90 else if (host->flags & USE_ADMA)
91 ctrl |= SDHCI_CTRL_ADMA32;
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +000092 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Faiz Abbas87102502019-04-16 23:06:57 +053093
Masahiro Yamada97e7e822020-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 Abbas4c082a62019-04-16 23:06:58 +0530107 if (host->flags & USE_SDMA) {
Nicolas Saenz Julienne248a8f02021-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 Walle02016c62020-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 Abbas4c082a62019-04-16 23:06:58 +0530115
Masahiro Yamada97eda292020-02-14 16:40:23 +0900116 sdhci_writel(host, lower_32_bits(host->adma_addr),
117 SDHCI_ADMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530118 if (host->flags & USE_ADMA64)
Masahiro Yamada97eda292020-02-14 16:40:23 +0900119 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas4c082a62019-04-16 23:06:58 +0530120 SDHCI_ADMA_ADDRESS_HI);
121 }
Michael Walle02016c62020-09-23 12:42:51 +0200122#endif
Faiz Abbas87102502019-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{}
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000128#endif
Faiz Abbas87102502019-04-16 23:06:57 +0530129static 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 Wen142c8f92011-06-28 21:50:06 +0000134
Jaehoon Chung30686bd2012-09-20 20:31:54 +0000135 timeout = 1000000;
Lei Wen142c8f92011-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 Yamada45256c42017-12-30 02:00:12 +0900141 pr_debug("%s: Error detected in status(0x%X)!\n",
142 __func__, stat);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900143 return -EIO;
Lei Wen142c8f92011-06-28 21:50:06 +0000144 }
Alex Deymod9b70232017-04-02 01:24:34 -0700145 if (!transfer_done && (stat & rdy)) {
Lei Wen142c8f92011-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 Deymod9b70232017-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 Wen142c8f92011-06-28 21:50:06 +0000159 }
Faiz Abbas4c082a62019-04-16 23:06:58 +0530160 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas87102502019-04-16 23:06:57 +0530161 (stat & SDHCI_INT_DMA_END)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000162 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas4c082a62019-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 Julienne248a8f02021-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 Abbas4c082a62019-04-16 23:06:58 +0530170 }
Lei Wen142c8f92011-06-28 21:50:06 +0000171 }
Lei Wen6c13c662011-10-08 04:14:57 +0000172 if (timeout-- > 0)
173 udelay(10);
174 else {
Darwin Rambo43558132013-12-19 15:13:25 -0800175 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900176 return -ETIMEDOUT;
Lei Wen6c13c662011-10-08 04:14:57 +0000177 }
Lei Wen142c8f92011-06-28 21:50:06 +0000178 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900179
Yuezhang.Mo@sony.com1f838f62021-01-14 05:46:50 +0000180#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Masahiro Yamadacf61a5f2020-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.com1f838f62021-01-14 05:46:50 +0000183#endif
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900184
Lei Wen142c8f92011-06-28 21:50:06 +0000185 return 0;
186}
187
Przemyslaw Marczakadccccf2013-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 Yamada96250112016-08-25 16:07:39 +0900193 * Each function call will use last timeout value.
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200194 */
Masahiro Yamada96250112016-08-25 16:07:39 +0900195#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad4512312016-08-25 16:07:38 +0900196#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed4780832016-06-29 13:42:01 -0700197#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200198
Simon Glasseba48f92017-07-29 11:35:31 -0600199#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600200static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
201 struct mmc_data *data)
202{
203 struct mmc *mmc = mmc_get_mmc_dev(dev);
204
205#else
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200206static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
Simon Glassb97f0fa2016-06-12 23:30:28 -0600207 struct mmc_data *data)
Lei Wen142c8f92011-06-28 21:50:06 +0000208{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600209#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200210 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000211 unsigned int stat = 0;
212 int ret = 0;
213 int trans_bytes = 0, is_aligned = 1;
214 u32 mask, flags, mode;
Faiz Abbas87102502019-04-16 23:06:57 +0530215 unsigned int time = 0;
Simon Glass97c78e82016-05-14 14:03:04 -0600216 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumardbad7b42018-05-03 12:20:54 +0530217 ulong start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000218
Faiz Abbas87102502019-04-16 23:06:57 +0530219 host->start_addr = 0;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200220 /* Timeout unit - ms */
Masahiro Yamadad4512312016-08-25 16:07:38 +0900221 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000222
Lei Wen142c8f92011-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 Paladugudb620bd2018-04-19 12:37:05 +0530227 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530228 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
229 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wen142c8f92011-06-28 21:50:06 +0000230 mask &= ~SDHCI_DATA_INHIBIT;
231
232 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200233 if (time >= cmd_timeout) {
Darwin Rambo43558132013-12-19 15:13:25 -0800234 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada96250112016-08-25 16:07:39 +0900235 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczakadccccf2013-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 Chung7825d202016-07-19 16:33:36 +0900241 return -ECOMM;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200242 }
Lei Wen142c8f92011-06-28 21:50:06 +0000243 }
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200244 time++;
Lei Wen142c8f92011-06-28 21:50:06 +0000245 udelay(1000);
246 }
247
Jorge Ramirez-Ortiz65da8be2017-11-02 15:10:21 +0100248 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
249
Lei Wen142c8f92011-06-28 21:50:06 +0000250 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugub97e99f2018-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 Paladugudb620bd2018-04-19 12:37:05 +0530253 mask = SDHCI_INT_DATA_AVAIL;
254
Lei Wen142c8f92011-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.com05236432021-03-17 06:44:37 +0000261 mask |= SDHCI_INT_DATA_END;
Lei Wen142c8f92011-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 Paladugu5d88ba72018-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 Wen142c8f92011-06-28 21:50:06 +0000271 flags |= SDHCI_CMD_DATA;
272
Darwin Rambo43558132013-12-19 15:13:25 -0800273 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardt730636b2017-11-10 21:13:34 +0100274 if (data) {
Lei Wen142c8f92011-06-28 21:50:06 +0000275 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
276 mode = SDHCI_TRNS_BLK_CNT_EN;
277 trans_bytes = data->blocks * data->blocksize;
278 if (data->blocks > 1)
279 mode |= SDHCI_TRNS_MULTI;
280
281 if (data->flags == MMC_DATA_READ)
282 mode |= SDHCI_TRNS_READ;
283
Faiz Abbas4c082a62019-04-16 23:06:58 +0530284 if (host->flags & USE_DMA) {
Faiz Abbas87102502019-04-16 23:06:57 +0530285 mode |= SDHCI_TRNS_DMA;
286 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000287 }
288
Lei Wen142c8f92011-06-28 21:50:06 +0000289 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
290 data->blocksize),
291 SDHCI_BLOCK_SIZE);
292 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
293 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu8e5db912015-03-23 17:57:00 -0500294 } else if (cmd->resp_type & MMC_RSP_BUSY) {
295 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000296 }
297
298 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wen142c8f92011-06-28 21:50:06 +0000299 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese42817a42015-06-29 14:58:08 +0200300 start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000301 do {
302 stat = sdhci_readl(host, SDHCI_INT_STATUS);
303 if (stat & SDHCI_INT_ERROR)
304 break;
Lei Wen142c8f92011-06-28 21:50:06 +0000305
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900306 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
307 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
308 return 0;
309 } else {
310 printf("%s: Timeout for status update!\n",
311 __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900312 return -ETIMEDOUT;
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900313 }
Jaehoon Chung89237a82012-04-23 02:36:25 +0000314 }
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900315 } while ((stat & mask) != mask);
Jaehoon Chung89237a82012-04-23 02:36:25 +0000316
Lei Wen142c8f92011-06-28 21:50:06 +0000317 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
318 sdhci_cmd_done(host, cmd);
319 sdhci_writel(host, mask, SDHCI_INT_STATUS);
320 } else
321 ret = -1;
322
323 if (!ret && data)
Faiz Abbas87102502019-04-16 23:06:57 +0530324 ret = sdhci_transfer_data(host, data);
Lei Wen142c8f92011-06-28 21:50:06 +0000325
Tushar Behera0fba4c22012-09-20 20:31:57 +0000326 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
327 udelay(1000);
328
Lei Wen142c8f92011-06-28 21:50:06 +0000329 stat = sdhci_readl(host, SDHCI_INT_STATUS);
330 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
331 if (!ret) {
332 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
333 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900334 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000335 return 0;
336 }
337
338 sdhci_reset(host, SDHCI_RESET_CMD);
339 sdhci_reset(host, SDHCI_RESET_DATA);
340 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung7825d202016-07-19 16:33:36 +0900341 return -ETIMEDOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000342 else
Jaehoon Chung7825d202016-07-19 16:33:36 +0900343 return -ECOMM;
Lei Wen142c8f92011-06-28 21:50:06 +0000344}
345
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530346#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
347static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
348{
349 int err;
350 struct mmc *mmc = mmc_get_mmc_dev(dev);
351 struct sdhci_host *host = mmc->priv;
352
353 debug("%s\n", __func__);
354
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300355 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530356 err = host->ops->platform_execute_tuning(mmc, opcode);
357 if (err)
358 return err;
359 return 0;
360 }
361 return 0;
362}
363#endif
Faiz Abbasab619662019-06-11 00:43:35 +0530364int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000365{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200366 struct sdhci_host *host = mmc->priv;
Stefan Roesee9161032016-12-12 08:34:42 +0100367 unsigned int div, clk = 0, timeout;
Ashok Reddy Soma6b677782021-08-02 23:20:41 -0600368 int ret;
Wenyou Yang09456d92015-09-22 14:59:25 +0800369
370 /* Wait max 20 ms */
371 timeout = 200;
372 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
373 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
374 if (timeout == 0) {
375 printf("%s: Timeout to wait cmd & data inhibit\n",
376 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900377 return -EBUSY;
Wenyou Yang09456d92015-09-22 14:59:25 +0800378 }
379
380 timeout--;
381 udelay(100);
382 }
Lei Wen142c8f92011-06-28 21:50:06 +0000383
Stefan Roesee9161032016-12-12 08:34:42 +0100384 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000385
386 if (clock == 0)
387 return 0;
388
Ashok Reddy Soma6b677782021-08-02 23:20:41 -0600389 if (host->ops && host->ops->set_delay) {
390 ret = host->ops->set_delay(host);
391 if (ret) {
392 printf("%s: Error while setting tap delay\n", __func__);
393 return ret;
394 }
395 }
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530396
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900397 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800398 /*
399 * Check if the Host Controller supports Programmable Clock
400 * Mode.
401 */
402 if (host->clk_mul) {
403 for (div = 1; div <= 1024; div++) {
Wenyou Yangab877fe2017-04-26 09:32:30 +0800404 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000405 break;
406 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800407
408 /*
409 * Set Programmable Clock Mode in the Clock
410 * Control register.
411 */
412 clk = SDHCI_PROG_CLOCK_MODE;
413 div--;
414 } else {
415 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100416 if (host->max_clk <= clock) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800417 div = 1;
418 } else {
419 for (div = 2;
420 div < SDHCI_MAX_DIV_SPEC_300;
421 div += 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100422 if ((host->max_clk / div) <= clock)
Wenyou Yang3d734042016-09-18 09:01:22 +0800423 break;
424 }
425 }
426 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000427 }
428 } else {
429 /* Version 2.00 divisors must be a power of 2. */
430 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100431 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000432 break;
433 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800434 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000435 }
Lei Wen142c8f92011-06-28 21:50:06 +0000436
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900437 if (host->ops && host->ops->set_clock)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900438 host->ops->set_clock(host, div);
Jaehoon Chungb1929ea2012-08-30 16:24:11 +0000439
Wenyou Yang3d734042016-09-18 09:01:22 +0800440 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000441 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
442 << SDHCI_DIVIDER_HI_SHIFT;
443 clk |= SDHCI_CLOCK_INT_EN;
444 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
445
446 /* Wait max 20 ms */
447 timeout = 20;
448 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
449 & SDHCI_CLOCK_INT_STABLE)) {
450 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -0800451 printf("%s: Internal clock never stabilised.\n",
452 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900453 return -EBUSY;
Lei Wen142c8f92011-06-28 21:50:06 +0000454 }
455 timeout--;
456 udelay(1000);
457 }
458
459 clk |= SDHCI_CLOCK_CARD_EN;
460 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
461 return 0;
462}
463
464static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
465{
466 u8 pwr = 0;
467
468 if (power != (unsigned short)-1) {
469 switch (1 << power) {
470 case MMC_VDD_165_195:
471 pwr = SDHCI_POWER_180;
472 break;
473 case MMC_VDD_29_30:
474 case MMC_VDD_30_31:
475 pwr = SDHCI_POWER_300;
476 break;
477 case MMC_VDD_32_33:
478 case MMC_VDD_33_34:
479 pwr = SDHCI_POWER_330;
480 break;
481 }
482 }
483
484 if (pwr == 0) {
485 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
486 return;
487 }
488
489 pwr |= SDHCI_POWER_ON;
490
491 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
492}
493
Faiz Abbas2eddc002019-06-11 00:43:40 +0530494void sdhci_set_uhs_timing(struct sdhci_host *host)
495{
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900496 struct mmc *mmc = host->mmc;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530497 u32 reg;
498
499 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
500 reg &= ~SDHCI_CTRL_UHS_MASK;
501
502 switch (mmc->selected_mode) {
503 case UHS_SDR50:
504 case MMC_HS_52:
505 reg |= SDHCI_CTRL_UHS_SDR50;
506 break;
507 case UHS_DDR50:
508 case MMC_DDR_52:
509 reg |= SDHCI_CTRL_UHS_DDR50;
510 break;
511 case UHS_SDR104:
512 case MMC_HS_200:
513 reg |= SDHCI_CTRL_UHS_SDR104;
514 break;
Faiz Abbas9bf56ea2021-04-05 20:14:28 +0530515 case MMC_HS_400:
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300516 case MMC_HS_400_ES:
Faiz Abbas9bf56ea2021-04-05 20:14:28 +0530517 reg |= SDHCI_CTRL_HS400;
518 break;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530519 default:
520 reg |= SDHCI_CTRL_UHS_SDR12;
521 }
522
523 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
524}
525
Faiz Abbas6ede1212021-02-04 15:10:46 +0530526static void sdhci_set_voltage(struct sdhci_host *host)
527{
528 if (IS_ENABLED(CONFIG_MMC_IO_VOLTAGE)) {
529 struct mmc *mmc = (struct mmc *)host->mmc;
530 u32 ctrl;
531
532 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
533
534 switch (mmc->signal_voltage) {
535 case MMC_SIGNAL_VOLTAGE_330:
536#if CONFIG_IS_ENABLED(DM_REGULATOR)
537 if (mmc->vqmmc_supply) {
538 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
539 pr_err("failed to disable vqmmc-supply\n");
540 return;
541 }
542
543 if (regulator_set_value(mmc->vqmmc_supply, 3300000)) {
544 pr_err("failed to set vqmmc-voltage to 3.3V\n");
545 return;
546 }
547
548 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
549 pr_err("failed to enable vqmmc-supply\n");
550 return;
551 }
552 }
553#endif
554 if (IS_SD(mmc)) {
555 ctrl &= ~SDHCI_CTRL_VDD_180;
556 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
557 }
558
559 /* Wait for 5ms */
560 mdelay(5);
561
562 /* 3.3V regulator output should be stable within 5 ms */
563 if (IS_SD(mmc)) {
564 if (ctrl & SDHCI_CTRL_VDD_180) {
565 pr_err("3.3V regulator output did not become stable\n");
566 return;
567 }
568 }
569
570 break;
571 case MMC_SIGNAL_VOLTAGE_180:
572#if CONFIG_IS_ENABLED(DM_REGULATOR)
573 if (mmc->vqmmc_supply) {
574 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
575 pr_err("failed to disable vqmmc-supply\n");
576 return;
577 }
578
579 if (regulator_set_value(mmc->vqmmc_supply, 1800000)) {
580 pr_err("failed to set vqmmc-voltage to 1.8V\n");
581 return;
582 }
583
584 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
585 pr_err("failed to enable vqmmc-supply\n");
586 return;
587 }
588 }
589#endif
590 if (IS_SD(mmc)) {
591 ctrl |= SDHCI_CTRL_VDD_180;
592 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
593 }
594
595 /* Wait for 5 ms */
596 mdelay(5);
597
598 /* 1.8V regulator output has to be stable within 5 ms */
599 if (IS_SD(mmc)) {
600 if (!(ctrl & SDHCI_CTRL_VDD_180)) {
601 pr_err("1.8V regulator output did not become stable\n");
602 return;
603 }
604 }
605
606 break;
607 default:
608 /* No signal voltage switch required */
609 return;
610 }
611 }
612}
613
614void sdhci_set_control_reg(struct sdhci_host *host)
615{
616 sdhci_set_voltage(host);
617 sdhci_set_uhs_timing(host);
618}
619
Simon Glasseba48f92017-07-29 11:35:31 -0600620#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600621static int sdhci_set_ios(struct udevice *dev)
622{
623 struct mmc *mmc = mmc_get_mmc_dev(dev);
624#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900625static int sdhci_set_ios(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000626{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600627#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000628 u32 ctrl;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200629 struct sdhci_host *host = mmc->priv;
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530630 bool no_hispd_bit = false;
Lei Wen142c8f92011-06-28 21:50:06 +0000631
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900632 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900633 host->ops->set_control_reg(host);
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000634
Lei Wen142c8f92011-06-28 21:50:06 +0000635 if (mmc->clock != host->clock)
636 sdhci_set_clock(mmc, mmc->clock);
637
Siva Durga Prasad Paladugu9fccd8a2018-04-19 12:37:04 +0530638 if (mmc->clk_disable)
639 sdhci_set_clock(mmc, 0);
640
Lei Wen142c8f92011-06-28 21:50:06 +0000641 /* Set bus width */
642 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
643 if (mmc->bus_width == 8) {
644 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900645 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
646 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000647 ctrl |= SDHCI_CTRL_8BITBUS;
648 } else {
Matt Reimer9651f592015-02-19 11:22:53 -0700649 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
650 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000651 ctrl &= ~SDHCI_CTRL_8BITBUS;
652 if (mmc->bus_width == 4)
653 ctrl |= SDHCI_CTRL_4BITBUS;
654 else
655 ctrl &= ~SDHCI_CTRL_4BITBUS;
656 }
657
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100658 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530659 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)) {
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000660 ctrl &= ~SDHCI_CTRL_HISPD;
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530661 no_hispd_bit = true;
662 }
663
664 if (!no_hispd_bit) {
665 if (mmc->selected_mode == MMC_HS ||
666 mmc->selected_mode == SD_HS ||
667 mmc->selected_mode == MMC_DDR_52 ||
668 mmc->selected_mode == MMC_HS_200 ||
669 mmc->selected_mode == MMC_HS_400 ||
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300670 mmc->selected_mode == MMC_HS_400_ES ||
Jagan Tekie1d8aa72020-06-18 19:33:12 +0530671 mmc->selected_mode == UHS_SDR25 ||
672 mmc->selected_mode == UHS_SDR50 ||
673 mmc->selected_mode == UHS_SDR104 ||
674 mmc->selected_mode == UHS_DDR50)
675 ctrl |= SDHCI_CTRL_HISPD;
676 else
677 ctrl &= ~SDHCI_CTRL_HISPD;
678 }
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000679
Lei Wen142c8f92011-06-28 21:50:06 +0000680 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900681
Stefan Roesea3554ef2016-12-12 08:24:56 +0100682 /* If available, call the driver specific "post" set_ios() function */
683 if (host->ops && host->ops->set_ios_post)
Faiz Abbas375acf82019-06-11 00:43:37 +0530684 return host->ops->set_ios_post(host);
Stefan Roesea3554ef2016-12-12 08:24:56 +0100685
Simon Glassb97f0fa2016-06-12 23:30:28 -0600686 return 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000687}
688
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200689static int sdhci_init(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000690{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200691 struct sdhci_host *host = mmc->priv;
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200692#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
693 struct udevice *dev = mmc->dev;
694
Baruch Siach6b907192019-07-22 19:14:06 +0300695 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200696 &host->cd_gpio, GPIOD_IS_IN);
697#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000698
Masahiro Yamadaea04d902016-08-25 16:07:34 +0900699 sdhci_reset(host, SDHCI_RESET_ALL);
700
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900701#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
702 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamada32d12132020-02-14 16:40:22 +0900703 /*
704 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
705 * is defined.
706 */
707 host->force_align_buffer = true;
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900708#else
709 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
710 host->align_buffer = memalign(8, 512 * 1024);
711 if (!host->align_buffer) {
Darwin Rambo43558132013-12-19 15:13:25 -0800712 printf("%s: Aligned buffer alloc failed!!!\n",
713 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900714 return -ENOMEM;
Lei Wen142c8f92011-06-28 21:50:06 +0000715 }
716 }
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900717#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000718
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200719 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000720
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900721 if (host->ops && host->ops->get_cd)
Jaehoon Chung730a5952016-12-30 15:30:15 +0900722 host->ops->get_cd(host);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000723
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000724 /* Enable only interrupts served by the SD controller */
Darwin Rambo43558132013-12-19 15:13:25 -0800725 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
726 SDHCI_INT_ENABLE);
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000727 /* Mask all sdhci interrupt sources */
728 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wen142c8f92011-06-28 21:50:06 +0000729
Lei Wen142c8f92011-06-28 21:50:06 +0000730 return 0;
731}
732
Simon Glasseba48f92017-07-29 11:35:31 -0600733#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600734int sdhci_probe(struct udevice *dev)
735{
736 struct mmc *mmc = mmc_get_mmc_dev(dev);
737
738 return sdhci_init(mmc);
739}
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200740
Faiz Abbasd2229212020-02-26 13:44:31 +0530741static int sdhci_deferred_probe(struct udevice *dev)
742{
743 int err;
744 struct mmc *mmc = mmc_get_mmc_dev(dev);
745 struct sdhci_host *host = mmc->priv;
746
747 if (host->ops && host->ops->deferred_probe) {
748 err = host->ops->deferred_probe(host);
749 if (err)
750 return err;
751 }
752 return 0;
753}
754
Baruch Siach4c280a92019-11-03 12:00:27 +0200755static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200756{
757 struct mmc *mmc = mmc_get_mmc_dev(dev);
758 struct sdhci_host *host = mmc->priv;
759 int value;
760
761 /* If nonremovable, assume that the card is always present. */
762 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
763 return 1;
764 /* If polling, assume that the card is always present. */
765 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
766 return 1;
767
768#if CONFIG_IS_ENABLED(DM_GPIO)
769 value = dm_gpio_get_value(&host->cd_gpio);
770 if (value >= 0) {
771 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
772 return !value;
773 else
774 return value;
775 }
776#endif
777 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
778 SDHCI_CARD_PRESENT);
779 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
780 return !value;
781 else
782 return value;
783}
784
Stephen Carlson8cd31282021-08-17 12:46:41 -0700785static int sdhci_wait_dat0(struct udevice *dev, int state,
786 int timeout_us)
787{
788 int tmp;
789 struct mmc *mmc = mmc_get_mmc_dev(dev);
790 struct sdhci_host *host = mmc->priv;
791 unsigned long timeout = timer_get_us() + timeout_us;
792
793 // readx_poll_timeout is unsuitable because sdhci_readl accepts
794 // two arguments
795 do {
796 tmp = sdhci_readl(host, SDHCI_PRESENT_STATE);
797 if (!!(tmp & SDHCI_DATA_0_LVL_MASK) == !!state)
798 return 0;
799 } while (!timeout_us || !time_after(timer_get_us(), timeout));
800
801 return -ETIMEDOUT;
802}
803
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300804#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
805static int sdhci_set_enhanced_strobe(struct udevice *dev)
806{
807 struct mmc *mmc = mmc_get_mmc_dev(dev);
808 struct sdhci_host *host = mmc->priv;
809
810 if (host->ops && host->ops->set_enhanced_strobe)
811 return host->ops->set_enhanced_strobe(host);
812
813 return -ENOTSUPP;
814}
815#endif
816
Simon Glassb97f0fa2016-06-12 23:30:28 -0600817const struct dm_mmc_ops sdhci_ops = {
818 .send_cmd = sdhci_send_command,
819 .set_ios = sdhci_set_ios,
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200820 .get_cd = sdhci_get_cd,
Faiz Abbasd2229212020-02-26 13:44:31 +0530821 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530822#ifdef MMC_SUPPORTS_TUNING
823 .execute_tuning = sdhci_execute_tuning,
824#endif
Stephen Carlson8cd31282021-08-17 12:46:41 -0700825 .wait_dat0 = sdhci_wait_dat0,
Alper Nebi Yasak2084f8c2022-03-15 20:46:26 +0300826#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
827 .set_enhanced_strobe = sdhci_set_enhanced_strobe,
828#endif
Simon Glassb97f0fa2016-06-12 23:30:28 -0600829};
830#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200831static const struct mmc_ops sdhci_ops = {
832 .send_cmd = sdhci_send_command,
833 .set_ios = sdhci_set_ios,
834 .init = sdhci_init,
835};
Simon Glassb97f0fa2016-06-12 23:30:28 -0600836#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200837
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900838int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100839 u32 f_max, u32 f_min)
Lei Wen142c8f92011-06-28 21:50:06 +0000840{
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530841 u32 caps, caps_1 = 0;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530842#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200843 u64 dt_caps, dt_caps_mask;
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900844
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200845 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
846 "sdhci-caps-mask", 0);
847 dt_caps = dev_read_u64_default(host->mmc->dev,
848 "sdhci-caps", 0);
Michal Simek64341a62020-07-29 15:42:26 +0200849 caps = ~lower_32_bits(dt_caps_mask) &
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200850 sdhci_readl(host, SDHCI_CAPABILITIES);
Michal Simek64341a62020-07-29 15:42:26 +0200851 caps |= lower_32_bits(dt_caps);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530852#else
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900853 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530854#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200855 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900856
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900857#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungd9a86c12020-03-27 13:08:01 +0900858 if ((caps & SDHCI_CAN_DO_SDMA)) {
859 host->flags |= USE_SDMA;
860 } else {
Matthias Brugger44354b02020-05-12 12:02:06 +0200861 debug("%s: Your controller doesn't support SDMA!!\n",
862 __func__);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900863 }
864#endif
Faiz Abbas4c082a62019-04-16 23:06:58 +0530865#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
866 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
867 printf("%s: Your controller doesn't support SDMA!!\n",
868 __func__);
869 return -EINVAL;
870 }
Michael Walle02016c62020-09-23 12:42:51 +0200871 host->adma_desc_table = sdhci_adma_init();
Faiz Abbas4c082a62019-04-16 23:06:58 +0530872 host->adma_addr = (dma_addr_t)host->adma_desc_table;
Michael Walle02016c62020-09-23 12:42:51 +0200873
Faiz Abbas4c082a62019-04-16 23:06:58 +0530874#ifdef CONFIG_DMA_ADDR_T_64BIT
875 host->flags |= USE_ADMA64;
876#else
877 host->flags |= USE_ADMA;
878#endif
879#endif
Jaehoon Chung6c5b3592016-09-26 08:10:01 +0900880 if (host->quirks & SDHCI_QUIRK_REG32_RW)
881 host->version =
882 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
883 else
884 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900885
886 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600887#ifndef CONFIG_DM_MMC
Simon Glassb0842072016-06-12 23:30:27 -0600888 cfg->ops = &sdhci_ops;
Lei Wen142c8f92011-06-28 21:50:06 +0000889#endif
Wenyou Yangab877fe2017-04-26 09:32:30 +0800890
891 /* Check whether the clock multiplier is supported or not */
892 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530893#if CONFIG_IS_ENABLED(DM_MMC)
Michal Simek64341a62020-07-29 15:42:26 +0200894 caps_1 = ~upper_32_bits(dt_caps_mask) &
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200895 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Michal Simek64341a62020-07-29 15:42:26 +0200896 caps_1 |= upper_32_bits(dt_caps);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530897#else
Wenyou Yangab877fe2017-04-26 09:32:30 +0800898 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530899#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200900 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yangab877fe2017-04-26 09:32:30 +0800901 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
902 SDHCI_CLOCK_MUL_SHIFT;
903 }
904
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100905 if (host->max_clk == 0) {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900906 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100907 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600908 SDHCI_CLOCK_BASE_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000909 else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100910 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600911 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100912 host->max_clk *= 1000000;
Wenyou Yangab877fe2017-04-26 09:32:30 +0800913 if (host->clk_mul)
914 host->max_clk *= host->clk_mul;
Lei Wen142c8f92011-06-28 21:50:06 +0000915 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100916 if (host->max_clk == 0) {
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900917 printf("%s: Hardware doesn't specify base clock frequency\n",
918 __func__);
Simon Glassb0842072016-06-12 23:30:27 -0600919 return -EINVAL;
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900920 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100921 if (f_max && (f_max < host->max_clk))
922 cfg->f_max = f_max;
923 else
924 cfg->f_max = host->max_clk;
925 if (f_min)
926 cfg->f_min = f_min;
Lei Wen142c8f92011-06-28 21:50:06 +0000927 else {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900928 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glassb0842072016-06-12 23:30:27 -0600929 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
Lei Wen142c8f92011-06-28 21:50:06 +0000930 else
Simon Glassb0842072016-06-12 23:30:27 -0600931 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
Lei Wen142c8f92011-06-28 21:50:06 +0000932 }
Simon Glassb0842072016-06-12 23:30:27 -0600933 cfg->voltages = 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000934 if (caps & SDHCI_CAN_VDD_330)
Simon Glassb0842072016-06-12 23:30:27 -0600935 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Lei Wen142c8f92011-06-28 21:50:06 +0000936 if (caps & SDHCI_CAN_VDD_300)
Simon Glassb0842072016-06-12 23:30:27 -0600937 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
Lei Wen142c8f92011-06-28 21:50:06 +0000938 if (caps & SDHCI_CAN_VDD_180)
Simon Glassb0842072016-06-12 23:30:27 -0600939 cfg->voltages |= MMC_VDD_165_195;
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000940
Masahiro Yamada4b338772016-08-25 16:07:36 +0900941 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
942 cfg->voltages |= host->voltages;
943
Faiz Abbas3ff634d2020-07-23 09:42:19 +0530944 if (caps & SDHCI_CAN_DO_HISPD)
945 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
946
947 cfg->host_caps |= MMC_MODE_4BIT;
Jaehoon Chungbc00a542016-12-30 15:30:21 +0900948
949 /* Since Host Controller Version3.0 */
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900950 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chung665152e2016-12-30 15:30:11 +0900951 if (!(caps & SDHCI_CAN_DO_8BIT))
952 cfg->host_caps &= ~MMC_MODE_8BIT;
Jagannadha Sutradharudu Teki08706be2013-05-21 15:01:36 +0530953 }
Siva Durga Prasad Paladugub0fbb492016-01-12 15:12:15 +0530954
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100955 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
956 cfg->host_caps &= ~MMC_MODE_HS;
957 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
958 }
959
Ashok Reddy Soma61e0df92020-10-23 04:58:57 -0600960 if (!(cfg->voltages & MMC_VDD_165_195) ||
961 (host->quirks & SDHCI_QUIRK_NO_1_8_V))
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530962 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
963 SDHCI_SUPPORT_DDR50);
964
965 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
966 SDHCI_SUPPORT_DDR50))
967 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
968
969 if (caps_1 & SDHCI_SUPPORT_SDR104) {
970 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
971 /*
972 * SD3.0: SDR104 is supported so (for eMMC) the caps2
973 * field can be promoted to support HS200.
974 */
975 cfg->host_caps |= MMC_CAP(MMC_HS_200);
976 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
977 cfg->host_caps |= MMC_CAP(UHS_SDR50);
978 }
979
980 if (caps_1 & SDHCI_SUPPORT_DDR50)
981 cfg->host_caps |= MMC_CAP(UHS_DDR50);
982
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900983 if (host->host_caps)
984 cfg->host_caps |= host->host_caps;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200985
Simon Glassb0842072016-06-12 23:30:27 -0600986 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
987
988 return 0;
989}
990
Simon Glassb97f0fa2016-06-12 23:30:28 -0600991#ifdef CONFIG_BLK
992int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
993{
994 return mmc_bind(dev, mmc, cfg);
995}
996#else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100997int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Simon Glassb0842072016-06-12 23:30:27 -0600998{
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900999 int ret;
1000
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +01001001 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamadada957dd2016-08-25 16:07:35 +09001002 if (ret)
1003 return ret;
Simon Glassb0842072016-06-12 23:30:27 -06001004
Pantelis Antoniou2c850462014-03-11 19:34:20 +02001005 host->mmc = mmc_create(&host->cfg, host);
1006 if (host->mmc == NULL) {
1007 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +09001008 return -ENOMEM;
Pantelis Antoniou2c850462014-03-11 19:34:20 +02001009 }
Lei Wen142c8f92011-06-28 21:50:06 +00001010
1011 return 0;
1012}
Simon Glassb97f0fa2016-06-12 23:30:28 -06001013#endif