blob: 73142db29a1b44fd72c3e3bceaec48688f3ae973 [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>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Lei Wen142c8f92011-06-28 21:50:06 +000015#include <malloc.h>
16#include <mmc.h>
17#include <sdhci.h>
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +020018#include <dm.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <asm/cache.h>
Simon Glassdbd79542020-05-10 11:40:11 -060020#include <linux/delay.h>
Masahiro Yamada97e7e822020-02-14 16:40:26 +090021#include <linux/dma-mapping.h>
Jaehoon Chung27685932020-03-27 13:08:00 +090022#include <phys2bus.h>
Lei Wen142c8f92011-06-28 21:50:06 +000023
Lei Wen142c8f92011-06-28 21:50:06 +000024static void sdhci_reset(struct sdhci_host *host, u8 mask)
25{
26 unsigned long timeout;
27
28 /* Wait max 100 ms */
29 timeout = 100;
30 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
31 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
32 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -080033 printf("%s: Reset 0x%x never completed.\n",
34 __func__, (int)mask);
Lei Wen142c8f92011-06-28 21:50:06 +000035 return;
36 }
37 timeout--;
38 udelay(1000);
39 }
40}
41
42static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
43{
44 int i;
45 if (cmd->resp_type & MMC_RSP_136) {
46 /* CRC is stripped so we need to do some shifting. */
47 for (i = 0; i < 4; i++) {
48 cmd->response[i] = sdhci_readl(host,
49 SDHCI_RESPONSE + (3-i)*4) << 8;
50 if (i != 3)
51 cmd->response[i] |= sdhci_readb(host,
52 SDHCI_RESPONSE + (3-i)*4-1);
53 }
54 } else {
55 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
56 }
57}
58
59static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
60{
61 int i;
62 char *offs;
63 for (i = 0; i < data->blocksize; i += 4) {
64 offs = data->dest + i;
65 if (data->flags == MMC_DATA_READ)
66 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
67 else
68 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
69 }
70}
Faiz Abbas4c082a62019-04-16 23:06:58 +053071
72#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
Masahiro Yamada97e7e822020-02-14 16:40:26 +090073static void sdhci_adma_desc(struct sdhci_host *host, dma_addr_t dma_addr,
74 u16 len, bool end)
Faiz Abbas4c082a62019-04-16 23:06:58 +053075{
76 struct sdhci_adma_desc *desc;
77 u8 attr;
78
79 desc = &host->adma_desc_table[host->desc_slot];
80
81 attr = ADMA_DESC_ATTR_VALID | ADMA_DESC_TRANSFER_DATA;
82 if (!end)
83 host->desc_slot++;
84 else
85 attr |= ADMA_DESC_ATTR_END;
86
87 desc->attr = attr;
88 desc->len = len;
89 desc->reserved = 0;
Masahiro Yamada97e7e822020-02-14 16:40:26 +090090 desc->addr_lo = lower_32_bits(dma_addr);
Faiz Abbas4c082a62019-04-16 23:06:58 +053091#ifdef CONFIG_DMA_ADDR_T_64BIT
Masahiro Yamada97e7e822020-02-14 16:40:26 +090092 desc->addr_hi = upper_32_bits(dma_addr);
Faiz Abbas4c082a62019-04-16 23:06:58 +053093#endif
94}
95
96static void sdhci_prepare_adma_table(struct sdhci_host *host,
97 struct mmc_data *data)
98{
99 uint trans_bytes = data->blocksize * data->blocks;
100 uint desc_count = DIV_ROUND_UP(trans_bytes, ADMA_MAX_LEN);
101 int i = desc_count;
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900102 dma_addr_t dma_addr = host->start_addr;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530103
104 host->desc_slot = 0;
105
Faiz Abbas4c082a62019-04-16 23:06:58 +0530106 while (--i) {
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900107 sdhci_adma_desc(host, dma_addr, ADMA_MAX_LEN, false);
108 dma_addr += ADMA_MAX_LEN;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530109 trans_bytes -= ADMA_MAX_LEN;
110 }
111
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900112 sdhci_adma_desc(host, dma_addr, trans_bytes, true);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530113
114 flush_cache((dma_addr_t)host->adma_desc_table,
115 ROUND(desc_count * sizeof(struct sdhci_adma_desc),
116 ARCH_DMA_MINALIGN));
117}
118#elif defined(CONFIG_MMC_SDHCI_SDMA)
119static void sdhci_prepare_adma_table(struct sdhci_host *host,
120 struct mmc_data *data)
121{}
122#endif
123#if (defined(CONFIG_MMC_SDHCI_SDMA) || CONFIG_IS_ENABLED(MMC_SDHCI_ADMA))
Faiz Abbas87102502019-04-16 23:06:57 +0530124static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
125 int *is_aligned, int trans_bytes)
126{
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000127 unsigned char ctrl;
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900128 void *buf;
Faiz Abbas87102502019-04-16 23:06:57 +0530129
130 if (data->flags == MMC_DATA_READ)
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900131 buf = data->dest;
Faiz Abbas87102502019-04-16 23:06:57 +0530132 else
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900133 buf = (void *)data->src;
Faiz Abbas87102502019-04-16 23:06:57 +0530134
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +0000135 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000136 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Faiz Abbas4c082a62019-04-16 23:06:58 +0530137 if (host->flags & USE_ADMA64)
138 ctrl |= SDHCI_CTRL_ADMA64;
139 else if (host->flags & USE_ADMA)
140 ctrl |= SDHCI_CTRL_ADMA32;
Juhyun \(Justin\) Oh7d48a732013-09-13 18:06:00 +0000141 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Faiz Abbas87102502019-04-16 23:06:57 +0530142
Masahiro Yamada97e7e822020-02-14 16:40:26 +0900143 if (host->flags & USE_SDMA &&
144 (host->force_align_buffer ||
145 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR &&
146 ((unsigned long)buf & 0x7) != 0x0))) {
147 *is_aligned = 0;
148 if (data->flags != MMC_DATA_READ)
149 memcpy(host->align_buffer, buf, trans_bytes);
150 buf = host->align_buffer;
151 }
152
153 host->start_addr = dma_map_single(buf, trans_bytes,
154 mmc_get_dma_dir(data));
155
Faiz Abbas4c082a62019-04-16 23:06:58 +0530156 if (host->flags & USE_SDMA) {
Jaehoon Chung27685932020-03-27 13:08:00 +0900157 sdhci_writel(host, phys_to_bus((ulong)host->start_addr),
158 SDHCI_DMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530159 } else if (host->flags & (USE_ADMA | USE_ADMA64)) {
160 sdhci_prepare_adma_table(host, data);
161
Masahiro Yamada97eda292020-02-14 16:40:23 +0900162 sdhci_writel(host, lower_32_bits(host->adma_addr),
163 SDHCI_ADMA_ADDRESS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530164 if (host->flags & USE_ADMA64)
Masahiro Yamada97eda292020-02-14 16:40:23 +0900165 sdhci_writel(host, upper_32_bits(host->adma_addr),
Faiz Abbas4c082a62019-04-16 23:06:58 +0530166 SDHCI_ADMA_ADDRESS_HI);
167 }
Faiz Abbas87102502019-04-16 23:06:57 +0530168}
169#else
170static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
171 int *is_aligned, int trans_bytes)
172{}
Jaehoon Chungf77f0582012-09-20 20:31:55 +0000173#endif
Faiz Abbas87102502019-04-16 23:06:57 +0530174static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
175{
176 dma_addr_t start_addr = host->start_addr;
177 unsigned int stat, rdy, mask, timeout, block = 0;
178 bool transfer_done = false;
Lei Wen142c8f92011-06-28 21:50:06 +0000179
Jaehoon Chung30686bd2012-09-20 20:31:54 +0000180 timeout = 1000000;
Lei Wen142c8f92011-06-28 21:50:06 +0000181 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
182 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
183 do {
184 stat = sdhci_readl(host, SDHCI_INT_STATUS);
185 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada45256c42017-12-30 02:00:12 +0900186 pr_debug("%s: Error detected in status(0x%X)!\n",
187 __func__, stat);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900188 return -EIO;
Lei Wen142c8f92011-06-28 21:50:06 +0000189 }
Alex Deymod9b70232017-04-02 01:24:34 -0700190 if (!transfer_done && (stat & rdy)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000191 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
192 continue;
193 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
194 sdhci_transfer_pio(host, data);
195 data->dest += data->blocksize;
Alex Deymod9b70232017-04-02 01:24:34 -0700196 if (++block >= data->blocks) {
197 /* Keep looping until the SDHCI_INT_DATA_END is
198 * cleared, even if we finished sending all the
199 * blocks.
200 */
201 transfer_done = true;
202 continue;
203 }
Lei Wen142c8f92011-06-28 21:50:06 +0000204 }
Faiz Abbas4c082a62019-04-16 23:06:58 +0530205 if ((host->flags & USE_DMA) && !transfer_done &&
Faiz Abbas87102502019-04-16 23:06:57 +0530206 (stat & SDHCI_INT_DMA_END)) {
Lei Wen142c8f92011-06-28 21:50:06 +0000207 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530208 if (host->flags & USE_SDMA) {
209 start_addr &=
210 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
211 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
Jaehoon Chung27685932020-03-27 13:08:00 +0900212 sdhci_writel(host, phys_to_bus((ulong)start_addr),
Faiz Abbas4c082a62019-04-16 23:06:58 +0530213 SDHCI_DMA_ADDRESS);
214 }
Lei Wen142c8f92011-06-28 21:50:06 +0000215 }
Lei Wen6c13c662011-10-08 04:14:57 +0000216 if (timeout-- > 0)
217 udelay(10);
218 else {
Darwin Rambo43558132013-12-19 15:13:25 -0800219 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900220 return -ETIMEDOUT;
Lei Wen6c13c662011-10-08 04:14:57 +0000221 }
Lei Wen142c8f92011-06-28 21:50:06 +0000222 } while (!(stat & SDHCI_INT_DATA_END));
Masahiro Yamadacf61a5f2020-02-14 16:40:27 +0900223
224 dma_unmap_single(host->start_addr, data->blocks * data->blocksize,
225 mmc_get_dma_dir(data));
226
Lei Wen142c8f92011-06-28 21:50:06 +0000227 return 0;
228}
229
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200230/*
231 * No command will be sent by driver if card is busy, so driver must wait
232 * for card ready state.
233 * Every time when card is busy after timeout then (last) timeout value will be
234 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada96250112016-08-25 16:07:39 +0900235 * Each function call will use last timeout value.
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200236 */
Masahiro Yamada96250112016-08-25 16:07:39 +0900237#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad4512312016-08-25 16:07:38 +0900238#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed4780832016-06-29 13:42:01 -0700239#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200240
Simon Glasseba48f92017-07-29 11:35:31 -0600241#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600242static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
243 struct mmc_data *data)
244{
245 struct mmc *mmc = mmc_get_mmc_dev(dev);
246
247#else
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200248static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
Simon Glassb97f0fa2016-06-12 23:30:28 -0600249 struct mmc_data *data)
Lei Wen142c8f92011-06-28 21:50:06 +0000250{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600251#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200252 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000253 unsigned int stat = 0;
254 int ret = 0;
255 int trans_bytes = 0, is_aligned = 1;
256 u32 mask, flags, mode;
Faiz Abbas87102502019-04-16 23:06:57 +0530257 unsigned int time = 0;
Simon Glass97c78e82016-05-14 14:03:04 -0600258 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumardbad7b42018-05-03 12:20:54 +0530259 ulong start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000260
Faiz Abbas87102502019-04-16 23:06:57 +0530261 host->start_addr = 0;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200262 /* Timeout unit - ms */
Masahiro Yamadad4512312016-08-25 16:07:38 +0900263 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000264
Lei Wen142c8f92011-06-28 21:50:06 +0000265 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
266
267 /* We shouldn't wait for data inihibit for stop commands, even
268 though they might use busy signaling */
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530269 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530270 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
271 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wen142c8f92011-06-28 21:50:06 +0000272 mask &= ~SDHCI_DATA_INHIBIT;
273
274 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200275 if (time >= cmd_timeout) {
Darwin Rambo43558132013-12-19 15:13:25 -0800276 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada96250112016-08-25 16:07:39 +0900277 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200278 cmd_timeout += cmd_timeout;
279 printf("timeout increasing to: %u ms.\n",
280 cmd_timeout);
281 } else {
282 puts("timeout.\n");
Jaehoon Chung7825d202016-07-19 16:33:36 +0900283 return -ECOMM;
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200284 }
Lei Wen142c8f92011-06-28 21:50:06 +0000285 }
Przemyslaw Marczakadccccf2013-10-08 18:12:09 +0200286 time++;
Lei Wen142c8f92011-06-28 21:50:06 +0000287 udelay(1000);
288 }
289
Jorge Ramirez-Ortiz65da8be2017-11-02 15:10:21 +0100290 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
291
Lei Wen142c8f92011-06-28 21:50:06 +0000292 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugub97e99f2018-06-13 11:43:01 +0530293 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
294 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugudb620bd2018-04-19 12:37:05 +0530295 mask = SDHCI_INT_DATA_AVAIL;
296
Lei Wen142c8f92011-06-28 21:50:06 +0000297 if (!(cmd->resp_type & MMC_RSP_PRESENT))
298 flags = SDHCI_CMD_RESP_NONE;
299 else if (cmd->resp_type & MMC_RSP_136)
300 flags = SDHCI_CMD_RESP_LONG;
301 else if (cmd->resp_type & MMC_RSP_BUSY) {
302 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chungd0d1b252016-07-12 21:18:46 +0900303 if (data)
304 mask |= SDHCI_INT_DATA_END;
Lei Wen142c8f92011-06-28 21:50:06 +0000305 } else
306 flags = SDHCI_CMD_RESP_SHORT;
307
308 if (cmd->resp_type & MMC_RSP_CRC)
309 flags |= SDHCI_CMD_CRC;
310 if (cmd->resp_type & MMC_RSP_OPCODE)
311 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu5d88ba72018-05-29 20:03:10 +0530312 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
313 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wen142c8f92011-06-28 21:50:06 +0000314 flags |= SDHCI_CMD_DATA;
315
Darwin Rambo43558132013-12-19 15:13:25 -0800316 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardt730636b2017-11-10 21:13:34 +0100317 if (data) {
Lei Wen142c8f92011-06-28 21:50:06 +0000318 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
319 mode = SDHCI_TRNS_BLK_CNT_EN;
320 trans_bytes = data->blocks * data->blocksize;
321 if (data->blocks > 1)
322 mode |= SDHCI_TRNS_MULTI;
323
324 if (data->flags == MMC_DATA_READ)
325 mode |= SDHCI_TRNS_READ;
326
Faiz Abbas4c082a62019-04-16 23:06:58 +0530327 if (host->flags & USE_DMA) {
Faiz Abbas87102502019-04-16 23:06:57 +0530328 mode |= SDHCI_TRNS_DMA;
329 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000330 }
331
Lei Wen142c8f92011-06-28 21:50:06 +0000332 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
333 data->blocksize),
334 SDHCI_BLOCK_SIZE);
335 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
336 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu8e5db912015-03-23 17:57:00 -0500337 } else if (cmd->resp_type & MMC_RSP_BUSY) {
338 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000339 }
340
341 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wen142c8f92011-06-28 21:50:06 +0000342 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese42817a42015-06-29 14:58:08 +0200343 start = get_timer(0);
Lei Wen142c8f92011-06-28 21:50:06 +0000344 do {
345 stat = sdhci_readl(host, SDHCI_INT_STATUS);
346 if (stat & SDHCI_INT_ERROR)
347 break;
Lei Wen142c8f92011-06-28 21:50:06 +0000348
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900349 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
350 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
351 return 0;
352 } else {
353 printf("%s: Timeout for status update!\n",
354 __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900355 return -ETIMEDOUT;
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900356 }
Jaehoon Chung89237a82012-04-23 02:36:25 +0000357 }
Masahiro Yamadaa63aaa02016-07-10 00:40:22 +0900358 } while ((stat & mask) != mask);
Jaehoon Chung89237a82012-04-23 02:36:25 +0000359
Lei Wen142c8f92011-06-28 21:50:06 +0000360 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
361 sdhci_cmd_done(host, cmd);
362 sdhci_writel(host, mask, SDHCI_INT_STATUS);
363 } else
364 ret = -1;
365
366 if (!ret && data)
Faiz Abbas87102502019-04-16 23:06:57 +0530367 ret = sdhci_transfer_data(host, data);
Lei Wen142c8f92011-06-28 21:50:06 +0000368
Tushar Behera0fba4c22012-09-20 20:31:57 +0000369 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
370 udelay(1000);
371
Lei Wen142c8f92011-06-28 21:50:06 +0000372 stat = sdhci_readl(host, SDHCI_INT_STATUS);
373 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
374 if (!ret) {
375 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
376 !is_aligned && (data->flags == MMC_DATA_READ))
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900377 memcpy(data->dest, host->align_buffer, trans_bytes);
Lei Wen142c8f92011-06-28 21:50:06 +0000378 return 0;
379 }
380
381 sdhci_reset(host, SDHCI_RESET_CMD);
382 sdhci_reset(host, SDHCI_RESET_DATA);
383 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung7825d202016-07-19 16:33:36 +0900384 return -ETIMEDOUT;
Lei Wen142c8f92011-06-28 21:50:06 +0000385 else
Jaehoon Chung7825d202016-07-19 16:33:36 +0900386 return -ECOMM;
Lei Wen142c8f92011-06-28 21:50:06 +0000387}
388
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530389#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
390static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
391{
392 int err;
393 struct mmc *mmc = mmc_get_mmc_dev(dev);
394 struct sdhci_host *host = mmc->priv;
395
396 debug("%s\n", __func__);
397
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300398 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530399 err = host->ops->platform_execute_tuning(mmc, opcode);
400 if (err)
401 return err;
402 return 0;
403 }
404 return 0;
405}
406#endif
Faiz Abbasab619662019-06-11 00:43:35 +0530407int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000408{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200409 struct sdhci_host *host = mmc->priv;
Stefan Roesee9161032016-12-12 08:34:42 +0100410 unsigned int div, clk = 0, timeout;
Wenyou Yang09456d92015-09-22 14:59:25 +0800411
412 /* Wait max 20 ms */
413 timeout = 200;
414 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
415 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
416 if (timeout == 0) {
417 printf("%s: Timeout to wait cmd & data inhibit\n",
418 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900419 return -EBUSY;
Wenyou Yang09456d92015-09-22 14:59:25 +0800420 }
421
422 timeout--;
423 udelay(100);
424 }
Lei Wen142c8f92011-06-28 21:50:06 +0000425
Stefan Roesee9161032016-12-12 08:34:42 +0100426 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wen142c8f92011-06-28 21:50:06 +0000427
428 if (clock == 0)
429 return 0;
430
Ramon Friedcf6ba6f2018-05-14 15:02:30 +0300431 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530432 host->ops->set_delay(host);
433
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900434 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800435 /*
436 * Check if the Host Controller supports Programmable Clock
437 * Mode.
438 */
439 if (host->clk_mul) {
440 for (div = 1; div <= 1024; div++) {
Wenyou Yangab877fe2017-04-26 09:32:30 +0800441 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000442 break;
443 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800444
445 /*
446 * Set Programmable Clock Mode in the Clock
447 * Control register.
448 */
449 clk = SDHCI_PROG_CLOCK_MODE;
450 div--;
451 } else {
452 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100453 if (host->max_clk <= clock) {
Wenyou Yang3d734042016-09-18 09:01:22 +0800454 div = 1;
455 } else {
456 for (div = 2;
457 div < SDHCI_MAX_DIV_SPEC_300;
458 div += 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100459 if ((host->max_clk / div) <= clock)
Wenyou Yang3d734042016-09-18 09:01:22 +0800460 break;
461 }
462 }
463 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000464 }
465 } else {
466 /* Version 2.00 divisors must be a power of 2. */
467 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100468 if ((host->max_clk / div) <= clock)
Lei Wen142c8f92011-06-28 21:50:06 +0000469 break;
470 }
Wenyou Yang3d734042016-09-18 09:01:22 +0800471 div >>= 1;
Lei Wen142c8f92011-06-28 21:50:06 +0000472 }
Lei Wen142c8f92011-06-28 21:50:06 +0000473
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900474 if (host->ops && host->ops->set_clock)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900475 host->ops->set_clock(host, div);
Jaehoon Chungb1929ea2012-08-30 16:24:11 +0000476
Wenyou Yang3d734042016-09-18 09:01:22 +0800477 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000478 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
479 << SDHCI_DIVIDER_HI_SHIFT;
480 clk |= SDHCI_CLOCK_INT_EN;
481 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
482
483 /* Wait max 20 ms */
484 timeout = 20;
485 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
486 & SDHCI_CLOCK_INT_STABLE)) {
487 if (timeout == 0) {
Darwin Rambo43558132013-12-19 15:13:25 -0800488 printf("%s: Internal clock never stabilised.\n",
489 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900490 return -EBUSY;
Lei Wen142c8f92011-06-28 21:50:06 +0000491 }
492 timeout--;
493 udelay(1000);
494 }
495
496 clk |= SDHCI_CLOCK_CARD_EN;
497 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
498 return 0;
499}
500
501static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
502{
503 u8 pwr = 0;
504
505 if (power != (unsigned short)-1) {
506 switch (1 << power) {
507 case MMC_VDD_165_195:
508 pwr = SDHCI_POWER_180;
509 break;
510 case MMC_VDD_29_30:
511 case MMC_VDD_30_31:
512 pwr = SDHCI_POWER_300;
513 break;
514 case MMC_VDD_32_33:
515 case MMC_VDD_33_34:
516 pwr = SDHCI_POWER_330;
517 break;
518 }
519 }
520
521 if (pwr == 0) {
522 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
523 return;
524 }
525
526 pwr |= SDHCI_POWER_ON;
527
528 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
529}
530
Faiz Abbas2eddc002019-06-11 00:43:40 +0530531void sdhci_set_uhs_timing(struct sdhci_host *host)
532{
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900533 struct mmc *mmc = host->mmc;
Faiz Abbas2eddc002019-06-11 00:43:40 +0530534 u32 reg;
535
536 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
537 reg &= ~SDHCI_CTRL_UHS_MASK;
538
539 switch (mmc->selected_mode) {
540 case UHS_SDR50:
541 case MMC_HS_52:
542 reg |= SDHCI_CTRL_UHS_SDR50;
543 break;
544 case UHS_DDR50:
545 case MMC_DDR_52:
546 reg |= SDHCI_CTRL_UHS_DDR50;
547 break;
548 case UHS_SDR104:
549 case MMC_HS_200:
550 reg |= SDHCI_CTRL_UHS_SDR104;
551 break;
552 default:
553 reg |= SDHCI_CTRL_UHS_SDR12;
554 }
555
556 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
557}
558
Simon Glasseba48f92017-07-29 11:35:31 -0600559#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600560static int sdhci_set_ios(struct udevice *dev)
561{
562 struct mmc *mmc = mmc_get_mmc_dev(dev);
563#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900564static int sdhci_set_ios(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000565{
Simon Glassb97f0fa2016-06-12 23:30:28 -0600566#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000567 u32 ctrl;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200568 struct sdhci_host *host = mmc->priv;
Lei Wen142c8f92011-06-28 21:50:06 +0000569
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900570 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung46d3c032016-12-30 15:30:18 +0900571 host->ops->set_control_reg(host);
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000572
Lei Wen142c8f92011-06-28 21:50:06 +0000573 if (mmc->clock != host->clock)
574 sdhci_set_clock(mmc, mmc->clock);
575
Siva Durga Prasad Paladugu9fccd8a2018-04-19 12:37:04 +0530576 if (mmc->clk_disable)
577 sdhci_set_clock(mmc, 0);
578
Lei Wen142c8f92011-06-28 21:50:06 +0000579 /* Set bus width */
580 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
581 if (mmc->bus_width == 8) {
582 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung46e627c2013-07-19 17:44:49 +0900583 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
584 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000585 ctrl |= SDHCI_CTRL_8BITBUS;
586 } else {
Matt Reimer9651f592015-02-19 11:22:53 -0700587 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
588 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wen142c8f92011-06-28 21:50:06 +0000589 ctrl &= ~SDHCI_CTRL_8BITBUS;
590 if (mmc->bus_width == 4)
591 ctrl |= SDHCI_CTRL_4BITBUS;
592 else
593 ctrl &= ~SDHCI_CTRL_4BITBUS;
594 }
595
596 if (mmc->clock > 26000000)
597 ctrl |= SDHCI_CTRL_HISPD;
598 else
599 ctrl &= ~SDHCI_CTRL_HISPD;
600
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100601 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
602 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE))
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000603 ctrl &= ~SDHCI_CTRL_HISPD;
604
Lei Wen142c8f92011-06-28 21:50:06 +0000605 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900606
Stefan Roesea3554ef2016-12-12 08:24:56 +0100607 /* If available, call the driver specific "post" set_ios() function */
608 if (host->ops && host->ops->set_ios_post)
Faiz Abbas375acf82019-06-11 00:43:37 +0530609 return host->ops->set_ios_post(host);
Stefan Roesea3554ef2016-12-12 08:24:56 +0100610
Simon Glassb97f0fa2016-06-12 23:30:28 -0600611 return 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000612}
613
Jeroen Hofsteeee54c7b2014-10-08 22:57:43 +0200614static int sdhci_init(struct mmc *mmc)
Lei Wen142c8f92011-06-28 21:50:06 +0000615{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200616 struct sdhci_host *host = mmc->priv;
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200617#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_GPIO)
618 struct udevice *dev = mmc->dev;
619
Baruch Siach6b907192019-07-22 19:14:06 +0300620 gpio_request_by_name(dev, "cd-gpios", 0,
T Karthik Reddy3863f7e2019-06-25 13:39:03 +0200621 &host->cd_gpio, GPIOD_IS_IN);
622#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000623
Masahiro Yamadaea04d902016-08-25 16:07:34 +0900624 sdhci_reset(host, SDHCI_RESET_ALL);
625
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900626#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
627 host->align_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
Masahiro Yamada32d12132020-02-14 16:40:22 +0900628 /*
629 * Always use this bounce-buffer when CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
630 * is defined.
631 */
632 host->force_align_buffer = true;
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900633#else
634 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) {
635 host->align_buffer = memalign(8, 512 * 1024);
636 if (!host->align_buffer) {
Darwin Rambo43558132013-12-19 15:13:25 -0800637 printf("%s: Aligned buffer alloc failed!!!\n",
638 __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900639 return -ENOMEM;
Lei Wen142c8f92011-06-28 21:50:06 +0000640 }
641 }
Masahiro Yamadac3a17af2020-02-14 16:40:21 +0900642#endif
Lei Wen142c8f92011-06-28 21:50:06 +0000643
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200644 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000645
Masahiro Yamadaeeb91ad2017-01-13 11:51:51 +0900646 if (host->ops && host->ops->get_cd)
Jaehoon Chung730a5952016-12-30 15:30:15 +0900647 host->ops->get_cd(host);
Joe Hershberger456f34a2012-08-17 10:18:55 +0000648
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000649 /* Enable only interrupts served by the SD controller */
Darwin Rambo43558132013-12-19 15:13:25 -0800650 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
651 SDHCI_INT_ENABLE);
Łukasz Majewskid56a52a2013-01-11 05:08:54 +0000652 /* Mask all sdhci interrupt sources */
653 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wen142c8f92011-06-28 21:50:06 +0000654
Lei Wen142c8f92011-06-28 21:50:06 +0000655 return 0;
656}
657
Simon Glasseba48f92017-07-29 11:35:31 -0600658#ifdef CONFIG_DM_MMC
Simon Glassb97f0fa2016-06-12 23:30:28 -0600659int sdhci_probe(struct udevice *dev)
660{
661 struct mmc *mmc = mmc_get_mmc_dev(dev);
662
663 return sdhci_init(mmc);
664}
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200665
Faiz Abbasd2229212020-02-26 13:44:31 +0530666static int sdhci_deferred_probe(struct udevice *dev)
667{
668 int err;
669 struct mmc *mmc = mmc_get_mmc_dev(dev);
670 struct sdhci_host *host = mmc->priv;
671
672 if (host->ops && host->ops->deferred_probe) {
673 err = host->ops->deferred_probe(host);
674 if (err)
675 return err;
676 }
677 return 0;
678}
679
Baruch Siach4c280a92019-11-03 12:00:27 +0200680static int sdhci_get_cd(struct udevice *dev)
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200681{
682 struct mmc *mmc = mmc_get_mmc_dev(dev);
683 struct sdhci_host *host = mmc->priv;
684 int value;
685
686 /* If nonremovable, assume that the card is always present. */
687 if (mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE)
688 return 1;
689 /* If polling, assume that the card is always present. */
690 if (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL)
691 return 1;
692
693#if CONFIG_IS_ENABLED(DM_GPIO)
694 value = dm_gpio_get_value(&host->cd_gpio);
695 if (value >= 0) {
696 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
697 return !value;
698 else
699 return value;
700 }
701#endif
702 value = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
703 SDHCI_CARD_PRESENT);
704 if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
705 return !value;
706 else
707 return value;
708}
709
Simon Glassb97f0fa2016-06-12 23:30:28 -0600710const struct dm_mmc_ops sdhci_ops = {
711 .send_cmd = sdhci_send_command,
712 .set_ios = sdhci_set_ios,
T Karthik Reddyc8a0ec02019-06-25 13:39:04 +0200713 .get_cd = sdhci_get_cd,
Faiz Abbasd2229212020-02-26 13:44:31 +0530714 .deferred_probe = sdhci_deferred_probe,
Siva Durga Prasad Paladugu1f67b492018-04-19 12:37:07 +0530715#ifdef MMC_SUPPORTS_TUNING
716 .execute_tuning = sdhci_execute_tuning,
717#endif
Simon Glassb97f0fa2016-06-12 23:30:28 -0600718};
719#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200720static const struct mmc_ops sdhci_ops = {
721 .send_cmd = sdhci_send_command,
722 .set_ios = sdhci_set_ios,
723 .init = sdhci_init,
724};
Simon Glassb97f0fa2016-06-12 23:30:28 -0600725#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200726
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900727int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100728 u32 f_max, u32 f_min)
Lei Wen142c8f92011-06-28 21:50:06 +0000729{
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530730 u32 caps, caps_1 = 0;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530731#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200732 u64 dt_caps, dt_caps_mask;
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900733
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200734 dt_caps_mask = dev_read_u64_default(host->mmc->dev,
735 "sdhci-caps-mask", 0);
736 dt_caps = dev_read_u64_default(host->mmc->dev,
737 "sdhci-caps", 0);
738 caps = ~(u32)dt_caps_mask &
739 sdhci_readl(host, SDHCI_CAPABILITIES);
740 caps |= (u32)dt_caps;
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530741#else
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900742 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530743#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200744 debug("%s, caps: 0x%x\n", __func__, caps);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900745
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900746#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungd9a86c12020-03-27 13:08:01 +0900747 if ((caps & SDHCI_CAN_DO_SDMA)) {
748 host->flags |= USE_SDMA;
749 } else {
Matthias Brugger44354b02020-05-12 12:02:06 +0200750 debug("%s: Your controller doesn't support SDMA!!\n",
751 __func__);
Masahiro Yamada27bfb712016-08-25 16:07:37 +0900752 }
753#endif
Faiz Abbas4c082a62019-04-16 23:06:58 +0530754#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA)
755 if (!(caps & SDHCI_CAN_DO_ADMA2)) {
756 printf("%s: Your controller doesn't support SDMA!!\n",
757 __func__);
758 return -EINVAL;
759 }
Masahiro Yamadaa055e862020-02-14 16:40:24 +0900760 host->adma_desc_table = memalign(ARCH_DMA_MINALIGN, ADMA_TABLE_SZ);
Faiz Abbas4c082a62019-04-16 23:06:58 +0530761
762 host->adma_addr = (dma_addr_t)host->adma_desc_table;
763#ifdef CONFIG_DMA_ADDR_T_64BIT
764 host->flags |= USE_ADMA64;
765#else
766 host->flags |= USE_ADMA;
767#endif
768#endif
Jaehoon Chung6c5b3592016-09-26 08:10:01 +0900769 if (host->quirks & SDHCI_QUIRK_REG32_RW)
770 host->version =
771 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
772 else
773 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900774
775 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600776#ifndef CONFIG_DM_MMC
Simon Glassb0842072016-06-12 23:30:27 -0600777 cfg->ops = &sdhci_ops;
Lei Wen142c8f92011-06-28 21:50:06 +0000778#endif
Wenyou Yangab877fe2017-04-26 09:32:30 +0800779
780 /* Check whether the clock multiplier is supported or not */
781 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530782#if CONFIG_IS_ENABLED(DM_MMC)
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200783 caps_1 = ~(u32)(dt_caps_mask >> 32) &
784 sdhci_readl(host, SDHCI_CAPABILITIES_1);
785 caps_1 |= (u32)(dt_caps >> 32);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530786#else
Wenyou Yangab877fe2017-04-26 09:32:30 +0800787 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
Faiz Abbasf08f9d72019-06-11 00:43:34 +0530788#endif
T Karthik Reddy2a1b6632019-09-02 16:34:31 +0200789 debug("%s, caps_1: 0x%x\n", __func__, caps_1);
Wenyou Yangab877fe2017-04-26 09:32:30 +0800790 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
791 SDHCI_CLOCK_MUL_SHIFT;
792 }
793
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100794 if (host->max_clk == 0) {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900795 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100796 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600797 SDHCI_CLOCK_BASE_SHIFT;
Lei Wen142c8f92011-06-28 21:50:06 +0000798 else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100799 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glassb0842072016-06-12 23:30:27 -0600800 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100801 host->max_clk *= 1000000;
Wenyou Yangab877fe2017-04-26 09:32:30 +0800802 if (host->clk_mul)
803 host->max_clk *= host->clk_mul;
Lei Wen142c8f92011-06-28 21:50:06 +0000804 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100805 if (host->max_clk == 0) {
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900806 printf("%s: Hardware doesn't specify base clock frequency\n",
807 __func__);
Simon Glassb0842072016-06-12 23:30:27 -0600808 return -EINVAL;
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900809 }
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100810 if (f_max && (f_max < host->max_clk))
811 cfg->f_max = f_max;
812 else
813 cfg->f_max = host->max_clk;
814 if (f_min)
815 cfg->f_min = f_min;
Lei Wen142c8f92011-06-28 21:50:06 +0000816 else {
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900817 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glassb0842072016-06-12 23:30:27 -0600818 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
Lei Wen142c8f92011-06-28 21:50:06 +0000819 else
Simon Glassb0842072016-06-12 23:30:27 -0600820 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
Lei Wen142c8f92011-06-28 21:50:06 +0000821 }
Simon Glassb0842072016-06-12 23:30:27 -0600822 cfg->voltages = 0;
Lei Wen142c8f92011-06-28 21:50:06 +0000823 if (caps & SDHCI_CAN_VDD_330)
Simon Glassb0842072016-06-12 23:30:27 -0600824 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Lei Wen142c8f92011-06-28 21:50:06 +0000825 if (caps & SDHCI_CAN_VDD_300)
Simon Glassb0842072016-06-12 23:30:27 -0600826 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
Lei Wen142c8f92011-06-28 21:50:06 +0000827 if (caps & SDHCI_CAN_VDD_180)
Simon Glassb0842072016-06-12 23:30:27 -0600828 cfg->voltages |= MMC_VDD_165_195;
Jaehoon Chung53889ed2012-04-23 02:36:26 +0000829
Masahiro Yamada4b338772016-08-25 16:07:36 +0900830 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
831 cfg->voltages |= host->voltages;
832
Masahiro Yamadaea5b7c02017-12-30 02:00:08 +0900833 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chungbc00a542016-12-30 15:30:21 +0900834
835 /* Since Host Controller Version3.0 */
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900836 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chung665152e2016-12-30 15:30:11 +0900837 if (!(caps & SDHCI_CAN_DO_8BIT))
838 cfg->host_caps &= ~MMC_MODE_8BIT;
Jagannadha Sutradharudu Teki08706be2013-05-21 15:01:36 +0530839 }
Siva Durga Prasad Paladugub0fbb492016-01-12 15:12:15 +0530840
Hannes Schmelzer576a0182018-03-07 08:00:56 +0100841 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
842 cfg->host_caps &= ~MMC_MODE_HS;
843 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
844 }
845
Benedikt Grassl529e6f02020-04-14 07:32:12 +0200846 if (!(cfg->voltages & MMC_VDD_165_195))
Siva Durga Prasad Paladuguc0290b42018-04-19 12:37:08 +0530847 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
848 SDHCI_SUPPORT_DDR50);
849
850 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
851 SDHCI_SUPPORT_DDR50))
852 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
853
854 if (caps_1 & SDHCI_SUPPORT_SDR104) {
855 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
856 /*
857 * SD3.0: SDR104 is supported so (for eMMC) the caps2
858 * field can be promoted to support HS200.
859 */
860 cfg->host_caps |= MMC_CAP(MMC_HS_200);
861 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
862 cfg->host_caps |= MMC_CAP(UHS_SDR50);
863 }
864
865 if (caps_1 & SDHCI_SUPPORT_DDR50)
866 cfg->host_caps |= MMC_CAP(UHS_DDR50);
867
Jaehoon Chung8a5ffbb2016-07-26 19:06:24 +0900868 if (host->host_caps)
869 cfg->host_caps |= host->host_caps;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200870
Simon Glassb0842072016-06-12 23:30:27 -0600871 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
872
873 return 0;
874}
875
Simon Glassb97f0fa2016-06-12 23:30:28 -0600876#ifdef CONFIG_BLK
877int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
878{
879 return mmc_bind(dev, mmc, cfg);
880}
881#else
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100882int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Simon Glassb0842072016-06-12 23:30:27 -0600883{
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900884 int ret;
885
Stefan Herbrechtsmeierbc47e0e2017-01-17 15:58:48 +0100886 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamadada957dd2016-08-25 16:07:35 +0900887 if (ret)
888 return ret;
Simon Glassb0842072016-06-12 23:30:27 -0600889
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200890 host->mmc = mmc_create(&host->cfg, host);
891 if (host->mmc == NULL) {
892 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chungfc6c1c62016-09-26 08:10:02 +0900893 return -ENOMEM;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200894 }
Lei Wen142c8f92011-06-28 21:50:06 +0000895
896 return 0;
897}
Simon Glassb97f0fa2016-06-12 23:30:28 -0600898#endif