blob: 6e8f6e3d179ff13cb7a4ada8056e0be805555fa8 [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>
Lei Wenaf62a552011-06-28 21:50:06 +000014#include <malloc.h>
15#include <mmc.h>
16#include <sdhci.h>
T Karthik Reddyda18c622019-06-25 13:39:04 +020017#include <dm.h>
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090018#include <linux/dma-mapping.h>
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +090019#include <phys2bus.h>
Lei Wenaf62a552011-06-28 21:50:06 +000020
Lei Wenaf62a552011-06-28 21:50:06 +000021static void sdhci_reset(struct sdhci_host *host, u8 mask)
22{
23 unsigned long timeout;
24
25 /* Wait max 100 ms */
26 timeout = 100;
27 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
28 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
29 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080030 printf("%s: Reset 0x%x never completed.\n",
31 __func__, (int)mask);
Lei Wenaf62a552011-06-28 21:50:06 +000032 return;
33 }
34 timeout--;
35 udelay(1000);
36 }
37}
38
39static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
40{
41 int i;
42 if (cmd->resp_type & MMC_RSP_136) {
43 /* CRC is stripped so we need to do some shifting. */
44 for (i = 0; i < 4; i++) {
45 cmd->response[i] = sdhci_readl(host,
46 SDHCI_RESPONSE + (3-i)*4) << 8;
47 if (i != 3)
48 cmd->response[i] |= sdhci_readb(host,
49 SDHCI_RESPONSE + (3-i)*4-1);
50 }
51 } else {
52 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
53 }
54}
55
56static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
57{
58 int i;
59 char *offs;
60 for (i = 0; i < data->blocksize; i += 4) {
61 offs = data->dest + i;
62 if (data->flags == MMC_DATA_READ)
63 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
64 else
65 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
66 }
67}
Faiz Abbas37cb6262019-04-16 23:06:58 +053068
69#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090070static void sdhci_adma_desc(struct sdhci_host *host, dma_addr_t dma_addr,
71 u16 len, bool end)
Faiz Abbas37cb6262019-04-16 23:06:58 +053072{
73 struct sdhci_adma_desc *desc;
74 u8 attr;
75
76 desc = &host->adma_desc_table[host->desc_slot];
77
78 attr = ADMA_DESC_ATTR_VALID | ADMA_DESC_TRANSFER_DATA;
79 if (!end)
80 host->desc_slot++;
81 else
82 attr |= ADMA_DESC_ATTR_END;
83
84 desc->attr = attr;
85 desc->len = len;
86 desc->reserved = 0;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090087 desc->addr_lo = lower_32_bits(dma_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +053088#ifdef CONFIG_DMA_ADDR_T_64BIT
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090089 desc->addr_hi = upper_32_bits(dma_addr);
Faiz Abbas37cb6262019-04-16 23:06:58 +053090#endif
91}
92
93static void sdhci_prepare_adma_table(struct sdhci_host *host,
94 struct mmc_data *data)
95{
96 uint trans_bytes = data->blocksize * data->blocks;
97 uint desc_count = DIV_ROUND_UP(trans_bytes, ADMA_MAX_LEN);
98 int i = desc_count;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +090099 dma_addr_t dma_addr = host->start_addr;
Faiz Abbas37cb6262019-04-16 23:06:58 +0530100
101 host->desc_slot = 0;
102
Faiz Abbas37cb6262019-04-16 23:06:58 +0530103 while (--i) {
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900104 sdhci_adma_desc(host, dma_addr, ADMA_MAX_LEN, false);
105 dma_addr += ADMA_MAX_LEN;
Faiz Abbas37cb6262019-04-16 23:06:58 +0530106 trans_bytes -= ADMA_MAX_LEN;
107 }
108
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900109 sdhci_adma_desc(host, dma_addr, trans_bytes, true);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530110
111 flush_cache((dma_addr_t)host->adma_desc_table,
112 ROUND(desc_count * sizeof(struct sdhci_adma_desc),
113 ARCH_DMA_MINALIGN));
114}
115#elif defined(CONFIG_MMC_SDHCI_SDMA)
116static void sdhci_prepare_adma_table(struct sdhci_host *host,
117 struct mmc_data *data)
118{}
119#endif
120#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas6d6af202019-04-16 23:06:57 +0530121static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
122 int *is_aligned, int trans_bytes)
123{
Jaehoon Chung804c7f42012-09-20 20:31:55 +0000124 unsigned char ctrl;
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900125 void *buf;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530126
127 if (data->flags == MMC_DATA_READ)
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900128 buf = data->dest;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530129 else
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900130 buf = (void *)data->src;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530131
Faiz Abbas37cb6262019-04-16 23:06:58 +0530132 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
133 ctrl &= ~SDHCI_CTRL_DMA_MASK;
134 if (host->flags & USE_ADMA64)
135 ctrl |= SDHCI_CTRL_ADMA64;
136 else if (host->flags & USE_ADMA)
137 ctrl |= SDHCI_CTRL_ADMA32;
138 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
139
Masahiro Yamada58d8ace2020-02-14 16:40:26 +0900140 if (host->flags & USE_SDMA &&
141 (host->force_align_buffer ||
142 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
143 ((unsigned long)buf & 0x7) != 0x0))) {
144 *is_aligned = 0;
145 if (data->flags != MMC_DATA_READ)
146 memcpy(host->align_buffer, buf, trans_bytes);
147 buf = host->align_buffer;
148 }
149
150 host->start_addr = dma_map_single(buf, trans_bytes,
151 mmc_get_dma_dir(data));
152
Faiz Abbas37cb6262019-04-16 23:06:58 +0530153 if (host->flags & USE_SDMA) {
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900154 sdhci_writel(host, phys_to_bus((ulong)host->start_addr),
155 SDHCI_DMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530156 } else if (host->flags & (USE_ADMA | USE_ADMA64)) {
157 sdhci_prepare_adma_table(host, data);
158
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900159 sdhci_writel(host, lower_32_bits(host->adma_addr),
160 SDHCI_ADMA_ADDRESS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530161 if (host->flags & USE_ADMA64)
Masahiro Yamadaa2b02212020-02-14 16:40:23 +0900162 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530163 SDHCI_ADMA_ADDRESS_HI);
Faiz Abbas6d6af202019-04-16 23:06:57 +0530164 }
Faiz Abbas6d6af202019-04-16 23:06:57 +0530165}
166#else
167static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
168 int *is_aligned, int trans_bytes)
169{}
170#endif
171static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
172{
173 dma_addr_t start_addr = host->start_addr;
174 unsigned int stat, rdy, mask, timeout, block = 0;
175 bool transfer_done = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000176
Jaehoon Chung5d48e422012-09-20 20:31:54 +0000177 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +0000178 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
179 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
180 do {
181 stat = sdhci_readl(host, SDHCI_INT_STATUS);
182 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada61f2e5e2017-12-30 02:00:12 +0900183 pr_debug("%s: Error detected in status(0x%X)!\n",
184 __func__, stat);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900185 return -EIO;
Lei Wenaf62a552011-06-28 21:50:06 +0000186 }
Alex Deymo7dde50d2017-04-02 01:24:34 -0700187 if (!transfer_done && (stat & rdy)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000188 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
189 continue;
190 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
191 sdhci_transfer_pio(host, data);
192 data->dest += data->blocksize;
Alex Deymo7dde50d2017-04-02 01:24:34 -0700193 if (++block >= data->blocks) {
194 /* Keep looping until the SDHCI_INT_DATA_END is
195 * cleared, even if we finished sending all the
196 * blocks.
197 */
198 transfer_done = true;
199 continue;
200 }
Lei Wenaf62a552011-06-28 21:50:06 +0000201 }
Faiz Abbas37cb6262019-04-16 23:06:58 +0530202 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas6d6af202019-04-16 23:06:57 +0530203 (stat & SDHCI_INT_DMA_END)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000204 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530205 if (host->flags & USE_SDMA) {
206 start_addr &=
207 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
208 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Jaehoon Chungfac8bfd2020-03-27 13:08:00 +0900209 sdhci_writel(host, phys_to_bus((ulong)start_addr),
Faiz Abbas37cb6262019-04-16 23:06:58 +0530210 SDHCI_DMA_ADDRESS);
211 }
Lei Wenaf62a552011-06-28 21:50:06 +0000212 }
Lei Wena004abd2011-10-08 04:14:57 +0000213 if (timeout-- > 0)
214 udelay(10);
215 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800216 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900217 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000218 }
Lei Wenaf62a552011-06-28 21:50:06 +0000219 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamada4155ad92020-02-14 16:40:27 +0900220
221 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
222 mmc_get_dma_dir(data));
223
Lei Wenaf62a552011-06-28 21:50:06 +0000224 return 0;
225}
226
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200227/*
228 * No command will be sent by driver if card is busy, so driver must wait
229 * for card ready state.
230 * Every time when card is busy after timeout then (last) timeout value will be
231 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900232 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200233 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900234#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900235#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700236#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200237
Simon Glasse7881d82017-07-29 11:35:31 -0600238#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600239static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
240 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000241{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600242 struct mmc *mmc = mmc_get_mmc_dev(dev);
243
244#else
245static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
246 struct mmc_data *data)
247{
248#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200249 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000250 unsigned int stat = 0;
251 int ret = 0;
252 int trans_bytes = 0, is_aligned = 1;
253 u32 mask, flags, mode;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530254 unsigned int time = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600255 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumar36332b62018-05-03 12:20:54 +0530256 ulong start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000257
Faiz Abbas6d6af202019-04-16 23:06:57 +0530258 host->start_addr = 0;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200259 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900260 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000261
Lei Wenaf62a552011-06-28 21:50:06 +0000262 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
263
264 /* We shouldn't wait for data inihibit for stop commands, even
265 though they might use busy signaling */
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530266 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530267 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
268 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wenaf62a552011-06-28 21:50:06 +0000269 mask &= ~SDHCI_DATA_INHIBIT;
270
271 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200272 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800273 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900274 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200275 cmd_timeout += cmd_timeout;
276 printf("timeout increasing to: %u ms.\n",
277 cmd_timeout);
278 } else {
279 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900280 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200281 }
Lei Wenaf62a552011-06-28 21:50:06 +0000282 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200283 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000284 udelay(1000);
285 }
286
Jorge Ramirez-Ortiz713e6812017-11-02 15:10:21 +0100287 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
288
Lei Wenaf62a552011-06-28 21:50:06 +0000289 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530290 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
291 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530292 mask = SDHCI_INT_DATA_AVAIL;
293
Lei Wenaf62a552011-06-28 21:50:06 +0000294 if (!(cmd->resp_type & MMC_RSP_PRESENT))
295 flags = SDHCI_CMD_RESP_NONE;
296 else if (cmd->resp_type & MMC_RSP_136)
297 flags = SDHCI_CMD_RESP_LONG;
298 else if (cmd->resp_type & MMC_RSP_BUSY) {
299 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900300 if (data)
301 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000302 } else
303 flags = SDHCI_CMD_RESP_SHORT;
304
305 if (cmd->resp_type & MMC_RSP_CRC)
306 flags |= SDHCI_CMD_CRC;
307 if (cmd->resp_type & MMC_RSP_OPCODE)
308 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu434f9d42018-05-29 20:03:10 +0530309 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
310 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wenaf62a552011-06-28 21:50:06 +0000311 flags |= SDHCI_CMD_DATA;
312
Darwin Rambo30e6d972013-12-19 15:13:25 -0800313 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100314 if (data) {
Lei Wenaf62a552011-06-28 21:50:06 +0000315 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
316 mode = SDHCI_TRNS_BLK_CNT_EN;
317 trans_bytes = data->blocks * data->blocksize;
318 if (data->blocks > 1)
319 mode |= SDHCI_TRNS_MULTI;
320
321 if (data->flags == MMC_DATA_READ)
322 mode |= SDHCI_TRNS_READ;
323
Faiz Abbas37cb6262019-04-16 23:06:58 +0530324 if (host->flags & USE_DMA) {
Faiz Abbas6d6af202019-04-16 23:06:57 +0530325 mode |= SDHCI_TRNS_DMA;
326 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000327 }
328
Lei Wenaf62a552011-06-28 21:50:06 +0000329 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
330 data->blocksize),
331 SDHCI_BLOCK_SIZE);
332 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
333 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500334 } else if (cmd->resp_type & MMC_RSP_BUSY) {
335 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000336 }
337
338 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wenaf62a552011-06-28 21:50:06 +0000339 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200340 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000341 do {
342 stat = sdhci_readl(host, SDHCI_INT_STATUS);
343 if (stat & SDHCI_INT_ERROR)
344 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000345
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900346 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
347 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
348 return 0;
349 } else {
350 printf("%s: Timeout for status update!\n",
351 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900352 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900353 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000354 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900355 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000356
Lei Wenaf62a552011-06-28 21:50:06 +0000357 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
358 sdhci_cmd_done(host, cmd);
359 sdhci_writel(host, mask, SDHCI_INT_STATUS);
360 } else
361 ret = -1;
362
363 if (!ret && data)
Faiz Abbas6d6af202019-04-16 23:06:57 +0530364 ret = sdhci_transfer_data(host, data);
Lei Wenaf62a552011-06-28 21:50:06 +0000365
Tushar Behera13243f22012-09-20 20:31:57 +0000366 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
367 udelay(1000);
368
Lei Wenaf62a552011-06-28 21:50:06 +0000369 stat = sdhci_readl(host, SDHCI_INT_STATUS);
370 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
371 if (!ret) {
372 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
373 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900374 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000375 return 0;
376 }
377
378 sdhci_reset(host, SDHCI_RESET_CMD);
379 sdhci_reset(host, SDHCI_RESET_DATA);
380 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900381 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000382 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900383 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000384}
385
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530386#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
387static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
388{
389 int err;
390 struct mmc *mmc = mmc_get_mmc_dev(dev);
391 struct sdhci_host *host = mmc->priv;
392
393 debug("%s\n", __func__);
394
Ramon Friedb70fe962018-05-14 15:02:30 +0300395 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530396 err = host->ops->platform_execute_tuning(mmc, opcode);
397 if (err)
398 return err;
399 return 0;
400 }
401 return 0;
402}
403#endif
Faiz Abbas3966c7d2019-06-11 00:43:35 +0530404int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000405{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200406 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100407 unsigned int div, clk = 0, timeout;
Lei Wenaf62a552011-06-28 21:50:06 +0000408
Wenyou Yang79667b72015-09-22 14:59:25 +0800409 /* Wait max 20 ms */
410 timeout = 200;
411 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
412 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
413 if (timeout == 0) {
414 printf("%s: Timeout to wait cmd & data inhibit\n",
415 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900416 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800417 }
418
419 timeout--;
420 udelay(100);
421 }
422
Stefan Roese899fb9e2016-12-12 08:34:42 +0100423 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000424
425 if (clock == 0)
426 return 0;
427
Ramon Friedb70fe962018-05-14 15:02:30 +0300428 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530429 host->ops->set_delay(host);
430
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900431 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800432 /*
433 * Check if the Host Controller supports Programmable Clock
434 * Mode.
435 */
436 if (host->clk_mul) {
437 for (div = 1; div <= 1024; div++) {
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800438 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000439 break;
440 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800441
442 /*
443 * Set Programmable Clock Mode in the Clock
444 * Control register.
445 */
446 clk = SDHCI_PROG_CLOCK_MODE;
447 div--;
448 } else {
449 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100450 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800451 div = 1;
452 } else {
453 for (div = 2;
454 div < SDHCI_MAX_DIV_SPEC_300;
455 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100456 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800457 break;
458 }
459 }
460 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000461 }
462 } else {
463 /* Version 2.00 divisors must be a power of 2. */
464 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100465 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000466 break;
467 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800468 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000469 }
Lei Wenaf62a552011-06-28 21:50:06 +0000470
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900471 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900472 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000473
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800474 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000475 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
476 << SDHCI_DIVIDER_HI_SHIFT;
477 clk |= SDHCI_CLOCK_INT_EN;
478 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
479
480 /* Wait max 20 ms */
481 timeout = 20;
482 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
483 & SDHCI_CLOCK_INT_STABLE)) {
484 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800485 printf("%s: Internal clock never stabilised.\n",
486 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900487 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000488 }
489 timeout--;
490 udelay(1000);
491 }
492
493 clk |= SDHCI_CLOCK_CARD_EN;
494 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
495 return 0;
496}
497
498static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
499{
500 u8 pwr = 0;
501
502 if (power != (unsigned short)-1) {
503 switch (1 << power) {
504 case MMC_VDD_165_195:
505 pwr = SDHCI_POWER_180;
506 break;
507 case MMC_VDD_29_30:
508 case MMC_VDD_30_31:
509 pwr = SDHCI_POWER_300;
510 break;
511 case MMC_VDD_32_33:
512 case MMC_VDD_33_34:
513 pwr = SDHCI_POWER_330;
514 break;
515 }
516 }
517
518 if (pwr == 0) {
519 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
520 return;
521 }
522
523 pwr |= SDHCI_POWER_ON;
524
525 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
526}
527
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530528void sdhci_set_uhs_timing(struct sdhci_host *host)
529{
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900530 struct mmc *mmc = host->mmc;
Faiz Abbasd1c0a222019-06-11 00:43:40 +0530531 u32 reg;
532
533 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
534 reg &= ~SDHCI_CTRL_UHS_MASK;
535
536 switch (mmc->selected_mode) {
537 case UHS_SDR50:
538 case MMC_HS_52:
539 reg |= SDHCI_CTRL_UHS_SDR50;
540 break;
541 case UHS_DDR50:
542 case MMC_DDR_52:
543 reg |= SDHCI_CTRL_UHS_DDR50;
544 break;
545 case UHS_SDR104:
546 case MMC_HS_200:
547 reg |= SDHCI_CTRL_UHS_SDR104;
548 break;
549 default:
550 reg |= SDHCI_CTRL_UHS_SDR12;
551 }
552
553 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
554}
555
Simon Glasse7881d82017-07-29 11:35:31 -0600556#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600557static int sdhci_set_ios(struct udevice *dev)
558{
559 struct mmc *mmc = mmc_get_mmc_dev(dev);
560#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900561static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000562{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600563#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000564 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200565 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000566
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900567 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900568 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000569
Lei Wenaf62a552011-06-28 21:50:06 +0000570 if (mmc->clock != host->clock)
571 sdhci_set_clock(mmc, mmc->clock);
572
Siva Durga Prasad Paladugu2a2d7ef2018-04-19 12:37:04 +0530573 if (mmc->clk_disable)
574 sdhci_set_clock(mmc, 0);
575
Lei Wenaf62a552011-06-28 21:50:06 +0000576 /* Set bus width */
577 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
578 if (mmc->bus_width == 8) {
579 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900580 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
581 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000582 ctrl |= SDHCI_CTRL_8BITBUS;
583 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700584 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
585 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000586 ctrl &= ~SDHCI_CTRL_8BITBUS;
587 if (mmc->bus_width == 4)
588 ctrl |= SDHCI_CTRL_4BITBUS;
589 else
590 ctrl &= ~SDHCI_CTRL_4BITBUS;
591 }
592
593 if (mmc->clock > 26000000)
594 ctrl |= SDHCI_CTRL_HISPD;
595 else
596 ctrl &= ~SDHCI_CTRL_HISPD;
597
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100598 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
599 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE))
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000600 ctrl &= ~SDHCI_CTRL_HISPD;
601
Lei Wenaf62a552011-06-28 21:50:06 +0000602 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900603
Stefan Roese210841c2016-12-12 08:24:56 +0100604 /* If available, call the driver specific "post" set_ios() function */
605 if (host->ops && host->ops->set_ios_post)
Faiz Abbasa8185c52019-06-11 00:43:37 +0530606 return host->ops->set_ios_post(host);
Stefan Roese210841c2016-12-12 08:24:56 +0100607
Simon Glassef1e4ed2016-06-12 23:30:28 -0600608 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000609}
610
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200611static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000612{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200613 struct sdhci_host *host = mmc->priv;
T Karthik Reddy451931e2019-06-25 13:39:03 +0200614#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
615 struct udevice *dev = mmc->dev;
616
Baruch Siach58d65d52019-07-22 19:14:06 +0300617 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy451931e2019-06-25 13:39:03 +0200618 &host->cd_gpio, GPIOD_IS_IN);
619#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000620
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900621 sdhci_reset(host, SDHCI_RESET_ALL);
622
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900623#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
624 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamadaf5df6aa2020-02-14 16:40:22 +0900625 /*
626 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
627 * is defined.
628 */
629 host->force_align_buffer = true;
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900630#else
631 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
632 host->align_buffer = memalign(8, 512 * 1024);
633 if (!host->align_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800634 printf("%s: Aligned buffer alloc failed!!!\n",
635 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900636 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000637 }
638 }
Masahiro Yamadac8cc18b2020-02-14 16:40:21 +0900639#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000640
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200641 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000642
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900643 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900644 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000645
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000646 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800647 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
648 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000649 /* Mask all sdhci interrupt sources */
650 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000651
Lei Wenaf62a552011-06-28 21:50:06 +0000652 return 0;
653}
654
Simon Glasse7881d82017-07-29 11:35:31 -0600655#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600656int sdhci_probe(struct udevice *dev)
657{
658 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200659
Simon Glassef1e4ed2016-06-12 23:30:28 -0600660 return sdhci_init(mmc);
661}
662
Faiz Abbascb884342020-02-26 13:44:31 +0530663static int sdhci_deferred_probe(struct udevice *dev)
664{
665 int err;
666 struct mmc *mmc = mmc_get_mmc_dev(dev);
667 struct sdhci_host *host = mmc->priv;
668
669 if (host->ops && host->ops->deferred_probe) {
670 err = host->ops->deferred_probe(host);
671 if (err)
672 return err;
673 }
674 return 0;
675}
676
Baruch Siach1b716952019-11-03 12:00:27 +0200677static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyda18c622019-06-25 13:39:04 +0200678{
679 struct mmc *mmc = mmc_get_mmc_dev(dev);
680 struct sdhci_host *host = mmc->priv;
681 int value;
682
683 /* If nonremovable, assume that the card is always present. */
684 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
685 return 1;
686 /* If polling, assume that the card is always present. */
687 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
688 return 1;
689
690#if CONFIG_IS_ENABLED(DM_GPIO)
691 value = dm_gpio_get_value(&host->cd_gpio);
692 if (value >= 0) {
693 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
694 return !value;
695 else
696 return value;
697 }
698#endif
699 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
700 SDHCI_CARD_PRESENT);
701 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
702 return !value;
703 else
704 return value;
705}
706
Simon Glassef1e4ed2016-06-12 23:30:28 -0600707const struct dm_mmc_ops sdhci_ops = {
708 .send_cmd = sdhci_send_command,
709 .set_ios = sdhci_set_ios,
T Karthik Reddyda18c622019-06-25 13:39:04 +0200710 .get_cd = sdhci_get_cd,
Faiz Abbascb884342020-02-26 13:44:31 +0530711 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530712#ifdef MMC_SUPPORTS_TUNING
713 .execute_tuning = sdhci_execute_tuning,
714#endif
Simon Glassef1e4ed2016-06-12 23:30:28 -0600715};
716#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200717static const struct mmc_ops sdhci_ops = {
718 .send_cmd = sdhci_send_command,
719 .set_ios = sdhci_set_ios,
720 .init = sdhci_init,
721};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600722#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200723
Jaehoon Chung14bed522016-07-26 19:06:24 +0900724int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100725 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600726{
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530727 u32 caps, caps_1 = 0;
Faiz Abbas3d296362019-06-11 00:43:34 +0530728#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200729 u64 dt_caps, dt_caps_mask;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900730
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200731 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
732 "sdhci-caps-mask", 0);
733 dt_caps = dev_read_u64_default(host->mmc->dev,
734 "sdhci-caps", 0);
735 caps = ~(u32)dt_caps_mask &
736 sdhci_readl(host, SDHCI_CAPABILITIES);
737 caps |= (u32)dt_caps;
Faiz Abbas3d296362019-06-11 00:43:34 +0530738#else
Jaehoon Chung14bed522016-07-26 19:06:24 +0900739 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbas3d296362019-06-11 00:43:34 +0530740#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200741 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900742
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900743#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungfabb3a42020-03-27 13:08:01 +0900744 if ((caps & SDHCI_CAN_DO_SDMA)) {
745 host->flags |= USE_SDMA;
746 } else {
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900747 printf("%s: Your controller doesn't support SDMA!!\n",
748 __func__);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900749 }
750#endif
Faiz Abbas37cb6262019-04-16 23:06:58 +0530751#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
752 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
753 printf("%s: Your controller doesn't support SDMA!!\n",
754 __func__);
755 return -EINVAL;
756 }
Masahiro Yamadafdd84c82020-02-14 16:40:24 +0900757 host->adma_desc_table = memalign(ARCH_DMA_MINALIGN, ADMA_TABLE_SZ);
Faiz Abbas37cb6262019-04-16 23:06:58 +0530758
759 host->adma_addr = (dma_addr_t)host->adma_desc_table;
760#ifdef CONFIG_DMA_ADDR_T_64BIT
761 host->flags |= USE_ADMA64;
762#else
763 host->flags |= USE_ADMA;
764#endif
765#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900766 if (host->quirks & SDHCI_QUIRK_REG32_RW)
767 host->version =
768 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
769 else
770 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900771
772 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600773#ifndef CONFIG_DM_MMC
Simon Glass2a809092016-06-12 23:30:27 -0600774 cfg->ops = &sdhci_ops;
775#endif
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800776
777 /* Check whether the clock multiplier is supported or not */
778 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbas3d296362019-06-11 00:43:34 +0530779#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200780 caps_1 = ~(u32)(dt_caps_mask >> 32) &
781 sdhci_readl(host, SDHCI_CAPABILITIES_1);
782 caps_1 |= (u32)(dt_caps >> 32);
Faiz Abbas3d296362019-06-11 00:43:34 +0530783#else
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800784 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbas3d296362019-06-11 00:43:34 +0530785#endif
T Karthik Reddycd45d6f2019-09-02 16:34:31 +0200786 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800787 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
788 SDHCI_CLOCK_MUL_SHIFT;
789 }
790
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100791 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900792 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100793 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600794 SDHCI_CLOCK_BASE_SHIFT;
795 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100796 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600797 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100798 host->max_clk *= 1000000;
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800799 if (host->clk_mul)
800 host->max_clk *= host->clk_mul;
Simon Glass2a809092016-06-12 23:30:27 -0600801 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100802 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900803 printf("%s: Hardware doesn't specify base clock frequency\n",
804 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600805 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900806 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100807 if (f_max && (f_max < host->max_clk))
808 cfg->f_max = f_max;
809 else
810 cfg->f_max = host->max_clk;
811 if (f_min)
812 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600813 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900814 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600815 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
816 else
817 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
818 }
819 cfg->voltages = 0;
820 if (caps & SDHCI_CAN_VDD_330)
821 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
822 if (caps & SDHCI_CAN_VDD_300)
823 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
824 if (caps & SDHCI_CAN_VDD_180)
825 cfg->voltages |= MMC_VDD_165_195;
826
Masahiro Yamada3137e642016-08-25 16:07:36 +0900827 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
828 cfg->voltages |= host->voltages;
829
Masahiro Yamadabe165fb2017-12-30 02:00:08 +0900830 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900831
832 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900833 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900834 if (!(caps & SDHCI_CAN_DO_8BIT))
835 cfg->host_caps &= ~MMC_MODE_8BIT;
Simon Glass2a809092016-06-12 23:30:27 -0600836 }
837
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100838 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
839 cfg->host_caps &= ~MMC_MODE_HS;
840 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
841 }
842
Benedikt Grassl942b5fc2020-04-14 07:32:12 +0200843 if (!(cfg->voltages & MMC_VDD_165_195))
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530844 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
845 SDHCI_SUPPORT_DDR50);
846
847 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
848 SDHCI_SUPPORT_DDR50))
849 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
850
851 if (caps_1 & SDHCI_SUPPORT_SDR104) {
852 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
853 /*
854 * SD3.0: SDR104 is supported so (for eMMC) the caps2
855 * field can be promoted to support HS200.
856 */
857 cfg->host_caps |= MMC_CAP(MMC_HS_200);
858 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
859 cfg->host_caps |= MMC_CAP(UHS_SDR50);
860 }
861
862 if (caps_1 & SDHCI_SUPPORT_DDR50)
863 cfg->host_caps |= MMC_CAP(UHS_DDR50);
864
Jaehoon Chung14bed522016-07-26 19:06:24 +0900865 if (host->host_caps)
866 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -0600867
868 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
869
870 return 0;
871}
872
Simon Glassef1e4ed2016-06-12 23:30:28 -0600873#ifdef CONFIG_BLK
874int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
875{
876 return mmc_bind(dev, mmc, cfg);
877}
878#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100879int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +0000880{
Masahiro Yamada6c679542016-08-25 16:07:35 +0900881 int ret;
882
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100883 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +0900884 if (ret)
885 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000886
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200887 host->mmc = mmc_create(&host->cfg, host);
888 if (host->mmc == NULL) {
889 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900890 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200891 }
Lei Wenaf62a552011-06-28 21:50:06 +0000892
893 return 0;
894}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600895#endif