blob: a06862aa48eec6f6f52f0797a4ea24468210518e [file] [log] [blame]
Thomas Chou1254c3d2010-12-24 13:12:21 +00001/*
2 * generic mmc spi driver
3 *
4 * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
Bhargav Shaha1afe252019-07-08 04:10:48 +00005 * Copyright 2019 Bhargav Shah <bhargavshah1988@gmail.com>
6 *
Thomas Chou1254c3d2010-12-24 13:12:21 +00007 * Licensed under the GPL-2 or later.
8 */
9#include <common.h>
Jaehoon Chung7825d202016-07-19 16:33:36 +090010#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Thomas Chou1254c3d2010-12-24 13:12:21 +000012#include <malloc.h>
13#include <part.h>
14#include <mmc.h>
Bhargav Shaha1afe252019-07-08 04:10:48 +000015#include <stdlib.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060016#include <linux/bitops.h>
Philipp Tomsich36b26d12018-11-25 19:22:18 +010017#include <u-boot/crc.h>
Thomas Chou1254c3d2010-12-24 13:12:21 +000018#include <linux/crc7.h>
Yoshinori Sato923c2072015-06-01 15:22:37 +090019#include <asm/byteorder.h>
Bhargav Shaha1afe252019-07-08 04:10:48 +000020#include <dm.h>
21#include <spi.h>
Thomas Chou1254c3d2010-12-24 13:12:21 +000022
23/* MMC/SD in SPI mode reports R1 status always */
Bhargav Shaha1afe252019-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 Chou1254c3d2010-12-24 13:12:21 +000031/* R1 bit 7 is always zero, reuse this bit for error */
Bhargav Shaha1afe252019-07-08 04:10:48 +000032#define R1_SPI_ERROR BIT(7)
Thomas Chou1254c3d2010-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 Shaha1afe252019-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 Chou1254c3d2010-12-24 13:12:21 +000049
50/* MMC SPI commands start with a start bit "0" and a transmit bit "1" */
Bhargav Shaha1afe252019-07-08 04:10:48 +000051#define MMC_SPI_CMD(x) (0x40 | (x))
Thomas Chou1254c3d2010-12-24 13:12:21 +000052
53/* bus capability */
Bhargav Shaha1afe252019-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 Chou1254c3d2010-12-24 13:12:21 +000057
58/* timeout value */
Bhargav Shaha1afe252019-07-08 04:10:48 +000059#define CMD_TIMEOUT 8
60#define READ_TIMEOUT 3000000 /* 1 sec */
61#define WRITE_TIMEOUT 3000000 /* 1 sec */
Pragnesh Patel0f26cf12020-06-29 15:17:29 +053062#define R1B_TIMEOUT 3000000 /* 1 sec */
Bhargav Shaha1afe252019-07-08 04:10:48 +000063
Bin Mengf7260322019-08-30 21:15:33 -070064struct mmc_spi_plat {
Bhargav Shaha1afe252019-07-08 04:10:48 +000065 struct mmc_config cfg;
66 struct mmc mmc;
67};
Thomas Chou1254c3d2010-12-24 13:12:21 +000068
Bin Mengf7260322019-08-30 21:15:33 -070069struct mmc_spi_priv {
70 struct spi_slave *spi;
71};
72
Bhargav Shaha1afe252019-07-08 04:10:48 +000073static int mmc_spi_sendcmd(struct udevice *dev,
74 ushort cmdidx, u32 cmdarg, u32 resp_type,
75 u8 *resp, u32 resp_size,
Pragnesh Patel0f26cf12020-06-29 15:17:29 +053076 bool resp_match, u8 resp_match_value, bool r1b)
Thomas Chou1254c3d2010-12-24 13:12:21 +000077{
Bhargav Shaha1afe252019-07-08 04:10:48 +000078 int i, rpos = 0, ret = 0;
79 u8 cmdo[7], r;
80
Bin Meng6b82a242021-02-02 10:48:46 +080081 if (!resp || !resp_size)
82 return 0;
83
Bhargav Shaha1afe252019-07-08 04:10:48 +000084 debug("%s: cmd%d cmdarg=0x%x resp_type=0x%x "
85 "resp_size=%d resp_match=%d resp_match_value=0x%x\n",
86 __func__, cmdidx, cmdarg, resp_type,
87 resp_size, resp_match, resp_match_value);
88
Thomas Chou1254c3d2010-12-24 13:12:21 +000089 cmdo[0] = 0xff;
90 cmdo[1] = MMC_SPI_CMD(cmdidx);
91 cmdo[2] = cmdarg >> 24;
92 cmdo[3] = cmdarg >> 16;
93 cmdo[4] = cmdarg >> 8;
94 cmdo[5] = cmdarg;
95 cmdo[6] = (crc7(0, &cmdo[1], 5) << 1) | 0x01;
Anup Pateld2c68c02019-07-17 04:23:38 +000096 ret = dm_spi_xfer(dev, sizeof(cmdo) * 8, cmdo, NULL, SPI_XFER_BEGIN);
Bhargav Shaha1afe252019-07-08 04:10:48 +000097 if (ret)
98 return ret;
99
100 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
101 if (ret)
102 return ret;
103
Bhargav Shaha1afe252019-07-08 04:10:48 +0000104 debug("%s: cmd%d", __func__, cmdidx);
105
106 if (resp_match) {
107 r = ~resp_match_value;
108 i = CMD_TIMEOUT;
Pragnesh Patel32ca52e2020-06-29 15:17:24 +0530109 while (i) {
Bhargav Shaha1afe252019-07-08 04:10:48 +0000110 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
111 if (ret)
112 return ret;
113 debug(" resp%d=0x%x", rpos, r);
114 rpos++;
Pragnesh Patel32ca52e2020-06-29 15:17:24 +0530115 i--;
116
Bhargav Shaha1afe252019-07-08 04:10:48 +0000117 if (r == resp_match_value)
118 break;
119 }
120 if (!i && (r != resp_match_value))
121 return -ETIMEDOUT;
Thomas Chou1254c3d2010-12-24 13:12:21 +0000122 }
Bhargav Shaha1afe252019-07-08 04:10:48 +0000123
124 for (i = 0; i < resp_size; i++) {
125 if (i == 0 && resp_match) {
126 resp[i] = resp_match_value;
127 continue;
128 }
129 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
130 if (ret)
131 return ret;
132 debug(" resp%d=0x%x", rpos, r);
133 rpos++;
134 resp[i] = r;
135 }
136
Pragnesh Patel0f26cf12020-06-29 15:17:29 +0530137 if (r1b == true) {
138 i = R1B_TIMEOUT;
139 while (i) {
140 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
141 if (ret)
142 return ret;
143
144 debug(" resp%d=0x%x", rpos, r);
145 rpos++;
146 i--;
147
148 if (r)
149 break;
150 }
151 if (!i)
152 return -ETIMEDOUT;
153 }
154
Bhargav Shaha1afe252019-07-08 04:10:48 +0000155 debug("\n");
156
157 return 0;
Thomas Chou1254c3d2010-12-24 13:12:21 +0000158}
159
Bhargav Shaha1afe252019-07-08 04:10:48 +0000160static int mmc_spi_readdata(struct udevice *dev,
161 void *xbuf, u32 bcnt, u32 bsize)
Thomas Chou1254c3d2010-12-24 13:12:21 +0000162{
Thomas Chou1254c3d2010-12-24 13:12:21 +0000163 u16 crc;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000164 u8 *buf = xbuf, r1;
165 int i, ret = 0;
166
Thomas Chou1254c3d2010-12-24 13:12:21 +0000167 while (bcnt--) {
Bhargav Shaha1afe252019-07-08 04:10:48 +0000168 for (i = 0; i < READ_TIMEOUT; i++) {
169 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
170 if (ret)
171 return ret;
172 if (r1 == SPI_TOKEN_SINGLE)
Thomas Chou1254c3d2010-12-24 13:12:21 +0000173 break;
174 }
Bhargav Shaha1afe252019-07-08 04:10:48 +0000175 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000176 if (r1 == SPI_TOKEN_SINGLE) {
Bhargav Shaha1afe252019-07-08 04:10:48 +0000177 ret = dm_spi_xfer(dev, bsize * 8, NULL, buf, 0);
178 if (ret)
179 return ret;
180 ret = dm_spi_xfer(dev, 2 * 8, NULL, &crc, 0);
181 if (ret)
182 return ret;
Thomas Chou1254c3d2010-12-24 13:12:21 +0000183#ifdef CONFIG_MMC_SPI_CRC_ON
Bin Mengce387d92021-02-02 10:32:48 +0800184 u16 crc_ok = be16_to_cpu(crc16_ccitt(0, buf, bsize));
185 if (crc_ok != crc) {
186 debug("%s: data crc error, expected %04x got %04x\n",
187 __func__, crc_ok, crc);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000188 r1 = R1_SPI_COM_CRC;
189 break;
190 }
191#endif
192 r1 = 0;
193 } else {
194 r1 = R1_SPI_ERROR;
195 break;
196 }
197 buf += bsize;
198 }
Bhargav Shaha1afe252019-07-08 04:10:48 +0000199
200 if (r1 & R1_SPI_COM_CRC)
201 ret = -ECOMM;
202 else if (r1) /* other errors */
203 ret = -ETIMEDOUT;
204
205 return ret;
Thomas Chou1254c3d2010-12-24 13:12:21 +0000206}
207
Bhargav Shaha1afe252019-07-08 04:10:48 +0000208static int mmc_spi_writedata(struct udevice *dev, const void *xbuf,
209 u32 bcnt, u32 bsize, int multi)
Thomas Chou1254c3d2010-12-24 13:12:21 +0000210{
Thomas Chou1254c3d2010-12-24 13:12:21 +0000211 const u8 *buf = xbuf;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000212 u8 r1, tok[2];
Thomas Chou1254c3d2010-12-24 13:12:21 +0000213 u16 crc;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000214 int i, ret = 0;
215
Thomas Chou1254c3d2010-12-24 13:12:21 +0000216 tok[0] = 0xff;
217 tok[1] = multi ? SPI_TOKEN_MULTI_WRITE : SPI_TOKEN_SINGLE;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000218
Thomas Chou1254c3d2010-12-24 13:12:21 +0000219 while (bcnt--) {
220#ifdef CONFIG_MMC_SPI_CRC_ON
Stefan Roese084ff1e2016-03-03 09:34:12 +0100221 crc = cpu_to_be16(crc16_ccitt(0, (u8 *)buf, bsize));
Thomas Chou1254c3d2010-12-24 13:12:21 +0000222#endif
Bhargav Shaha1afe252019-07-08 04:10:48 +0000223 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
224 dm_spi_xfer(dev, bsize * 8, buf, NULL, 0);
225 dm_spi_xfer(dev, 2 * 8, &crc, NULL, 0);
226 for (i = 0; i < CMD_TIMEOUT; i++) {
227 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000228 if ((r1 & 0x10) == 0) /* response token */
229 break;
230 }
Bhargav Shaha1afe252019-07-08 04:10:48 +0000231 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000232 if (SPI_MMC_RESPONSE_CODE(r1) == SPI_RESPONSE_ACCEPTED) {
Bhargav Shaha1afe252019-07-08 04:10:48 +0000233 debug("%s: data accepted\n", __func__);
234 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
235 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000236 if (i && r1 == 0xff) {
237 r1 = 0;
238 break;
239 }
240 }
Bhargav Shaha1afe252019-07-08 04:10:48 +0000241 if (i == WRITE_TIMEOUT) {
242 debug("%s: data write timeout 0x%x\n",
243 __func__, r1);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000244 r1 = R1_SPI_ERROR;
245 break;
246 }
247 } else {
Bhargav Shaha1afe252019-07-08 04:10:48 +0000248 debug("%s: data error 0x%x\n", __func__, r1);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000249 r1 = R1_SPI_COM_CRC;
250 break;
251 }
252 buf += bsize;
253 }
254 if (multi && bcnt == -1) { /* stop multi write */
255 tok[1] = SPI_TOKEN_STOP_TRAN;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000256 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
257 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
258 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000259 if (i && r1 == 0xff) {
260 r1 = 0;
261 break;
262 }
263 }
Bhargav Shaha1afe252019-07-08 04:10:48 +0000264 if (i == WRITE_TIMEOUT) {
265 debug("%s: data write timeout 0x%x\n", __func__, r1);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000266 r1 = R1_SPI_ERROR;
267 }
268 }
Thomas Chou1254c3d2010-12-24 13:12:21 +0000269
Bhargav Shaha1afe252019-07-08 04:10:48 +0000270 if (r1 & R1_SPI_COM_CRC)
Jaehoon Chung7825d202016-07-19 16:33:36 +0900271 ret = -ECOMM;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000272 else if (r1) /* other errors */
Jaehoon Chung7825d202016-07-19 16:33:36 +0900273 ret = -ETIMEDOUT;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000274
275 return ret;
276}
277
278static int dm_mmc_spi_set_ios(struct udevice *dev)
279{
280 return 0;
281}
282
283static int dm_mmc_spi_request(struct udevice *dev, struct mmc_cmd *cmd,
284 struct mmc_data *data)
285{
286 int i, multi, ret = 0;
287 u8 *resp = NULL;
288 u32 resp_size = 0;
Pragnesh Patel0f26cf12020-06-29 15:17:29 +0530289 bool resp_match = false, r1b = false;
Pragnesh Patel68fbc9d2020-06-29 15:17:27 +0530290 u8 resp8 = 0, resp16[2] = { 0 }, resp40[5] = { 0 }, resp_match_value = 0;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000291
292 dm_spi_claim_bus(dev);
293
294 for (i = 0; i < 4; i++)
295 cmd->response[i] = 0;
296
297 switch (cmd->cmdidx) {
298 case SD_CMD_APP_SEND_OP_COND:
299 case MMC_CMD_SEND_OP_COND:
300 resp = &resp8;
301 resp_size = sizeof(resp8);
302 cmd->cmdarg = 0x40000000;
303 break;
304 case SD_CMD_SEND_IF_COND:
305 resp = (u8 *)&resp40[0];
306 resp_size = sizeof(resp40);
307 resp_match = true;
308 resp_match_value = R1_SPI_IDLE;
309 break;
310 case MMC_CMD_SPI_READ_OCR:
311 resp = (u8 *)&resp40[0];
312 resp_size = sizeof(resp40);
313 break;
314 case MMC_CMD_SEND_STATUS:
Pragnesh Patel68fbc9d2020-06-29 15:17:27 +0530315 resp = (u8 *)&resp16[0];
316 resp_size = sizeof(resp16);
317 break;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000318 case MMC_CMD_SET_BLOCKLEN:
319 case MMC_CMD_SPI_CRC_ON_OFF:
Bhargav Shaha1afe252019-07-08 04:10:48 +0000320 resp = &resp8;
321 resp_size = sizeof(resp8);
322 resp_match = true;
323 resp_match_value = 0x0;
324 break;
Pragnesh Patel0f26cf12020-06-29 15:17:29 +0530325 case MMC_CMD_STOP_TRANSMISSION:
326 case MMC_CMD_ERASE:
327 resp = &resp8;
328 resp_size = sizeof(resp8);
329 r1b = true;
330 break;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000331 case MMC_CMD_SEND_CSD:
332 case MMC_CMD_SEND_CID:
333 case MMC_CMD_READ_SINGLE_BLOCK:
334 case MMC_CMD_READ_MULTIPLE_BLOCK:
335 case MMC_CMD_WRITE_SINGLE_BLOCK:
336 case MMC_CMD_WRITE_MULTIPLE_BLOCK:
Pragnesh Patela01f57e2020-06-29 15:17:26 +0530337 case MMC_CMD_APP_CMD:
Pragnesh Patel536b4562020-06-29 15:17:28 +0530338 case SD_CMD_ERASE_WR_BLK_START:
339 case SD_CMD_ERASE_WR_BLK_END:
Pragnesh Patel049dc5f2020-06-29 15:17:25 +0530340 resp = &resp8;
341 resp_size = sizeof(resp8);
Bhargav Shaha1afe252019-07-08 04:10:48 +0000342 break;
343 default:
344 resp = &resp8;
345 resp_size = sizeof(resp8);
346 resp_match = true;
347 resp_match_value = R1_SPI_IDLE;
348 break;
349 };
350
351 ret = mmc_spi_sendcmd(dev, cmd->cmdidx, cmd->cmdarg, cmd->resp_type,
Pragnesh Patel0f26cf12020-06-29 15:17:29 +0530352 resp, resp_size, resp_match, resp_match_value, r1b);
Bhargav Shaha1afe252019-07-08 04:10:48 +0000353 if (ret)
Thomas Chou1254c3d2010-12-24 13:12:21 +0000354 goto done;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000355
356 switch (cmd->cmdidx) {
357 case SD_CMD_APP_SEND_OP_COND:
358 case MMC_CMD_SEND_OP_COND:
359 cmd->response[0] = (resp8 & R1_SPI_IDLE) ? 0 : OCR_BUSY;
360 break;
361 case SD_CMD_SEND_IF_COND:
362 case MMC_CMD_SPI_READ_OCR:
363 cmd->response[0] = resp40[4];
364 cmd->response[0] |= (uint)resp40[3] << 8;
365 cmd->response[0] |= (uint)resp40[2] << 16;
366 cmd->response[0] |= (uint)resp40[1] << 24;
367 break;
368 case MMC_CMD_SEND_STATUS:
Pragnesh Patel68fbc9d2020-06-29 15:17:27 +0530369 if (resp16[0] || resp16[1])
370 cmd->response[0] = MMC_STATUS_ERROR;
371 else
372 cmd->response[0] = MMC_STATUS_RDY_FOR_DATA;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000373 break;
374 case MMC_CMD_SEND_CID:
375 case MMC_CMD_SEND_CSD:
376 ret = mmc_spi_readdata(dev, cmd->response, 1, 16);
377 if (ret)
378 return ret;
Thomas Chou1254c3d2010-12-24 13:12:21 +0000379 for (i = 0; i < 4; i++)
Bhargav Shaha1afe252019-07-08 04:10:48 +0000380 cmd->response[i] =
381 cpu_to_be32(cmd->response[i]);
382 break;
383 default:
384 cmd->response[0] = resp8;
385 break;
386 }
387
388 debug("%s: cmd%d resp0=0x%x resp1=0x%x resp2=0x%x resp3=0x%x\n",
389 __func__, cmd->cmdidx, cmd->response[0], cmd->response[1],
390 cmd->response[2], cmd->response[3]);
391
392 if (data) {
393 debug("%s: data flags=0x%x blocks=%d block_size=%d\n",
394 __func__, data->flags, data->blocks, data->blocksize);
395 multi = (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000396 if (data->flags == MMC_DATA_READ)
Bhargav Shaha1afe252019-07-08 04:10:48 +0000397 ret = mmc_spi_readdata(dev, data->dest,
398 data->blocks, data->blocksize);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000399 else if (data->flags == MMC_DATA_WRITE)
Bhargav Shaha1afe252019-07-08 04:10:48 +0000400 ret = mmc_spi_writedata(dev, data->src,
401 data->blocks, data->blocksize,
402 multi);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000403 }
Bhargav Shaha1afe252019-07-08 04:10:48 +0000404
Thomas Chou1254c3d2010-12-24 13:12:21 +0000405done:
Anup Pateld2c68c02019-07-17 04:23:38 +0000406 dm_spi_xfer(dev, 0, NULL, NULL, SPI_XFER_END);
407
Bhargav Shaha1afe252019-07-08 04:10:48 +0000408 dm_spi_release_bus(dev);
409
Thomas Chou1254c3d2010-12-24 13:12:21 +0000410 return ret;
411}
412
Bhargav Shaha1afe252019-07-08 04:10:48 +0000413static int mmc_spi_probe(struct udevice *dev)
Thomas Chou1254c3d2010-12-24 13:12:21 +0000414{
Bhargav Shaha1afe252019-07-08 04:10:48 +0000415 struct mmc_spi_priv *priv = dev_get_priv(dev);
Simon Glassfa20e932020-12-03 16:55:20 -0700416 struct mmc_spi_plat *plat = dev_get_plat(dev);
Bhargav Shaha1afe252019-07-08 04:10:48 +0000417 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
418 char *name;
419
420 priv->spi = dev_get_parent_priv(dev);
421 if (!priv->spi->max_hz)
422 priv->spi->max_hz = MMC_SPI_MAX_CLOCK;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000423 priv->spi->mode = SPI_MODE_0;
424 priv->spi->wordlen = 8;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200425
Bhargav Shaha1afe252019-07-08 04:10:48 +0000426 name = malloc(strlen(dev->parent->name) + strlen(dev->name) + 4);
427 if (!name)
428 return -ENOMEM;
429 sprintf(name, "%s:%s", dev->parent->name, dev->name);
430
Bin Mengf7260322019-08-30 21:15:33 -0700431 plat->cfg.name = name;
432 plat->cfg.host_caps = MMC_MODE_SPI;
433 plat->cfg.voltages = MMC_SPI_VOLTAGE;
434 plat->cfg.f_min = MMC_SPI_MIN_CLOCK;
435 plat->cfg.f_max = priv->spi->max_hz;
436 plat->cfg.part_type = PART_TYPE_DOS;
437 plat->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000438
Bin Mengf7260322019-08-30 21:15:33 -0700439 plat->mmc.cfg = &plat->cfg;
440 plat->mmc.priv = priv;
441 plat->mmc.dev = dev;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000442
Bin Mengf7260322019-08-30 21:15:33 -0700443 upriv->mmc = &plat->mmc;
Bhargav Shaha1afe252019-07-08 04:10:48 +0000444
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900445 return 0;
Thomas Chou1254c3d2010-12-24 13:12:21 +0000446}
447
Bhargav Shaha1afe252019-07-08 04:10:48 +0000448static int mmc_spi_bind(struct udevice *dev)
Thomas Chou1254c3d2010-12-24 13:12:21 +0000449{
Simon Glassfa20e932020-12-03 16:55:20 -0700450 struct mmc_spi_plat *plat = dev_get_plat(dev);
Bhargav Shaha1afe252019-07-08 04:10:48 +0000451
Bin Mengf7260322019-08-30 21:15:33 -0700452 return mmc_bind(dev, &plat->mmc, &plat->cfg);
Thomas Chou1254c3d2010-12-24 13:12:21 +0000453}
454
Bhargav Shaha1afe252019-07-08 04:10:48 +0000455static const struct dm_mmc_ops mmc_spi_ops = {
456 .send_cmd = dm_mmc_spi_request,
457 .set_ios = dm_mmc_spi_set_ios,
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200458};
459
Bhargav Shaha1afe252019-07-08 04:10:48 +0000460static const struct udevice_id dm_mmc_spi_match[] = {
461 { .compatible = "mmc-spi-slot" },
462 { /* sentinel */ }
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200463};
464
Bhargav Shaha1afe252019-07-08 04:10:48 +0000465U_BOOT_DRIVER(mmc_spi) = {
466 .name = "mmc_spi",
467 .id = UCLASS_MMC,
468 .of_match = dm_mmc_spi_match,
469 .ops = &mmc_spi_ops,
470 .probe = mmc_spi_probe,
471 .bind = mmc_spi_bind,
Simon Glass71fa5b42020-12-03 16:55:18 -0700472 .plat_auto = sizeof(struct mmc_spi_plat),
Simon Glass8a2b47f2020-12-03 16:55:17 -0700473 .priv_auto = sizeof(struct mmc_spi_priv),
Bhargav Shaha1afe252019-07-08 04:10:48 +0000474};