blob: 0cec0a70513e188e5e8e6d586655088827fc92fa [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>
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <asm/cache.h>
Masahiro Yamada97e7e822020-02-14 16:40:26 +090019#include <linux/dma-mapping.h>
Jaehoon Chung27685932020-03-27 13:08:00 +090020#include <phys2bus.h>
Lei Wen142c8f92011-06-28 21:50:06 +000021
Lei Wen142c8f92011-06-28 21:50:06 +000022static void sdhci_reset(struct sdhci_host *host, u8 mask)
23{
24 unsigned long timeout;
25
26 /* Wait max 100 ms */
27 timeout = 100;
28 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
29 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
30 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -080031 printf("%s: Reset 0x%x never completed.\n",
32 __func__, (int)mask);
Lei Wen142c8f92011-06-28 21:50:06 +000033 return;
34 }
35 timeout--;
36 udelay(1000);
37 }
38}
39
40static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
41{
42 int i;
43 if (cmd->resp_type & MMC_RSP_136) {
44 /* CRC is stripped so we need to do some shifting. */
45 for (i = 0; i < 4; i++) {
46 cmd->response[i] = sdhci_readl(host,
47 SDHCI_RESPONSE + (3-i)*4) << 8;
48 if (i != 3)
49 cmd->response[i] |= sdhci_readb(host,
50 SDHCI_RESPONSE + (3-i)*4-1);
51 }
52 } else {
53 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
54 }
55}
56
57static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
58{
59 int i;
60 char *offs;
61 for (i = 0; i < data->blocksize; i += 4) {
62 offs = data->dest + i;
63 if (data->flags == MMC_DATA_READ)
64 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
65 else
66 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
67 }
68}
Faiz Abbas4c082a62019-04-16 23:06:58 +053069
70#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
Masahiro Yamada97e7e822020-02-14 16:40:26 +090071static void sdhci_adma_desc(struct sdhci_host *host, dma_addr_t dma_addr,
72 u16 len, bool end)
Faiz Abbas4c082a62019-04-16 23:06:58 +053073{
74 struct sdhci_adma_desc *desc;
75 u8 attr;
76
77 desc = &host->adma_desc_table[host->desc_slot];
78
79 attr = ADMA_DESC_ATTR_VALID | ADMA_DESC_TRANSFER_DATA;
80 if (!end)
81 host->desc_slot++;
82 else
83 attr |= ADMA_DESC_ATTR_END;
84
85 desc->attr = attr;
86 desc->len = len;
87 desc->reserved = 0;
Masahiro Yamada97e7e822020-02-14 16:40:26 +090088 desc->addr_lo = lower_32_bits(dma_addr);
Faiz Abbas4c082a62019-04-16 23:06:58 +053089#ifdef CONFIG_DMA_ADDR_T_64BIT
Masahiro Yamada97e7e822020-02-14 16:40:26 +090090 desc->addr_hi = upper_32_bits(dma_addr);
Faiz Abbas4c082a62019-04-16 23:06:58 +053091#endif
92}
93
94static void sdhci_prepare_adma_table(struct sdhci_host *host,
95 struct mmc_data *data)
96{
97 uint trans_bytes = data->blocksize * data->blocks;
98 uint desc_count = DIV_ROUND_UP(trans_bytes, ADMA_MAX_LEN);
99 int i = desc_count;
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900100 dma_addr_t dma_addr = host->start_addr;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530101
102 host->desc_slot = 0;
103
Faiz Abbas4c082a62019-04-16 23:06:58 +0530104 while (--i) {
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900105 sdhci_adma_desc(host, dma_addr, ADMA_MAX_LEN, false);
106 dma_addr += ADMA_MAX_LEN;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530107 trans_bytes -= ADMA_MAX_LEN;
108 }
109
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900110 sdhci_adma_desc(host, dma_addr, trans_bytes, true);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530111
112 flush_cache((dma_addr_t)host->adma_desc_table,
113 ROUND(desc_count * sizeof(struct sdhci_adma_desc),
114 ARCH_DMA_MINALIGN));
115}
116#elif defined(CONFIG_MMC_SDHCI_SDMA)
117static void sdhci_prepare_adma_table(struct sdhci_host *host,
118 struct mmc_data *data)
119{}
120#endif
121#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas87102502019-04-16 23:06:57 +0530122static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
123 int *is_aligned, int trans_bytes)
124{
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000125 unsigned char ctrl;
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900126 void *buf;
Faiz Abbas87102502019-04-16 23:06:57 +0530127
128 if (data->flags == MMC_DATA_READ)
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900129 buf = data->dest;
Faiz Abbas87102502019-04-16 23:06:57 +0530130 else
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900131 buf = (void *)data->src;
Faiz Abbas87102502019-04-16 23:06:57 +0530132
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +0000133 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000134 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530135 if (host->flags & USE_ADMA64)
136 ctrl |= SDHCI_CTRL_ADMA64;
137 else if (host->flags & USE_ADMA)
138 ctrl |= SDHCI_CTRL_ADMA32;
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +0000139 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Faiz Abbas87102502019-04-16 23:06:57 +0530140
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900141 if (host->flags & USE_SDMA &&
142 (host->force_align_buffer ||
143 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
144 ((unsigned long)buf & 0x7) != 0x0))) {
145 *is_aligned = 0;
146 if (data->flags != MMC_DATA_READ)
147 memcpy(host->align_buffer, buf, trans_bytes);
148 buf = host->align_buffer;
149 }
150
151 host->start_addr = dma_map_single(buf, trans_bytes,
152 mmc_get_dma_dir(data));
153
Faiz Abbas4c082a62019-04-16 23:06:58 +0530154 if (host->flags & USE_SDMA) {
Jaehoon Chung27685932020-03-27 13:08:00 +0900155 sdhci_writel(host, phys_to_bus((ulong)host->start_addr),
156 SDHCI_DMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530157 } else if (host->flags & (USE_ADMA | USE_ADMA64)) {
158 sdhci_prepare_adma_table(host, data);
159
Masahiro Yamada97eda292020-02-14 16:40:23 +0900160 sdhci_writel(host, lower_32_bits(host->adma_addr),
161 SDHCI_ADMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530162 if (host->flags & USE_ADMA64)
Masahiro Yamada97eda292020-02-14 16:40:23 +0900163 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas4c082a62019-04-16 23:06:58 +0530164 SDHCI_ADMA_ADDRESS_HI);
165 }
Faiz Abbas87102502019-04-16 23:06:57 +0530166}
167#else
168static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
169 int *is_aligned, int trans_bytes)
170{}
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000171#endif
Faiz Abbas87102502019-04-16 23:06:57 +0530172static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
173{
174 dma_addr_t start_addr = host->start_addr;
175 unsigned int stat, rdy, mask, timeout, block = 0;
176 bool transfer_done = false;
Lei Wen142c8f92011-06-28 21:50:06 +0000177
Jaehoon Chung30686bd2012-09-20 20:31:54 +0000178 timeout = 1000000;
Lei Wen142c8f92011-06-28 21:50:06 +0000179 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
180 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
181 do {
182 stat = sdhci_readl(host, SDHCI_INT_STATUS);
183 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada45256c42017-12-30 02:00:12 +0900184 pr_debug("%s: Error detected in status(0x%X)!\n",
185 __func__, stat);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900186 return -EIO;
Lei Wen142c8f92011-06-28 21:50:06 +0000187 }
Alex Deymod9b70232017-04-02 01:24:34 -0700188 if (!transfer_done && (stat & rdy)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000189 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
190 continue;
191 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
192 sdhci_transfer_pio(host, data);
193 data->dest += data->blocksize;
Alex Deymod9b70232017-04-02 01:24:34 -0700194 if (++block >= data->blocks) {
195 /* Keep looping until the SDHCI_INT_DATA_END is
196 * cleared, even if we finished sending all the
197 * blocks.
198 */
199 transfer_done = true;
200 continue;
201 }
Lei Wen142c8f92011-06-28 21:50:06 +0000202 }
Faiz Abbas4c082a62019-04-16 23:06:58 +0530203 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas87102502019-04-16 23:06:57 +0530204 (stat & SDHCI_INT_DMA_END)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000205 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530206 if (host->flags & USE_SDMA) {
207 start_addr &=
208 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
209 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Jaehoon Chung27685932020-03-27 13:08:00 +0900210 sdhci_writel(host, phys_to_bus((ulong)start_addr),
Faiz Abbas4c082a62019-04-16 23:06:58 +0530211 SDHCI_DMA_ADDRESS);
212 }
Lei Wen142c8f92011-06-28 21:50:06 +0000213 }
Lei Wen6c13c662011-10-08 04:14:57 +0000214 if (timeout-- > 0)
215 udelay(10);
216 else {
Darwin Rambo43558132013-12-19 15:13:25 -0800217 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900218 return -ETIMEDOUT;
Lei Wen6c13c662011-10-08 04:14:57 +0000219 }
Lei Wen142c8f92011-06-28 21:50:06 +0000220 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900221
222 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
223 mmc_get_dma_dir(data));
224
Lei Wen142c8f92011-06-28 21:50:06 +0000225 return 0;
226}
227
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200228/*
229 * No command will be sent by driver if card is busy, so driver must wait
230 * for card ready state.
231 * Every time when card is busy after timeout then (last) timeout value will be
232 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada96250112016-08-25 16:07:39 +0900233 * Each function call will use last timeout value.
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200234 */
Masahiro Yamada96250112016-08-25 16:07:39 +0900235#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad4512312016-08-25 16:07:38 +0900236#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed4780832016-06-29 13:42:01 -0700237#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200238
Simon Glasseba48f92017-07-29 11:35:31 -0600239#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600240static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
241 struct mmc_data *data)
242{
243 struct mmc *mmc = mmc_get_mmc_dev(dev);
244
245#else
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200246static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
Simon Glassb97f0fa2016-06-12 23:30:28 -0600247 struct mmc_data *data)
Lei Wen142c8f92011-06-28 21:50:06 +0000248{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600249#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200250 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000251 unsigned int stat = 0;
252 int ret = 0;
253 int trans_bytes = 0, is_aligned = 1;
254 u32 mask, flags, mode;
Faiz Abbas87102502019-04-16 23:06:57 +0530255 unsigned int time = 0;
Simon Glass97c78e82016-05-14 14:03:04 -0600256 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumardbad7b42018-05-03 12:20:54 +0530257 ulong start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000258
Faiz Abbas87102502019-04-16 23:06:57 +0530259 host->start_addr = 0;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200260 /* Timeout unit - ms */
Masahiro Yamadad4512312016-08-25 16:07:38 +0900261 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000262
Lei Wen142c8f92011-06-28 21:50:06 +0000263 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
264
265 /* We shouldn't wait for data inihibit for stop commands, even
266 though they might use busy signaling */
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530267 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530268 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
269 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wen142c8f92011-06-28 21:50:06 +0000270 mask &= ~SDHCI_DATA_INHIBIT;
271
272 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200273 if (time >= cmd_timeout) {
Darwin Rambo43558132013-12-19 15:13:25 -0800274 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada96250112016-08-25 16:07:39 +0900275 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200276 cmd_timeout += cmd_timeout;
277 printf("timeout increasing to: %u ms.\n",
278 cmd_timeout);
279 } else {
280 puts("timeout.\n");
Jaehoon Chung7825d202016-07-19 16:33:36 +0900281 return -ECOMM;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200282 }
Lei Wen142c8f92011-06-28 21:50:06 +0000283 }
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200284 time++;
Lei Wen142c8f92011-06-28 21:50:06 +0000285 udelay(1000);
286 }
287
Jorge Ramirez-Ortiz65da8be2017-11-02 15:10:21 +0100288 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
289
Lei Wen142c8f92011-06-28 21:50:06 +0000290 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530291 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
292 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530293 mask = SDHCI_INT_DATA_AVAIL;
294
Lei Wen142c8f92011-06-28 21:50:06 +0000295 if (!(cmd->resp_type & MMC_RSP_PRESENT))
296 flags = SDHCI_CMD_RESP_NONE;
297 else if (cmd->resp_type & MMC_RSP_136)
298 flags = SDHCI_CMD_RESP_LONG;
299 else if (cmd->resp_type & MMC_RSP_BUSY) {
300 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chungd0d1b252016-07-12 21:18:46 +0900301 if (data)
302 mask |= SDHCI_INT_DATA_END;
Lei Wen142c8f92011-06-28 21:50:06 +0000303 } else
304 flags = SDHCI_CMD_RESP_SHORT;
305
306 if (cmd->resp_type & MMC_RSP_CRC)
307 flags |= SDHCI_CMD_CRC;
308 if (cmd->resp_type & MMC_RSP_OPCODE)
309 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu5d88ba72018-05-29 20:03:10 +0530310 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
311 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wen142c8f92011-06-28 21:50:06 +0000312 flags |= SDHCI_CMD_DATA;
313
Darwin Rambo43558132013-12-19 15:13:25 -0800314 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardt730636b2017-11-10 21:13:34 +0100315 if (data) {
Lei Wen142c8f92011-06-28 21:50:06 +0000316 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
317 mode = SDHCI_TRNS_BLK_CNT_EN;
318 trans_bytes = data->blocks * data->blocksize;
319 if (data->blocks > 1)
320 mode |= SDHCI_TRNS_MULTI;
321
322 if (data->flags == MMC_DATA_READ)
323 mode |= SDHCI_TRNS_READ;
324
Faiz Abbas4c082a62019-04-16 23:06:58 +0530325 if (host->flags & USE_DMA) {
Faiz Abbas87102502019-04-16 23:06:57 +0530326 mode |= SDHCI_TRNS_DMA;
327 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000328 }
329
Lei Wen142c8f92011-06-28 21:50:06 +0000330 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
331 data->blocksize),
332 SDHCI_BLOCK_SIZE);
333 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
334 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu8e5db912015-03-23 17:57:00 -0500335 } else if (cmd->resp_type & MMC_RSP_BUSY) {
336 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000337 }
338
339 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wen142c8f92011-06-28 21:50:06 +0000340 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese42817a42015-06-29 14:58:08 +0200341 start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000342 do {
343 stat = sdhci_readl(host, SDHCI_INT_STATUS);
344 if (stat & SDHCI_INT_ERROR)
345 break;
Lei Wen142c8f92011-06-28 21:50:06 +0000346
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900347 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
348 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
349 return 0;
350 } else {
351 printf("%s: Timeout for status update!\n",
352 __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900353 return -ETIMEDOUT;
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900354 }
Jaehoon Chung89237a82012-04-23 02:36:25 +0000355 }
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900356 } while ((stat & mask) != mask);
Jaehoon Chung89237a82012-04-23 02:36:25 +0000357
Lei Wen142c8f92011-06-28 21:50:06 +0000358 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
359 sdhci_cmd_done(host, cmd);
360 sdhci_writel(host, mask, SDHCI_INT_STATUS);
361 } else
362 ret = -1;
363
364 if (!ret && data)
Faiz Abbas87102502019-04-16 23:06:57 +0530365 ret = sdhci_transfer_data(host, data);
Lei Wen142c8f92011-06-28 21:50:06 +0000366
Tushar Behera0fba4c22012-09-20 20:31:57 +0000367 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
368 udelay(1000);
369
Lei Wen142c8f92011-06-28 21:50:06 +0000370 stat = sdhci_readl(host, SDHCI_INT_STATUS);
371 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
372 if (!ret) {
373 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
374 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900375 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000376 return 0;
377 }
378
379 sdhci_reset(host, SDHCI_RESET_CMD);
380 sdhci_reset(host, SDHCI_RESET_DATA);
381 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung7825d202016-07-19 16:33:36 +0900382 return -ETIMEDOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000383 else
Jaehoon Chung7825d202016-07-19 16:33:36 +0900384 return -ECOMM;
Lei Wen142c8f92011-06-28 21:50:06 +0000385}
386
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530387#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
388static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
389{
390 int err;
391 struct mmc *mmc = mmc_get_mmc_dev(dev);
392 struct sdhci_host *host = mmc->priv;
393
394 debug("%s\n", __func__);
395
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300396 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530397 err = host->ops->platform_execute_tuning(mmc, opcode);
398 if (err)
399 return err;
400 return 0;
401 }
402 return 0;
403}
404#endif
Faiz Abbasab619662019-06-11 00:43:35 +0530405int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000406{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200407 struct sdhci_host *host = mmc->priv;
Stefan Roesee9161032016-12-12 08:34:42 +0100408 unsigned int div, clk = 0, timeout;
Wenyou Yang09456d92015-09-22 14:59:25 +0800409
410 /* Wait max 20 ms */
411 timeout = 200;
412 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
413 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
414 if (timeout == 0) {
415 printf("%s: Timeout to wait cmd & data inhibit\n",
416 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900417 return -EBUSY;
Wenyou Yang09456d92015-09-22 14:59:25 +0800418 }
419
420 timeout--;
421 udelay(100);
422 }
Lei Wen142c8f92011-06-28 21:50:06 +0000423
Stefan Roesee9161032016-12-12 08:34:42 +0100424 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000425
426 if (clock == 0)
427 return 0;
428
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300429 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530430 host->ops->set_delay(host);
431
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900432 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800433 /*
434 * Check if the Host Controller supports Programmable Clock
435 * Mode.
436 */
437 if (host->clk_mul) {
438 for (div = 1; div <= 1024; div++) {
Wenyou Yangab877fe2017-04-26 09:32:30 +0800439 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000440 break;
441 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800442
443 /*
444 * Set Programmable Clock Mode in the Clock
445 * Control register.
446 */
447 clk = SDHCI_PROG_CLOCK_MODE;
448 div--;
449 } else {
450 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100451 if (host->max_clk <= clock) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800452 div = 1;
453 } else {
454 for (div = 2;
455 div < SDHCI_MAX_DIV_SPEC_300;
456 div += 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100457 if ((host->max_clk / div) <= clock)
Wenyou Yang3d734042016-09-18 09:01:22 +0800458 break;
459 }
460 }
461 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000462 }
463 } else {
464 /* Version 2.00 divisors must be a power of 2. */
465 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100466 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000467 break;
468 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800469 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000470 }
Lei Wen142c8f92011-06-28 21:50:06 +0000471
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900472 if (host->ops && host->ops->set_clock)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900473 host->ops->set_clock(host, div);
Jaehoon Chungb1929ea2012-08-30 16:24:11 +0000474
Wenyou Yang3d734042016-09-18 09:01:22 +0800475 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000476 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
477 << SDHCI_DIVIDER_HI_SHIFT;
478 clk |= SDHCI_CLOCK_INT_EN;
479 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
480
481 /* Wait max 20 ms */
482 timeout = 20;
483 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
484 & SDHCI_CLOCK_INT_STABLE)) {
485 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -0800486 printf("%s: Internal clock never stabilised.\n",
487 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900488 return -EBUSY;
Lei Wen142c8f92011-06-28 21:50:06 +0000489 }
490 timeout--;
491 udelay(1000);
492 }
493
494 clk |= SDHCI_CLOCK_CARD_EN;
495 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
496 return 0;
497}
498
499static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
500{
501 u8 pwr = 0;
502
503 if (power != (unsigned short)-1) {
504 switch (1 << power) {
505 case MMC_VDD_165_195:
506 pwr = SDHCI_POWER_180;
507 break;
508 case MMC_VDD_29_30:
509 case MMC_VDD_30_31:
510 pwr = SDHCI_POWER_300;
511 break;
512 case MMC_VDD_32_33:
513 case MMC_VDD_33_34:
514 pwr = SDHCI_POWER_330;
515 break;
516 }
517 }
518
519 if (pwr == 0) {
520 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
521 return;
522 }
523
524 pwr |= SDHCI_POWER_ON;
525
526 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
527}
528
Faiz Abbas2eddc002019-06-11 00:43:40 +0530529void sdhci_set_uhs_timing(struct sdhci_host *host)
530{
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900531 struct mmc *mmc = host->mmc;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530532 u32 reg;
533
534 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
535 reg &= ~SDHCI_CTRL_UHS_MASK;
536
537 switch (mmc->selected_mode) {
538 case UHS_SDR50:
539 case MMC_HS_52:
540 reg |= SDHCI_CTRL_UHS_SDR50;
541 break;
542 case UHS_DDR50:
543 case MMC_DDR_52:
544 reg |= SDHCI_CTRL_UHS_DDR50;
545 break;
546 case UHS_SDR104:
547 case MMC_HS_200:
548 reg |= SDHCI_CTRL_UHS_SDR104;
549 break;
550 default:
551 reg |= SDHCI_CTRL_UHS_SDR12;
552 }
553
554 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
555}
556
Simon Glasseba48f92017-07-29 11:35:31 -0600557#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600558static int sdhci_set_ios(struct udevice *dev)
559{
560 struct mmc *mmc = mmc_get_mmc_dev(dev);
561#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900562static int sdhci_set_ios(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000563{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600564#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000565 u32 ctrl;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200566 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000567
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900568 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900569 host->ops->set_control_reg(host);
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000570
Lei Wen142c8f92011-06-28 21:50:06 +0000571 if (mmc->clock != host->clock)
572 sdhci_set_clock(mmc, mmc->clock);
573
Siva Durga Prasad Paladugu9fccd8a2018-04-19 12:37:04 +0530574 if (mmc->clk_disable)
575 sdhci_set_clock(mmc, 0);
576
Lei Wen142c8f92011-06-28 21:50:06 +0000577 /* Set bus width */
578 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
579 if (mmc->bus_width == 8) {
580 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900581 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
582 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000583 ctrl |= SDHCI_CTRL_8BITBUS;
584 } else {
Matt Reimer9651f592015-02-19 11:22:53 -0700585 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
586 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000587 ctrl &= ~SDHCI_CTRL_8BITBUS;
588 if (mmc->bus_width == 4)
589 ctrl |= SDHCI_CTRL_4BITBUS;
590 else
591 ctrl &= ~SDHCI_CTRL_4BITBUS;
592 }
593
594 if (mmc->clock > 26000000)
595 ctrl |= SDHCI_CTRL_HISPD;
596 else
597 ctrl &= ~SDHCI_CTRL_HISPD;
598
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100599 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
600 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE))
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000601 ctrl &= ~SDHCI_CTRL_HISPD;
602
Lei Wen142c8f92011-06-28 21:50:06 +0000603 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900604
Stefan Roesea3554ef2016-12-12 08:24:56 +0100605 /* If available, call the driver specific "post" set_ios() function */
606 if (host->ops && host->ops->set_ios_post)
Faiz Abbas375acf82019-06-11 00:43:37 +0530607 return host->ops->set_ios_post(host);
Stefan Roesea3554ef2016-12-12 08:24:56 +0100608
Simon Glassb97f0fa2016-06-12 23:30:28 -0600609 return 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000610}
611
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200612static int sdhci_init(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000613{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200614 struct sdhci_host *host = mmc->priv;
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200615#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
616 struct udevice *dev = mmc->dev;
617
Baruch Siach6b907192019-07-22 19:14:06 +0300618 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200619 &host->cd_gpio, GPIOD_IS_IN);
620#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000621
Masahiro Yamadaea04d902016-08-25 16:07:34 +0900622 sdhci_reset(host, SDHCI_RESET_ALL);
623
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900624#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
625 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamada32d12132020-02-14 16:40:22 +0900626 /*
627 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
628 * is defined.
629 */
630 host->force_align_buffer = true;
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900631#else
632 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
633 host->align_buffer = memalign(8, 512 * 1024);
634 if (!host->align_buffer) {
Darwin Rambo43558132013-12-19 15:13:25 -0800635 printf("%s: Aligned buffer alloc failed!!!\n",
636 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900637 return -ENOMEM;
Lei Wen142c8f92011-06-28 21:50:06 +0000638 }
639 }
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900640#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000641
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200642 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000643
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900644 if (host->ops && host->ops->get_cd)
Jaehoon Chung730a5952016-12-30 15:30:15 +0900645 host->ops->get_cd(host);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000646
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000647 /* Enable only interrupts served by the SD controller */
Darwin Rambo43558132013-12-19 15:13:25 -0800648 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
649 SDHCI_INT_ENABLE);
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000650 /* Mask all sdhci interrupt sources */
651 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wen142c8f92011-06-28 21:50:06 +0000652
Lei Wen142c8f92011-06-28 21:50:06 +0000653 return 0;
654}
655
Simon Glasseba48f92017-07-29 11:35:31 -0600656#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600657int sdhci_probe(struct udevice *dev)
658{
659 struct mmc *mmc = mmc_get_mmc_dev(dev);
660
661 return sdhci_init(mmc);
662}
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200663
Faiz Abbasd2229212020-02-26 13:44:31 +0530664static int sdhci_deferred_probe(struct udevice *dev)
665{
666 int err;
667 struct mmc *mmc = mmc_get_mmc_dev(dev);
668 struct sdhci_host *host = mmc->priv;
669
670 if (host->ops && host->ops->deferred_probe) {
671 err = host->ops->deferred_probe(host);
672 if (err)
673 return err;
674 }
675 return 0;
676}
677
Baruch Siach4c280a92019-11-03 12:00:27 +0200678static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200679{
680 struct mmc *mmc = mmc_get_mmc_dev(dev);
681 struct sdhci_host *host = mmc->priv;
682 int value;
683
684 /* If nonremovable, assume that the card is always present. */
685 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
686 return 1;
687 /* If polling, assume that the card is always present. */
688 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
689 return 1;
690
691#if CONFIG_IS_ENABLED(DM_GPIO)
692 value = dm_gpio_get_value(&host->cd_gpio);
693 if (value >= 0) {
694 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
695 return !value;
696 else
697 return value;
698 }
699#endif
700 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
701 SDHCI_CARD_PRESENT);
702 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
703 return !value;
704 else
705 return value;
706}
707
Simon Glassb97f0fa2016-06-12 23:30:28 -0600708const struct dm_mmc_ops sdhci_ops = {
709 .send_cmd = sdhci_send_command,
710 .set_ios = sdhci_set_ios,
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200711 .get_cd = sdhci_get_cd,
Faiz Abbasd2229212020-02-26 13:44:31 +0530712 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530713#ifdef MMC_SUPPORTS_TUNING
714 .execute_tuning = sdhci_execute_tuning,
715#endif
Simon Glassb97f0fa2016-06-12 23:30:28 -0600716};
717#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200718static const struct mmc_ops sdhci_ops = {
719 .send_cmd = sdhci_send_command,
720 .set_ios = sdhci_set_ios,
721 .init = sdhci_init,
722};
Simon Glassb97f0fa2016-06-12 23:30:28 -0600723#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200724
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900725int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100726 u32 f_max, u32 f_min)
Lei Wen142c8f92011-06-28 21:50:06 +0000727{
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530728 u32 caps, caps_1 = 0;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530729#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200730 u64 dt_caps, dt_caps_mask;
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900731
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200732 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
733 "sdhci-caps-mask", 0);
734 dt_caps = dev_read_u64_default(host->mmc->dev,
735 "sdhci-caps", 0);
736 caps = ~(u32)dt_caps_mask &
737 sdhci_readl(host, SDHCI_CAPABILITIES);
738 caps |= (u32)dt_caps;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530739#else
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900740 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530741#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200742 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900743
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900744#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungd9a86c12020-03-27 13:08:01 +0900745 if ((caps & SDHCI_CAN_DO_SDMA)) {
746 host->flags |= USE_SDMA;
747 } else {
Matthias Brugger44354b02020-05-12 12:02:06 +0200748 debug("%s: Your controller doesn't support SDMA!!\n",
749 __func__);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900750 }
751#endif
Faiz Abbas4c082a62019-04-16 23:06:58 +0530752#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
753 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
754 printf("%s: Your controller doesn't support SDMA!!\n",
755 __func__);
756 return -EINVAL;
757 }
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900758 host->adma_desc_table = memalign(ARCH_DMA_MINALIGN, ADMA_TABLE_SZ);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530759
760 host->adma_addr = (dma_addr_t)host->adma_desc_table;
761#ifdef CONFIG_DMA_ADDR_T_64BIT
762 host->flags |= USE_ADMA64;
763#else
764 host->flags |= USE_ADMA;
765#endif
766#endif
Jaehoon Chung6c5b3592016-09-26 08:10:01 +0900767 if (host->quirks & SDHCI_QUIRK_REG32_RW)
768 host->version =
769 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
770 else
771 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900772
773 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600774#ifndef CONFIG_DM_MMC
Simon Glassb0842072016-06-12 23:30:27 -0600775 cfg->ops = &sdhci_ops;
Lei Wen142c8f92011-06-28 21:50:06 +0000776#endif
Wenyou Yangab877fe2017-04-26 09:32:30 +0800777
778 /* Check whether the clock multiplier is supported or not */
779 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530780#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200781 caps_1 = ~(u32)(dt_caps_mask >> 32) &
782 sdhci_readl(host, SDHCI_CAPABILITIES_1);
783 caps_1 |= (u32)(dt_caps >> 32);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530784#else
Wenyou Yangab877fe2017-04-26 09:32:30 +0800785 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530786#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200787 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yangab877fe2017-04-26 09:32:30 +0800788 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
789 SDHCI_CLOCK_MUL_SHIFT;
790 }
791
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100792 if (host->max_clk == 0) {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900793 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100794 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600795 SDHCI_CLOCK_BASE_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000796 else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100797 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600798 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100799 host->max_clk *= 1000000;
Wenyou Yangab877fe2017-04-26 09:32:30 +0800800 if (host->clk_mul)
801 host->max_clk *= host->clk_mul;
Lei Wen142c8f92011-06-28 21:50:06 +0000802 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100803 if (host->max_clk == 0) {
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900804 printf("%s: Hardware doesn't specify base clock frequency\n",
805 __func__);
Simon Glassb0842072016-06-12 23:30:27 -0600806 return -EINVAL;
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900807 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100808 if (f_max && (f_max < host->max_clk))
809 cfg->f_max = f_max;
810 else
811 cfg->f_max = host->max_clk;
812 if (f_min)
813 cfg->f_min = f_min;
Lei Wen142c8f92011-06-28 21:50:06 +0000814 else {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900815 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glassb0842072016-06-12 23:30:27 -0600816 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
Lei Wen142c8f92011-06-28 21:50:06 +0000817 else
Simon Glassb0842072016-06-12 23:30:27 -0600818 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
Lei Wen142c8f92011-06-28 21:50:06 +0000819 }
Simon Glassb0842072016-06-12 23:30:27 -0600820 cfg->voltages = 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000821 if (caps & SDHCI_CAN_VDD_330)
Simon Glassb0842072016-06-12 23:30:27 -0600822 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Lei Wen142c8f92011-06-28 21:50:06 +0000823 if (caps & SDHCI_CAN_VDD_300)
Simon Glassb0842072016-06-12 23:30:27 -0600824 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
Lei Wen142c8f92011-06-28 21:50:06 +0000825 if (caps & SDHCI_CAN_VDD_180)
Simon Glassb0842072016-06-12 23:30:27 -0600826 cfg->voltages |= MMC_VDD_165_195;
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000827
Masahiro Yamada4b338772016-08-25 16:07:36 +0900828 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
829 cfg->voltages |= host->voltages;
830
Masahiro Yamadaea5b7c02017-12-30 02:00:08 +0900831 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chungbc00a542016-12-30 15:30:21 +0900832
833 /* Since Host Controller Version3.0 */
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900834 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chung665152e2016-12-30 15:30:11 +0900835 if (!(caps & SDHCI_CAN_DO_8BIT))
836 cfg->host_caps &= ~MMC_MODE_8BIT;
Jagannadha Sutradharudu Teki08706be2013-05-21 15:01:36 +0530837 }
Siva Durga Prasad Paladugub0fbb492016-01-12 15:12:15 +0530838
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100839 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
840 cfg->host_caps &= ~MMC_MODE_HS;
841 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
842 }
843
Benedikt Grassl529e6f02020-04-14 07:32:12 +0200844 if (!(cfg->voltages & MMC_VDD_165_195))
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530845 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
846 SDHCI_SUPPORT_DDR50);
847
848 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
849 SDHCI_SUPPORT_DDR50))
850 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
851
852 if (caps_1 & SDHCI_SUPPORT_SDR104) {
853 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
854 /*
855 * SD3.0: SDR104 is supported so (for eMMC) the caps2
856 * field can be promoted to support HS200.
857 */
858 cfg->host_caps |= MMC_CAP(MMC_HS_200);
859 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
860 cfg->host_caps |= MMC_CAP(UHS_SDR50);
861 }
862
863 if (caps_1 & SDHCI_SUPPORT_DDR50)
864 cfg->host_caps |= MMC_CAP(UHS_DDR50);
865
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900866 if (host->host_caps)
867 cfg->host_caps |= host->host_caps;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200868
Simon Glassb0842072016-06-12 23:30:27 -0600869 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
870
871 return 0;
872}
873
Simon Glassb97f0fa2016-06-12 23:30:28 -0600874#ifdef CONFIG_BLK
875int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
876{
877 return mmc_bind(dev, mmc, cfg);
878}
879#else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100880int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Simon Glassb0842072016-06-12 23:30:27 -0600881{
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900882 int ret;
883
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100884 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900885 if (ret)
886 return ret;
Simon Glassb0842072016-06-12 23:30:27 -0600887
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200888 host->mmc = mmc_create(&host->cfg, host);
889 if (host->mmc == NULL) {
890 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900891 return -ENOMEM;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200892 }
Lei Wen142c8f92011-06-28 21:50:06 +0000893
894 return 0;
895}
Simon Glassb97f0fa2016-06-12 23:30:28 -0600896#endif