blob: f3d687ae806f6aded5f9f6f210e7b93e39f78c44 [file] [log] [blame]
Thomas Choud52ebf12010-12-24 13:12:21 +00001/*
2 * generic mmc spi driver
3 *
4 * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
Bhargav Shah05e35d42019-07-08 04:10:48 +00005 * Copyright 2019 Bhargav Shah <bhargavshah1988@gmail.com>
6 *
Thomas Choud52ebf12010-12-24 13:12:21 +00007 * Licensed under the GPL-2 or later.
8 */
9#include <common.h>
Jaehoon Chung915ffa52016-07-19 16:33:36 +090010#include <errno.h>
Thomas Choud52ebf12010-12-24 13:12:21 +000011#include <malloc.h>
12#include <part.h>
13#include <mmc.h>
Bhargav Shah05e35d42019-07-08 04:10:48 +000014#include <stdlib.h>
Philipp Tomsicha740ee92018-11-25 19:22:18 +010015#include <u-boot/crc.h>
Thomas Choud52ebf12010-12-24 13:12:21 +000016#include <linux/crc7.h>
Yoshinori Sato6f67b692015-06-01 15:22:37 +090017#include <asm/byteorder.h>
Bhargav Shah05e35d42019-07-08 04:10:48 +000018#include <dm.h>
19#include <spi.h>
Thomas Choud52ebf12010-12-24 13:12:21 +000020
21/* MMC/SD in SPI mode reports R1 status always */
Bhargav Shah05e35d42019-07-08 04:10:48 +000022#define R1_SPI_IDLE BIT(0)
23#define R1_SPI_ERASE_RESET BIT(1)
24#define R1_SPI_ILLEGAL_COMMAND BIT(2)
25#define R1_SPI_COM_CRC BIT(3)
26#define R1_SPI_ERASE_SEQ BIT(4)
27#define R1_SPI_ADDRESS BIT(5)
28#define R1_SPI_PARAMETER BIT(6)
Thomas Choud52ebf12010-12-24 13:12:21 +000029/* R1 bit 7 is always zero, reuse this bit for error */
Bhargav Shah05e35d42019-07-08 04:10:48 +000030#define R1_SPI_ERROR BIT(7)
Thomas Choud52ebf12010-12-24 13:12:21 +000031
32/* Response tokens used to ack each block written: */
33#define SPI_MMC_RESPONSE_CODE(x) ((x) & 0x1f)
34#define SPI_RESPONSE_ACCEPTED ((2 << 1)|1)
35#define SPI_RESPONSE_CRC_ERR ((5 << 1)|1)
36#define SPI_RESPONSE_WRITE_ERR ((6 << 1)|1)
37
38/* Read and write blocks start with these tokens and end with crc;
39 * on error, read tokens act like a subset of R2_SPI_* values.
40 */
Bhargav Shah05e35d42019-07-08 04:10:48 +000041/* single block write multiblock read */
42#define SPI_TOKEN_SINGLE 0xfe
43/* multiblock write */
44#define SPI_TOKEN_MULTI_WRITE 0xfc
45/* terminate multiblock write */
46#define SPI_TOKEN_STOP_TRAN 0xfd
Thomas Choud52ebf12010-12-24 13:12:21 +000047
48/* MMC SPI commands start with a start bit "0" and a transmit bit "1" */
Bhargav Shah05e35d42019-07-08 04:10:48 +000049#define MMC_SPI_CMD(x) (0x40 | (x))
Thomas Choud52ebf12010-12-24 13:12:21 +000050
51/* bus capability */
Bhargav Shah05e35d42019-07-08 04:10:48 +000052#define MMC_SPI_VOLTAGE (MMC_VDD_32_33 | MMC_VDD_33_34)
53#define MMC_SPI_MIN_CLOCK 400000 /* 400KHz to meet MMC spec */
54#define MMC_SPI_MAX_CLOCK 25000000 /* SD/MMC legacy speed */
Thomas Choud52ebf12010-12-24 13:12:21 +000055
56/* timeout value */
Bhargav Shah05e35d42019-07-08 04:10:48 +000057#define CMD_TIMEOUT 8
58#define READ_TIMEOUT 3000000 /* 1 sec */
59#define WRITE_TIMEOUT 3000000 /* 1 sec */
Thomas Choud52ebf12010-12-24 13:12:21 +000060
Bhargav Shah05e35d42019-07-08 04:10:48 +000061struct mmc_spi_priv {
62 struct spi_slave *spi;
63 struct mmc_config cfg;
64 struct mmc mmc;
65};
66
67static int mmc_spi_sendcmd(struct udevice *dev,
68 ushort cmdidx, u32 cmdarg, u32 resp_type,
69 u8 *resp, u32 resp_size,
70 bool resp_match, u8 resp_match_value)
Thomas Choud52ebf12010-12-24 13:12:21 +000071{
Bhargav Shah05e35d42019-07-08 04:10:48 +000072 int i, rpos = 0, ret = 0;
73 u8 cmdo[7], r;
74
75 debug("%s: cmd%d cmdarg=0x%x resp_type=0x%x "
76 "resp_size=%d resp_match=%d resp_match_value=0x%x\n",
77 __func__, cmdidx, cmdarg, resp_type,
78 resp_size, resp_match, resp_match_value);
79
Thomas Choud52ebf12010-12-24 13:12:21 +000080 cmdo[0] = 0xff;
81 cmdo[1] = MMC_SPI_CMD(cmdidx);
82 cmdo[2] = cmdarg >> 24;
83 cmdo[3] = cmdarg >> 16;
84 cmdo[4] = cmdarg >> 8;
85 cmdo[5] = cmdarg;
86 cmdo[6] = (crc7(0, &cmdo[1], 5) << 1) | 0x01;
Bhargav Shah05e35d42019-07-08 04:10:48 +000087 ret = dm_spi_xfer(dev, sizeof(cmdo) * 8, cmdo, NULL, 0);
88 if (ret)
89 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +000090
Bhargav Shah05e35d42019-07-08 04:10:48 +000091 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
92 if (ret)
93 return ret;
94
95 if (!resp || !resp_size)
96 return 0;
97
98 debug("%s: cmd%d", __func__, cmdidx);
99
100 if (resp_match) {
101 r = ~resp_match_value;
102 i = CMD_TIMEOUT;
103 while (i--) {
104 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
105 if (ret)
106 return ret;
107 debug(" resp%d=0x%x", rpos, r);
108 rpos++;
109 if (r == resp_match_value)
Thomas Choud52ebf12010-12-24 13:12:21 +0000110 break;
111 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000112 if (!i && (r != resp_match_value))
113 return -ETIMEDOUT;
114 }
115
116 for (i = 0; i < resp_size; i++) {
117 if (i == 0 && resp_match) {
118 resp[i] = resp_match_value;
119 continue;
120 }
121 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
122 if (ret)
123 return ret;
124 debug(" resp%d=0x%x", rpos, r);
125 rpos++;
126 resp[i] = r;
127 }
128
129 debug("\n");
130
131 return 0;
132}
133
134static int mmc_spi_readdata(struct udevice *dev,
135 void *xbuf, u32 bcnt, u32 bsize)
136{
137 u16 crc;
138 u8 *buf = xbuf, r1;
139 int i, ret = 0;
140
141 while (bcnt--) {
142 for (i = 0; i < READ_TIMEOUT; i++) {
143 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
144 if (ret)
145 return ret;
146 if (r1 == SPI_TOKEN_SINGLE)
147 break;
148 }
149 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000150 if (r1 == SPI_TOKEN_SINGLE) {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000151 ret = dm_spi_xfer(dev, bsize * 8, NULL, buf, 0);
152 if (ret)
153 return ret;
154 ret = dm_spi_xfer(dev, 2 * 8, NULL, &crc, 0);
155 if (ret)
156 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000157#ifdef CONFIG_MMC_SPI_CRC_ON
Bhargav Shah05e35d42019-07-08 04:10:48 +0000158 if (be16_to_cpu(crc16_ccitt(0, buf, bsize)) != crc) {
159 debug("%s: data crc error\n", __func__);
Thomas Choud52ebf12010-12-24 13:12:21 +0000160 r1 = R1_SPI_COM_CRC;
161 break;
162 }
163#endif
164 r1 = 0;
165 } else {
166 r1 = R1_SPI_ERROR;
167 break;
168 }
169 buf += bsize;
170 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000171
172 if (r1 & R1_SPI_COM_CRC)
173 ret = -ECOMM;
174 else if (r1) /* other errors */
175 ret = -ETIMEDOUT;
176
177 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000178}
179
Bhargav Shah05e35d42019-07-08 04:10:48 +0000180static int mmc_spi_writedata(struct udevice *dev, const void *xbuf,
181 u32 bcnt, u32 bsize, int multi)
Thomas Choud52ebf12010-12-24 13:12:21 +0000182{
Thomas Choud52ebf12010-12-24 13:12:21 +0000183 const u8 *buf = xbuf;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000184 u8 r1, tok[2];
Thomas Choud52ebf12010-12-24 13:12:21 +0000185 u16 crc;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000186 int i, ret = 0;
187
Thomas Choud52ebf12010-12-24 13:12:21 +0000188 tok[0] = 0xff;
189 tok[1] = multi ? SPI_TOKEN_MULTI_WRITE : SPI_TOKEN_SINGLE;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000190
Thomas Choud52ebf12010-12-24 13:12:21 +0000191 while (bcnt--) {
192#ifdef CONFIG_MMC_SPI_CRC_ON
Stefan Roeseecb57f62016-03-03 09:34:12 +0100193 crc = cpu_to_be16(crc16_ccitt(0, (u8 *)buf, bsize));
Thomas Choud52ebf12010-12-24 13:12:21 +0000194#endif
Bhargav Shah05e35d42019-07-08 04:10:48 +0000195 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
196 dm_spi_xfer(dev, bsize * 8, buf, NULL, 0);
197 dm_spi_xfer(dev, 2 * 8, &crc, NULL, 0);
198 for (i = 0; i < CMD_TIMEOUT; i++) {
199 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000200 if ((r1 & 0x10) == 0) /* response token */
201 break;
202 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000203 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000204 if (SPI_MMC_RESPONSE_CODE(r1) == SPI_RESPONSE_ACCEPTED) {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000205 debug("%s: data accepted\n", __func__);
206 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
207 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000208 if (i && r1 == 0xff) {
209 r1 = 0;
210 break;
211 }
212 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000213 if (i == WRITE_TIMEOUT) {
214 debug("%s: data write timeout 0x%x\n",
215 __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000216 r1 = R1_SPI_ERROR;
217 break;
218 }
219 } else {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000220 debug("%s: data error 0x%x\n", __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000221 r1 = R1_SPI_COM_CRC;
222 break;
223 }
224 buf += bsize;
225 }
226 if (multi && bcnt == -1) { /* stop multi write */
227 tok[1] = SPI_TOKEN_STOP_TRAN;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000228 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
229 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
230 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000231 if (i && r1 == 0xff) {
232 r1 = 0;
233 break;
234 }
235 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000236 if (i == WRITE_TIMEOUT) {
237 debug("%s: data write timeout 0x%x\n", __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000238 r1 = R1_SPI_ERROR;
239 }
240 }
Thomas Choud52ebf12010-12-24 13:12:21 +0000241
Bhargav Shah05e35d42019-07-08 04:10:48 +0000242 if (r1 & R1_SPI_COM_CRC)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900243 ret = -ECOMM;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000244 else if (r1) /* other errors */
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900245 ret = -ETIMEDOUT;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000246
Thomas Choud52ebf12010-12-24 13:12:21 +0000247 return ret;
248}
249
Bhargav Shah05e35d42019-07-08 04:10:48 +0000250static int dm_mmc_spi_set_ios(struct udevice *dev)
Thomas Choud52ebf12010-12-24 13:12:21 +0000251{
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900252 return 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000253}
254
Bhargav Shah05e35d42019-07-08 04:10:48 +0000255static int dm_mmc_spi_request(struct udevice *dev, struct mmc_cmd *cmd,
256 struct mmc_data *data)
Thomas Choud52ebf12010-12-24 13:12:21 +0000257{
Bhargav Shah05e35d42019-07-08 04:10:48 +0000258 int i, multi, ret = 0;
259 u8 *resp = NULL;
260 u32 resp_size = 0;
261 bool resp_match = false;
262 u8 resp8 = 0, resp40[5] = { 0 }, resp_match_value = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000263
Bhargav Shah05e35d42019-07-08 04:10:48 +0000264 dm_spi_claim_bus(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200265
Bhargav Shah05e35d42019-07-08 04:10:48 +0000266 for (i = 0; i < 4; i++)
267 cmd->response[i] = 0;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200268
Bhargav Shah05e35d42019-07-08 04:10:48 +0000269 switch (cmd->cmdidx) {
270 case SD_CMD_APP_SEND_OP_COND:
271 case MMC_CMD_SEND_OP_COND:
272 resp = &resp8;
273 resp_size = sizeof(resp8);
274 cmd->cmdarg = 0x40000000;
275 break;
276 case SD_CMD_SEND_IF_COND:
277 resp = (u8 *)&resp40[0];
278 resp_size = sizeof(resp40);
279 resp_match = true;
280 resp_match_value = R1_SPI_IDLE;
281 break;
282 case MMC_CMD_SPI_READ_OCR:
283 resp = (u8 *)&resp40[0];
284 resp_size = sizeof(resp40);
285 break;
286 case MMC_CMD_SEND_STATUS:
287 case MMC_CMD_SET_BLOCKLEN:
288 case MMC_CMD_SPI_CRC_ON_OFF:
289 case MMC_CMD_STOP_TRANSMISSION:
290 resp = &resp8;
291 resp_size = sizeof(resp8);
292 resp_match = true;
293 resp_match_value = 0x0;
294 break;
295 case MMC_CMD_SEND_CSD:
296 case MMC_CMD_SEND_CID:
297 case MMC_CMD_READ_SINGLE_BLOCK:
298 case MMC_CMD_READ_MULTIPLE_BLOCK:
299 case MMC_CMD_WRITE_SINGLE_BLOCK:
300 case MMC_CMD_WRITE_MULTIPLE_BLOCK:
301 break;
302 default:
303 resp = &resp8;
304 resp_size = sizeof(resp8);
305 resp_match = true;
306 resp_match_value = R1_SPI_IDLE;
307 break;
308 };
Thomas Choud52ebf12010-12-24 13:12:21 +0000309
Bhargav Shah05e35d42019-07-08 04:10:48 +0000310 ret = mmc_spi_sendcmd(dev, cmd->cmdidx, cmd->cmdarg, cmd->resp_type,
311 resp, resp_size, resp_match, resp_match_value);
312 if (ret)
313 goto done;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200314
Bhargav Shah05e35d42019-07-08 04:10:48 +0000315 switch (cmd->cmdidx) {
316 case SD_CMD_APP_SEND_OP_COND:
317 case MMC_CMD_SEND_OP_COND:
318 cmd->response[0] = (resp8 & R1_SPI_IDLE) ? 0 : OCR_BUSY;
319 break;
320 case SD_CMD_SEND_IF_COND:
321 case MMC_CMD_SPI_READ_OCR:
322 cmd->response[0] = resp40[4];
323 cmd->response[0] |= (uint)resp40[3] << 8;
324 cmd->response[0] |= (uint)resp40[2] << 16;
325 cmd->response[0] |= (uint)resp40[1] << 24;
326 break;
327 case MMC_CMD_SEND_STATUS:
328 cmd->response[0] = (resp8 & 0xff) ?
329 MMC_STATUS_ERROR : MMC_STATUS_RDY_FOR_DATA;
330 break;
331 case MMC_CMD_SEND_CID:
332 case MMC_CMD_SEND_CSD:
333 ret = mmc_spi_readdata(dev, cmd->response, 1, 16);
334 if (ret)
335 return ret;
336 for (i = 0; i < 4; i++)
337 cmd->response[i] =
338 cpu_to_be32(cmd->response[i]);
339 break;
340 default:
341 cmd->response[0] = resp8;
342 break;
Thomas Choud52ebf12010-12-24 13:12:21 +0000343 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000344
345 debug("%s: cmd%d resp0=0x%x resp1=0x%x resp2=0x%x resp3=0x%x\n",
346 __func__, cmd->cmdidx, cmd->response[0], cmd->response[1],
347 cmd->response[2], cmd->response[3]);
348
349 if (data) {
350 debug("%s: data flags=0x%x blocks=%d block_size=%d\n",
351 __func__, data->flags, data->blocks, data->blocksize);
352 multi = (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK);
353 if (data->flags == MMC_DATA_READ)
354 ret = mmc_spi_readdata(dev, data->dest,
355 data->blocks, data->blocksize);
356 else if (data->flags == MMC_DATA_WRITE)
357 ret = mmc_spi_writedata(dev, data->src,
358 data->blocks, data->blocksize,
359 multi);
360 }
361
362done:
363 dm_spi_release_bus(dev);
364
365 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000366}
Bhargav Shah05e35d42019-07-08 04:10:48 +0000367
368static int mmc_spi_probe(struct udevice *dev)
369{
370 struct mmc_spi_priv *priv = dev_get_priv(dev);
371 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
372 char *name;
373
374 priv->spi = dev_get_parent_priv(dev);
375 if (!priv->spi->max_hz)
376 priv->spi->max_hz = MMC_SPI_MAX_CLOCK;
377 priv->spi->speed = 0;
378 priv->spi->mode = SPI_MODE_0;
379 priv->spi->wordlen = 8;
380
381 name = malloc(strlen(dev->parent->name) + strlen(dev->name) + 4);
382 if (!name)
383 return -ENOMEM;
384 sprintf(name, "%s:%s", dev->parent->name, dev->name);
385
386 priv->cfg.name = name;
387 priv->cfg.host_caps = MMC_MODE_SPI;
388 priv->cfg.voltages = MMC_SPI_VOLTAGE;
389 priv->cfg.f_min = MMC_SPI_MIN_CLOCK;
390 priv->cfg.f_max = priv->spi->max_hz;
391 priv->cfg.part_type = PART_TYPE_DOS;
392 priv->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
393
394 priv->mmc.cfg = &priv->cfg;
395 priv->mmc.priv = priv;
396 priv->mmc.dev = dev;
397
398 upriv->mmc = &priv->mmc;
399
400 return 0;
401}
402
403static int mmc_spi_bind(struct udevice *dev)
404{
405 struct mmc_spi_priv *priv = dev_get_priv(dev);
406
407 return mmc_bind(dev, &priv->mmc, &priv->cfg);
408}
409
410static const struct dm_mmc_ops mmc_spi_ops = {
411 .send_cmd = dm_mmc_spi_request,
412 .set_ios = dm_mmc_spi_set_ios,
413};
414
415static const struct udevice_id dm_mmc_spi_match[] = {
416 { .compatible = "mmc-spi-slot" },
417 { /* sentinel */ }
418};
419
420U_BOOT_DRIVER(mmc_spi) = {
421 .name = "mmc_spi",
422 .id = UCLASS_MMC,
423 .of_match = dm_mmc_spi_match,
424 .ops = &mmc_spi_ops,
425 .probe = mmc_spi_probe,
426 .bind = mmc_spi_bind,
427 .priv_auto_alloc_size = sizeof(struct mmc_spi_priv),
428};