blob: 86cc93215130547dc282955e6cde87d6a23c4b92 [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;
Pragnesh Patel3ba1d532020-06-29 15:17:24 +0530108 while (i) {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000109 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++;
Pragnesh Patel3ba1d532020-06-29 15:17:24 +0530114 i--;
115
Bhargav Shah05e35d42019-07-08 04:10:48 +0000116 if (r == resp_match_value)
Thomas Choud52ebf12010-12-24 13:12:21 +0000117 break;
118 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000119 if (!i && (r != resp_match_value))
120 return -ETIMEDOUT;
121 }
122
123 for (i = 0; i < resp_size; i++) {
124 if (i == 0 && resp_match) {
125 resp[i] = resp_match_value;
126 continue;
127 }
128 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r, 0);
129 if (ret)
130 return ret;
131 debug(" resp%d=0x%x", rpos, r);
132 rpos++;
133 resp[i] = r;
134 }
135
136 debug("\n");
137
138 return 0;
139}
140
141static int mmc_spi_readdata(struct udevice *dev,
142 void *xbuf, u32 bcnt, u32 bsize)
143{
144 u16 crc;
145 u8 *buf = xbuf, r1;
146 int i, ret = 0;
147
148 while (bcnt--) {
149 for (i = 0; i < READ_TIMEOUT; i++) {
150 ret = dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
151 if (ret)
152 return ret;
153 if (r1 == SPI_TOKEN_SINGLE)
154 break;
155 }
156 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000157 if (r1 == SPI_TOKEN_SINGLE) {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000158 ret = dm_spi_xfer(dev, bsize * 8, NULL, buf, 0);
159 if (ret)
160 return ret;
161 ret = dm_spi_xfer(dev, 2 * 8, NULL, &crc, 0);
162 if (ret)
163 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000164#ifdef CONFIG_MMC_SPI_CRC_ON
Bhargav Shah05e35d42019-07-08 04:10:48 +0000165 if (be16_to_cpu(crc16_ccitt(0, buf, bsize)) != crc) {
166 debug("%s: data crc error\n", __func__);
Thomas Choud52ebf12010-12-24 13:12:21 +0000167 r1 = R1_SPI_COM_CRC;
168 break;
169 }
170#endif
171 r1 = 0;
172 } else {
173 r1 = R1_SPI_ERROR;
174 break;
175 }
176 buf += bsize;
177 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000178
179 if (r1 & R1_SPI_COM_CRC)
180 ret = -ECOMM;
181 else if (r1) /* other errors */
182 ret = -ETIMEDOUT;
183
184 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000185}
186
Bhargav Shah05e35d42019-07-08 04:10:48 +0000187static int mmc_spi_writedata(struct udevice *dev, const void *xbuf,
188 u32 bcnt, u32 bsize, int multi)
Thomas Choud52ebf12010-12-24 13:12:21 +0000189{
Thomas Choud52ebf12010-12-24 13:12:21 +0000190 const u8 *buf = xbuf;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000191 u8 r1, tok[2];
Thomas Choud52ebf12010-12-24 13:12:21 +0000192 u16 crc;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000193 int i, ret = 0;
194
Thomas Choud52ebf12010-12-24 13:12:21 +0000195 tok[0] = 0xff;
196 tok[1] = multi ? SPI_TOKEN_MULTI_WRITE : SPI_TOKEN_SINGLE;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000197
Thomas Choud52ebf12010-12-24 13:12:21 +0000198 while (bcnt--) {
199#ifdef CONFIG_MMC_SPI_CRC_ON
Stefan Roeseecb57f62016-03-03 09:34:12 +0100200 crc = cpu_to_be16(crc16_ccitt(0, (u8 *)buf, bsize));
Thomas Choud52ebf12010-12-24 13:12:21 +0000201#endif
Bhargav Shah05e35d42019-07-08 04:10:48 +0000202 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
203 dm_spi_xfer(dev, bsize * 8, buf, NULL, 0);
204 dm_spi_xfer(dev, 2 * 8, &crc, NULL, 0);
205 for (i = 0; i < CMD_TIMEOUT; i++) {
206 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000207 if ((r1 & 0x10) == 0) /* response token */
208 break;
209 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000210 debug("%s: data tok%d 0x%x\n", __func__, i, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000211 if (SPI_MMC_RESPONSE_CODE(r1) == SPI_RESPONSE_ACCEPTED) {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000212 debug("%s: data accepted\n", __func__);
213 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
214 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000215 if (i && r1 == 0xff) {
216 r1 = 0;
217 break;
218 }
219 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000220 if (i == WRITE_TIMEOUT) {
221 debug("%s: data write timeout 0x%x\n",
222 __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000223 r1 = R1_SPI_ERROR;
224 break;
225 }
226 } else {
Bhargav Shah05e35d42019-07-08 04:10:48 +0000227 debug("%s: data error 0x%x\n", __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000228 r1 = R1_SPI_COM_CRC;
229 break;
230 }
231 buf += bsize;
232 }
233 if (multi && bcnt == -1) { /* stop multi write */
234 tok[1] = SPI_TOKEN_STOP_TRAN;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000235 dm_spi_xfer(dev, 2 * 8, tok, NULL, 0);
236 for (i = 0; i < WRITE_TIMEOUT; i++) { /* wait busy */
237 dm_spi_xfer(dev, 1 * 8, NULL, &r1, 0);
Thomas Choud52ebf12010-12-24 13:12:21 +0000238 if (i && r1 == 0xff) {
239 r1 = 0;
240 break;
241 }
242 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000243 if (i == WRITE_TIMEOUT) {
244 debug("%s: data write timeout 0x%x\n", __func__, r1);
Thomas Choud52ebf12010-12-24 13:12:21 +0000245 r1 = R1_SPI_ERROR;
246 }
247 }
Thomas Choud52ebf12010-12-24 13:12:21 +0000248
Bhargav Shah05e35d42019-07-08 04:10:48 +0000249 if (r1 & R1_SPI_COM_CRC)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900250 ret = -ECOMM;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000251 else if (r1) /* other errors */
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900252 ret = -ETIMEDOUT;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000253
Thomas Choud52ebf12010-12-24 13:12:21 +0000254 return ret;
255}
256
Bhargav Shah05e35d42019-07-08 04:10:48 +0000257static int dm_mmc_spi_set_ios(struct udevice *dev)
Thomas Choud52ebf12010-12-24 13:12:21 +0000258{
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900259 return 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000260}
261
Bhargav Shah05e35d42019-07-08 04:10:48 +0000262static int dm_mmc_spi_request(struct udevice *dev, struct mmc_cmd *cmd,
263 struct mmc_data *data)
Thomas Choud52ebf12010-12-24 13:12:21 +0000264{
Bhargav Shah05e35d42019-07-08 04:10:48 +0000265 int i, multi, ret = 0;
266 u8 *resp = NULL;
267 u32 resp_size = 0;
268 bool resp_match = false;
269 u8 resp8 = 0, resp40[5] = { 0 }, resp_match_value = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000270
Bhargav Shah05e35d42019-07-08 04:10:48 +0000271 dm_spi_claim_bus(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200272
Bhargav Shah05e35d42019-07-08 04:10:48 +0000273 for (i = 0; i < 4; i++)
274 cmd->response[i] = 0;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200275
Bhargav Shah05e35d42019-07-08 04:10:48 +0000276 switch (cmd->cmdidx) {
277 case SD_CMD_APP_SEND_OP_COND:
278 case MMC_CMD_SEND_OP_COND:
279 resp = &resp8;
280 resp_size = sizeof(resp8);
281 cmd->cmdarg = 0x40000000;
282 break;
283 case SD_CMD_SEND_IF_COND:
284 resp = (u8 *)&resp40[0];
285 resp_size = sizeof(resp40);
286 resp_match = true;
287 resp_match_value = R1_SPI_IDLE;
288 break;
289 case MMC_CMD_SPI_READ_OCR:
290 resp = (u8 *)&resp40[0];
291 resp_size = sizeof(resp40);
292 break;
293 case MMC_CMD_SEND_STATUS:
294 case MMC_CMD_SET_BLOCKLEN:
295 case MMC_CMD_SPI_CRC_ON_OFF:
296 case MMC_CMD_STOP_TRANSMISSION:
297 resp = &resp8;
298 resp_size = sizeof(resp8);
299 resp_match = true;
300 resp_match_value = 0x0;
301 break;
302 case MMC_CMD_SEND_CSD:
303 case MMC_CMD_SEND_CID:
304 case MMC_CMD_READ_SINGLE_BLOCK:
305 case MMC_CMD_READ_MULTIPLE_BLOCK:
306 case MMC_CMD_WRITE_SINGLE_BLOCK:
307 case MMC_CMD_WRITE_MULTIPLE_BLOCK:
308 break;
309 default:
310 resp = &resp8;
311 resp_size = sizeof(resp8);
312 resp_match = true;
313 resp_match_value = R1_SPI_IDLE;
314 break;
315 };
Thomas Choud52ebf12010-12-24 13:12:21 +0000316
Bhargav Shah05e35d42019-07-08 04:10:48 +0000317 ret = mmc_spi_sendcmd(dev, cmd->cmdidx, cmd->cmdarg, cmd->resp_type,
318 resp, resp_size, resp_match, resp_match_value);
319 if (ret)
320 goto done;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200321
Bhargav Shah05e35d42019-07-08 04:10:48 +0000322 switch (cmd->cmdidx) {
323 case SD_CMD_APP_SEND_OP_COND:
324 case MMC_CMD_SEND_OP_COND:
325 cmd->response[0] = (resp8 & R1_SPI_IDLE) ? 0 : OCR_BUSY;
326 break;
327 case SD_CMD_SEND_IF_COND:
328 case MMC_CMD_SPI_READ_OCR:
329 cmd->response[0] = resp40[4];
330 cmd->response[0] |= (uint)resp40[3] << 8;
331 cmd->response[0] |= (uint)resp40[2] << 16;
332 cmd->response[0] |= (uint)resp40[1] << 24;
333 break;
334 case MMC_CMD_SEND_STATUS:
335 cmd->response[0] = (resp8 & 0xff) ?
336 MMC_STATUS_ERROR : MMC_STATUS_RDY_FOR_DATA;
337 break;
338 case MMC_CMD_SEND_CID:
339 case MMC_CMD_SEND_CSD:
340 ret = mmc_spi_readdata(dev, cmd->response, 1, 16);
341 if (ret)
342 return ret;
343 for (i = 0; i < 4; i++)
344 cmd->response[i] =
345 cpu_to_be32(cmd->response[i]);
346 break;
347 default:
348 cmd->response[0] = resp8;
349 break;
Thomas Choud52ebf12010-12-24 13:12:21 +0000350 }
Bhargav Shah05e35d42019-07-08 04:10:48 +0000351
352 debug("%s: cmd%d resp0=0x%x resp1=0x%x resp2=0x%x resp3=0x%x\n",
353 __func__, cmd->cmdidx, cmd->response[0], cmd->response[1],
354 cmd->response[2], cmd->response[3]);
355
356 if (data) {
357 debug("%s: data flags=0x%x blocks=%d block_size=%d\n",
358 __func__, data->flags, data->blocks, data->blocksize);
359 multi = (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK);
360 if (data->flags == MMC_DATA_READ)
361 ret = mmc_spi_readdata(dev, data->dest,
362 data->blocks, data->blocksize);
363 else if (data->flags == MMC_DATA_WRITE)
364 ret = mmc_spi_writedata(dev, data->src,
365 data->blocks, data->blocksize,
366 multi);
367 }
368
369done:
Anup Patela7060292019-07-17 04:23:38 +0000370 dm_spi_xfer(dev, 0, NULL, NULL, SPI_XFER_END);
371
Bhargav Shah05e35d42019-07-08 04:10:48 +0000372 dm_spi_release_bus(dev);
373
374 return ret;
Thomas Choud52ebf12010-12-24 13:12:21 +0000375}
Bhargav Shah05e35d42019-07-08 04:10:48 +0000376
377static int mmc_spi_probe(struct udevice *dev)
378{
379 struct mmc_spi_priv *priv = dev_get_priv(dev);
Bin Mengd3302392019-08-30 21:15:33 -0700380 struct mmc_spi_plat *plat = dev_get_platdata(dev);
Bhargav Shah05e35d42019-07-08 04:10:48 +0000381 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
382 char *name;
383
384 priv->spi = dev_get_parent_priv(dev);
385 if (!priv->spi->max_hz)
386 priv->spi->max_hz = MMC_SPI_MAX_CLOCK;
387 priv->spi->speed = 0;
388 priv->spi->mode = SPI_MODE_0;
389 priv->spi->wordlen = 8;
390
391 name = malloc(strlen(dev->parent->name) + strlen(dev->name) + 4);
392 if (!name)
393 return -ENOMEM;
394 sprintf(name, "%s:%s", dev->parent->name, dev->name);
395
Bin Mengd3302392019-08-30 21:15:33 -0700396 plat->cfg.name = name;
397 plat->cfg.host_caps = MMC_MODE_SPI;
398 plat->cfg.voltages = MMC_SPI_VOLTAGE;
399 plat->cfg.f_min = MMC_SPI_MIN_CLOCK;
400 plat->cfg.f_max = priv->spi->max_hz;
401 plat->cfg.part_type = PART_TYPE_DOS;
402 plat->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000403
Bin Mengd3302392019-08-30 21:15:33 -0700404 plat->mmc.cfg = &plat->cfg;
405 plat->mmc.priv = priv;
406 plat->mmc.dev = dev;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000407
Bin Mengd3302392019-08-30 21:15:33 -0700408 upriv->mmc = &plat->mmc;
Bhargav Shah05e35d42019-07-08 04:10:48 +0000409
410 return 0;
411}
412
413static int mmc_spi_bind(struct udevice *dev)
414{
Bin Mengd3302392019-08-30 21:15:33 -0700415 struct mmc_spi_plat *plat = dev_get_platdata(dev);
Bhargav Shah05e35d42019-07-08 04:10:48 +0000416
Bin Mengd3302392019-08-30 21:15:33 -0700417 return mmc_bind(dev, &plat->mmc, &plat->cfg);
Bhargav Shah05e35d42019-07-08 04:10:48 +0000418}
419
420static const struct dm_mmc_ops mmc_spi_ops = {
421 .send_cmd = dm_mmc_spi_request,
422 .set_ios = dm_mmc_spi_set_ios,
423};
424
425static const struct udevice_id dm_mmc_spi_match[] = {
426 { .compatible = "mmc-spi-slot" },
427 { /* sentinel */ }
428};
429
430U_BOOT_DRIVER(mmc_spi) = {
431 .name = "mmc_spi",
432 .id = UCLASS_MMC,
433 .of_match = dm_mmc_spi_match,
434 .ops = &mmc_spi_ops,
435 .probe = mmc_spi_probe,
436 .bind = mmc_spi_bind,
Bin Mengd3302392019-08-30 21:15:33 -0700437 .platdata_auto_alloc_size = sizeof(struct mmc_spi_plat),
Bhargav Shah05e35d42019-07-08 04:10:48 +0000438 .priv_auto_alloc_size = sizeof(struct mmc_spi_priv),
439};