blob: e76ab54838be9692ca33c86e67822bd5bbd6df12 [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>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Thomas Choud52ebf12010-12-24 13:12:21 +000012#include <malloc.h>
13#include <part.h>
14#include <mmc.h>
Bhargav Shah05e35d42019-07-08 04:10:48 +000015#include <stdlib.h>
Simon Glasscd93d622020-05-10 11:40:13 -060016#include <linux/bitops.h>
Philipp Tomsicha740ee92018-11-25 19:22:18 +010017#include <u-boot/crc.h>
Thomas Choud52ebf12010-12-24 13:12:21 +000018#include <linux/crc7.h>
Yoshinori Sato6f67b692015-06-01 15:22:37 +090019#include <asm/byteorder.h>
Bhargav Shah05e35d42019-07-08 04:10:48 +000020#include <dm.h>
21#include <spi.h>
Thomas Choud52ebf12010-12-24 13:12:21 +000022
23/* MMC/SD in SPI mode reports R1 status always */
Bhargav Shah05e35d42019-07-08 04:10:48 +000024#define R1_SPI_IDLE BIT(0)
25#define R1_SPI_ERASE_RESET BIT(1)
26#define R1_SPI_ILLEGAL_COMMAND BIT(2)
27#define R1_SPI_COM_CRC BIT(3)
28#define R1_SPI_ERASE_SEQ BIT(4)
29#define R1_SPI_ADDRESS BIT(5)
30#define R1_SPI_PARAMETER BIT(6)
Thomas Choud52ebf12010-12-24 13:12:21 +000031/* R1 bit 7 is always zero, reuse this bit for error */
Bhargav Shah05e35d42019-07-08 04:10:48 +000032#define R1_SPI_ERROR BIT(7)
Thomas Choud52ebf12010-12-24 13:12:21 +000033
34/* Response tokens used to ack each block written: */
35#define SPI_MMC_RESPONSE_CODE(x) ((x) & 0x1f)
36#define SPI_RESPONSE_ACCEPTED ((2 << 1)|1)
37#define SPI_RESPONSE_CRC_ERR ((5 << 1)|1)
38#define SPI_RESPONSE_WRITE_ERR ((6 << 1)|1)
39
40/* Read and write blocks start with these tokens and end with crc;
41 * on error, read tokens act like a subset of R2_SPI_* values.
42 */
Bhargav Shah05e35d42019-07-08 04:10:48 +000043/* single block write multiblock read */
44#define SPI_TOKEN_SINGLE 0xfe
45/* multiblock write */
46#define SPI_TOKEN_MULTI_WRITE 0xfc
47/* terminate multiblock write */
48#define SPI_TOKEN_STOP_TRAN 0xfd
Thomas Choud52ebf12010-12-24 13:12:21 +000049
50/* MMC SPI commands start with a start bit "0" and a transmit bit "1" */
Bhargav Shah05e35d42019-07-08 04:10:48 +000051#define MMC_SPI_CMD(x) (0x40 | (x))
Thomas Choud52ebf12010-12-24 13:12:21 +000052
53/* bus capability */
Bhargav Shah05e35d42019-07-08 04:10:48 +000054#define MMC_SPI_VOLTAGE (MMC_VDD_32_33 | MMC_VDD_33_34)
55#define MMC_SPI_MIN_CLOCK 400000 /* 400KHz to meet MMC spec */
56#define MMC_SPI_MAX_CLOCK 25000000 /* SD/MMC legacy speed */
Thomas Choud52ebf12010-12-24 13:12:21 +000057
58/* timeout value */
Bhargav Shah05e35d42019-07-08 04:10:48 +000059#define CMD_TIMEOUT 8
60#define READ_TIMEOUT 3000000 /* 1 sec */
61#define WRITE_TIMEOUT 3000000 /* 1 sec */
Thomas Choud52ebf12010-12-24 13:12:21 +000062
Bin Mengd3302392019-08-30 21:15:33 -070063struct mmc_spi_plat {
Bhargav Shah05e35d42019-07-08 04:10:48 +000064 struct mmc_config cfg;
65 struct mmc mmc;
66};
67
Bin Mengd3302392019-08-30 21:15:33 -070068struct mmc_spi_priv {
69 struct spi_slave *spi;
70};
71
Bhargav Shah05e35d42019-07-08 04:10:48 +000072static int mmc_spi_sendcmd(struct udevice *dev,
73 ushort cmdidx, u32 cmdarg, u32 resp_type,
74 u8 *resp, u32 resp_size,
75 bool resp_match, u8 resp_match_value)
Thomas Choud52ebf12010-12-24 13:12:21 +000076{
Bhargav Shah05e35d42019-07-08 04:10:48 +000077 int i, rpos = 0, ret = 0;
78 u8 cmdo[7], r;
79
80 debug("%s: cmd%d cmdarg=0x%x resp_type=0x%x "
81 "resp_size=%d resp_match=%d resp_match_value=0x%x\n",
82 __func__, cmdidx, cmdarg, resp_type,
83 resp_size, resp_match, resp_match_value);
84
Thomas Choud52ebf12010-12-24 13:12:21 +000085 cmdo[0] = 0xff;
86 cmdo[1] = MMC_SPI_CMD(cmdidx);
87 cmdo[2] = cmdarg >> 24;
88 cmdo[3] = cmdarg >> 16;
89 cmdo[4] = cmdarg >> 8;
90 cmdo[5] = cmdarg;
91 cmdo[6] = (crc7(0, &cmdo[1], 5) << 1) | 0x01;
Anup Patela7060292019-07-17 04:23:38 +000092 ret = dm_spi_xfer(dev, sizeof(cmdo) * 8, cmdo, NULL, SPI_XFER_BEGIN);
Bhargav Shah05e35d42019-07-08 04:10:48 +000093 if (ret)
94 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +000095
Bhargav Shah05e35d42019-07-08 04:10:48 +000096 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
97 if (ret)
98 return ret;
99
100 if (!resp || !resp_size)
101 return 0;
102
103 debug("%s: cmd%d", __func__, cmdidx);
104
105 if (resp_match) {
106 r = ~resp_match_value;
107 i = CMD_TIMEOUT;
108 while (i--) {
109 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
110 if (ret)
111 return ret;
112 debug(" resp%d=0x%x", rpos, r);
113 rpos++;
114 if (r == resp_match_value)
Thomas Choud52ebf12010-12-24 13:12:21 +0000115 break;
116 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000117 if (!i && (r != resp_match_value))
118 return -ETIMEDOUT;
119 }
120
121 for (i = 0; i < resp_size; i++) {
122 if (i == 0 && resp_match) {
123 resp[i] = resp_match_value;
124 continue;
125 }
126 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
127 if (ret)
128 return ret;
129 debug(" resp%d=0x%x", rpos, r);
130 rpos++;
131 resp[i] = r;
132 }
133
134 debug("\n");
135
136 return 0;
137}
138
139static int mmc_spi_readdata(struct udevice *dev,
140 void *xbuf, u32 bcnt, u32 bsize)
141{
142 u16 crc;
143 u8 *buf = xbuf, r1;
144 int i, ret = 0;
145
146 while (bcnt--) {
147 for (i = 0; i < READ_TIMEOUT; i++) {
148 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
149 if (ret)
150 return ret;
151 if (r1 == SPI_TOKEN_SINGLE)
152 break;
153 }
154 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000155 if (r1 == SPI_TOKEN_SINGLE) {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000156 ret = dm_spi_xfer(dev, bsize * 8, NULL, buf, 0);
157 if (ret)
158 return ret;
159 ret = dm_spi_xfer(dev, 2 * 8, NULL, &crc, 0);
160 if (ret)
161 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000162#ifdef CONFIG_MMC_SPI_CRC_ON
Bhargav Shah05e35d42019-07-08 04:10:48 +0000163 if (be16_to_cpu(crc16_ccitt(0, buf, bsize)) != crc) {
164 debug("%s: data crc error\n", __func__);
Thomas Choud52ebf12010-12-24 13:12:21 +0000165 r1 = R1_SPI_COM_CRC;
166 break;
167 }
168#endif
169 r1 = 0;
170 } else {
171 r1 = R1_SPI_ERROR;
172 break;
173 }
174 buf += bsize;
175 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000176
177 if (r1 & R1_SPI_COM_CRC)
178 ret = -ECOMM;
179 else if (r1) /* other errors */
180 ret = -ETIMEDOUT;
181
182 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000183}
184
Bhargav Shah05e35d42019-07-08 04:10:48 +0000185static int mmc_spi_writedata(struct udevice *dev, const void *xbuf,
186 u32 bcnt, u32 bsize, int multi)
Thomas Choud52ebf12010-12-24 13:12:21 +0000187{
Thomas Choud52ebf12010-12-24 13:12:21 +0000188 const u8 *buf = xbuf;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000189 u8 r1, tok[2];
Thomas Choud52ebf12010-12-24 13:12:21 +0000190 u16 crc;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000191 int i, ret = 0;
192
Thomas Choud52ebf12010-12-24 13:12:21 +0000193 tok[0] = 0xff;
194 tok[1] = multi ? SPI_TOKEN_MULTI_WRITE : SPI_TOKEN_SINGLE;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000195
Thomas Choud52ebf12010-12-24 13:12:21 +0000196 while (bcnt--) {
197#ifdef CONFIG_MMC_SPI_CRC_ON
Stefan Roeseecb57f62016-03-03 09:34:12 +0100198 crc = cpu_to_be16(crc16_ccitt(0, (u8 *)buf, bsize));
Thomas Choud52ebf12010-12-24 13:12:21 +0000199#endif
Bhargav Shah05e35d42019-07-08 04:10:48 +0000200 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
201 dm_spi_xfer(dev, bsize * 8, buf, NULL, 0);
202 dm_spi_xfer(dev, 2 * 8, &crc, NULL, 0);
203 for (i = 0; i < CMD_TIMEOUT; i++) {
204 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000205 if ((r1 & 0x10) == 0) /* response token */
206 break;
207 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000208 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000209 if (SPI_MMC_RESPONSE_CODE(r1) == SPI_RESPONSE_ACCEPTED) {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000210 debug("%s: data accepted\n", __func__);
211 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
212 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000213 if (i && r1 == 0xff) {
214 r1 = 0;
215 break;
216 }
217 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000218 if (i == WRITE_TIMEOUT) {
219 debug("%s: data write timeout 0x%x\n",
220 __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000221 r1 = R1_SPI_ERROR;
222 break;
223 }
224 } else {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000225 debug("%s: data error 0x%x\n", __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000226 r1 = R1_SPI_COM_CRC;
227 break;
228 }
229 buf += bsize;
230 }
231 if (multi && bcnt == -1) { /* stop multi write */
232 tok[1] = SPI_TOKEN_STOP_TRAN;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000233 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
234 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
235 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000236 if (i && r1 == 0xff) {
237 r1 = 0;
238 break;
239 }
240 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000241 if (i == WRITE_TIMEOUT) {
242 debug("%s: data write timeout 0x%x\n", __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000243 r1 = R1_SPI_ERROR;
244 }
245 }
Thomas Choud52ebf12010-12-24 13:12:21 +0000246
Bhargav Shah05e35d42019-07-08 04:10:48 +0000247 if (r1 & R1_SPI_COM_CRC)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900248 ret = -ECOMM;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000249 else if (r1) /* other errors */
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900250 ret = -ETIMEDOUT;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000251
Thomas Choud52ebf12010-12-24 13:12:21 +0000252 return ret;
253}
254
Bhargav Shah05e35d42019-07-08 04:10:48 +0000255static int dm_mmc_spi_set_ios(struct udevice *dev)
Thomas Choud52ebf12010-12-24 13:12:21 +0000256{
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900257 return 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000258}
259
Bhargav Shah05e35d42019-07-08 04:10:48 +0000260static int dm_mmc_spi_request(struct udevice *dev, struct mmc_cmd *cmd,
261 struct mmc_data *data)
Thomas Choud52ebf12010-12-24 13:12:21 +0000262{
Bhargav Shah05e35d42019-07-08 04:10:48 +0000263 int i, multi, ret = 0;
264 u8 *resp = NULL;
265 u32 resp_size = 0;
266 bool resp_match = false;
267 u8 resp8 = 0, resp40[5] = { 0 }, resp_match_value = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000268
Bhargav Shah05e35d42019-07-08 04:10:48 +0000269 dm_spi_claim_bus(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200270
Bhargav Shah05e35d42019-07-08 04:10:48 +0000271 for (i = 0; i < 4; i++)
272 cmd->response[i] = 0;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200273
Bhargav Shah05e35d42019-07-08 04:10:48 +0000274 switch (cmd->cmdidx) {
275 case SD_CMD_APP_SEND_OP_COND:
276 case MMC_CMD_SEND_OP_COND:
277 resp = &resp8;
278 resp_size = sizeof(resp8);
279 cmd->cmdarg = 0x40000000;
280 break;
281 case SD_CMD_SEND_IF_COND:
282 resp = (u8 *)&resp40[0];
283 resp_size = sizeof(resp40);
284 resp_match = true;
285 resp_match_value = R1_SPI_IDLE;
286 break;
287 case MMC_CMD_SPI_READ_OCR:
288 resp = (u8 *)&resp40[0];
289 resp_size = sizeof(resp40);
290 break;
291 case MMC_CMD_SEND_STATUS:
292 case MMC_CMD_SET_BLOCKLEN:
293 case MMC_CMD_SPI_CRC_ON_OFF:
294 case MMC_CMD_STOP_TRANSMISSION:
295 resp = &resp8;
296 resp_size = sizeof(resp8);
297 resp_match = true;
298 resp_match_value = 0x0;
299 break;
300 case MMC_CMD_SEND_CSD:
301 case MMC_CMD_SEND_CID:
302 case MMC_CMD_READ_SINGLE_BLOCK:
303 case MMC_CMD_READ_MULTIPLE_BLOCK:
304 case MMC_CMD_WRITE_SINGLE_BLOCK:
305 case MMC_CMD_WRITE_MULTIPLE_BLOCK:
306 break;
307 default:
308 resp = &resp8;
309 resp_size = sizeof(resp8);
310 resp_match = true;
311 resp_match_value = R1_SPI_IDLE;
312 break;
313 };
Thomas Choud52ebf12010-12-24 13:12:21 +0000314
Bhargav Shah05e35d42019-07-08 04:10:48 +0000315 ret = mmc_spi_sendcmd(dev, cmd->cmdidx, cmd->cmdarg, cmd->resp_type,
316 resp, resp_size, resp_match, resp_match_value);
317 if (ret)
318 goto done;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200319
Bhargav Shah05e35d42019-07-08 04:10:48 +0000320 switch (cmd->cmdidx) {
321 case SD_CMD_APP_SEND_OP_COND:
322 case MMC_CMD_SEND_OP_COND:
323 cmd->response[0] = (resp8 & R1_SPI_IDLE) ? 0 : OCR_BUSY;
324 break;
325 case SD_CMD_SEND_IF_COND:
326 case MMC_CMD_SPI_READ_OCR:
327 cmd->response[0] = resp40[4];
328 cmd->response[0] |= (uint)resp40[3] << 8;
329 cmd->response[0] |= (uint)resp40[2] << 16;
330 cmd->response[0] |= (uint)resp40[1] << 24;
331 break;
332 case MMC_CMD_SEND_STATUS:
333 cmd->response[0] = (resp8 & 0xff) ?
334 MMC_STATUS_ERROR : MMC_STATUS_RDY_FOR_DATA;
335 break;
336 case MMC_CMD_SEND_CID:
337 case MMC_CMD_SEND_CSD:
338 ret = mmc_spi_readdata(dev, cmd->response, 1, 16);
339 if (ret)
340 return ret;
341 for (i = 0; i < 4; i++)
342 cmd->response[i] =
343 cpu_to_be32(cmd->response[i]);
344 break;
345 default:
346 cmd->response[0] = resp8;
347 break;
Thomas Choud52ebf12010-12-24 13:12:21 +0000348 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000349
350 debug("%s: cmd%d resp0=0x%x resp1=0x%x resp2=0x%x resp3=0x%x\n",
351 __func__, cmd->cmdidx, cmd->response[0], cmd->response[1],
352 cmd->response[2], cmd->response[3]);
353
354 if (data) {
355 debug("%s: data flags=0x%x blocks=%d block_size=%d\n",
356 __func__, data->flags, data->blocks, data->blocksize);
357 multi = (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK);
358 if (data->flags == MMC_DATA_READ)
359 ret = mmc_spi_readdata(dev, data->dest,
360 data->blocks, data->blocksize);
361 else if (data->flags == MMC_DATA_WRITE)
362 ret = mmc_spi_writedata(dev, data->src,
363 data->blocks, data->blocksize,
364 multi);
365 }
366
367done:
Anup Patela7060292019-07-17 04:23:38 +0000368 dm_spi_xfer(dev, 0, NULL, NULL, SPI_XFER_END);
369
Bhargav Shah05e35d42019-07-08 04:10:48 +0000370 dm_spi_release_bus(dev);
371
372 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000373}
Bhargav Shah05e35d42019-07-08 04:10:48 +0000374
375static int mmc_spi_probe(struct udevice *dev)
376{
377 struct mmc_spi_priv *priv = dev_get_priv(dev);
Bin Mengd3302392019-08-30 21:15:33 -0700378 struct mmc_spi_plat *plat = dev_get_platdata(dev);
Bhargav Shah05e35d42019-07-08 04:10:48 +0000379 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
380 char *name;
381
382 priv->spi = dev_get_parent_priv(dev);
383 if (!priv->spi->max_hz)
384 priv->spi->max_hz = MMC_SPI_MAX_CLOCK;
385 priv->spi->speed = 0;
386 priv->spi->mode = SPI_MODE_0;
387 priv->spi->wordlen = 8;
388
389 name = malloc(strlen(dev->parent->name) + strlen(dev->name) + 4);
390 if (!name)
391 return -ENOMEM;
392 sprintf(name, "%s:%s", dev->parent->name, dev->name);
393
Bin Mengd3302392019-08-30 21:15:33 -0700394 plat->cfg.name = name;
395 plat->cfg.host_caps = MMC_MODE_SPI;
396 plat->cfg.voltages = MMC_SPI_VOLTAGE;
397 plat->cfg.f_min = MMC_SPI_MIN_CLOCK;
398 plat->cfg.f_max = priv->spi->max_hz;
399 plat->cfg.part_type = PART_TYPE_DOS;
400 plat->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000401
Bin Mengd3302392019-08-30 21:15:33 -0700402 plat->mmc.cfg = &plat->cfg;
403 plat->mmc.priv = priv;
404 plat->mmc.dev = dev;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000405
Bin Mengd3302392019-08-30 21:15:33 -0700406 upriv->mmc = &plat->mmc;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000407
408 return 0;
409}
410
411static int mmc_spi_bind(struct udevice *dev)
412{
Bin Mengd3302392019-08-30 21:15:33 -0700413 struct mmc_spi_plat *plat = dev_get_platdata(dev);
Bhargav Shah05e35d42019-07-08 04:10:48 +0000414
Bin Mengd3302392019-08-30 21:15:33 -0700415 return mmc_bind(dev, &plat->mmc, &plat->cfg);
Bhargav Shah05e35d42019-07-08 04:10:48 +0000416}
417
418static const struct dm_mmc_ops mmc_spi_ops = {
419 .send_cmd = dm_mmc_spi_request,
420 .set_ios = dm_mmc_spi_set_ios,
421};
422
423static const struct udevice_id dm_mmc_spi_match[] = {
424 { .compatible = "mmc-spi-slot" },
425 { /* sentinel */ }
426};
427
428U_BOOT_DRIVER(mmc_spi) = {
429 .name = "mmc_spi",
430 .id = UCLASS_MMC,
431 .of_match = dm_mmc_spi_match,
432 .ops = &mmc_spi_ops,
433 .probe = mmc_spi_probe,
434 .bind = mmc_spi_bind,
Bin Mengd3302392019-08-30 21:15:33 -0700435 .platdata_auto_alloc_size = sizeof(struct mmc_spi_plat),
Bhargav Shah05e35d42019-07-08 04:10:48 +0000436 .priv_auto_alloc_size = sizeof(struct mmc_spi_priv),
437};