blob: f4eb655f6ec17333a94685e30ad6fb2d7f52a908 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Lei Wenaf62a552011-06-28 21:50:06 +00002/*
3 * Copyright 2011, Marvell Semiconductor Inc.
4 * Lei Wen <leiwen@marvell.com>
5 *
Lei Wenaf62a552011-06-28 21:50:06 +00006 * Back ported to the 8xx platform (from the 8260 platform) by
7 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
8 */
9
10#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070011#include <cpu_func.h>
Faiz Abbas3d296362019-06-11 00:43:34 +053012#include <dm.h>
Simon Glass2a809092016-06-12 23:30:27 -060013#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Lei Wenaf62a552011-06-28 21:50:06 +000015#include <malloc.h>
16#include <mmc.h>
17#include <sdhci.h>
T Karthik Reddyda18c622019-06-25 13:39:04 +020018#include <dm.h>
Simon Glass90526e92020-05-10 11:39:56 -060019#include <asm/cache.h>
Simon Glasscd93d622020-05-10 11:40:13 -060020#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060021#include <linux/delay.h>
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090022#include <linux/dma-mapping.h>
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +090023#include <phys2bus.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
73#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090074static void sdhci_adma_desc(struct sdhci_host *host, dma_addr_t dma_addr,
75 u16 len, bool end)
Faiz Abbas37cb6262019-04-16 23:06:58 +053076{
77 struct sdhci_adma_desc *desc;
78 u8 attr;
79
80 desc = &host->adma_desc_table[host->desc_slot];
81
82 attr = ADMA_DESC_ATTR_VALID | ADMA_DESC_TRANSFER_DATA;
83 if (!end)
84 host->desc_slot++;
85 else
86 attr |= ADMA_DESC_ATTR_END;
87
88 desc->attr = attr;
89 desc->len = len;
90 desc->reserved = 0;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090091 desc->addr_lo = lower_32_bits(dma_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +053092#ifdef CONFIG_DMA_ADDR_T_64BIT
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090093 desc->addr_hi = upper_32_bits(dma_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +053094#endif
95}
96
97static void sdhci_prepare_adma_table(struct sdhci_host *host,
98 struct mmc_data *data)
99{
100 uint trans_bytes = data->blocksize * data->blocks;
101 uint desc_count = DIV_ROUND_UP(trans_bytes, ADMA_MAX_LEN);
102 int i = desc_count;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900103 dma_addr_t dma_addr = host->start_addr;
Faiz Abbas37cb6262019-04-16 23:06:58 +0530104
105 host->desc_slot = 0;
106
Faiz Abbas37cb6262019-04-16 23:06:58 +0530107 while (--i) {
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900108 sdhci_adma_desc(host, dma_addr, ADMA_MAX_LEN, false);
109 dma_addr += ADMA_MAX_LEN;
Faiz Abbas37cb6262019-04-16 23:06:58 +0530110 trans_bytes -= ADMA_MAX_LEN;
111 }
112
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900113 sdhci_adma_desc(host, dma_addr, trans_bytes, true);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530114
115 flush_cache((dma_addr_t)host->adma_desc_table,
116 ROUND(desc_count * sizeof(struct sdhci_adma_desc),
117 ARCH_DMA_MINALIGN));
118}
119#elif defined(CONFIG_MMC_SDHCI_SDMA)
120static void sdhci_prepare_adma_table(struct sdhci_host *host,
121 struct mmc_data *data)
122{}
123#endif
124#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas6d6af202019-04-16 23:06:57 +0530125static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
126 int *is_aligned, int trans_bytes)
127{
Jaehoon Chung804c7f42012-09-20 20:31:55 +0000128 unsigned char ctrl;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900129 void *buf;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530130
131 if (data->flags == MMC_DATA_READ)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900132 buf = data->dest;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530133 else
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900134 buf = (void *)data->src;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530135
Faiz Abbas37cb6262019-04-16 23:06:58 +0530136 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
137 ctrl &= ~SDHCI_CTRL_DMA_MASK;
138 if (host->flags & USE_ADMA64)
139 ctrl |= SDHCI_CTRL_ADMA64;
140 else if (host->flags & USE_ADMA)
141 ctrl |= SDHCI_CTRL_ADMA32;
142 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
143
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900144 if (host->flags & USE_SDMA &&
145 (host->force_align_buffer ||
146 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
147 ((unsigned long)buf & 0x7) != 0x0))) {
148 *is_aligned = 0;
149 if (data->flags != MMC_DATA_READ)
150 memcpy(host->align_buffer, buf, trans_bytes);
151 buf = host->align_buffer;
152 }
153
154 host->start_addr = dma_map_single(buf, trans_bytes,
155 mmc_get_dma_dir(data));
156
Faiz Abbas37cb6262019-04-16 23:06:58 +0530157 if (host->flags & USE_SDMA) {
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900158 sdhci_writel(host, phys_to_bus((ulong)host->start_addr),
159 SDHCI_DMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530160 } else if (host->flags & (USE_ADMA | USE_ADMA64)) {
161 sdhci_prepare_adma_table(host, data);
162
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900163 sdhci_writel(host, lower_32_bits(host->adma_addr),
164 SDHCI_ADMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530165 if (host->flags & USE_ADMA64)
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900166 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530167 SDHCI_ADMA_ADDRESS_HI);
Faiz Abbas6d6af202019-04-16 23:06:57 +0530168 }
Faiz Abbas6d6af202019-04-16 23:06:57 +0530169}
170#else
171static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
172 int *is_aligned, int trans_bytes)
173{}
174#endif
175static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
176{
177 dma_addr_t start_addr = host->start_addr;
178 unsigned int stat, rdy, mask, timeout, block = 0;
179 bool transfer_done = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000180
Jaehoon Chung5d48e422012-09-20 20:31:54 +0000181 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +0000182 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
183 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
184 do {
185 stat = sdhci_readl(host, SDHCI_INT_STATUS);
186 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada61f2e5e2017-12-30 02:00:12 +0900187 pr_debug("%s: Error detected in status(0x%X)!\n",
188 __func__, stat);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900189 return -EIO;
Lei Wenaf62a552011-06-28 21:50:06 +0000190 }
Alex Deymo7dde50d2017-04-02 01:24:34 -0700191 if (!transfer_done && (stat & rdy)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000192 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
193 continue;
194 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
195 sdhci_transfer_pio(host, data);
196 data->dest += data->blocksize;
Alex Deymo7dde50d2017-04-02 01:24:34 -0700197 if (++block >= data->blocks) {
198 /* Keep looping until the SDHCI_INT_DATA_END is
199 * cleared, even if we finished sending all the
200 * blocks.
201 */
202 transfer_done = true;
203 continue;
204 }
Lei Wenaf62a552011-06-28 21:50:06 +0000205 }
Faiz Abbas37cb6262019-04-16 23:06:58 +0530206 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas6d6af202019-04-16 23:06:57 +0530207 (stat & SDHCI_INT_DMA_END)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000208 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530209 if (host->flags & USE_SDMA) {
210 start_addr &=
211 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
212 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900213 sdhci_writel(host, phys_to_bus((ulong)start_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530214 SDHCI_DMA_ADDRESS);
215 }
Lei Wenaf62a552011-06-28 21:50:06 +0000216 }
Lei Wena004abd2011-10-08 04:14:57 +0000217 if (timeout-- > 0)
218 udelay(10);
219 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800220 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900221 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000222 }
Lei Wenaf62a552011-06-28 21:50:06 +0000223 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamada4155ad92020-02-14 16:40:27 +0900224
225 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
226 mmc_get_dma_dir(data));
227
Lei Wenaf62a552011-06-28 21:50:06 +0000228 return 0;
229}
230
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200231/*
232 * No command will be sent by driver if card is busy, so driver must wait
233 * for card ready state.
234 * Every time when card is busy after timeout then (last) timeout value will be
235 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900236 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200237 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900238#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900239#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700240#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200241
Simon Glasse7881d82017-07-29 11:35:31 -0600242#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600243static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
244 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000245{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600246 struct mmc *mmc = mmc_get_mmc_dev(dev);
247
248#else
249static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
250 struct mmc_data *data)
251{
252#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200253 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000254 unsigned int stat = 0;
255 int ret = 0;
256 int trans_bytes = 0, is_aligned = 1;
257 u32 mask, flags, mode;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530258 unsigned int time = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600259 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumar36332b62018-05-03 12:20:54 +0530260 ulong start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000261
Faiz Abbas6d6af202019-04-16 23:06:57 +0530262 host->start_addr = 0;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200263 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900264 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000265
Lei Wenaf62a552011-06-28 21:50:06 +0000266 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
267
268 /* We shouldn't wait for data inihibit for stop commands, even
269 though they might use busy signaling */
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530270 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530271 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
272 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wenaf62a552011-06-28 21:50:06 +0000273 mask &= ~SDHCI_DATA_INHIBIT;
274
275 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200276 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800277 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900278 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200279 cmd_timeout += cmd_timeout;
280 printf("timeout increasing to: %u ms.\n",
281 cmd_timeout);
282 } else {
283 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900284 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200285 }
Lei Wenaf62a552011-06-28 21:50:06 +0000286 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200287 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000288 udelay(1000);
289 }
290
Jorge Ramirez-Ortiz713e6812017-11-02 15:10:21 +0100291 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
292
Lei Wenaf62a552011-06-28 21:50:06 +0000293 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530294 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
295 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530296 mask = SDHCI_INT_DATA_AVAIL;
297
Lei Wenaf62a552011-06-28 21:50:06 +0000298 if (!(cmd->resp_type & MMC_RSP_PRESENT))
299 flags = SDHCI_CMD_RESP_NONE;
300 else if (cmd->resp_type & MMC_RSP_136)
301 flags = SDHCI_CMD_RESP_LONG;
302 else if (cmd->resp_type & MMC_RSP_BUSY) {
303 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900304 if (data)
305 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000306 } else
307 flags = SDHCI_CMD_RESP_SHORT;
308
309 if (cmd->resp_type & MMC_RSP_CRC)
310 flags |= SDHCI_CMD_CRC;
311 if (cmd->resp_type & MMC_RSP_OPCODE)
312 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu434f9d42018-05-29 20:03:10 +0530313 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
314 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wenaf62a552011-06-28 21:50:06 +0000315 flags |= SDHCI_CMD_DATA;
316
Darwin Rambo30e6d972013-12-19 15:13:25 -0800317 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100318 if (data) {
Lei Wenaf62a552011-06-28 21:50:06 +0000319 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
320 mode = SDHCI_TRNS_BLK_CNT_EN;
321 trans_bytes = data->blocks * data->blocksize;
322 if (data->blocks > 1)
323 mode |= SDHCI_TRNS_MULTI;
324
325 if (data->flags == MMC_DATA_READ)
326 mode |= SDHCI_TRNS_READ;
327
Faiz Abbas37cb6262019-04-16 23:06:58 +0530328 if (host->flags & USE_DMA) {
Faiz Abbas6d6af202019-04-16 23:06:57 +0530329 mode |= SDHCI_TRNS_DMA;
330 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000331 }
332
Lei Wenaf62a552011-06-28 21:50:06 +0000333 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
334 data->blocksize),
335 SDHCI_BLOCK_SIZE);
336 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
337 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500338 } else if (cmd->resp_type & MMC_RSP_BUSY) {
339 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000340 }
341
342 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wenaf62a552011-06-28 21:50:06 +0000343 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200344 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000345 do {
346 stat = sdhci_readl(host, SDHCI_INT_STATUS);
347 if (stat & SDHCI_INT_ERROR)
348 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000349
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900350 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
351 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
352 return 0;
353 } else {
354 printf("%s: Timeout for status update!\n",
355 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900356 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900357 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000358 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900359 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000360
Lei Wenaf62a552011-06-28 21:50:06 +0000361 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
362 sdhci_cmd_done(host, cmd);
363 sdhci_writel(host, mask, SDHCI_INT_STATUS);
364 } else
365 ret = -1;
366
367 if (!ret && data)
Faiz Abbas6d6af202019-04-16 23:06:57 +0530368 ret = sdhci_transfer_data(host, data);
Lei Wenaf62a552011-06-28 21:50:06 +0000369
Tushar Behera13243f22012-09-20 20:31:57 +0000370 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
371 udelay(1000);
372
Lei Wenaf62a552011-06-28 21:50:06 +0000373 stat = sdhci_readl(host, SDHCI_INT_STATUS);
374 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
375 if (!ret) {
376 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
377 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900378 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000379 return 0;
380 }
381
382 sdhci_reset(host, SDHCI_RESET_CMD);
383 sdhci_reset(host, SDHCI_RESET_DATA);
384 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900385 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000386 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900387 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000388}
389
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530390#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
391static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
392{
393 int err;
394 struct mmc *mmc = mmc_get_mmc_dev(dev);
395 struct sdhci_host *host = mmc->priv;
396
397 debug("%s\n", __func__);
398
Ramon Friedb70fe962018-05-14 15:02:30 +0300399 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530400 err = host->ops->platform_execute_tuning(mmc, opcode);
401 if (err)
402 return err;
403 return 0;
404 }
405 return 0;
406}
407#endif
Faiz Abbas3966c7d2019-06-11 00:43:35 +0530408int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000409{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200410 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100411 unsigned int div, clk = 0, timeout;
Lei Wenaf62a552011-06-28 21:50:06 +0000412
Wenyou Yang79667b72015-09-22 14:59:25 +0800413 /* Wait max 20 ms */
414 timeout = 200;
415 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
416 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
417 if (timeout == 0) {
418 printf("%s: Timeout to wait cmd & data inhibit\n",
419 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900420 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800421 }
422
423 timeout--;
424 udelay(100);
425 }
426
Stefan Roese899fb9e2016-12-12 08:34:42 +0100427 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000428
429 if (clock == 0)
430 return 0;
431
Ramon Friedb70fe962018-05-14 15:02:30 +0300432 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530433 host->ops->set_delay(host);
434
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900435 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800436 /*
437 * Check if the Host Controller supports Programmable Clock
438 * Mode.
439 */
440 if (host->clk_mul) {
441 for (div = 1; div <= 1024; div++) {
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800442 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000443 break;
444 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800445
446 /*
447 * Set Programmable Clock Mode in the Clock
448 * Control register.
449 */
450 clk = SDHCI_PROG_CLOCK_MODE;
451 div--;
452 } else {
453 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100454 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800455 div = 1;
456 } else {
457 for (div = 2;
458 div < SDHCI_MAX_DIV_SPEC_300;
459 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100460 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800461 break;
462 }
463 }
464 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000465 }
466 } else {
467 /* Version 2.00 divisors must be a power of 2. */
468 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100469 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000470 break;
471 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800472 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000473 }
Lei Wenaf62a552011-06-28 21:50:06 +0000474
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900475 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900476 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000477
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800478 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000479 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
480 << SDHCI_DIVIDER_HI_SHIFT;
481 clk |= SDHCI_CLOCK_INT_EN;
482 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
483
484 /* Wait max 20 ms */
485 timeout = 20;
486 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
487 & SDHCI_CLOCK_INT_STABLE)) {
488 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800489 printf("%s: Internal clock never stabilised.\n",
490 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900491 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000492 }
493 timeout--;
494 udelay(1000);
495 }
496
497 clk |= SDHCI_CLOCK_CARD_EN;
498 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
499 return 0;
500}
501
502static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
503{
504 u8 pwr = 0;
505
506 if (power != (unsigned short)-1) {
507 switch (1 << power) {
508 case MMC_VDD_165_195:
509 pwr = SDHCI_POWER_180;
510 break;
511 case MMC_VDD_29_30:
512 case MMC_VDD_30_31:
513 pwr = SDHCI_POWER_300;
514 break;
515 case MMC_VDD_32_33:
516 case MMC_VDD_33_34:
517 pwr = SDHCI_POWER_330;
518 break;
519 }
520 }
521
522 if (pwr == 0) {
523 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
524 return;
525 }
526
527 pwr |= SDHCI_POWER_ON;
528
529 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
530}
531
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530532void sdhci_set_uhs_timing(struct sdhci_host *host)
533{
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900534 struct mmc *mmc = host->mmc;
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530535 u32 reg;
536
537 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
538 reg &= ~SDHCI_CTRL_UHS_MASK;
539
540 switch (mmc->selected_mode) {
541 case UHS_SDR50:
542 case MMC_HS_52:
543 reg |= SDHCI_CTRL_UHS_SDR50;
544 break;
545 case UHS_DDR50:
546 case MMC_DDR_52:
547 reg |= SDHCI_CTRL_UHS_DDR50;
548 break;
549 case UHS_SDR104:
550 case MMC_HS_200:
551 reg |= SDHCI_CTRL_UHS_SDR104;
552 break;
553 default:
554 reg |= SDHCI_CTRL_UHS_SDR12;
555 }
556
557 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
558}
559
Simon Glasse7881d82017-07-29 11:35:31 -0600560#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600561static int sdhci_set_ios(struct udevice *dev)
562{
563 struct mmc *mmc = mmc_get_mmc_dev(dev);
564#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900565static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000566{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600567#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000568 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200569 struct sdhci_host *host = mmc->priv;
Jagan Tekif12341a2020-06-18 19:33:12 +0530570 bool no_hispd_bit = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000571
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900572 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900573 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000574
Lei Wenaf62a552011-06-28 21:50:06 +0000575 if (mmc->clock != host->clock)
576 sdhci_set_clock(mmc, mmc->clock);
577
Siva Durga Prasad Paladugu2a2d7ef2018-04-19 12:37:04 +0530578 if (mmc->clk_disable)
579 sdhci_set_clock(mmc, 0);
580
Lei Wenaf62a552011-06-28 21:50:06 +0000581 /* Set bus width */
582 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
583 if (mmc->bus_width == 8) {
584 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900585 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
586 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000587 ctrl |= SDHCI_CTRL_8BITBUS;
588 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700589 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
590 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000591 ctrl &= ~SDHCI_CTRL_8BITBUS;
592 if (mmc->bus_width == 4)
593 ctrl |= SDHCI_CTRL_4BITBUS;
594 else
595 ctrl &= ~SDHCI_CTRL_4BITBUS;
596 }
597
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100598 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
Jagan Tekif12341a2020-06-18 19:33:12 +0530599 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE)) {
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000600 ctrl &= ~SDHCI_CTRL_HISPD;
Jagan Tekif12341a2020-06-18 19:33:12 +0530601 no_hispd_bit = true;
602 }
603
604 if (!no_hispd_bit) {
605 if (mmc->selected_mode == MMC_HS ||
606 mmc->selected_mode == SD_HS ||
607 mmc->selected_mode == MMC_DDR_52 ||
608 mmc->selected_mode == MMC_HS_200 ||
609 mmc->selected_mode == MMC_HS_400 ||
610 mmc->selected_mode == UHS_SDR25 ||
611 mmc->selected_mode == UHS_SDR50 ||
612 mmc->selected_mode == UHS_SDR104 ||
613 mmc->selected_mode == UHS_DDR50)
614 ctrl |= SDHCI_CTRL_HISPD;
615 else
616 ctrl &= ~SDHCI_CTRL_HISPD;
617 }
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000618
Lei Wenaf62a552011-06-28 21:50:06 +0000619 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900620
Stefan Roese210841c2016-12-12 08:24:56 +0100621 /* If available, call the driver specific "post" set_ios() function */
622 if (host->ops && host->ops->set_ios_post)
Faiz Abbasa8185c52019-06-11 00:43:37 +0530623 return host->ops->set_ios_post(host);
Stefan Roese210841c2016-12-12 08:24:56 +0100624
Simon Glassef1e4ed2016-06-12 23:30:28 -0600625 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000626}
627
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200628static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000629{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200630 struct sdhci_host *host = mmc->priv;
T Karthik Reddy451931e2019-06-25 13:39:03 +0200631#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
632 struct udevice *dev = mmc->dev;
633
Baruch Siach58d65d52019-07-22 19:14:06 +0300634 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy451931e2019-06-25 13:39:03 +0200635 &host->cd_gpio, GPIOD_IS_IN);
636#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000637
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900638 sdhci_reset(host, SDHCI_RESET_ALL);
639
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900640#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
641 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamadaf5df6aa2020-02-14 16:40:22 +0900642 /*
643 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
644 * is defined.
645 */
646 host->force_align_buffer = true;
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900647#else
648 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
649 host->align_buffer = memalign(8, 512 * 1024);
650 if (!host->align_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800651 printf("%s: Aligned buffer alloc failed!!!\n",
652 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900653 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000654 }
655 }
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900656#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000657
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200658 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000659
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900660 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900661 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000662
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000663 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800664 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
665 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000666 /* Mask all sdhci interrupt sources */
667 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000668
Lei Wenaf62a552011-06-28 21:50:06 +0000669 return 0;
670}
671
Simon Glasse7881d82017-07-29 11:35:31 -0600672#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600673int sdhci_probe(struct udevice *dev)
674{
675 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200676
Simon Glassef1e4ed2016-06-12 23:30:28 -0600677 return sdhci_init(mmc);
678}
679
Faiz Abbascb884342020-02-26 13:44:31 +0530680static int sdhci_deferred_probe(struct udevice *dev)
681{
682 int err;
683 struct mmc *mmc = mmc_get_mmc_dev(dev);
684 struct sdhci_host *host = mmc->priv;
685
686 if (host->ops && host->ops->deferred_probe) {
687 err = host->ops->deferred_probe(host);
688 if (err)
689 return err;
690 }
691 return 0;
692}
693
Baruch Siach1b716952019-11-03 12:00:27 +0200694static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyda18c622019-06-25 13:39:04 +0200695{
696 struct mmc *mmc = mmc_get_mmc_dev(dev);
697 struct sdhci_host *host = mmc->priv;
698 int value;
699
700 /* If nonremovable, assume that the card is always present. */
701 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
702 return 1;
703 /* If polling, assume that the card is always present. */
704 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
705 return 1;
706
707#if CONFIG_IS_ENABLED(DM_GPIO)
708 value = dm_gpio_get_value(&host->cd_gpio);
709 if (value >= 0) {
710 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
711 return !value;
712 else
713 return value;
714 }
715#endif
716 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
717 SDHCI_CARD_PRESENT);
718 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
719 return !value;
720 else
721 return value;
722}
723
Simon Glassef1e4ed2016-06-12 23:30:28 -0600724const struct dm_mmc_ops sdhci_ops = {
725 .send_cmd = sdhci_send_command,
726 .set_ios = sdhci_set_ios,
T Karthik Reddyda18c622019-06-25 13:39:04 +0200727 .get_cd = sdhci_get_cd,
Faiz Abbascb884342020-02-26 13:44:31 +0530728 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530729#ifdef MMC_SUPPORTS_TUNING
730 .execute_tuning = sdhci_execute_tuning,
731#endif
Simon Glassef1e4ed2016-06-12 23:30:28 -0600732};
733#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200734static const struct mmc_ops sdhci_ops = {
735 .send_cmd = sdhci_send_command,
736 .set_ios = sdhci_set_ios,
737 .init = sdhci_init,
738};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600739#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200740
Jaehoon Chung14bed522016-07-26 19:06:24 +0900741int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100742 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600743{
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530744 u32 caps, caps_1 = 0;
Faiz Abbas3d296362019-06-11 00:43:34 +0530745#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200746 u64 dt_caps, dt_caps_mask;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900747
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200748 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
749 "sdhci-caps-mask", 0);
750 dt_caps = dev_read_u64_default(host->mmc->dev,
751 "sdhci-caps", 0);
752 caps = ~(u32)dt_caps_mask &
753 sdhci_readl(host, SDHCI_CAPABILITIES);
754 caps |= (u32)dt_caps;
Faiz Abbas3d296362019-06-11 00:43:34 +0530755#else
Jaehoon Chung14bed522016-07-26 19:06:24 +0900756 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbas3d296362019-06-11 00:43:34 +0530757#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200758 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900759
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900760#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungfabb3a42020-03-27 13:08:01 +0900761 if ((caps & SDHCI_CAN_DO_SDMA)) {
762 host->flags |= USE_SDMA;
763 } else {
Matthias Brugger7acdc9a2020-05-12 12:02:06 +0200764 debug("%s: Your controller doesn't support SDMA!!\n",
765 __func__);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900766 }
767#endif
Faiz Abbas37cb6262019-04-16 23:06:58 +0530768#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
769 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
770 printf("%s: Your controller doesn't support SDMA!!\n",
771 __func__);
772 return -EINVAL;
773 }
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900774 host->adma_desc_table = memalign(ARCH_DMA_MINALIGN, ADMA_TABLE_SZ);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530775
776 host->adma_addr = (dma_addr_t)host->adma_desc_table;
777#ifdef CONFIG_DMA_ADDR_T_64BIT
778 host->flags |= USE_ADMA64;
779#else
780 host->flags |= USE_ADMA;
781#endif
782#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900783 if (host->quirks & SDHCI_QUIRK_REG32_RW)
784 host->version =
785 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
786 else
787 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900788
789 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600790#ifndef CONFIG_DM_MMC
Simon Glass2a809092016-06-12 23:30:27 -0600791 cfg->ops = &sdhci_ops;
792#endif
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800793
794 /* Check whether the clock multiplier is supported or not */
795 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbas3d296362019-06-11 00:43:34 +0530796#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200797 caps_1 = ~(u32)(dt_caps_mask >> 32) &
798 sdhci_readl(host, SDHCI_CAPABILITIES_1);
799 caps_1 |= (u32)(dt_caps >> 32);
Faiz Abbas3d296362019-06-11 00:43:34 +0530800#else
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800801 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbas3d296362019-06-11 00:43:34 +0530802#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200803 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800804 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
805 SDHCI_CLOCK_MUL_SHIFT;
806 }
807
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100808 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900809 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100810 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600811 SDHCI_CLOCK_BASE_SHIFT;
812 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100813 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600814 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100815 host->max_clk *= 1000000;
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800816 if (host->clk_mul)
817 host->max_clk *= host->clk_mul;
Simon Glass2a809092016-06-12 23:30:27 -0600818 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100819 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900820 printf("%s: Hardware doesn't specify base clock frequency\n",
821 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600822 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900823 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100824 if (f_max && (f_max < host->max_clk))
825 cfg->f_max = f_max;
826 else
827 cfg->f_max = host->max_clk;
828 if (f_min)
829 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600830 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900831 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600832 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
833 else
834 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
835 }
836 cfg->voltages = 0;
837 if (caps & SDHCI_CAN_VDD_330)
838 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
839 if (caps & SDHCI_CAN_VDD_300)
840 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
841 if (caps & SDHCI_CAN_VDD_180)
842 cfg->voltages |= MMC_VDD_165_195;
843
Masahiro Yamada3137e642016-08-25 16:07:36 +0900844 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
845 cfg->voltages |= host->voltages;
846
Masahiro Yamadabe165fb2017-12-30 02:00:08 +0900847 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900848
849 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900850 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900851 if (!(caps & SDHCI_CAN_DO_8BIT))
852 cfg->host_caps &= ~MMC_MODE_8BIT;
Simon Glass2a809092016-06-12 23:30:27 -0600853 }
854
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100855 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
856 cfg->host_caps &= ~MMC_MODE_HS;
857 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
858 }
859
Benedikt Grassl942b5fc2020-04-14 07:32:12 +0200860 if (!(cfg->voltages & MMC_VDD_165_195))
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530861 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
862 SDHCI_SUPPORT_DDR50);
863
864 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
865 SDHCI_SUPPORT_DDR50))
866 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
867
868 if (caps_1 & SDHCI_SUPPORT_SDR104) {
869 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
870 /*
871 * SD3.0: SDR104 is supported so (for eMMC) the caps2
872 * field can be promoted to support HS200.
873 */
874 cfg->host_caps |= MMC_CAP(MMC_HS_200);
875 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
876 cfg->host_caps |= MMC_CAP(UHS_SDR50);
877 }
878
879 if (caps_1 & SDHCI_SUPPORT_DDR50)
880 cfg->host_caps |= MMC_CAP(UHS_DDR50);
881
Jaehoon Chung14bed522016-07-26 19:06:24 +0900882 if (host->host_caps)
883 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -0600884
885 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
886
887 return 0;
888}
889
Simon Glassef1e4ed2016-06-12 23:30:28 -0600890#ifdef CONFIG_BLK
891int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
892{
893 return mmc_bind(dev, mmc, cfg);
894}
895#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100896int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +0000897{
Masahiro Yamada6c679542016-08-25 16:07:35 +0900898 int ret;
899
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100900 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +0900901 if (ret)
902 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000903
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200904 host->mmc = mmc_create(&host->cfg, host);
905 if (host->mmc == NULL) {
906 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900907 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200908 }
Lei Wenaf62a552011-06-28 21:50:06 +0000909
910 return 0;
911}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600912#endif