blob: ed0dc173253be10d923fa1c49e9c76b3cd791be0 [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{
Jaehoon Chung804c7f42012-09-20 20:31:55 +000077 unsigned char ctrl;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090078 void *buf;
Faiz Abbas6d6af202019-04-16 23:06:57 +053079
80 if (data->flags == MMC_DATA_READ)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090081 buf = data->dest;
Faiz Abbas6d6af202019-04-16 23:06:57 +053082 else
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090083 buf = (void *)data->src;
Faiz Abbas6d6af202019-04-16 23:06:57 +053084
Faiz Abbas37cb6262019-04-16 23:06:58 +053085 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
86 ctrl &= ~SDHCI_CTRL_DMA_MASK;
87 if (host->flags & USE_ADMA64)
88 ctrl |= SDHCI_CTRL_ADMA64;
89 else if (host->flags & USE_ADMA)
90 ctrl |= SDHCI_CTRL_ADMA32;
91 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
92
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090093 if (host->flags & USE_SDMA &&
94 (host->force_align_buffer ||
95 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
96 ((unsigned long)buf & 0x7) != 0x0))) {
97 *is_aligned = 0;
98 if (data->flags != MMC_DATA_READ)
99 memcpy(host->align_buffer, buf, trans_bytes);
100 buf = host->align_buffer;
101 }
102
103 host->start_addr = dma_map_single(buf, trans_bytes,
104 mmc_get_dma_dir(data));
105
Faiz Abbas37cb6262019-04-16 23:06:58 +0530106 if (host->flags & USE_SDMA) {
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900107 sdhci_writel(host, phys_to_bus((ulong)host->start_addr),
108 SDHCI_DMA_ADDRESS);
Michael Walle4d6a7732020-09-23 12:42:51 +0200109 }
110#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
111 else if (host->flags & (USE_ADMA | USE_ADMA64)) {
112 sdhci_prepare_adma_table(host->adma_desc_table, data,
113 host->start_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530114
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900115 sdhci_writel(host, lower_32_bits(host->adma_addr),
116 SDHCI_ADMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530117 if (host->flags & USE_ADMA64)
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900118 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530119 SDHCI_ADMA_ADDRESS_HI);
Faiz Abbas6d6af202019-04-16 23:06:57 +0530120 }
Michael Walle4d6a7732020-09-23 12:42:51 +0200121#endif
Faiz Abbas6d6af202019-04-16 23:06:57 +0530122}
123#else
124static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
125 int *is_aligned, int trans_bytes)
126{}
127#endif
128static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
129{
130 dma_addr_t start_addr = host->start_addr;
131 unsigned int stat, rdy, mask, timeout, block = 0;
132 bool transfer_done = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000133
Jaehoon Chung5d48e422012-09-20 20:31:54 +0000134 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +0000135 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
136 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
137 do {
138 stat = sdhci_readl(host, SDHCI_INT_STATUS);
139 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada61f2e5e2017-12-30 02:00:12 +0900140 pr_debug("%s: Error detected in status(0x%X)!\n",
141 __func__, stat);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900142 return -EIO;
Lei Wenaf62a552011-06-28 21:50:06 +0000143 }
Alex Deymo7dde50d2017-04-02 01:24:34 -0700144 if (!transfer_done && (stat & rdy)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000145 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
146 continue;
147 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
148 sdhci_transfer_pio(host, data);
149 data->dest += data->blocksize;
Alex Deymo7dde50d2017-04-02 01:24:34 -0700150 if (++block >= data->blocks) {
151 /* Keep looping until the SDHCI_INT_DATA_END is
152 * cleared, even if we finished sending all the
153 * blocks.
154 */
155 transfer_done = true;
156 continue;
157 }
Lei Wenaf62a552011-06-28 21:50:06 +0000158 }
Faiz Abbas37cb6262019-04-16 23:06:58 +0530159 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas6d6af202019-04-16 23:06:57 +0530160 (stat & SDHCI_INT_DMA_END)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000161 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530162 if (host->flags & USE_SDMA) {
163 start_addr &=
164 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
165 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900166 sdhci_writel(host, phys_to_bus((ulong)start_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530167 SDHCI_DMA_ADDRESS);
168 }
Lei Wenaf62a552011-06-28 21:50:06 +0000169 }
Lei Wena004abd2011-10-08 04:14:57 +0000170 if (timeout-- > 0)
171 udelay(10);
172 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800173 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900174 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000175 }
Lei Wenaf62a552011-06-28 21:50:06 +0000176 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamada4155ad92020-02-14 16:40:27 +0900177
178 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
179 mmc_get_dma_dir(data));
180
Lei Wenaf62a552011-06-28 21:50:06 +0000181 return 0;
182}
183
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200184/*
185 * No command will be sent by driver if card is busy, so driver must wait
186 * for card ready state.
187 * Every time when card is busy after timeout then (last) timeout value will be
188 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900189 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200190 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900191#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900192#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700193#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200194
Simon Glasse7881d82017-07-29 11:35:31 -0600195#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600196static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
197 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000198{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600199 struct mmc *mmc = mmc_get_mmc_dev(dev);
200
201#else
202static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
203 struct mmc_data *data)
204{
205#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200206 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000207 unsigned int stat = 0;
208 int ret = 0;
209 int trans_bytes = 0, is_aligned = 1;
210 u32 mask, flags, mode;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530211 unsigned int time = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600212 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumar36332b62018-05-03 12:20:54 +0530213 ulong start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000214
Faiz Abbas6d6af202019-04-16 23:06:57 +0530215 host->start_addr = 0;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200216 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900217 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000218
Lei Wenaf62a552011-06-28 21:50:06 +0000219 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
220
221 /* We shouldn't wait for data inihibit for stop commands, even
222 though they might use busy signaling */
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530223 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530224 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
225 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wenaf62a552011-06-28 21:50:06 +0000226 mask &= ~SDHCI_DATA_INHIBIT;
227
228 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200229 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800230 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900231 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200232 cmd_timeout += cmd_timeout;
233 printf("timeout increasing to: %u ms.\n",
234 cmd_timeout);
235 } else {
236 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900237 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200238 }
Lei Wenaf62a552011-06-28 21:50:06 +0000239 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200240 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000241 udelay(1000);
242 }
243
Jorge Ramirez-Ortiz713e6812017-11-02 15:10:21 +0100244 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
245
Lei Wenaf62a552011-06-28 21:50:06 +0000246 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530247 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
248 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530249 mask = SDHCI_INT_DATA_AVAIL;
250
Lei Wenaf62a552011-06-28 21:50:06 +0000251 if (!(cmd->resp_type & MMC_RSP_PRESENT))
252 flags = SDHCI_CMD_RESP_NONE;
253 else if (cmd->resp_type & MMC_RSP_136)
254 flags = SDHCI_CMD_RESP_LONG;
255 else if (cmd->resp_type & MMC_RSP_BUSY) {
256 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900257 if (data)
258 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000259 } else
260 flags = SDHCI_CMD_RESP_SHORT;
261
262 if (cmd->resp_type & MMC_RSP_CRC)
263 flags |= SDHCI_CMD_CRC;
264 if (cmd->resp_type & MMC_RSP_OPCODE)
265 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu434f9d42018-05-29 20:03:10 +0530266 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
267 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wenaf62a552011-06-28 21:50:06 +0000268 flags |= SDHCI_CMD_DATA;
269
Darwin Rambo30e6d972013-12-19 15:13:25 -0800270 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100271 if (data) {
Lei Wenaf62a552011-06-28 21:50:06 +0000272 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
273 mode = SDHCI_TRNS_BLK_CNT_EN;
274 trans_bytes = data->blocks * data->blocksize;
275 if (data->blocks > 1)
276 mode |= SDHCI_TRNS_MULTI;
277
278 if (data->flags == MMC_DATA_READ)
279 mode |= SDHCI_TRNS_READ;
280
Faiz Abbas37cb6262019-04-16 23:06:58 +0530281 if (host->flags & USE_DMA) {
Faiz Abbas6d6af202019-04-16 23:06:57 +0530282 mode |= SDHCI_TRNS_DMA;
283 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000284 }
285
Lei Wenaf62a552011-06-28 21:50:06 +0000286 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
287 data->blocksize),
288 SDHCI_BLOCK_SIZE);
289 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
290 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500291 } else if (cmd->resp_type & MMC_RSP_BUSY) {
292 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000293 }
294
295 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wenaf62a552011-06-28 21:50:06 +0000296 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200297 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000298 do {
299 stat = sdhci_readl(host, SDHCI_INT_STATUS);
300 if (stat & SDHCI_INT_ERROR)
301 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000302
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900303 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
304 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
305 return 0;
306 } else {
307 printf("%s: Timeout for status update!\n",
308 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900309 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900310 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000311 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900312 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000313
Lei Wenaf62a552011-06-28 21:50:06 +0000314 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
315 sdhci_cmd_done(host, cmd);
316 sdhci_writel(host, mask, SDHCI_INT_STATUS);
317 } else
318 ret = -1;
319
320 if (!ret && data)
Faiz Abbas6d6af202019-04-16 23:06:57 +0530321 ret = sdhci_transfer_data(host, data);
Lei Wenaf62a552011-06-28 21:50:06 +0000322
Tushar Behera13243f22012-09-20 20:31:57 +0000323 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
324 udelay(1000);
325
Lei Wenaf62a552011-06-28 21:50:06 +0000326 stat = sdhci_readl(host, SDHCI_INT_STATUS);
327 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
328 if (!ret) {
329 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
330 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900331 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000332 return 0;
333 }
334
335 sdhci_reset(host, SDHCI_RESET_CMD);
336 sdhci_reset(host, SDHCI_RESET_DATA);
337 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900338 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000339 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900340 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000341}
342
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530343#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
344static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
345{
346 int err;
347 struct mmc *mmc = mmc_get_mmc_dev(dev);
348 struct sdhci_host *host = mmc->priv;
349
350 debug("%s\n", __func__);
351
Ramon Friedb70fe962018-05-14 15:02:30 +0300352 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530353 err = host->ops->platform_execute_tuning(mmc, opcode);
354 if (err)
355 return err;
356 return 0;
357 }
358 return 0;
359}
360#endif
Faiz Abbas3966c7d2019-06-11 00:43:35 +0530361int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000362{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200363 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100364 unsigned int div, clk = 0, timeout;
Lei Wenaf62a552011-06-28 21:50:06 +0000365
Wenyou Yang79667b72015-09-22 14:59:25 +0800366 /* Wait max 20 ms */
367 timeout = 200;
368 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
369 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
370 if (timeout == 0) {
371 printf("%s: Timeout to wait cmd & data inhibit\n",
372 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900373 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800374 }
375
376 timeout--;
377 udelay(100);
378 }
379
Stefan Roese899fb9e2016-12-12 08:34:42 +0100380 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000381
382 if (clock == 0)
383 return 0;
384
Ramon Friedb70fe962018-05-14 15:02:30 +0300385 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530386 host->ops->set_delay(host);
387
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900388 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800389 /*
390 * Check if the Host Controller supports Programmable Clock
391 * Mode.
392 */
393 if (host->clk_mul) {
394 for (div = 1; div <= 1024; div++) {
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800395 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000396 break;
397 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800398
399 /*
400 * Set Programmable Clock Mode in the Clock
401 * Control register.
402 */
403 clk = SDHCI_PROG_CLOCK_MODE;
404 div--;
405 } else {
406 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100407 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800408 div = 1;
409 } else {
410 for (div = 2;
411 div < SDHCI_MAX_DIV_SPEC_300;
412 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100413 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800414 break;
415 }
416 }
417 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000418 }
419 } else {
420 /* Version 2.00 divisors must be a power of 2. */
421 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100422 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000423 break;
424 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800425 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000426 }
Lei Wenaf62a552011-06-28 21:50:06 +0000427
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900428 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900429 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000430
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800431 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000432 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
433 << SDHCI_DIVIDER_HI_SHIFT;
434 clk |= SDHCI_CLOCK_INT_EN;
435 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
436
437 /* Wait max 20 ms */
438 timeout = 20;
439 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
440 & SDHCI_CLOCK_INT_STABLE)) {
441 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800442 printf("%s: Internal clock never stabilised.\n",
443 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900444 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000445 }
446 timeout--;
447 udelay(1000);
448 }
449
450 clk |= SDHCI_CLOCK_CARD_EN;
451 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
452 return 0;
453}
454
455static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
456{
457 u8 pwr = 0;
458
459 if (power != (unsigned short)-1) {
460 switch (1 << power) {
461 case MMC_VDD_165_195:
462 pwr = SDHCI_POWER_180;
463 break;
464 case MMC_VDD_29_30:
465 case MMC_VDD_30_31:
466 pwr = SDHCI_POWER_300;
467 break;
468 case MMC_VDD_32_33:
469 case MMC_VDD_33_34:
470 pwr = SDHCI_POWER_330;
471 break;
472 }
473 }
474
475 if (pwr == 0) {
476 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
477 return;
478 }
479
480 pwr |= SDHCI_POWER_ON;
481
482 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
483}
484
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530485void sdhci_set_uhs_timing(struct sdhci_host *host)
486{
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900487 struct mmc *mmc = host->mmc;
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530488 u32 reg;
489
490 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
491 reg &= ~SDHCI_CTRL_UHS_MASK;
492
493 switch (mmc->selected_mode) {
494 case UHS_SDR50:
495 case MMC_HS_52:
496 reg |= SDHCI_CTRL_UHS_SDR50;
497 break;
498 case UHS_DDR50:
499 case MMC_DDR_52:
500 reg |= SDHCI_CTRL_UHS_DDR50;
501 break;
502 case UHS_SDR104:
503 case MMC_HS_200:
504 reg |= SDHCI_CTRL_UHS_SDR104;
505 break;
506 default:
507 reg |= SDHCI_CTRL_UHS_SDR12;
508 }
509
510 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
511}
512
Faiz Abbas43392b52021-02-04 15:10:46 +0530513static void sdhci_set_voltage(struct sdhci_host *host)
514{
515 if (IS_ENABLED(CONFIG_MMC_IO_VOLTAGE)) {
516 struct mmc *mmc = (struct mmc *)host->mmc;
517 u32 ctrl;
518
519 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
520
521 switch (mmc->signal_voltage) {
522 case MMC_SIGNAL_VOLTAGE_330:
523#if CONFIG_IS_ENABLED(DM_REGULATOR)
524 if (mmc->vqmmc_supply) {
525 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
526 pr_err("failed to disable vqmmc-supply\n");
527 return;
528 }
529
530 if (regulator_set_value(mmc->vqmmc_supply, 3300000)) {
531 pr_err("failed to set vqmmc-voltage to 3.3V\n");
532 return;
533 }
534
535 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
536 pr_err("failed to enable vqmmc-supply\n");
537 return;
538 }
539 }
540#endif
541 if (IS_SD(mmc)) {
542 ctrl &= ~SDHCI_CTRL_VDD_180;
543 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
544 }
545
546 /* Wait for 5ms */
547 mdelay(5);
548
549 /* 3.3V regulator output should be stable within 5 ms */
550 if (IS_SD(mmc)) {
551 if (ctrl & SDHCI_CTRL_VDD_180) {
552 pr_err("3.3V regulator output did not become stable\n");
553 return;
554 }
555 }
556
557 break;
558 case MMC_SIGNAL_VOLTAGE_180:
559#if CONFIG_IS_ENABLED(DM_REGULATOR)
560 if (mmc->vqmmc_supply) {
561 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, false)) {
562 pr_err("failed to disable vqmmc-supply\n");
563 return;
564 }
565
566 if (regulator_set_value(mmc->vqmmc_supply, 1800000)) {
567 pr_err("failed to set vqmmc-voltage to 1.8V\n");
568 return;
569 }
570
571 if (regulator_set_enable_if_allowed(mmc->vqmmc_supply, true)) {
572 pr_err("failed to enable vqmmc-supply\n");
573 return;
574 }
575 }
576#endif
577 if (IS_SD(mmc)) {
578 ctrl |= SDHCI_CTRL_VDD_180;
579 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
580 }
581
582 /* Wait for 5 ms */
583 mdelay(5);
584
585 /* 1.8V regulator output has to be stable within 5 ms */
586 if (IS_SD(mmc)) {
587 if (!(ctrl & SDHCI_CTRL_VDD_180)) {
588 pr_err("1.8V regulator output did not become stable\n");
589 return;
590 }
591 }
592
593 break;
594 default:
595 /* No signal voltage switch required */
596 return;
597 }
598 }
599}
600
601void sdhci_set_control_reg(struct sdhci_host *host)
602{
603 sdhci_set_voltage(host);
604 sdhci_set_uhs_timing(host);
605}
606
Simon Glasse7881d82017-07-29 11:35:31 -0600607#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600608static int sdhci_set_ios(struct udevice *dev)
609{
610 struct mmc *mmc = mmc_get_mmc_dev(dev);
611#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900612static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000613{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600614#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000615 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200616 struct sdhci_host *host = mmc->priv;
Jagan Tekif12341a2020-06-18 19:33:12 +0530617 bool no_hispd_bit = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000618
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900619 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900620 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000621
Lei Wenaf62a552011-06-28 21:50:06 +0000622 if (mmc->clock != host->clock)
623 sdhci_set_clock(mmc, mmc->clock);
624
Siva Durga Prasad Paladugu2a2d7ef2018-04-19 12:37:04 +0530625 if (mmc->clk_disable)
626 sdhci_set_clock(mmc, 0);
627
Lei Wenaf62a552011-06-28 21:50:06 +0000628 /* Set bus width */
629 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
630 if (mmc->bus_width == 8) {
631 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900632 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
633 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000634 ctrl |= SDHCI_CTRL_8BITBUS;
635 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700636 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
637 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000638 ctrl &= ~SDHCI_CTRL_8BITBUS;
639 if (mmc->bus_width == 4)
640 ctrl |= SDHCI_CTRL_4BITBUS;
641 else
642 ctrl &= ~SDHCI_CTRL_4BITBUS;
643 }
644
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100645 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
Jagan Tekif12341a2020-06-18 19:33:12 +0530646 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)) {
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000647 ctrl &= ~SDHCI_CTRL_HISPD;
Jagan Tekif12341a2020-06-18 19:33:12 +0530648 no_hispd_bit = true;
649 }
650
651 if (!no_hispd_bit) {
652 if (mmc->selected_mode == MMC_HS ||
653 mmc->selected_mode == SD_HS ||
654 mmc->selected_mode == MMC_DDR_52 ||
655 mmc->selected_mode == MMC_HS_200 ||
656 mmc->selected_mode == MMC_HS_400 ||
657 mmc->selected_mode == UHS_SDR25 ||
658 mmc->selected_mode == UHS_SDR50 ||
659 mmc->selected_mode == UHS_SDR104 ||
660 mmc->selected_mode == UHS_DDR50)
661 ctrl |= SDHCI_CTRL_HISPD;
662 else
663 ctrl &= ~SDHCI_CTRL_HISPD;
664 }
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000665
Lei Wenaf62a552011-06-28 21:50:06 +0000666 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900667
Stefan Roese210841c2016-12-12 08:24:56 +0100668 /* If available, call the driver specific "post" set_ios() function */
669 if (host->ops && host->ops->set_ios_post)
Faiz Abbasa8185c52019-06-11 00:43:37 +0530670 return host->ops->set_ios_post(host);
Stefan Roese210841c2016-12-12 08:24:56 +0100671
Simon Glassef1e4ed2016-06-12 23:30:28 -0600672 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000673}
674
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200675static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000676{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200677 struct sdhci_host *host = mmc->priv;
T Karthik Reddy451931e2019-06-25 13:39:03 +0200678#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
679 struct udevice *dev = mmc->dev;
680
Baruch Siach58d65d52019-07-22 19:14:06 +0300681 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy451931e2019-06-25 13:39:03 +0200682 &host->cd_gpio, GPIOD_IS_IN);
683#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000684
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900685 sdhci_reset(host, SDHCI_RESET_ALL);
686
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900687#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
688 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamadaf5df6aa2020-02-14 16:40:22 +0900689 /*
690 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
691 * is defined.
692 */
693 host->force_align_buffer = true;
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900694#else
695 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
696 host->align_buffer = memalign(8, 512 * 1024);
697 if (!host->align_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800698 printf("%s: Aligned buffer alloc failed!!!\n",
699 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900700 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000701 }
702 }
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900703#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000704
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200705 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000706
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900707 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900708 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000709
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000710 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800711 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
712 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000713 /* Mask all sdhci interrupt sources */
714 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000715
Lei Wenaf62a552011-06-28 21:50:06 +0000716 return 0;
717}
718
Simon Glasse7881d82017-07-29 11:35:31 -0600719#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600720int sdhci_probe(struct udevice *dev)
721{
722 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200723
Simon Glassef1e4ed2016-06-12 23:30:28 -0600724 return sdhci_init(mmc);
725}
726
Faiz Abbascb884342020-02-26 13:44:31 +0530727static int sdhci_deferred_probe(struct udevice *dev)
728{
729 int err;
730 struct mmc *mmc = mmc_get_mmc_dev(dev);
731 struct sdhci_host *host = mmc->priv;
732
733 if (host->ops && host->ops->deferred_probe) {
734 err = host->ops->deferred_probe(host);
735 if (err)
736 return err;
737 }
738 return 0;
739}
740
Baruch Siach1b716952019-11-03 12:00:27 +0200741static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyda18c622019-06-25 13:39:04 +0200742{
743 struct mmc *mmc = mmc_get_mmc_dev(dev);
744 struct sdhci_host *host = mmc->priv;
745 int value;
746
747 /* If nonremovable, assume that the card is always present. */
748 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
749 return 1;
750 /* If polling, assume that the card is always present. */
751 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
752 return 1;
753
754#if CONFIG_IS_ENABLED(DM_GPIO)
755 value = dm_gpio_get_value(&host->cd_gpio);
756 if (value >= 0) {
757 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
758 return !value;
759 else
760 return value;
761 }
762#endif
763 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
764 SDHCI_CARD_PRESENT);
765 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
766 return !value;
767 else
768 return value;
769}
770
Simon Glassef1e4ed2016-06-12 23:30:28 -0600771const struct dm_mmc_ops sdhci_ops = {
772 .send_cmd = sdhci_send_command,
773 .set_ios = sdhci_set_ios,
T Karthik Reddyda18c622019-06-25 13:39:04 +0200774 .get_cd = sdhci_get_cd,
Faiz Abbascb884342020-02-26 13:44:31 +0530775 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530776#ifdef MMC_SUPPORTS_TUNING
777 .execute_tuning = sdhci_execute_tuning,
778#endif
Simon Glassef1e4ed2016-06-12 23:30:28 -0600779};
780#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200781static const struct mmc_ops sdhci_ops = {
782 .send_cmd = sdhci_send_command,
783 .set_ios = sdhci_set_ios,
784 .init = sdhci_init,
785};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600786#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200787
Jaehoon Chung14bed522016-07-26 19:06:24 +0900788int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100789 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600790{
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530791 u32 caps, caps_1 = 0;
Faiz Abbas3d296362019-06-11 00:43:34 +0530792#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200793 u64 dt_caps, dt_caps_mask;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900794
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200795 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
796 "sdhci-caps-mask", 0);
797 dt_caps = dev_read_u64_default(host->mmc->dev,
798 "sdhci-caps", 0);
Michal Simekb5a33872020-07-29 15:42:26 +0200799 caps = ~lower_32_bits(dt_caps_mask) &
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200800 sdhci_readl(host, SDHCI_CAPABILITIES);
Michal Simekb5a33872020-07-29 15:42:26 +0200801 caps |= lower_32_bits(dt_caps);
Faiz Abbas3d296362019-06-11 00:43:34 +0530802#else
Jaehoon Chung14bed522016-07-26 19:06:24 +0900803 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbas3d296362019-06-11 00:43:34 +0530804#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200805 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900806
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900807#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungfabb3a42020-03-27 13:08:01 +0900808 if ((caps & SDHCI_CAN_DO_SDMA)) {
809 host->flags |= USE_SDMA;
810 } else {
Matthias Brugger7acdc9a2020-05-12 12:02:06 +0200811 debug("%s: Your controller doesn't support SDMA!!\n",
812 __func__);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900813 }
814#endif
Faiz Abbas37cb6262019-04-16 23:06:58 +0530815#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
816 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
817 printf("%s: Your controller doesn't support SDMA!!\n",
818 __func__);
819 return -EINVAL;
820 }
Michael Walle4d6a7732020-09-23 12:42:51 +0200821 host->adma_desc_table = sdhci_adma_init();
Faiz Abbas37cb6262019-04-16 23:06:58 +0530822 host->adma_addr = (dma_addr_t)host->adma_desc_table;
Michael Walle4d6a7732020-09-23 12:42:51 +0200823
Faiz Abbas37cb6262019-04-16 23:06:58 +0530824#ifdef CONFIG_DMA_ADDR_T_64BIT
825 host->flags |= USE_ADMA64;
826#else
827 host->flags |= USE_ADMA;
828#endif
829#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900830 if (host->quirks & SDHCI_QUIRK_REG32_RW)
831 host->version =
832 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
833 else
834 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900835
836 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600837#ifndef CONFIG_DM_MMC
Simon Glass2a809092016-06-12 23:30:27 -0600838 cfg->ops = &sdhci_ops;
839#endif
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800840
841 /* Check whether the clock multiplier is supported or not */
842 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbas3d296362019-06-11 00:43:34 +0530843#if CONFIG_IS_ENABLED(DM_MMC)
Michal Simekb5a33872020-07-29 15:42:26 +0200844 caps_1 = ~upper_32_bits(dt_caps_mask) &
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200845 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Michal Simekb5a33872020-07-29 15:42:26 +0200846 caps_1 |= upper_32_bits(dt_caps);
Faiz Abbas3d296362019-06-11 00:43:34 +0530847#else
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800848 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbas3d296362019-06-11 00:43:34 +0530849#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200850 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800851 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
852 SDHCI_CLOCK_MUL_SHIFT;
853 }
854
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100855 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900856 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100857 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600858 SDHCI_CLOCK_BASE_SHIFT;
859 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100860 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600861 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100862 host->max_clk *= 1000000;
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800863 if (host->clk_mul)
864 host->max_clk *= host->clk_mul;
Simon Glass2a809092016-06-12 23:30:27 -0600865 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100866 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900867 printf("%s: Hardware doesn't specify base clock frequency\n",
868 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600869 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900870 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100871 if (f_max && (f_max < host->max_clk))
872 cfg->f_max = f_max;
873 else
874 cfg->f_max = host->max_clk;
875 if (f_min)
876 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600877 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900878 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600879 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
880 else
881 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
882 }
883 cfg->voltages = 0;
884 if (caps & SDHCI_CAN_VDD_330)
885 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
886 if (caps & SDHCI_CAN_VDD_300)
887 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
888 if (caps & SDHCI_CAN_VDD_180)
889 cfg->voltages |= MMC_VDD_165_195;
890
Masahiro Yamada3137e642016-08-25 16:07:36 +0900891 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
892 cfg->voltages |= host->voltages;
893
Faiz Abbas620bb462020-07-23 09:42:19 +0530894 if (caps & SDHCI_CAN_DO_HISPD)
895 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
896
897 cfg->host_caps |= MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900898
899 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900900 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900901 if (!(caps & SDHCI_CAN_DO_8BIT))
902 cfg->host_caps &= ~MMC_MODE_8BIT;
Simon Glass2a809092016-06-12 23:30:27 -0600903 }
904
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100905 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
906 cfg->host_caps &= ~MMC_MODE_HS;
907 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
908 }
909
Ashok Reddy Soma7a49a162020-10-23 04:58:57 -0600910 if (!(cfg->voltages & MMC_VDD_165_195) ||
911 (host->quirks & SDHCI_QUIRK_NO_1_8_V))
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530912 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
913 SDHCI_SUPPORT_DDR50);
914
915 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
916 SDHCI_SUPPORT_DDR50))
917 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
918
919 if (caps_1 & SDHCI_SUPPORT_SDR104) {
920 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
921 /*
922 * SD3.0: SDR104 is supported so (for eMMC) the caps2
923 * field can be promoted to support HS200.
924 */
925 cfg->host_caps |= MMC_CAP(MMC_HS_200);
926 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
927 cfg->host_caps |= MMC_CAP(UHS_SDR50);
928 }
929
930 if (caps_1 & SDHCI_SUPPORT_DDR50)
931 cfg->host_caps |= MMC_CAP(UHS_DDR50);
932
Jaehoon Chung14bed522016-07-26 19:06:24 +0900933 if (host->host_caps)
934 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -0600935
936 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
937
938 return 0;
939}
940
Simon Glassef1e4ed2016-06-12 23:30:28 -0600941#ifdef CONFIG_BLK
942int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
943{
944 return mmc_bind(dev, mmc, cfg);
945}
946#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100947int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +0000948{
Masahiro Yamada6c679542016-08-25 16:07:35 +0900949 int ret;
950
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100951 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +0900952 if (ret)
953 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000954
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200955 host->mmc = mmc_create(&host->cfg, host);
956 if (host->mmc == NULL) {
957 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900958 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200959 }
Lei Wenaf62a552011-06-28 21:50:06 +0000960
961 return 0;
962}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600963#endif