blob: 520c9f9feba7036fe03bddb7caaa6b50f3fcdbc6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Lei Wen142c8f92011-06-28 21:50:06 +00002/*
3 * Copyright 2011, Marvell Semiconductor Inc.
4 * Lei Wen <leiwen@marvell.com>
5 *
Lei Wen142c8f92011-06-28 21:50:06 +00006 * Back ported to the 8xx platform (from the 8260 platform) by
7 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
8 */
9
10#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070011#include <cpu_func.h>
Faiz Abbasf08f9d72019-06-11 00:43:34 +053012#include <dm.h>
Simon Glassb0842072016-06-12 23:30:27 -060013#include <errno.h>
Lei Wen142c8f92011-06-28 21:50:06 +000014#include <malloc.h>
15#include <mmc.h>
16#include <sdhci.h>
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +020017#include <dm.h>
Masahiro Yamada97e7e822020-02-14 16:40:26 +090018#include <linux/dma-mapping.h>
Lei Wen142c8f92011-06-28 21:50:06 +000019
Lei Wen142c8f92011-06-28 21:50:06 +000020static void sdhci_reset(struct sdhci_host *host, u8 mask)
21{
22 unsigned long timeout;
23
24 /* Wait max 100 ms */
25 timeout = 100;
26 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
27 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
28 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -080029 printf("%s: Reset 0x%x never completed.\n",
30 __func__, (int)mask);
Lei Wen142c8f92011-06-28 21:50:06 +000031 return;
32 }
33 timeout--;
34 udelay(1000);
35 }
36}
37
38static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
39{
40 int i;
41 if (cmd->resp_type & MMC_RSP_136) {
42 /* CRC is stripped so we need to do some shifting. */
43 for (i = 0; i < 4; i++) {
44 cmd->response[i] = sdhci_readl(host,
45 SDHCI_RESPONSE + (3-i)*4) << 8;
46 if (i != 3)
47 cmd->response[i] |= sdhci_readb(host,
48 SDHCI_RESPONSE + (3-i)*4-1);
49 }
50 } else {
51 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
52 }
53}
54
55static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
56{
57 int i;
58 char *offs;
59 for (i = 0; i < data->blocksize; i += 4) {
60 offs = data->dest + i;
61 if (data->flags == MMC_DATA_READ)
62 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
63 else
64 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
65 }
66}
Faiz Abbas4c082a62019-04-16 23:06:58 +053067
68#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
Masahiro Yamada97e7e822020-02-14 16:40:26 +090069static void sdhci_adma_desc(struct sdhci_host *host, dma_addr_t dma_addr,
70 u16 len, bool end)
Faiz Abbas4c082a62019-04-16 23:06:58 +053071{
72 struct sdhci_adma_desc *desc;
73 u8 attr;
74
75 desc = &host->adma_desc_table[host->desc_slot];
76
77 attr = ADMA_DESC_ATTR_VALID | ADMA_DESC_TRANSFER_DATA;
78 if (!end)
79 host->desc_slot++;
80 else
81 attr |= ADMA_DESC_ATTR_END;
82
83 desc->attr = attr;
84 desc->len = len;
85 desc->reserved = 0;
Masahiro Yamada97e7e822020-02-14 16:40:26 +090086 desc->addr_lo = lower_32_bits(dma_addr);
Faiz Abbas4c082a62019-04-16 23:06:58 +053087#ifdef CONFIG_DMA_ADDR_T_64BIT
Masahiro Yamada97e7e822020-02-14 16:40:26 +090088 desc->addr_hi = upper_32_bits(dma_addr);
Faiz Abbas4c082a62019-04-16 23:06:58 +053089#endif
90}
91
92static void sdhci_prepare_adma_table(struct sdhci_host *host,
93 struct mmc_data *data)
94{
95 uint trans_bytes = data->blocksize * data->blocks;
96 uint desc_count = DIV_ROUND_UP(trans_bytes, ADMA_MAX_LEN);
97 int i = desc_count;
Masahiro Yamada97e7e822020-02-14 16:40:26 +090098 dma_addr_t dma_addr = host->start_addr;
Faiz Abbas4c082a62019-04-16 23:06:58 +053099
100 host->desc_slot = 0;
101
Faiz Abbas4c082a62019-04-16 23:06:58 +0530102 while (--i) {
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900103 sdhci_adma_desc(host, dma_addr, ADMA_MAX_LEN, false);
104 dma_addr += ADMA_MAX_LEN;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530105 trans_bytes -= ADMA_MAX_LEN;
106 }
107
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900108 sdhci_adma_desc(host, dma_addr, trans_bytes, true);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530109
110 flush_cache((dma_addr_t)host->adma_desc_table,
111 ROUND(desc_count * sizeof(struct sdhci_adma_desc),
112 ARCH_DMA_MINALIGN));
113}
114#elif defined(CONFIG_MMC_SDHCI_SDMA)
115static void sdhci_prepare_adma_table(struct sdhci_host *host,
116 struct mmc_data *data)
117{}
118#endif
119#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas87102502019-04-16 23:06:57 +0530120static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
121 int *is_aligned, int trans_bytes)
122{
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000123 unsigned char ctrl;
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900124 void *buf;
Faiz Abbas87102502019-04-16 23:06:57 +0530125
126 if (data->flags == MMC_DATA_READ)
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900127 buf = data->dest;
Faiz Abbas87102502019-04-16 23:06:57 +0530128 else
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900129 buf = (void *)data->src;
Faiz Abbas87102502019-04-16 23:06:57 +0530130
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +0000131 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000132 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530133 if (host->flags & USE_ADMA64)
134 ctrl |= SDHCI_CTRL_ADMA64;
135 else if (host->flags & USE_ADMA)
136 ctrl |= SDHCI_CTRL_ADMA32;
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +0000137 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Faiz Abbas87102502019-04-16 23:06:57 +0530138
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900139 if (host->flags & USE_SDMA &&
140 (host->force_align_buffer ||
141 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
142 ((unsigned long)buf & 0x7) != 0x0))) {
143 *is_aligned = 0;
144 if (data->flags != MMC_DATA_READ)
145 memcpy(host->align_buffer, buf, trans_bytes);
146 buf = host->align_buffer;
147 }
148
149 host->start_addr = dma_map_single(buf, trans_bytes,
150 mmc_get_dma_dir(data));
151
Faiz Abbas4c082a62019-04-16 23:06:58 +0530152 if (host->flags & USE_SDMA) {
Faiz Abbas4c082a62019-04-16 23:06:58 +0530153 sdhci_writel(host, host->start_addr, SDHCI_DMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530154 } else if (host->flags & (USE_ADMA | USE_ADMA64)) {
155 sdhci_prepare_adma_table(host, data);
156
Masahiro Yamada97eda292020-02-14 16:40:23 +0900157 sdhci_writel(host, lower_32_bits(host->adma_addr),
158 SDHCI_ADMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530159 if (host->flags & USE_ADMA64)
Masahiro Yamada97eda292020-02-14 16:40:23 +0900160 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas4c082a62019-04-16 23:06:58 +0530161 SDHCI_ADMA_ADDRESS_HI);
162 }
Faiz Abbas87102502019-04-16 23:06:57 +0530163}
164#else
165static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
166 int *is_aligned, int trans_bytes)
167{}
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000168#endif
Faiz Abbas87102502019-04-16 23:06:57 +0530169static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
170{
171 dma_addr_t start_addr = host->start_addr;
172 unsigned int stat, rdy, mask, timeout, block = 0;
173 bool transfer_done = false;
Lei Wen142c8f92011-06-28 21:50:06 +0000174
Jaehoon Chung30686bd2012-09-20 20:31:54 +0000175 timeout = 1000000;
Lei Wen142c8f92011-06-28 21:50:06 +0000176 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
177 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
178 do {
179 stat = sdhci_readl(host, SDHCI_INT_STATUS);
180 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada45256c42017-12-30 02:00:12 +0900181 pr_debug("%s: Error detected in status(0x%X)!\n",
182 __func__, stat);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900183 return -EIO;
Lei Wen142c8f92011-06-28 21:50:06 +0000184 }
Alex Deymod9b70232017-04-02 01:24:34 -0700185 if (!transfer_done && (stat & rdy)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000186 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
187 continue;
188 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
189 sdhci_transfer_pio(host, data);
190 data->dest += data->blocksize;
Alex Deymod9b70232017-04-02 01:24:34 -0700191 if (++block >= data->blocks) {
192 /* Keep looping until the SDHCI_INT_DATA_END is
193 * cleared, even if we finished sending all the
194 * blocks.
195 */
196 transfer_done = true;
197 continue;
198 }
Lei Wen142c8f92011-06-28 21:50:06 +0000199 }
Faiz Abbas4c082a62019-04-16 23:06:58 +0530200 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas87102502019-04-16 23:06:57 +0530201 (stat & SDHCI_INT_DMA_END)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000202 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530203 if (host->flags & USE_SDMA) {
204 start_addr &=
205 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
206 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
207 sdhci_writel(host, start_addr,
208 SDHCI_DMA_ADDRESS);
209 }
Lei Wen142c8f92011-06-28 21:50:06 +0000210 }
Lei Wen6c13c662011-10-08 04:14:57 +0000211 if (timeout-- > 0)
212 udelay(10);
213 else {
Darwin Rambo43558132013-12-19 15:13:25 -0800214 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900215 return -ETIMEDOUT;
Lei Wen6c13c662011-10-08 04:14:57 +0000216 }
Lei Wen142c8f92011-06-28 21:50:06 +0000217 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900218
219 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
220 mmc_get_dma_dir(data));
221
Lei Wen142c8f92011-06-28 21:50:06 +0000222 return 0;
223}
224
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200225/*
226 * No command will be sent by driver if card is busy, so driver must wait
227 * for card ready state.
228 * Every time when card is busy after timeout then (last) timeout value will be
229 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada96250112016-08-25 16:07:39 +0900230 * Each function call will use last timeout value.
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200231 */
Masahiro Yamada96250112016-08-25 16:07:39 +0900232#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad4512312016-08-25 16:07:38 +0900233#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed4780832016-06-29 13:42:01 -0700234#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200235
Simon Glasseba48f92017-07-29 11:35:31 -0600236#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600237static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
238 struct mmc_data *data)
239{
240 struct mmc *mmc = mmc_get_mmc_dev(dev);
241
242#else
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200243static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
Simon Glassb97f0fa2016-06-12 23:30:28 -0600244 struct mmc_data *data)
Lei Wen142c8f92011-06-28 21:50:06 +0000245{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600246#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200247 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000248 unsigned int stat = 0;
249 int ret = 0;
250 int trans_bytes = 0, is_aligned = 1;
251 u32 mask, flags, mode;
Faiz Abbas87102502019-04-16 23:06:57 +0530252 unsigned int time = 0;
Simon Glass97c78e82016-05-14 14:03:04 -0600253 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumardbad7b42018-05-03 12:20:54 +0530254 ulong start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000255
Faiz Abbas87102502019-04-16 23:06:57 +0530256 host->start_addr = 0;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200257 /* Timeout unit - ms */
Masahiro Yamadad4512312016-08-25 16:07:38 +0900258 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000259
Lei Wen142c8f92011-06-28 21:50:06 +0000260 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
261
262 /* We shouldn't wait for data inihibit for stop commands, even
263 though they might use busy signaling */
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530264 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530265 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
266 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wen142c8f92011-06-28 21:50:06 +0000267 mask &= ~SDHCI_DATA_INHIBIT;
268
269 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200270 if (time >= cmd_timeout) {
Darwin Rambo43558132013-12-19 15:13:25 -0800271 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada96250112016-08-25 16:07:39 +0900272 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200273 cmd_timeout += cmd_timeout;
274 printf("timeout increasing to: %u ms.\n",
275 cmd_timeout);
276 } else {
277 puts("timeout.\n");
Jaehoon Chung7825d202016-07-19 16:33:36 +0900278 return -ECOMM;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200279 }
Lei Wen142c8f92011-06-28 21:50:06 +0000280 }
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200281 time++;
Lei Wen142c8f92011-06-28 21:50:06 +0000282 udelay(1000);
283 }
284
Jorge Ramirez-Ortiz65da8be2017-11-02 15:10:21 +0100285 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
286
Lei Wen142c8f92011-06-28 21:50:06 +0000287 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530288 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
289 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530290 mask = SDHCI_INT_DATA_AVAIL;
291
Lei Wen142c8f92011-06-28 21:50:06 +0000292 if (!(cmd->resp_type & MMC_RSP_PRESENT))
293 flags = SDHCI_CMD_RESP_NONE;
294 else if (cmd->resp_type & MMC_RSP_136)
295 flags = SDHCI_CMD_RESP_LONG;
296 else if (cmd->resp_type & MMC_RSP_BUSY) {
297 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chungd0d1b252016-07-12 21:18:46 +0900298 if (data)
299 mask |= SDHCI_INT_DATA_END;
Lei Wen142c8f92011-06-28 21:50:06 +0000300 } else
301 flags = SDHCI_CMD_RESP_SHORT;
302
303 if (cmd->resp_type & MMC_RSP_CRC)
304 flags |= SDHCI_CMD_CRC;
305 if (cmd->resp_type & MMC_RSP_OPCODE)
306 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu5d88ba72018-05-29 20:03:10 +0530307 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
308 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wen142c8f92011-06-28 21:50:06 +0000309 flags |= SDHCI_CMD_DATA;
310
Darwin Rambo43558132013-12-19 15:13:25 -0800311 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardt730636b2017-11-10 21:13:34 +0100312 if (data) {
Lei Wen142c8f92011-06-28 21:50:06 +0000313 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
314 mode = SDHCI_TRNS_BLK_CNT_EN;
315 trans_bytes = data->blocks * data->blocksize;
316 if (data->blocks > 1)
317 mode |= SDHCI_TRNS_MULTI;
318
319 if (data->flags == MMC_DATA_READ)
320 mode |= SDHCI_TRNS_READ;
321
Faiz Abbas4c082a62019-04-16 23:06:58 +0530322 if (host->flags & USE_DMA) {
Faiz Abbas87102502019-04-16 23:06:57 +0530323 mode |= SDHCI_TRNS_DMA;
324 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000325 }
326
Lei Wen142c8f92011-06-28 21:50:06 +0000327 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
328 data->blocksize),
329 SDHCI_BLOCK_SIZE);
330 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
331 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu8e5db912015-03-23 17:57:00 -0500332 } else if (cmd->resp_type & MMC_RSP_BUSY) {
333 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000334 }
335
336 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wen142c8f92011-06-28 21:50:06 +0000337 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese42817a42015-06-29 14:58:08 +0200338 start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000339 do {
340 stat = sdhci_readl(host, SDHCI_INT_STATUS);
341 if (stat & SDHCI_INT_ERROR)
342 break;
Lei Wen142c8f92011-06-28 21:50:06 +0000343
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900344 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
345 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
346 return 0;
347 } else {
348 printf("%s: Timeout for status update!\n",
349 __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900350 return -ETIMEDOUT;
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900351 }
Jaehoon Chung89237a82012-04-23 02:36:25 +0000352 }
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900353 } while ((stat & mask) != mask);
Jaehoon Chung89237a82012-04-23 02:36:25 +0000354
Lei Wen142c8f92011-06-28 21:50:06 +0000355 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
356 sdhci_cmd_done(host, cmd);
357 sdhci_writel(host, mask, SDHCI_INT_STATUS);
358 } else
359 ret = -1;
360
361 if (!ret && data)
Faiz Abbas87102502019-04-16 23:06:57 +0530362 ret = sdhci_transfer_data(host, data);
Lei Wen142c8f92011-06-28 21:50:06 +0000363
Tushar Behera0fba4c22012-09-20 20:31:57 +0000364 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
365 udelay(1000);
366
Lei Wen142c8f92011-06-28 21:50:06 +0000367 stat = sdhci_readl(host, SDHCI_INT_STATUS);
368 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
369 if (!ret) {
370 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
371 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900372 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000373 return 0;
374 }
375
376 sdhci_reset(host, SDHCI_RESET_CMD);
377 sdhci_reset(host, SDHCI_RESET_DATA);
378 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung7825d202016-07-19 16:33:36 +0900379 return -ETIMEDOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000380 else
Jaehoon Chung7825d202016-07-19 16:33:36 +0900381 return -ECOMM;
Lei Wen142c8f92011-06-28 21:50:06 +0000382}
383
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530384#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
385static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
386{
387 int err;
388 struct mmc *mmc = mmc_get_mmc_dev(dev);
389 struct sdhci_host *host = mmc->priv;
390
391 debug("%s\n", __func__);
392
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300393 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530394 err = host->ops->platform_execute_tuning(mmc, opcode);
395 if (err)
396 return err;
397 return 0;
398 }
399 return 0;
400}
401#endif
Faiz Abbasab619662019-06-11 00:43:35 +0530402int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000403{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200404 struct sdhci_host *host = mmc->priv;
Stefan Roesee9161032016-12-12 08:34:42 +0100405 unsigned int div, clk = 0, timeout;
Wenyou Yang09456d92015-09-22 14:59:25 +0800406
407 /* Wait max 20 ms */
408 timeout = 200;
409 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
410 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
411 if (timeout == 0) {
412 printf("%s: Timeout to wait cmd & data inhibit\n",
413 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900414 return -EBUSY;
Wenyou Yang09456d92015-09-22 14:59:25 +0800415 }
416
417 timeout--;
418 udelay(100);
419 }
Lei Wen142c8f92011-06-28 21:50:06 +0000420
Stefan Roesee9161032016-12-12 08:34:42 +0100421 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000422
423 if (clock == 0)
424 return 0;
425
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300426 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530427 host->ops->set_delay(host);
428
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900429 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800430 /*
431 * Check if the Host Controller supports Programmable Clock
432 * Mode.
433 */
434 if (host->clk_mul) {
435 for (div = 1; div <= 1024; div++) {
Wenyou Yangab877fe2017-04-26 09:32:30 +0800436 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000437 break;
438 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800439
440 /*
441 * Set Programmable Clock Mode in the Clock
442 * Control register.
443 */
444 clk = SDHCI_PROG_CLOCK_MODE;
445 div--;
446 } else {
447 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100448 if (host->max_clk <= clock) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800449 div = 1;
450 } else {
451 for (div = 2;
452 div < SDHCI_MAX_DIV_SPEC_300;
453 div += 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100454 if ((host->max_clk / div) <= clock)
Wenyou Yang3d734042016-09-18 09:01:22 +0800455 break;
456 }
457 }
458 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000459 }
460 } else {
461 /* Version 2.00 divisors must be a power of 2. */
462 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100463 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000464 break;
465 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800466 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000467 }
Lei Wen142c8f92011-06-28 21:50:06 +0000468
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900469 if (host->ops && host->ops->set_clock)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900470 host->ops->set_clock(host, div);
Jaehoon Chungb1929ea2012-08-30 16:24:11 +0000471
Wenyou Yang3d734042016-09-18 09:01:22 +0800472 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000473 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
474 << SDHCI_DIVIDER_HI_SHIFT;
475 clk |= SDHCI_CLOCK_INT_EN;
476 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
477
478 /* Wait max 20 ms */
479 timeout = 20;
480 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
481 & SDHCI_CLOCK_INT_STABLE)) {
482 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -0800483 printf("%s: Internal clock never stabilised.\n",
484 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900485 return -EBUSY;
Lei Wen142c8f92011-06-28 21:50:06 +0000486 }
487 timeout--;
488 udelay(1000);
489 }
490
491 clk |= SDHCI_CLOCK_CARD_EN;
492 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
493 return 0;
494}
495
496static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
497{
498 u8 pwr = 0;
499
500 if (power != (unsigned short)-1) {
501 switch (1 << power) {
502 case MMC_VDD_165_195:
503 pwr = SDHCI_POWER_180;
504 break;
505 case MMC_VDD_29_30:
506 case MMC_VDD_30_31:
507 pwr = SDHCI_POWER_300;
508 break;
509 case MMC_VDD_32_33:
510 case MMC_VDD_33_34:
511 pwr = SDHCI_POWER_330;
512 break;
513 }
514 }
515
516 if (pwr == 0) {
517 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
518 return;
519 }
520
521 pwr |= SDHCI_POWER_ON;
522
523 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
524}
525
Faiz Abbas2eddc002019-06-11 00:43:40 +0530526void sdhci_set_uhs_timing(struct sdhci_host *host)
527{
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900528 struct mmc *mmc = host->mmc;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530529 u32 reg;
530
531 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
532 reg &= ~SDHCI_CTRL_UHS_MASK;
533
534 switch (mmc->selected_mode) {
535 case UHS_SDR50:
536 case MMC_HS_52:
537 reg |= SDHCI_CTRL_UHS_SDR50;
538 break;
539 case UHS_DDR50:
540 case MMC_DDR_52:
541 reg |= SDHCI_CTRL_UHS_DDR50;
542 break;
543 case UHS_SDR104:
544 case MMC_HS_200:
545 reg |= SDHCI_CTRL_UHS_SDR104;
546 break;
547 default:
548 reg |= SDHCI_CTRL_UHS_SDR12;
549 }
550
551 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
552}
553
Simon Glasseba48f92017-07-29 11:35:31 -0600554#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600555static int sdhci_set_ios(struct udevice *dev)
556{
557 struct mmc *mmc = mmc_get_mmc_dev(dev);
558#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900559static int sdhci_set_ios(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000560{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600561#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000562 u32 ctrl;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200563 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000564
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900565 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900566 host->ops->set_control_reg(host);
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000567
Lei Wen142c8f92011-06-28 21:50:06 +0000568 if (mmc->clock != host->clock)
569 sdhci_set_clock(mmc, mmc->clock);
570
Siva Durga Prasad Paladugu9fccd8a2018-04-19 12:37:04 +0530571 if (mmc->clk_disable)
572 sdhci_set_clock(mmc, 0);
573
Lei Wen142c8f92011-06-28 21:50:06 +0000574 /* Set bus width */
575 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
576 if (mmc->bus_width == 8) {
577 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900578 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
579 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000580 ctrl |= SDHCI_CTRL_8BITBUS;
581 } else {
Matt Reimer9651f592015-02-19 11:22:53 -0700582 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
583 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000584 ctrl &= ~SDHCI_CTRL_8BITBUS;
585 if (mmc->bus_width == 4)
586 ctrl |= SDHCI_CTRL_4BITBUS;
587 else
588 ctrl &= ~SDHCI_CTRL_4BITBUS;
589 }
590
591 if (mmc->clock > 26000000)
592 ctrl |= SDHCI_CTRL_HISPD;
593 else
594 ctrl &= ~SDHCI_CTRL_HISPD;
595
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100596 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
597 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE))
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000598 ctrl &= ~SDHCI_CTRL_HISPD;
599
Lei Wen142c8f92011-06-28 21:50:06 +0000600 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900601
Stefan Roesea3554ef2016-12-12 08:24:56 +0100602 /* If available, call the driver specific "post" set_ios() function */
603 if (host->ops && host->ops->set_ios_post)
Faiz Abbas375acf82019-06-11 00:43:37 +0530604 return host->ops->set_ios_post(host);
Stefan Roesea3554ef2016-12-12 08:24:56 +0100605
Simon Glassb97f0fa2016-06-12 23:30:28 -0600606 return 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000607}
608
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200609static int sdhci_init(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000610{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200611 struct sdhci_host *host = mmc->priv;
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200612#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
613 struct udevice *dev = mmc->dev;
614
Baruch Siach6b907192019-07-22 19:14:06 +0300615 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200616 &host->cd_gpio, GPIOD_IS_IN);
617#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000618
Masahiro Yamadaea04d902016-08-25 16:07:34 +0900619 sdhci_reset(host, SDHCI_RESET_ALL);
620
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900621#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
622 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamada32d12132020-02-14 16:40:22 +0900623 /*
624 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
625 * is defined.
626 */
627 host->force_align_buffer = true;
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900628#else
629 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
630 host->align_buffer = memalign(8, 512 * 1024);
631 if (!host->align_buffer) {
Darwin Rambo43558132013-12-19 15:13:25 -0800632 printf("%s: Aligned buffer alloc failed!!!\n",
633 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900634 return -ENOMEM;
Lei Wen142c8f92011-06-28 21:50:06 +0000635 }
636 }
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900637#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000638
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200639 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000640
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900641 if (host->ops && host->ops->get_cd)
Jaehoon Chung730a5952016-12-30 15:30:15 +0900642 host->ops->get_cd(host);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000643
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000644 /* Enable only interrupts served by the SD controller */
Darwin Rambo43558132013-12-19 15:13:25 -0800645 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
646 SDHCI_INT_ENABLE);
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000647 /* Mask all sdhci interrupt sources */
648 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wen142c8f92011-06-28 21:50:06 +0000649
Lei Wen142c8f92011-06-28 21:50:06 +0000650 return 0;
651}
652
Simon Glasseba48f92017-07-29 11:35:31 -0600653#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600654int sdhci_probe(struct udevice *dev)
655{
656 struct mmc *mmc = mmc_get_mmc_dev(dev);
657
658 return sdhci_init(mmc);
659}
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200660
Faiz Abbasd2229212020-02-26 13:44:31 +0530661static int sdhci_deferred_probe(struct udevice *dev)
662{
663 int err;
664 struct mmc *mmc = mmc_get_mmc_dev(dev);
665 struct sdhci_host *host = mmc->priv;
666
667 if (host->ops && host->ops->deferred_probe) {
668 err = host->ops->deferred_probe(host);
669 if (err)
670 return err;
671 }
672 return 0;
673}
674
Baruch Siach4c280a92019-11-03 12:00:27 +0200675static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200676{
677 struct mmc *mmc = mmc_get_mmc_dev(dev);
678 struct sdhci_host *host = mmc->priv;
679 int value;
680
681 /* If nonremovable, assume that the card is always present. */
682 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
683 return 1;
684 /* If polling, assume that the card is always present. */
685 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
686 return 1;
687
688#if CONFIG_IS_ENABLED(DM_GPIO)
689 value = dm_gpio_get_value(&host->cd_gpio);
690 if (value >= 0) {
691 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
692 return !value;
693 else
694 return value;
695 }
696#endif
697 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
698 SDHCI_CARD_PRESENT);
699 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
700 return !value;
701 else
702 return value;
703}
704
Simon Glassb97f0fa2016-06-12 23:30:28 -0600705const struct dm_mmc_ops sdhci_ops = {
706 .send_cmd = sdhci_send_command,
707 .set_ios = sdhci_set_ios,
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200708 .get_cd = sdhci_get_cd,
Faiz Abbasd2229212020-02-26 13:44:31 +0530709 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530710#ifdef MMC_SUPPORTS_TUNING
711 .execute_tuning = sdhci_execute_tuning,
712#endif
Simon Glassb97f0fa2016-06-12 23:30:28 -0600713};
714#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200715static const struct mmc_ops sdhci_ops = {
716 .send_cmd = sdhci_send_command,
717 .set_ios = sdhci_set_ios,
718 .init = sdhci_init,
719};
Simon Glassb97f0fa2016-06-12 23:30:28 -0600720#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200721
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900722int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100723 u32 f_max, u32 f_min)
Lei Wen142c8f92011-06-28 21:50:06 +0000724{
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530725 u32 caps, caps_1 = 0;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530726#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200727 u64 dt_caps, dt_caps_mask;
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900728
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200729 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
730 "sdhci-caps-mask", 0);
731 dt_caps = dev_read_u64_default(host->mmc->dev,
732 "sdhci-caps", 0);
733 caps = ~(u32)dt_caps_mask &
734 sdhci_readl(host, SDHCI_CAPABILITIES);
735 caps |= (u32)dt_caps;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530736#else
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900737 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530738#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200739 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900740
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900741#ifdef CONFIG_MMC_SDHCI_SDMA
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900742 if (!(caps & SDHCI_CAN_DO_SDMA)) {
743 printf("%s: Your controller doesn't support SDMA!!\n",
744 __func__);
745 return -EINVAL;
746 }
Faiz Abbas87102502019-04-16 23:06:57 +0530747
748 host->flags |= USE_SDMA;
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900749#endif
Faiz Abbas4c082a62019-04-16 23:06:58 +0530750#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
751 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
752 printf("%s: Your controller doesn't support SDMA!!\n",
753 __func__);
754 return -EINVAL;
755 }
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900756 host->adma_desc_table = memalign(ARCH_DMA_MINALIGN, ADMA_TABLE_SZ);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530757
758 host->adma_addr = (dma_addr_t)host->adma_desc_table;
759#ifdef CONFIG_DMA_ADDR_T_64BIT
760 host->flags |= USE_ADMA64;
761#else
762 host->flags |= USE_ADMA;
763#endif
764#endif
Jaehoon Chung6c5b3592016-09-26 08:10:01 +0900765 if (host->quirks & SDHCI_QUIRK_REG32_RW)
766 host->version =
767 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
768 else
769 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900770
771 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600772#ifndef CONFIG_DM_MMC
Simon Glassb0842072016-06-12 23:30:27 -0600773 cfg->ops = &sdhci_ops;
Lei Wen142c8f92011-06-28 21:50:06 +0000774#endif
Wenyou Yangab877fe2017-04-26 09:32:30 +0800775
776 /* Check whether the clock multiplier is supported or not */
777 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530778#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200779 caps_1 = ~(u32)(dt_caps_mask >> 32) &
780 sdhci_readl(host, SDHCI_CAPABILITIES_1);
781 caps_1 |= (u32)(dt_caps >> 32);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530782#else
Wenyou Yangab877fe2017-04-26 09:32:30 +0800783 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530784#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200785 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yangab877fe2017-04-26 09:32:30 +0800786 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
787 SDHCI_CLOCK_MUL_SHIFT;
788 }
789
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100790 if (host->max_clk == 0) {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900791 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100792 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600793 SDHCI_CLOCK_BASE_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000794 else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100795 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600796 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100797 host->max_clk *= 1000000;
Wenyou Yangab877fe2017-04-26 09:32:30 +0800798 if (host->clk_mul)
799 host->max_clk *= host->clk_mul;
Lei Wen142c8f92011-06-28 21:50:06 +0000800 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100801 if (host->max_clk == 0) {
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900802 printf("%s: Hardware doesn't specify base clock frequency\n",
803 __func__);
Simon Glassb0842072016-06-12 23:30:27 -0600804 return -EINVAL;
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900805 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100806 if (f_max && (f_max < host->max_clk))
807 cfg->f_max = f_max;
808 else
809 cfg->f_max = host->max_clk;
810 if (f_min)
811 cfg->f_min = f_min;
Lei Wen142c8f92011-06-28 21:50:06 +0000812 else {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900813 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glassb0842072016-06-12 23:30:27 -0600814 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
Lei Wen142c8f92011-06-28 21:50:06 +0000815 else
Simon Glassb0842072016-06-12 23:30:27 -0600816 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
Lei Wen142c8f92011-06-28 21:50:06 +0000817 }
Simon Glassb0842072016-06-12 23:30:27 -0600818 cfg->voltages = 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000819 if (caps & SDHCI_CAN_VDD_330)
Simon Glassb0842072016-06-12 23:30:27 -0600820 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Lei Wen142c8f92011-06-28 21:50:06 +0000821 if (caps & SDHCI_CAN_VDD_300)
Simon Glassb0842072016-06-12 23:30:27 -0600822 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
Lei Wen142c8f92011-06-28 21:50:06 +0000823 if (caps & SDHCI_CAN_VDD_180)
Simon Glassb0842072016-06-12 23:30:27 -0600824 cfg->voltages |= MMC_VDD_165_195;
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000825
Masahiro Yamada4b338772016-08-25 16:07:36 +0900826 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
827 cfg->voltages |= host->voltages;
828
Masahiro Yamadaea5b7c02017-12-30 02:00:08 +0900829 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chungbc00a542016-12-30 15:30:21 +0900830
831 /* Since Host Controller Version3.0 */
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900832 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chung665152e2016-12-30 15:30:11 +0900833 if (!(caps & SDHCI_CAN_DO_8BIT))
834 cfg->host_caps &= ~MMC_MODE_8BIT;
Jagannadha Sutradharudu Teki08706be2013-05-21 15:01:36 +0530835 }
Siva Durga Prasad Paladugub0fbb492016-01-12 15:12:15 +0530836
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100837 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
838 cfg->host_caps &= ~MMC_MODE_HS;
839 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
840 }
841
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530842 if (!(cfg->voltages & MMC_VDD_165_195) ||
843 (host->quirks & SDHCI_QUIRK_NO_1_8_V))
844 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 Chung8a5ffbb2016-07-26 19:06:24 +0900865 if (host->host_caps)
866 cfg->host_caps |= host->host_caps;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200867
Simon Glassb0842072016-06-12 23:30:27 -0600868 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
869
870 return 0;
871}
872
Simon Glassb97f0fa2016-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 Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100879int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Simon Glassb0842072016-06-12 23:30:27 -0600880{
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900881 int ret;
882
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100883 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900884 if (ret)
885 return ret;
Simon Glassb0842072016-06-12 23:30:27 -0600886
Pantelis Antoniou2c850462014-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 Chungfc6c1c62016-09-26 08:10:02 +0900890 return -ENOMEM;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200891 }
Lei Wen142c8f92011-06-28 21:50:06 +0000892
893 return 0;
894}
Simon Glassb97f0fa2016-06-12 23:30:28 -0600895#endif