mmc: core: Rename ignore_crc to retry_crc_err to reflect its purpose
[platform/kernel/linux-rpi.git] / drivers / mmc / core / mmc_ops.c
1 /*
2  *  linux/drivers/mmc/core/mmc_ops.h
3  *
4  *  Copyright 2006-2007 Pierre Ossman
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or (at
9  * your option) any later version.
10  */
11
12 #include <linux/slab.h>
13 #include <linux/export.h>
14 #include <linux/types.h>
15 #include <linux/scatterlist.h>
16
17 #include <linux/mmc/host.h>
18 #include <linux/mmc/card.h>
19 #include <linux/mmc/mmc.h>
20
21 #include "core.h"
22 #include "host.h"
23 #include "mmc_ops.h"
24
25 #define MMC_OPS_TIMEOUT_MS      (10 * 60 * 1000) /* 10 minute timeout */
26
27 static const u8 tuning_blk_pattern_4bit[] = {
28         0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc,
29         0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef,
30         0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb,
31         0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef,
32         0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c,
33         0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee,
34         0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff,
35         0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde,
36 };
37
38 static const u8 tuning_blk_pattern_8bit[] = {
39         0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
40         0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc,
41         0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff,
42         0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff,
43         0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd,
44         0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb,
45         0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff,
46         0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff,
47         0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00,
48         0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc,
49         0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff,
50         0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee,
51         0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd,
52         0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
53         0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff,
54         0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee,
55 };
56
57 int mmc_send_status(struct mmc_card *card, u32 *status)
58 {
59         int err;
60         struct mmc_command cmd = {0};
61
62         BUG_ON(!card);
63         BUG_ON(!card->host);
64
65         cmd.opcode = MMC_SEND_STATUS;
66         if (!mmc_host_is_spi(card->host))
67                 cmd.arg = card->rca << 16;
68         cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
69
70         err = mmc_wait_for_cmd(card->host, &cmd, MMC_CMD_RETRIES);
71         if (err)
72                 return err;
73
74         /* NOTE: callers are required to understand the difference
75          * between "native" and SPI format status words!
76          */
77         if (status)
78                 *status = cmd.resp[0];
79
80         return 0;
81 }
82
83 static int _mmc_select_card(struct mmc_host *host, struct mmc_card *card)
84 {
85         struct mmc_command cmd = {0};
86
87         BUG_ON(!host);
88
89         cmd.opcode = MMC_SELECT_CARD;
90
91         if (card) {
92                 cmd.arg = card->rca << 16;
93                 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
94         } else {
95                 cmd.arg = 0;
96                 cmd.flags = MMC_RSP_NONE | MMC_CMD_AC;
97         }
98
99         return mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
100 }
101
102 int mmc_select_card(struct mmc_card *card)
103 {
104         BUG_ON(!card);
105
106         return _mmc_select_card(card->host, card);
107 }
108
109 int mmc_deselect_cards(struct mmc_host *host)
110 {
111         return _mmc_select_card(host, NULL);
112 }
113
114 /*
115  * Write the value specified in the device tree or board code into the optional
116  * 16 bit Driver Stage Register. This can be used to tune raise/fall times and
117  * drive strength of the DAT and CMD outputs. The actual meaning of a given
118  * value is hardware dependant.
119  * The presence of the DSR register can be determined from the CSD register,
120  * bit 76.
121  */
122 int mmc_set_dsr(struct mmc_host *host)
123 {
124         struct mmc_command cmd = {0};
125
126         cmd.opcode = MMC_SET_DSR;
127
128         cmd.arg = (host->dsr << 16) | 0xffff;
129         cmd.flags = MMC_RSP_NONE | MMC_CMD_AC;
130
131         return mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
132 }
133
134 int mmc_go_idle(struct mmc_host *host)
135 {
136         int err;
137         struct mmc_command cmd = {0};
138
139         /*
140          * Non-SPI hosts need to prevent chipselect going active during
141          * GO_IDLE; that would put chips into SPI mode.  Remind them of
142          * that in case of hardware that won't pull up DAT3/nCS otherwise.
143          *
144          * SPI hosts ignore ios.chip_select; it's managed according to
145          * rules that must accommodate non-MMC slaves which this layer
146          * won't even know about.
147          */
148         if (!mmc_host_is_spi(host)) {
149                 mmc_set_chip_select(host, MMC_CS_HIGH);
150                 mmc_delay(1);
151         }
152
153         cmd.opcode = MMC_GO_IDLE_STATE;
154         cmd.arg = 0;
155         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_NONE | MMC_CMD_BC;
156
157         err = mmc_wait_for_cmd(host, &cmd, 0);
158
159         mmc_delay(1);
160
161         if (!mmc_host_is_spi(host)) {
162                 mmc_set_chip_select(host, MMC_CS_DONTCARE);
163                 mmc_delay(1);
164         }
165
166         host->use_spi_crc = 0;
167
168         return err;
169 }
170
171 int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
172 {
173         struct mmc_command cmd = {0};
174         int i, err = 0;
175
176         BUG_ON(!host);
177
178         cmd.opcode = MMC_SEND_OP_COND;
179         cmd.arg = mmc_host_is_spi(host) ? 0 : ocr;
180         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R3 | MMC_CMD_BCR;
181
182         for (i = 100; i; i--) {
183                 err = mmc_wait_for_cmd(host, &cmd, 0);
184                 if (err)
185                         break;
186
187                 /* if we're just probing, do a single pass */
188                 if (ocr == 0)
189                         break;
190
191                 /* otherwise wait until reset completes */
192                 if (mmc_host_is_spi(host)) {
193                         if (!(cmd.resp[0] & R1_SPI_IDLE))
194                                 break;
195                 } else {
196                         if (cmd.resp[0] & MMC_CARD_BUSY)
197                                 break;
198                 }
199
200                 err = -ETIMEDOUT;
201
202                 mmc_delay(10);
203         }
204
205         if (rocr && !mmc_host_is_spi(host))
206                 *rocr = cmd.resp[0];
207
208         return err;
209 }
210
211 int mmc_all_send_cid(struct mmc_host *host, u32 *cid)
212 {
213         int err;
214         struct mmc_command cmd = {0};
215
216         BUG_ON(!host);
217         BUG_ON(!cid);
218
219         cmd.opcode = MMC_ALL_SEND_CID;
220         cmd.arg = 0;
221         cmd.flags = MMC_RSP_R2 | MMC_CMD_BCR;
222
223         err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
224         if (err)
225                 return err;
226
227         memcpy(cid, cmd.resp, sizeof(u32) * 4);
228
229         return 0;
230 }
231
232 int mmc_set_relative_addr(struct mmc_card *card)
233 {
234         struct mmc_command cmd = {0};
235
236         BUG_ON(!card);
237         BUG_ON(!card->host);
238
239         cmd.opcode = MMC_SET_RELATIVE_ADDR;
240         cmd.arg = card->rca << 16;
241         cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
242
243         return mmc_wait_for_cmd(card->host, &cmd, MMC_CMD_RETRIES);
244 }
245
246 static int
247 mmc_send_cxd_native(struct mmc_host *host, u32 arg, u32 *cxd, int opcode)
248 {
249         int err;
250         struct mmc_command cmd = {0};
251
252         BUG_ON(!host);
253         BUG_ON(!cxd);
254
255         cmd.opcode = opcode;
256         cmd.arg = arg;
257         cmd.flags = MMC_RSP_R2 | MMC_CMD_AC;
258
259         err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
260         if (err)
261                 return err;
262
263         memcpy(cxd, cmd.resp, sizeof(u32) * 4);
264
265         return 0;
266 }
267
268 /*
269  * NOTE: void *buf, caller for the buf is required to use DMA-capable
270  * buffer or on-stack buffer (with some overhead in callee).
271  */
272 static int
273 mmc_send_cxd_data(struct mmc_card *card, struct mmc_host *host,
274                 u32 opcode, void *buf, unsigned len)
275 {
276         struct mmc_request mrq = {NULL};
277         struct mmc_command cmd = {0};
278         struct mmc_data data = {0};
279         struct scatterlist sg;
280
281         mrq.cmd = &cmd;
282         mrq.data = &data;
283
284         cmd.opcode = opcode;
285         cmd.arg = 0;
286
287         /* NOTE HACK:  the MMC_RSP_SPI_R1 is always correct here, but we
288          * rely on callers to never use this with "native" calls for reading
289          * CSD or CID.  Native versions of those commands use the R2 type,
290          * not R1 plus a data block.
291          */
292         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
293
294         data.blksz = len;
295         data.blocks = 1;
296         data.flags = MMC_DATA_READ;
297         data.sg = &sg;
298         data.sg_len = 1;
299
300         sg_init_one(&sg, buf, len);
301
302         if (opcode == MMC_SEND_CSD || opcode == MMC_SEND_CID) {
303                 /*
304                  * The spec states that CSR and CID accesses have a timeout
305                  * of 64 clock cycles.
306                  */
307                 data.timeout_ns = 0;
308                 data.timeout_clks = 64;
309         } else
310                 mmc_set_data_timeout(&data, card);
311
312         mmc_wait_for_req(host, &mrq);
313
314         if (cmd.error)
315                 return cmd.error;
316         if (data.error)
317                 return data.error;
318
319         return 0;
320 }
321
322 int mmc_send_csd(struct mmc_card *card, u32 *csd)
323 {
324         int ret, i;
325         u32 *csd_tmp;
326
327         if (!mmc_host_is_spi(card->host))
328                 return mmc_send_cxd_native(card->host, card->rca << 16,
329                                 csd, MMC_SEND_CSD);
330
331         csd_tmp = kzalloc(16, GFP_KERNEL);
332         if (!csd_tmp)
333                 return -ENOMEM;
334
335         ret = mmc_send_cxd_data(card, card->host, MMC_SEND_CSD, csd_tmp, 16);
336         if (ret)
337                 goto err;
338
339         for (i = 0;i < 4;i++)
340                 csd[i] = be32_to_cpu(csd_tmp[i]);
341
342 err:
343         kfree(csd_tmp);
344         return ret;
345 }
346
347 int mmc_send_cid(struct mmc_host *host, u32 *cid)
348 {
349         int ret, i;
350         u32 *cid_tmp;
351
352         if (!mmc_host_is_spi(host)) {
353                 if (!host->card)
354                         return -EINVAL;
355                 return mmc_send_cxd_native(host, host->card->rca << 16,
356                                 cid, MMC_SEND_CID);
357         }
358
359         cid_tmp = kzalloc(16, GFP_KERNEL);
360         if (!cid_tmp)
361                 return -ENOMEM;
362
363         ret = mmc_send_cxd_data(NULL, host, MMC_SEND_CID, cid_tmp, 16);
364         if (ret)
365                 goto err;
366
367         for (i = 0;i < 4;i++)
368                 cid[i] = be32_to_cpu(cid_tmp[i]);
369
370 err:
371         kfree(cid_tmp);
372         return ret;
373 }
374
375 int mmc_get_ext_csd(struct mmc_card *card, u8 **new_ext_csd)
376 {
377         int err;
378         u8 *ext_csd;
379
380         if (!card || !new_ext_csd)
381                 return -EINVAL;
382
383         if (!mmc_can_ext_csd(card))
384                 return -EOPNOTSUPP;
385
386         /*
387          * As the ext_csd is so large and mostly unused, we don't store the
388          * raw block in mmc_card.
389          */
390         ext_csd = kzalloc(512, GFP_KERNEL);
391         if (!ext_csd)
392                 return -ENOMEM;
393
394         err = mmc_send_cxd_data(card, card->host, MMC_SEND_EXT_CSD, ext_csd,
395                                 512);
396         if (err)
397                 kfree(ext_csd);
398         else
399                 *new_ext_csd = ext_csd;
400
401         return err;
402 }
403 EXPORT_SYMBOL_GPL(mmc_get_ext_csd);
404
405 int mmc_spi_read_ocr(struct mmc_host *host, int highcap, u32 *ocrp)
406 {
407         struct mmc_command cmd = {0};
408         int err;
409
410         cmd.opcode = MMC_SPI_READ_OCR;
411         cmd.arg = highcap ? (1 << 30) : 0;
412         cmd.flags = MMC_RSP_SPI_R3;
413
414         err = mmc_wait_for_cmd(host, &cmd, 0);
415
416         *ocrp = cmd.resp[1];
417         return err;
418 }
419
420 int mmc_spi_set_crc(struct mmc_host *host, int use_crc)
421 {
422         struct mmc_command cmd = {0};
423         int err;
424
425         cmd.opcode = MMC_SPI_CRC_ON_OFF;
426         cmd.flags = MMC_RSP_SPI_R1;
427         cmd.arg = use_crc;
428
429         err = mmc_wait_for_cmd(host, &cmd, 0);
430         if (!err)
431                 host->use_spi_crc = use_crc;
432         return err;
433 }
434
435 static int mmc_switch_status_error(struct mmc_host *host, u32 status)
436 {
437         if (mmc_host_is_spi(host)) {
438                 if (status & R1_SPI_ILLEGAL_COMMAND)
439                         return -EBADMSG;
440         } else {
441                 if (status & 0xFDFFA000)
442                         pr_warn("%s: unexpected status %#x after switch\n",
443                                 mmc_hostname(host), status);
444                 if (status & R1_SWITCH_ERROR)
445                         return -EBADMSG;
446         }
447         return 0;
448 }
449
450 /* Caller must hold re-tuning */
451 int mmc_switch_status(struct mmc_card *card)
452 {
453         u32 status;
454         int err;
455
456         err = mmc_send_status(card, &status);
457         if (err)
458                 return err;
459
460         return mmc_switch_status_error(card->host, status);
461 }
462
463 static int mmc_poll_for_busy(struct mmc_card *card, unsigned int timeout_ms,
464                         bool send_status, bool retry_crc_err)
465 {
466         struct mmc_host *host = card->host;
467         int err;
468         unsigned long timeout;
469         u32 status = 0;
470         bool expired = false;
471         bool busy = false;
472
473         /* We have an unspecified cmd timeout, use the fallback value. */
474         if (!timeout_ms)
475                 timeout_ms = MMC_OPS_TIMEOUT_MS;
476
477         /*
478          * In cases when not allowed to poll by using CMD13 or because we aren't
479          * capable of polling by using ->card_busy(), then rely on waiting the
480          * stated timeout to be sufficient.
481          */
482         if (!send_status && !host->ops->card_busy) {
483                 mmc_delay(timeout_ms);
484                 return 0;
485         }
486
487         timeout = jiffies + msecs_to_jiffies(timeout_ms) + 1;
488         do {
489                 /*
490                  * Due to the possibility of being preempted while polling,
491                  * check the expiration time first.
492                  */
493                 expired = time_after(jiffies, timeout);
494
495                 if (host->ops->card_busy) {
496                         busy = host->ops->card_busy(host);
497                 } else {
498                         err = mmc_send_status(card, &status);
499                         if (retry_crc_err && err == -EILSEQ)
500                                 busy = true;
501                         else if (err)
502                                 return err;
503                         else
504                                 busy = R1_CURRENT_STATE(status) == R1_STATE_PRG;
505                 }
506
507                 /* Timeout if the device still remains busy. */
508                 if (expired && busy) {
509                         pr_err("%s: Card stuck being busy! %s\n",
510                                 mmc_hostname(host), __func__);
511                         return -ETIMEDOUT;
512                 }
513         } while (busy);
514
515         if (host->ops->card_busy && send_status)
516                 return mmc_switch_status(card);
517
518         return mmc_switch_status_error(host, status);
519 }
520
521 /**
522  *      __mmc_switch - modify EXT_CSD register
523  *      @card: the MMC card associated with the data transfer
524  *      @set: cmd set values
525  *      @index: EXT_CSD register index
526  *      @value: value to program into EXT_CSD register
527  *      @timeout_ms: timeout (ms) for operation performed by register write,
528  *                   timeout of zero implies maximum possible timeout
529  *      @use_busy_signal: use the busy signal as response type
530  *      @send_status: send status cmd to poll for busy
531  *      @retry_crc_err: retry when CRC errors when polling with CMD13 for busy
532  *
533  *      Modifies the EXT_CSD register for selected card.
534  */
535 int __mmc_switch(struct mmc_card *card, u8 set, u8 index, u8 value,
536                 unsigned int timeout_ms, bool use_busy_signal, bool send_status,
537                 bool retry_crc_err)
538 {
539         struct mmc_host *host = card->host;
540         int err;
541         struct mmc_command cmd = {0};
542         bool use_r1b_resp = use_busy_signal;
543
544         mmc_retune_hold(host);
545
546         /*
547          * If the cmd timeout and the max_busy_timeout of the host are both
548          * specified, let's validate them. A failure means we need to prevent
549          * the host from doing hw busy detection, which is done by converting
550          * to a R1 response instead of a R1B.
551          */
552         if (timeout_ms && host->max_busy_timeout &&
553                 (timeout_ms > host->max_busy_timeout))
554                 use_r1b_resp = false;
555
556         cmd.opcode = MMC_SWITCH;
557         cmd.arg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
558                   (index << 16) |
559                   (value << 8) |
560                   set;
561         cmd.flags = MMC_CMD_AC;
562         if (use_r1b_resp) {
563                 cmd.flags |= MMC_RSP_SPI_R1B | MMC_RSP_R1B;
564                 /*
565                  * A busy_timeout of zero means the host can decide to use
566                  * whatever value it finds suitable.
567                  */
568                 cmd.busy_timeout = timeout_ms;
569         } else {
570                 cmd.flags |= MMC_RSP_SPI_R1 | MMC_RSP_R1;
571         }
572
573         if (index == EXT_CSD_SANITIZE_START)
574                 cmd.sanitize_busy = true;
575
576         err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
577         if (err)
578                 goto out;
579
580         /* No need to check card status in case of unblocking command */
581         if (!use_busy_signal)
582                 goto out;
583
584         /*If SPI or used HW busy detection above, then we don't need to poll. */
585         if (((host->caps & MMC_CAP_WAIT_WHILE_BUSY) && use_r1b_resp) ||
586                 mmc_host_is_spi(host)) {
587                 if (send_status)
588                         err = mmc_switch_status(card);
589                 goto out;
590         }
591
592         /* Let's try to poll to find out when the command is completed. */
593         err = mmc_poll_for_busy(card, timeout_ms, send_status, retry_crc_err);
594 out:
595         mmc_retune_release(host);
596
597         return err;
598 }
599
600 int mmc_switch(struct mmc_card *card, u8 set, u8 index, u8 value,
601                 unsigned int timeout_ms)
602 {
603         return __mmc_switch(card, set, index, value, timeout_ms, true, true,
604                                 false);
605 }
606 EXPORT_SYMBOL_GPL(mmc_switch);
607
608 int mmc_send_tuning(struct mmc_host *host, u32 opcode, int *cmd_error)
609 {
610         struct mmc_request mrq = {NULL};
611         struct mmc_command cmd = {0};
612         struct mmc_data data = {0};
613         struct scatterlist sg;
614         struct mmc_ios *ios = &host->ios;
615         const u8 *tuning_block_pattern;
616         int size, err = 0;
617         u8 *data_buf;
618
619         if (ios->bus_width == MMC_BUS_WIDTH_8) {
620                 tuning_block_pattern = tuning_blk_pattern_8bit;
621                 size = sizeof(tuning_blk_pattern_8bit);
622         } else if (ios->bus_width == MMC_BUS_WIDTH_4) {
623                 tuning_block_pattern = tuning_blk_pattern_4bit;
624                 size = sizeof(tuning_blk_pattern_4bit);
625         } else
626                 return -EINVAL;
627
628         data_buf = kzalloc(size, GFP_KERNEL);
629         if (!data_buf)
630                 return -ENOMEM;
631
632         mrq.cmd = &cmd;
633         mrq.data = &data;
634
635         cmd.opcode = opcode;
636         cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
637
638         data.blksz = size;
639         data.blocks = 1;
640         data.flags = MMC_DATA_READ;
641
642         /*
643          * According to the tuning specs, Tuning process
644          * is normally shorter 40 executions of CMD19,
645          * and timeout value should be shorter than 150 ms
646          */
647         data.timeout_ns = 150 * NSEC_PER_MSEC;
648
649         data.sg = &sg;
650         data.sg_len = 1;
651         sg_init_one(&sg, data_buf, size);
652
653         mmc_wait_for_req(host, &mrq);
654
655         if (cmd_error)
656                 *cmd_error = cmd.error;
657
658         if (cmd.error) {
659                 err = cmd.error;
660                 goto out;
661         }
662
663         if (data.error) {
664                 err = data.error;
665                 goto out;
666         }
667
668         if (memcmp(data_buf, tuning_block_pattern, size))
669                 err = -EIO;
670
671 out:
672         kfree(data_buf);
673         return err;
674 }
675 EXPORT_SYMBOL_GPL(mmc_send_tuning);
676
677 static int
678 mmc_send_bus_test(struct mmc_card *card, struct mmc_host *host, u8 opcode,
679                   u8 len)
680 {
681         struct mmc_request mrq = {NULL};
682         struct mmc_command cmd = {0};
683         struct mmc_data data = {0};
684         struct scatterlist sg;
685         u8 *data_buf;
686         u8 *test_buf;
687         int i, err;
688         static u8 testdata_8bit[8] = { 0x55, 0xaa, 0, 0, 0, 0, 0, 0 };
689         static u8 testdata_4bit[4] = { 0x5a, 0, 0, 0 };
690
691         /* dma onto stack is unsafe/nonportable, but callers to this
692          * routine normally provide temporary on-stack buffers ...
693          */
694         data_buf = kmalloc(len, GFP_KERNEL);
695         if (!data_buf)
696                 return -ENOMEM;
697
698         if (len == 8)
699                 test_buf = testdata_8bit;
700         else if (len == 4)
701                 test_buf = testdata_4bit;
702         else {
703                 pr_err("%s: Invalid bus_width %d\n",
704                        mmc_hostname(host), len);
705                 kfree(data_buf);
706                 return -EINVAL;
707         }
708
709         if (opcode == MMC_BUS_TEST_W)
710                 memcpy(data_buf, test_buf, len);
711
712         mrq.cmd = &cmd;
713         mrq.data = &data;
714         cmd.opcode = opcode;
715         cmd.arg = 0;
716
717         /* NOTE HACK:  the MMC_RSP_SPI_R1 is always correct here, but we
718          * rely on callers to never use this with "native" calls for reading
719          * CSD or CID.  Native versions of those commands use the R2 type,
720          * not R1 plus a data block.
721          */
722         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
723
724         data.blksz = len;
725         data.blocks = 1;
726         if (opcode == MMC_BUS_TEST_R)
727                 data.flags = MMC_DATA_READ;
728         else
729                 data.flags = MMC_DATA_WRITE;
730
731         data.sg = &sg;
732         data.sg_len = 1;
733         mmc_set_data_timeout(&data, card);
734         sg_init_one(&sg, data_buf, len);
735         mmc_wait_for_req(host, &mrq);
736         err = 0;
737         if (opcode == MMC_BUS_TEST_R) {
738                 for (i = 0; i < len / 4; i++)
739                         if ((test_buf[i] ^ data_buf[i]) != 0xff) {
740                                 err = -EIO;
741                                 break;
742                         }
743         }
744         kfree(data_buf);
745
746         if (cmd.error)
747                 return cmd.error;
748         if (data.error)
749                 return data.error;
750
751         return err;
752 }
753
754 int mmc_bus_test(struct mmc_card *card, u8 bus_width)
755 {
756         int width;
757
758         if (bus_width == MMC_BUS_WIDTH_8)
759                 width = 8;
760         else if (bus_width == MMC_BUS_WIDTH_4)
761                 width = 4;
762         else if (bus_width == MMC_BUS_WIDTH_1)
763                 return 0; /* no need for test */
764         else
765                 return -EINVAL;
766
767         /*
768          * Ignore errors from BUS_TEST_W.  BUS_TEST_R will fail if there
769          * is a problem.  This improves chances that the test will work.
770          */
771         mmc_send_bus_test(card, card->host, MMC_BUS_TEST_W, width);
772         return mmc_send_bus_test(card, card->host, MMC_BUS_TEST_R, width);
773 }
774
775 int mmc_send_hpi_cmd(struct mmc_card *card, u32 *status)
776 {
777         struct mmc_command cmd = {0};
778         unsigned int opcode;
779         int err;
780
781         if (!card->ext_csd.hpi) {
782                 pr_warn("%s: Card didn't support HPI command\n",
783                         mmc_hostname(card->host));
784                 return -EINVAL;
785         }
786
787         opcode = card->ext_csd.hpi_cmd;
788         if (opcode == MMC_STOP_TRANSMISSION)
789                 cmd.flags = MMC_RSP_R1B | MMC_CMD_AC;
790         else if (opcode == MMC_SEND_STATUS)
791                 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
792
793         cmd.opcode = opcode;
794         cmd.arg = card->rca << 16 | 1;
795
796         err = mmc_wait_for_cmd(card->host, &cmd, 0);
797         if (err) {
798                 pr_warn("%s: error %d interrupting operation. "
799                         "HPI command response %#x\n", mmc_hostname(card->host),
800                         err, cmd.resp[0]);
801                 return err;
802         }
803         if (status)
804                 *status = cmd.resp[0];
805
806         return 0;
807 }
808
809 int mmc_can_ext_csd(struct mmc_card *card)
810 {
811         return (card && card->csd.mmca_vsn > CSD_SPEC_VER_3);
812 }