mmc: block: replace __blk_end_request() with blk_end_request()
[pandora-kernel.git] / drivers / mmc / card / block.c
1 /*
2  * Block driver for media (i.e., flash cards)
3  *
4  * Copyright 2002 Hewlett-Packard Company
5  * Copyright 2005-2008 Pierre Ossman
6  *
7  * Use consistent with the GNU GPL is permitted,
8  * provided that this copyright notice is
9  * preserved in its entirety in all copies and derived works.
10  *
11  * HEWLETT-PACKARD COMPANY MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
12  * AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
13  * FITNESS FOR ANY PARTICULAR PURPOSE.
14  *
15  * Many thanks to Alessandro Rubini and Jonathan Corbet!
16  *
17  * Author:  Andrew Christian
18  *          28 May 2002
19  */
20 #include <linux/moduleparam.h>
21 #include <linux/module.h>
22 #include <linux/init.h>
23
24 #include <linux/kernel.h>
25 #include <linux/fs.h>
26 #include <linux/slab.h>
27 #include <linux/errno.h>
28 #include <linux/hdreg.h>
29 #include <linux/kdev_t.h>
30 #include <linux/blkdev.h>
31 #include <linux/mutex.h>
32 #include <linux/scatterlist.h>
33 #include <linux/string_helpers.h>
34 #include <linux/delay.h>
35 #include <linux/capability.h>
36 #include <linux/compat.h>
37
38 #include <linux/mmc/ioctl.h>
39 #include <linux/mmc/card.h>
40 #include <linux/mmc/host.h>
41 #include <linux/mmc/mmc.h>
42 #include <linux/mmc/sd.h>
43
44 #include <asm/system.h>
45 #include <asm/uaccess.h>
46
47 #include "queue.h"
48
49 MODULE_ALIAS("mmc:block");
50 #ifdef MODULE_PARAM_PREFIX
51 #undef MODULE_PARAM_PREFIX
52 #endif
53 #define MODULE_PARAM_PREFIX "mmcblk."
54
55 #define INAND_CMD38_ARG_EXT_CSD  113
56 #define INAND_CMD38_ARG_ERASE    0x00
57 #define INAND_CMD38_ARG_TRIM     0x01
58 #define INAND_CMD38_ARG_SECERASE 0x80
59 #define INAND_CMD38_ARG_SECTRIM1 0x81
60 #define INAND_CMD38_ARG_SECTRIM2 0x88
61
62 static DEFINE_MUTEX(block_mutex);
63
64 /*
65  * The defaults come from config options but can be overriden by module
66  * or bootarg options.
67  */
68 static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
69
70 /*
71  * We've only got one major, so number of mmcblk devices is
72  * limited to 256 / number of minors per device.
73  */
74 static int max_devices;
75
76 /* 256 minors, so at most 256 separate devices */
77 static DECLARE_BITMAP(dev_use, 256);
78 static DECLARE_BITMAP(name_use, 256);
79
80 /*
81  * There is one mmc_blk_data per slot.
82  */
83 struct mmc_blk_data {
84         spinlock_t      lock;
85         struct gendisk  *disk;
86         struct mmc_queue queue;
87         struct list_head part;
88
89         unsigned int    flags;
90 #define MMC_BLK_CMD23   (1 << 0)        /* Can do SET_BLOCK_COUNT for multiblock */
91 #define MMC_BLK_REL_WR  (1 << 1)        /* MMC Reliable write support */
92
93         unsigned int    usage;
94         unsigned int    read_only;
95         unsigned int    part_type;
96         unsigned int    name_idx;
97         unsigned int    reset_done;
98 #define MMC_BLK_READ            BIT(0)
99 #define MMC_BLK_WRITE           BIT(1)
100 #define MMC_BLK_DISCARD         BIT(2)
101 #define MMC_BLK_SECDISCARD      BIT(3)
102
103         /*
104          * Only set in main mmc_blk_data associated
105          * with mmc_card with mmc_set_drvdata, and keeps
106          * track of the current selected device partition.
107          */
108         unsigned int    part_curr;
109         struct device_attribute force_ro;
110 };
111
112 static DEFINE_MUTEX(open_lock);
113
114 enum mmc_blk_status {
115         MMC_BLK_SUCCESS = 0,
116         MMC_BLK_PARTIAL,
117         MMC_BLK_CMD_ERR,
118         MMC_BLK_RETRY,
119         MMC_BLK_ABORT,
120         MMC_BLK_DATA_ERR,
121         MMC_BLK_ECC_ERR,
122         MMC_BLK_NOMEDIUM,
123 };
124
125 module_param(perdev_minors, int, 0444);
126 MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
127
128 static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
129 {
130         struct mmc_blk_data *md;
131
132         mutex_lock(&open_lock);
133         md = disk->private_data;
134         if (md && md->usage == 0)
135                 md = NULL;
136         if (md)
137                 md->usage++;
138         mutex_unlock(&open_lock);
139
140         return md;
141 }
142
143 static inline int mmc_get_devidx(struct gendisk *disk)
144 {
145         int devmaj = MAJOR(disk_devt(disk));
146         int devidx = MINOR(disk_devt(disk)) / perdev_minors;
147
148         if (!devmaj)
149                 devidx = disk->first_minor / perdev_minors;
150         return devidx;
151 }
152
153 static void mmc_blk_put(struct mmc_blk_data *md)
154 {
155         mutex_lock(&open_lock);
156         md->usage--;
157         if (md->usage == 0) {
158                 int devidx = mmc_get_devidx(md->disk);
159                 blk_cleanup_queue(md->queue.queue);
160
161                 __clear_bit(devidx, dev_use);
162
163                 put_disk(md->disk);
164                 kfree(md);
165         }
166         mutex_unlock(&open_lock);
167 }
168
169 static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
170                              char *buf)
171 {
172         int ret;
173         struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
174
175         ret = snprintf(buf, PAGE_SIZE, "%d",
176                        get_disk_ro(dev_to_disk(dev)) ^
177                        md->read_only);
178         mmc_blk_put(md);
179         return ret;
180 }
181
182 static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
183                               const char *buf, size_t count)
184 {
185         int ret;
186         char *end;
187         struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
188         unsigned long set = simple_strtoul(buf, &end, 0);
189         if (end == buf) {
190                 ret = -EINVAL;
191                 goto out;
192         }
193
194         set_disk_ro(dev_to_disk(dev), set || md->read_only);
195         ret = count;
196 out:
197         mmc_blk_put(md);
198         return ret;
199 }
200
201 static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
202 {
203         struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
204         int ret = -ENXIO;
205
206         mutex_lock(&block_mutex);
207         if (md) {
208                 if (md->usage == 2)
209                         check_disk_change(bdev);
210                 ret = 0;
211
212                 if ((mode & FMODE_WRITE) && md->read_only) {
213                         mmc_blk_put(md);
214                         ret = -EROFS;
215                 }
216         }
217         mutex_unlock(&block_mutex);
218
219         return ret;
220 }
221
222 static int mmc_blk_release(struct gendisk *disk, fmode_t mode)
223 {
224         struct mmc_blk_data *md = disk->private_data;
225
226         mutex_lock(&block_mutex);
227         mmc_blk_put(md);
228         mutex_unlock(&block_mutex);
229         return 0;
230 }
231
232 static int
233 mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
234 {
235         geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
236         geo->heads = 4;
237         geo->sectors = 16;
238         return 0;
239 }
240
241 struct mmc_blk_ioc_data {
242         struct mmc_ioc_cmd ic;
243         unsigned char *buf;
244         u64 buf_bytes;
245 };
246
247 static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
248         struct mmc_ioc_cmd __user *user)
249 {
250         struct mmc_blk_ioc_data *idata;
251         int err;
252
253         idata = kzalloc(sizeof(*idata), GFP_KERNEL);
254         if (!idata) {
255                 err = -ENOMEM;
256                 goto out;
257         }
258
259         if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
260                 err = -EFAULT;
261                 goto idata_err;
262         }
263
264         idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
265         if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
266                 err = -EOVERFLOW;
267                 goto idata_err;
268         }
269
270         if (!idata->buf_bytes)
271                 return idata;
272
273         idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
274         if (!idata->buf) {
275                 err = -ENOMEM;
276                 goto idata_err;
277         }
278
279         if (copy_from_user(idata->buf, (void __user *)(unsigned long)
280                                         idata->ic.data_ptr, idata->buf_bytes)) {
281                 err = -EFAULT;
282                 goto copy_err;
283         }
284
285         return idata;
286
287 copy_err:
288         kfree(idata->buf);
289 idata_err:
290         kfree(idata);
291 out:
292         return ERR_PTR(err);
293 }
294
295 static int mmc_blk_ioctl_cmd(struct block_device *bdev,
296         struct mmc_ioc_cmd __user *ic_ptr)
297 {
298         struct mmc_blk_ioc_data *idata;
299         struct mmc_blk_data *md;
300         struct mmc_card *card;
301         struct mmc_command cmd = {0};
302         struct mmc_data data = {0};
303         struct mmc_request mrq = {NULL};
304         struct scatterlist sg;
305         int err;
306
307         /*
308          * The caller must have CAP_SYS_RAWIO, and must be calling this on the
309          * whole block device, not on a partition.  This prevents overspray
310          * between sibling partitions.
311          */
312         if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
313                 return -EPERM;
314
315         idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
316         if (IS_ERR(idata))
317                 return PTR_ERR(idata);
318
319         md = mmc_blk_get(bdev->bd_disk);
320         if (!md) {
321                 err = -EINVAL;
322                 goto cmd_err;
323         }
324
325         card = md->queue.card;
326         if (IS_ERR(card)) {
327                 err = PTR_ERR(card);
328                 goto cmd_done;
329         }
330
331         cmd.opcode = idata->ic.opcode;
332         cmd.arg = idata->ic.arg;
333         cmd.flags = idata->ic.flags;
334
335         if (idata->buf_bytes) {
336                 data.sg = &sg;
337                 data.sg_len = 1;
338                 data.blksz = idata->ic.blksz;
339                 data.blocks = idata->ic.blocks;
340
341                 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
342
343                 if (idata->ic.write_flag)
344                         data.flags = MMC_DATA_WRITE;
345                 else
346                         data.flags = MMC_DATA_READ;
347
348                 /* data.flags must already be set before doing this. */
349                 mmc_set_data_timeout(&data, card);
350
351                 /* Allow overriding the timeout_ns for empirical tuning. */
352                 if (idata->ic.data_timeout_ns)
353                         data.timeout_ns = idata->ic.data_timeout_ns;
354
355                 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
356                         /*
357                          * Pretend this is a data transfer and rely on the
358                          * host driver to compute timeout.  When all host
359                          * drivers support cmd.cmd_timeout for R1B, this
360                          * can be changed to:
361                          *
362                          *     mrq.data = NULL;
363                          *     cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
364                          */
365                         data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
366                 }
367
368                 mrq.data = &data;
369         }
370
371         mrq.cmd = &cmd;
372
373         mmc_claim_host(card->host);
374
375         if (idata->ic.is_acmd) {
376                 err = mmc_app_cmd(card->host, card);
377                 if (err)
378                         goto cmd_rel_host;
379         }
380
381         mmc_wait_for_req(card->host, &mrq);
382
383         if (cmd.error) {
384                 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
385                                                 __func__, cmd.error);
386                 err = cmd.error;
387                 goto cmd_rel_host;
388         }
389         if (data.error) {
390                 dev_err(mmc_dev(card->host), "%s: data error %d\n",
391                                                 __func__, data.error);
392                 err = data.error;
393                 goto cmd_rel_host;
394         }
395
396         /*
397          * According to the SD specs, some commands require a delay after
398          * issuing the command.
399          */
400         if (idata->ic.postsleep_min_us)
401                 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
402
403         if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
404                 err = -EFAULT;
405                 goto cmd_rel_host;
406         }
407
408         if (!idata->ic.write_flag) {
409                 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
410                                                 idata->buf, idata->buf_bytes)) {
411                         err = -EFAULT;
412                         goto cmd_rel_host;
413                 }
414         }
415
416 cmd_rel_host:
417         mmc_release_host(card->host);
418
419 cmd_done:
420         mmc_blk_put(md);
421 cmd_err:
422         kfree(idata->buf);
423         kfree(idata);
424         return err;
425 }
426
427 static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
428         unsigned int cmd, unsigned long arg)
429 {
430         int ret = -EINVAL;
431         if (cmd == MMC_IOC_CMD)
432                 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
433         return ret;
434 }
435
436 #ifdef CONFIG_COMPAT
437 static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
438         unsigned int cmd, unsigned long arg)
439 {
440         return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
441 }
442 #endif
443
444 static const struct block_device_operations mmc_bdops = {
445         .open                   = mmc_blk_open,
446         .release                = mmc_blk_release,
447         .getgeo                 = mmc_blk_getgeo,
448         .owner                  = THIS_MODULE,
449         .ioctl                  = mmc_blk_ioctl,
450 #ifdef CONFIG_COMPAT
451         .compat_ioctl           = mmc_blk_compat_ioctl,
452 #endif
453 };
454
455 static inline int mmc_blk_part_switch(struct mmc_card *card,
456                                       struct mmc_blk_data *md)
457 {
458         int ret;
459         struct mmc_blk_data *main_md = mmc_get_drvdata(card);
460
461         if (main_md->part_curr == md->part_type)
462                 return 0;
463
464         if (mmc_card_mmc(card)) {
465                 u8 part_config = card->ext_csd.part_config;
466
467                 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
468                 part_config |= md->part_type;
469
470                 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
471                                  EXT_CSD_PART_CONFIG, part_config,
472                                  card->ext_csd.part_time);
473                 if (ret)
474                         return ret;
475
476                 card->ext_csd.part_config = part_config;
477         }
478
479         main_md->part_curr = md->part_type;
480         return 0;
481 }
482
483 static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
484 {
485         int err;
486         u32 result;
487         __be32 *blocks;
488
489         struct mmc_request mrq = {NULL};
490         struct mmc_command cmd = {0};
491         struct mmc_data data = {0};
492
493         struct scatterlist sg;
494
495         cmd.opcode = MMC_APP_CMD;
496         cmd.arg = card->rca << 16;
497         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
498
499         err = mmc_wait_for_cmd(card->host, &cmd, 0);
500         if (err)
501                 return (u32)-1;
502         if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
503                 return (u32)-1;
504
505         memset(&cmd, 0, sizeof(struct mmc_command));
506
507         cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
508         cmd.arg = 0;
509         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
510
511         data.blksz = 4;
512         data.blocks = 1;
513         data.flags = MMC_DATA_READ;
514         data.sg = &sg;
515         data.sg_len = 1;
516         mmc_set_data_timeout(&data, card);
517
518         mrq.cmd = &cmd;
519         mrq.data = &data;
520
521         blocks = kmalloc(4, GFP_KERNEL);
522         if (!blocks)
523                 return (u32)-1;
524
525         sg_init_one(&sg, blocks, 4);
526
527         mmc_wait_for_req(card->host, &mrq);
528
529         result = ntohl(*blocks);
530         kfree(blocks);
531
532         if (cmd.error || data.error)
533                 result = (u32)-1;
534
535         return result;
536 }
537
538 static int send_stop(struct mmc_card *card, u32 *status)
539 {
540         struct mmc_command cmd = {0};
541         int err;
542
543         cmd.opcode = MMC_STOP_TRANSMISSION;
544         cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
545         err = mmc_wait_for_cmd(card->host, &cmd, 5);
546         if (err == 0)
547                 *status = cmd.resp[0];
548         return err;
549 }
550
551 static int get_card_status(struct mmc_card *card, u32 *status, int retries)
552 {
553         struct mmc_command cmd = {0};
554         int err;
555
556         cmd.opcode = MMC_SEND_STATUS;
557         if (!mmc_host_is_spi(card->host))
558                 cmd.arg = card->rca << 16;
559         cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
560         err = mmc_wait_for_cmd(card->host, &cmd, retries);
561         if (err == 0)
562                 *status = cmd.resp[0];
563         return err;
564 }
565
566 #define ERR_NOMEDIUM    3
567 #define ERR_RETRY       2
568 #define ERR_ABORT       1
569 #define ERR_CONTINUE    0
570
571 static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
572         bool status_valid, u32 status)
573 {
574         switch (error) {
575         case -EILSEQ:
576                 /* response crc error, retry the r/w cmd */
577                 pr_err("%s: %s sending %s command, card status %#x\n",
578                         req->rq_disk->disk_name, "response CRC error",
579                         name, status);
580                 return ERR_RETRY;
581
582         case -ETIMEDOUT:
583                 pr_err("%s: %s sending %s command, card status %#x\n",
584                         req->rq_disk->disk_name, "timed out", name, status);
585
586                 /* If the status cmd initially failed, retry the r/w cmd */
587                 if (!status_valid)
588                         return ERR_RETRY;
589
590                 /*
591                  * If it was a r/w cmd crc error, or illegal command
592                  * (eg, issued in wrong state) then retry - we should
593                  * have corrected the state problem above.
594                  */
595                 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
596                         return ERR_RETRY;
597
598                 /* Otherwise abort the command */
599                 return ERR_ABORT;
600
601         default:
602                 /* We don't understand the error code the driver gave us */
603                 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
604                        req->rq_disk->disk_name, error, status);
605                 return ERR_ABORT;
606         }
607 }
608
609 /*
610  * Initial r/w and stop cmd error recovery.
611  * We don't know whether the card received the r/w cmd or not, so try to
612  * restore things back to a sane state.  Essentially, we do this as follows:
613  * - Obtain card status.  If the first attempt to obtain card status fails,
614  *   the status word will reflect the failed status cmd, not the failed
615  *   r/w cmd.  If we fail to obtain card status, it suggests we can no
616  *   longer communicate with the card.
617  * - Check the card state.  If the card received the cmd but there was a
618  *   transient problem with the response, it might still be in a data transfer
619  *   mode.  Try to send it a stop command.  If this fails, we can't recover.
620  * - If the r/w cmd failed due to a response CRC error, it was probably
621  *   transient, so retry the cmd.
622  * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
623  * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
624  *   illegal cmd, retry.
625  * Otherwise we don't understand what happened, so abort.
626  */
627 static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
628         struct mmc_blk_request *brq, int *ecc_err, int *gen_err)
629 {
630         bool prev_cmd_status_valid = true;
631         u32 status, stop_status = 0;
632         int err, retry;
633
634         if (mmc_card_removed(card))
635                 return ERR_NOMEDIUM;
636
637         /*
638          * Try to get card status which indicates both the card state
639          * and why there was no response.  If the first attempt fails,
640          * we can't be sure the returned status is for the r/w command.
641          */
642         for (retry = 2; retry >= 0; retry--) {
643                 err = get_card_status(card, &status, 0);
644                 if (!err)
645                         break;
646
647                 prev_cmd_status_valid = false;
648                 pr_err("%s: error %d sending status command, %sing\n",
649                        req->rq_disk->disk_name, err, retry ? "retry" : "abort");
650         }
651
652         /* We couldn't get a response from the card.  Give up. */
653         if (err) {
654                 /* Check if the card is removed */
655                 if (mmc_detect_card_removed(card->host))
656                         return ERR_NOMEDIUM;
657                 return ERR_ABORT;
658         }
659
660         /* Flag ECC errors */
661         if ((status & R1_CARD_ECC_FAILED) ||
662             (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
663             (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
664                 *ecc_err = 1;
665
666         /* Flag General errors */
667         if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
668                 if ((status & R1_ERROR) ||
669                         (brq->stop.resp[0] & R1_ERROR)) {
670                         pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n",
671                                req->rq_disk->disk_name, __func__,
672                                brq->stop.resp[0], status);
673                         *gen_err = 1;
674                 }
675
676         /*
677          * Check the current card state.  If it is in some data transfer
678          * mode, tell it to stop (and hopefully transition back to TRAN.)
679          */
680         if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
681             R1_CURRENT_STATE(status) == R1_STATE_RCV) {
682                 err = send_stop(card, &stop_status);
683                 if (err)
684                         pr_err("%s: error %d sending stop command\n",
685                                req->rq_disk->disk_name, err);
686
687                 /*
688                  * If the stop cmd also timed out, the card is probably
689                  * not present, so abort.  Other errors are bad news too.
690                  */
691                 if (err)
692                         return ERR_ABORT;
693                 if (stop_status & R1_CARD_ECC_FAILED)
694                         *ecc_err = 1;
695                 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
696                         if (stop_status & R1_ERROR) {
697                                 pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
698                                        req->rq_disk->disk_name, __func__,
699                                        stop_status);
700                                 *gen_err = 1;
701                         }
702         }
703
704         /* Check for set block count errors */
705         if (brq->sbc.error)
706                 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
707                                 prev_cmd_status_valid, status);
708
709         /* Check for r/w command errors */
710         if (brq->cmd.error)
711                 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
712                                 prev_cmd_status_valid, status);
713
714         /* Data errors */
715         if (!brq->stop.error)
716                 return ERR_CONTINUE;
717
718         /* Now for stop errors.  These aren't fatal to the transfer. */
719         pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
720                req->rq_disk->disk_name, brq->stop.error,
721                brq->cmd.resp[0], status);
722
723         /*
724          * Subsitute in our own stop status as this will give the error
725          * state which happened during the execution of the r/w command.
726          */
727         if (stop_status) {
728                 brq->stop.resp[0] = stop_status;
729                 brq->stop.error = 0;
730         }
731         return ERR_CONTINUE;
732 }
733
734 static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
735                          int type)
736 {
737         int err;
738
739         if (md->reset_done & type)
740                 return -EEXIST;
741
742         md->reset_done |= type;
743         err = mmc_hw_reset(host);
744         /* Ensure we switch back to the correct partition */
745         if (err != -EOPNOTSUPP) {
746                 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
747                 int part_err;
748
749                 main_md->part_curr = main_md->part_type;
750                 part_err = mmc_blk_part_switch(host->card, md);
751                 if (part_err) {
752                         /*
753                          * We have failed to get back into the correct
754                          * partition, so we need to abort the whole request.
755                          */
756                         return -ENODEV;
757                 }
758         }
759         return err;
760 }
761
762 static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
763 {
764         md->reset_done &= ~type;
765 }
766
767 static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
768 {
769         struct mmc_blk_data *md = mq->data;
770         struct mmc_card *card = md->queue.card;
771         unsigned int from, nr, arg;
772         int err = 0, type = MMC_BLK_DISCARD;
773
774         if (!mmc_can_erase(card)) {
775                 err = -EOPNOTSUPP;
776                 goto out;
777         }
778
779         from = blk_rq_pos(req);
780         nr = blk_rq_sectors(req);
781
782         if (mmc_can_discard(card))
783                 arg = MMC_DISCARD_ARG;
784         else if (mmc_can_trim(card))
785                 arg = MMC_TRIM_ARG;
786         else
787                 arg = MMC_ERASE_ARG;
788 retry:
789         if (card->quirks & MMC_QUIRK_INAND_CMD38) {
790                 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
791                                  INAND_CMD38_ARG_EXT_CSD,
792                                  arg == MMC_TRIM_ARG ?
793                                  INAND_CMD38_ARG_TRIM :
794                                  INAND_CMD38_ARG_ERASE,
795                                  0);
796                 if (err)
797                         goto out;
798         }
799         err = mmc_erase(card, from, nr, arg);
800 out:
801         if (err == -EIO && !mmc_blk_reset(md, card->host, type))
802                 goto retry;
803         if (!err)
804                 mmc_blk_reset_success(md, type);
805         blk_end_request(req, err, blk_rq_bytes(req));
806
807         return err ? 0 : 1;
808 }
809
810 static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
811                                        struct request *req)
812 {
813         struct mmc_blk_data *md = mq->data;
814         struct mmc_card *card = md->queue.card;
815         unsigned int from, nr, arg, trim_arg, erase_arg;
816         int err = 0, type = MMC_BLK_SECDISCARD;
817
818         if (!(mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))) {
819                 err = -EOPNOTSUPP;
820                 goto out;
821         }
822
823         from = blk_rq_pos(req);
824         nr = blk_rq_sectors(req);
825
826         /* The sanitize operation is supported at v4.5 only */
827         if (mmc_can_sanitize(card)) {
828                 erase_arg = MMC_ERASE_ARG;
829                 trim_arg = MMC_TRIM_ARG;
830         } else {
831                 erase_arg = MMC_SECURE_ERASE_ARG;
832                 trim_arg = MMC_SECURE_TRIM1_ARG;
833         }
834
835         if (mmc_erase_group_aligned(card, from, nr))
836                 arg = erase_arg;
837         else if (mmc_can_trim(card))
838                 arg = trim_arg;
839         else {
840                 err = -EINVAL;
841                 goto out;
842         }
843 retry:
844         if (card->quirks & MMC_QUIRK_INAND_CMD38) {
845                 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
846                                  INAND_CMD38_ARG_EXT_CSD,
847                                  arg == MMC_SECURE_TRIM1_ARG ?
848                                  INAND_CMD38_ARG_SECTRIM1 :
849                                  INAND_CMD38_ARG_SECERASE,
850                                  0);
851                 if (err)
852                         goto out_retry;
853         }
854
855         err = mmc_erase(card, from, nr, arg);
856         if (err == -EIO)
857                 goto out_retry;
858         if (err)
859                 goto out;
860
861         if (arg == MMC_SECURE_TRIM1_ARG) {
862                 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
863                         err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
864                                          INAND_CMD38_ARG_EXT_CSD,
865                                          INAND_CMD38_ARG_SECTRIM2,
866                                          0);
867                         if (err)
868                                 goto out_retry;
869                 }
870
871                 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
872                 if (err == -EIO)
873                         goto out_retry;
874                 if (err)
875                         goto out;
876         }
877
878         if (mmc_can_sanitize(card))
879                 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
880                                  EXT_CSD_SANITIZE_START, 1, 0);
881 out_retry:
882         if (err && !mmc_blk_reset(md, card->host, type))
883                 goto retry;
884         if (!err)
885                 mmc_blk_reset_success(md, type);
886 out:
887         blk_end_request(req, err, blk_rq_bytes(req));
888
889         return err ? 0 : 1;
890 }
891
892 static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
893 {
894         struct mmc_blk_data *md = mq->data;
895         struct mmc_card *card = md->queue.card;
896         int ret = 0;
897
898         ret = mmc_flush_cache(card);
899         if (ret)
900                 ret = -EIO;
901
902         blk_end_request_all(req, ret);
903
904         return ret ? 0 : 1;
905 }
906
907 /*
908  * Reformat current write as a reliable write, supporting
909  * both legacy and the enhanced reliable write MMC cards.
910  * In each transfer we'll handle only as much as a single
911  * reliable write can handle, thus finish the request in
912  * partial completions.
913  */
914 static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
915                                     struct mmc_card *card,
916                                     struct request *req)
917 {
918         if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
919                 /* Legacy mode imposes restrictions on transfers. */
920                 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
921                         brq->data.blocks = 1;
922
923                 if (brq->data.blocks > card->ext_csd.rel_sectors)
924                         brq->data.blocks = card->ext_csd.rel_sectors;
925                 else if (brq->data.blocks < card->ext_csd.rel_sectors)
926                         brq->data.blocks = 1;
927         }
928 }
929
930 #define CMD_ERRORS                                                      \
931         (R1_OUT_OF_RANGE |      /* Command argument out of range */     \
932          R1_ADDRESS_ERROR |     /* Misaligned address */                \
933          R1_BLOCK_LEN_ERROR |   /* Transferred block length incorrect */\
934          R1_WP_VIOLATION |      /* Tried to write to protected block */ \
935          R1_CC_ERROR |          /* Card controller error */             \
936          R1_ERROR)              /* General/unknown error */
937
938 static int mmc_blk_err_check(struct mmc_card *card,
939                              struct mmc_async_req *areq)
940 {
941         struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
942                                                     mmc_active);
943         struct mmc_blk_request *brq = &mq_mrq->brq;
944         struct request *req = mq_mrq->req;
945         int ecc_err = 0, gen_err = 0;
946
947         /*
948          * sbc.error indicates a problem with the set block count
949          * command.  No data will have been transferred.
950          *
951          * cmd.error indicates a problem with the r/w command.  No
952          * data will have been transferred.
953          *
954          * stop.error indicates a problem with the stop command.  Data
955          * may have been transferred, or may still be transferring.
956          */
957         if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
958             brq->data.error) {
959                 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) {
960                 case ERR_RETRY:
961                         return MMC_BLK_RETRY;
962                 case ERR_ABORT:
963                         return MMC_BLK_ABORT;
964                 case ERR_NOMEDIUM:
965                         return MMC_BLK_NOMEDIUM;
966                 case ERR_CONTINUE:
967                         break;
968                 }
969         }
970
971         /*
972          * Check for errors relating to the execution of the
973          * initial command - such as address errors.  No data
974          * has been transferred.
975          */
976         if (brq->cmd.resp[0] & CMD_ERRORS) {
977                 pr_err("%s: r/w command failed, status = %#x\n",
978                        req->rq_disk->disk_name, brq->cmd.resp[0]);
979                 return MMC_BLK_ABORT;
980         }
981
982         /*
983          * Everything else is either success, or a data error of some
984          * kind.  If it was a write, we may have transitioned to
985          * program mode, which we have to wait for it to complete.
986          */
987         if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
988                 u32 status;
989
990                 /* Check stop command response */
991                 if (brq->stop.resp[0] & R1_ERROR) {
992                         pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
993                                req->rq_disk->disk_name, __func__,
994                                brq->stop.resp[0]);
995                         gen_err = 1;
996                 }
997
998                 do {
999                         int err = get_card_status(card, &status, 5);
1000                         if (err) {
1001                                 pr_err("%s: error %d requesting status\n",
1002                                        req->rq_disk->disk_name, err);
1003                                 return MMC_BLK_CMD_ERR;
1004                         }
1005
1006                         if (status & R1_ERROR) {
1007                                 pr_err("%s: %s: general error sending status command, card status %#x\n",
1008                                        req->rq_disk->disk_name, __func__,
1009                                        status);
1010                                 gen_err = 1;
1011                         }
1012
1013                         /*
1014                          * Some cards mishandle the status bits,
1015                          * so make sure to check both the busy
1016                          * indication and the card state.
1017                          */
1018                 } while (!(status & R1_READY_FOR_DATA) ||
1019                          (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1020         }
1021
1022         /* if general error occurs, retry the write operation. */
1023         if (gen_err) {
1024                 pr_warning("%s: retrying write for general error\n",
1025                                 req->rq_disk->disk_name);
1026                 return MMC_BLK_RETRY;
1027         }
1028
1029         if (brq->data.error) {
1030                 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1031                        req->rq_disk->disk_name, brq->data.error,
1032                        (unsigned)blk_rq_pos(req),
1033                        (unsigned)blk_rq_sectors(req),
1034                        brq->cmd.resp[0], brq->stop.resp[0]);
1035
1036                 if (rq_data_dir(req) == READ) {
1037                         if (ecc_err)
1038                                 return MMC_BLK_ECC_ERR;
1039                         return MMC_BLK_DATA_ERR;
1040                 } else {
1041                         return MMC_BLK_CMD_ERR;
1042                 }
1043         }
1044
1045         if (!brq->data.bytes_xfered)
1046                 return MMC_BLK_RETRY;
1047
1048         if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1049                 return MMC_BLK_PARTIAL;
1050
1051         return MMC_BLK_SUCCESS;
1052 }
1053
1054 static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1055                                struct mmc_card *card,
1056                                int disable_multi,
1057                                struct mmc_queue *mq)
1058 {
1059         u32 readcmd, writecmd;
1060         struct mmc_blk_request *brq = &mqrq->brq;
1061         struct request *req = mqrq->req;
1062         struct mmc_blk_data *md = mq->data;
1063
1064         /*
1065          * Reliable writes are used to implement Forced Unit Access and
1066          * REQ_META accesses, and are supported only on MMCs.
1067          *
1068          * XXX: this really needs a good explanation of why REQ_META
1069          * is treated special.
1070          */
1071         bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1072                           (req->cmd_flags & REQ_META)) &&
1073                 (rq_data_dir(req) == WRITE) &&
1074                 (md->flags & MMC_BLK_REL_WR);
1075
1076         memset(brq, 0, sizeof(struct mmc_blk_request));
1077         brq->mrq.cmd = &brq->cmd;
1078         brq->mrq.data = &brq->data;
1079
1080         brq->cmd.arg = blk_rq_pos(req);
1081         if (!mmc_card_blockaddr(card))
1082                 brq->cmd.arg <<= 9;
1083         brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1084         brq->data.blksz = 512;
1085         brq->stop.opcode = MMC_STOP_TRANSMISSION;
1086         brq->stop.arg = 0;
1087         brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1088         brq->data.blocks = blk_rq_sectors(req);
1089
1090         /*
1091          * The block layer doesn't support all sector count
1092          * restrictions, so we need to be prepared for too big
1093          * requests.
1094          */
1095         if (brq->data.blocks > card->host->max_blk_count)
1096                 brq->data.blocks = card->host->max_blk_count;
1097
1098         if (brq->data.blocks > 1) {
1099                 /*
1100                  * After a read error, we redo the request one sector
1101                  * at a time in order to accurately determine which
1102                  * sectors can be read successfully.
1103                  */
1104                 if (disable_multi)
1105                         brq->data.blocks = 1;
1106
1107                 /* Some controllers can't do multiblock reads due to hw bugs */
1108                 if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1109                     rq_data_dir(req) == READ)
1110                         brq->data.blocks = 1;
1111         }
1112
1113         if (brq->data.blocks > 1 || do_rel_wr) {
1114                 /* SPI multiblock writes terminate using a special
1115                  * token, not a STOP_TRANSMISSION request.
1116                  */
1117                 if (!mmc_host_is_spi(card->host) ||
1118                     rq_data_dir(req) == READ)
1119                         brq->mrq.stop = &brq->stop;
1120                 readcmd = MMC_READ_MULTIPLE_BLOCK;
1121                 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1122         } else {
1123                 brq->mrq.stop = NULL;
1124                 readcmd = MMC_READ_SINGLE_BLOCK;
1125                 writecmd = MMC_WRITE_BLOCK;
1126         }
1127         if (rq_data_dir(req) == READ) {
1128                 brq->cmd.opcode = readcmd;
1129                 brq->data.flags |= MMC_DATA_READ;
1130         } else {
1131                 brq->cmd.opcode = writecmd;
1132                 brq->data.flags |= MMC_DATA_WRITE;
1133         }
1134
1135         if (do_rel_wr)
1136                 mmc_apply_rel_rw(brq, card, req);
1137
1138         /*
1139          * Pre-defined multi-block transfers are preferable to
1140          * open ended-ones (and necessary for reliable writes).
1141          * However, it is not sufficient to just send CMD23,
1142          * and avoid the final CMD12, as on an error condition
1143          * CMD12 (stop) needs to be sent anyway. This, coupled
1144          * with Auto-CMD23 enhancements provided by some
1145          * hosts, means that the complexity of dealing
1146          * with this is best left to the host. If CMD23 is
1147          * supported by card and host, we'll fill sbc in and let
1148          * the host deal with handling it correctly. This means
1149          * that for hosts that don't expose MMC_CAP_CMD23, no
1150          * change of behavior will be observed.
1151          *
1152          * N.B: Some MMC cards experience perf degradation.
1153          * We'll avoid using CMD23-bounded multiblock writes for
1154          * these, while retaining features like reliable writes.
1155          */
1156
1157         if ((md->flags & MMC_BLK_CMD23) &&
1158             mmc_op_multi(brq->cmd.opcode) &&
1159             (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23))) {
1160                 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1161                 brq->sbc.arg = brq->data.blocks |
1162                         (do_rel_wr ? (1 << 31) : 0);
1163                 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1164                 brq->mrq.sbc = &brq->sbc;
1165         }
1166
1167         mmc_set_data_timeout(&brq->data, card);
1168
1169         brq->data.sg = mqrq->sg;
1170         brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1171
1172         /*
1173          * Adjust the sg list so it is the same size as the
1174          * request.
1175          */
1176         if (brq->data.blocks != blk_rq_sectors(req)) {
1177                 int i, data_size = brq->data.blocks << 9;
1178                 struct scatterlist *sg;
1179
1180                 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1181                         data_size -= sg->length;
1182                         if (data_size <= 0) {
1183                                 sg->length += data_size;
1184                                 i++;
1185                                 break;
1186                         }
1187                 }
1188                 brq->data.sg_len = i;
1189         }
1190
1191         mqrq->mmc_active.mrq = &brq->mrq;
1192         mqrq->mmc_active.err_check = mmc_blk_err_check;
1193
1194         mmc_queue_bounce_pre(mqrq);
1195 }
1196
1197 static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1198                            struct mmc_blk_request *brq, struct request *req,
1199                            int ret)
1200 {
1201         /*
1202          * If this is an SD card and we're writing, we can first
1203          * mark the known good sectors as ok.
1204          *
1205          * If the card is not SD, we can still ok written sectors
1206          * as reported by the controller (which might be less than
1207          * the real number of written sectors, but never more).
1208          */
1209         if (mmc_card_sd(card)) {
1210                 u32 blocks;
1211
1212                 blocks = mmc_sd_num_wr_blocks(card);
1213                 if (blocks != (u32)-1) {
1214                         ret = blk_end_request(req, 0, blocks << 9);
1215                 }
1216         } else {
1217                 ret = blk_end_request(req, 0, brq->data.bytes_xfered);
1218         }
1219         return ret;
1220 }
1221
1222 static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
1223 {
1224         struct mmc_blk_data *md = mq->data;
1225         struct mmc_card *card = md->queue.card;
1226         struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
1227         int ret = 1, disable_multi = 0, retry = 0, type;
1228         enum mmc_blk_status status;
1229         struct mmc_queue_req *mq_rq;
1230         struct request *req;
1231         struct mmc_async_req *areq;
1232
1233         if (!rqc && !mq->mqrq_prev->req)
1234                 return 0;
1235
1236         do {
1237                 if (rqc) {
1238                         mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1239                         areq = &mq->mqrq_cur->mmc_active;
1240                 } else
1241                         areq = NULL;
1242                 areq = mmc_start_req(card->host, areq, (int *) &status);
1243                 if (!areq)
1244                         return 0;
1245
1246                 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1247                 brq = &mq_rq->brq;
1248                 req = mq_rq->req;
1249                 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
1250                 mmc_queue_bounce_post(mq_rq);
1251
1252                 switch (status) {
1253                 case MMC_BLK_SUCCESS:
1254                 case MMC_BLK_PARTIAL:
1255                         /*
1256                          * A block was successfully transferred.
1257                          */
1258                         mmc_blk_reset_success(md, type);
1259                         ret = blk_end_request(req, 0,
1260                                                 brq->data.bytes_xfered);
1261                         /*
1262                          * If the blk_end_request function returns non-zero even
1263                          * though all data has been transferred and no errors
1264                          * were returned by the host controller, it's a bug.
1265                          */
1266                         if (status == MMC_BLK_SUCCESS && ret) {
1267                                 pr_err("%s BUG rq_tot %d d_xfer %d\n",
1268                                        __func__, blk_rq_bytes(req),
1269                                        brq->data.bytes_xfered);
1270                                 rqc = NULL;
1271                                 goto cmd_abort;
1272                         }
1273                         break;
1274                 case MMC_BLK_CMD_ERR:
1275                         ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1276                         if (!mmc_blk_reset(md, card->host, type))
1277                                 break;
1278                         goto cmd_abort;
1279                 case MMC_BLK_RETRY:
1280                         if (retry++ < 5)
1281                                 break;
1282                         /* Fall through */
1283                 case MMC_BLK_ABORT:
1284                         if (!mmc_blk_reset(md, card->host, type))
1285                                 break;
1286                         goto cmd_abort;
1287                 case MMC_BLK_DATA_ERR: {
1288                         int err;
1289
1290                         err = mmc_blk_reset(md, card->host, type);
1291                         if (!err)
1292                                 break;
1293                         if (err == -ENODEV)
1294                                 goto cmd_abort;
1295                         /* Fall through */
1296                 }
1297                 case MMC_BLK_ECC_ERR:
1298                         if (brq->data.blocks > 1) {
1299                                 /* Redo read one sector at a time */
1300                                 pr_warning("%s: retrying using single block read\n",
1301                                            req->rq_disk->disk_name);
1302                                 disable_multi = 1;
1303                                 break;
1304                         }
1305                         /*
1306                          * After an error, we redo I/O one sector at a
1307                          * time, so we only reach here after trying to
1308                          * read a single sector.
1309                          */
1310                         ret = blk_end_request(req, -EIO,
1311                                                 brq->data.blksz);
1312                         if (!ret)
1313                                 goto start_new_req;
1314                         break;
1315                 case MMC_BLK_NOMEDIUM:
1316                         goto cmd_abort;
1317                 }
1318
1319                 if (ret) {
1320                         /*
1321                          * In case of a incomplete request
1322                          * prepare it again and resend.
1323                          */
1324                         mmc_blk_rw_rq_prep(mq_rq, card, disable_multi, mq);
1325                         mmc_start_req(card->host, &mq_rq->mmc_active, NULL);
1326                 }
1327         } while (ret);
1328
1329         return 1;
1330
1331  cmd_abort:
1332         if (mmc_card_removed(card))
1333                 req->cmd_flags |= REQ_QUIET;
1334         while (ret)
1335                 ret = blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
1336
1337  start_new_req:
1338         if (rqc) {
1339                 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1340                 mmc_start_req(card->host, &mq->mqrq_cur->mmc_active, NULL);
1341         }
1342
1343         return 0;
1344 }
1345
1346 static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1347 {
1348         int ret;
1349         struct mmc_blk_data *md = mq->data;
1350         struct mmc_card *card = md->queue.card;
1351
1352         if (req && !mq->mqrq_prev->req)
1353                 /* claim host only for the first request */
1354                 mmc_claim_host(card->host);
1355
1356         ret = mmc_blk_part_switch(card, md);
1357         if (ret) {
1358                 if (req) {
1359                         blk_end_request_all(req, -EIO);
1360                 }
1361                 ret = 0;
1362                 goto out;
1363         }
1364
1365         if (req && req->cmd_flags & REQ_DISCARD) {
1366                 /* complete ongoing async transfer before issuing discard */
1367                 if (card->host->areq)
1368                         mmc_blk_issue_rw_rq(mq, NULL);
1369                 if (req->cmd_flags & REQ_SECURE &&
1370                         !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
1371                         ret = mmc_blk_issue_secdiscard_rq(mq, req);
1372                 else
1373                         ret = mmc_blk_issue_discard_rq(mq, req);
1374         } else if (req && req->cmd_flags & REQ_FLUSH) {
1375                 /* complete ongoing async transfer before issuing flush */
1376                 if (card->host->areq)
1377                         mmc_blk_issue_rw_rq(mq, NULL);
1378                 ret = mmc_blk_issue_flush(mq, req);
1379         } else {
1380                 ret = mmc_blk_issue_rw_rq(mq, req);
1381         }
1382
1383 out:
1384         if (!req)
1385                 /* release host only when there are no more requests */
1386                 mmc_release_host(card->host);
1387         return ret;
1388 }
1389
1390 static inline int mmc_blk_readonly(struct mmc_card *card)
1391 {
1392         return mmc_card_readonly(card) ||
1393                !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1394 }
1395
1396 static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1397                                               struct device *parent,
1398                                               sector_t size,
1399                                               bool default_ro,
1400                                               const char *subname)
1401 {
1402         struct mmc_blk_data *md;
1403         int devidx, ret;
1404
1405         devidx = find_first_zero_bit(dev_use, max_devices);
1406         if (devidx >= max_devices)
1407                 return ERR_PTR(-ENOSPC);
1408         __set_bit(devidx, dev_use);
1409
1410         md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
1411         if (!md) {
1412                 ret = -ENOMEM;
1413                 goto out;
1414         }
1415
1416         /*
1417          * !subname implies we are creating main mmc_blk_data that will be
1418          * associated with mmc_card with mmc_set_drvdata. Due to device
1419          * partitions, devidx will not coincide with a per-physical card
1420          * index anymore so we keep track of a name index.
1421          */
1422         if (!subname) {
1423                 md->name_idx = find_first_zero_bit(name_use, max_devices);
1424                 __set_bit(md->name_idx, name_use);
1425         }
1426         else
1427                 md->name_idx = ((struct mmc_blk_data *)
1428                                 dev_to_disk(parent)->private_data)->name_idx;
1429
1430         /*
1431          * Set the read-only status based on the supported commands
1432          * and the write protect switch.
1433          */
1434         md->read_only = mmc_blk_readonly(card);
1435
1436         md->disk = alloc_disk(perdev_minors);
1437         if (md->disk == NULL) {
1438                 ret = -ENOMEM;
1439                 goto err_kfree;
1440         }
1441
1442         spin_lock_init(&md->lock);
1443         INIT_LIST_HEAD(&md->part);
1444         md->usage = 1;
1445
1446         ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
1447         if (ret)
1448                 goto err_putdisk;
1449
1450         md->queue.issue_fn = mmc_blk_issue_rq;
1451         md->queue.data = md;
1452
1453         md->disk->major = MMC_BLOCK_MAJOR;
1454         md->disk->first_minor = devidx * perdev_minors;
1455         md->disk->fops = &mmc_bdops;
1456         md->disk->private_data = md;
1457         md->disk->queue = md->queue.queue;
1458         md->disk->driverfs_dev = parent;
1459         set_disk_ro(md->disk, md->read_only || default_ro);
1460
1461         /*
1462          * As discussed on lkml, GENHD_FL_REMOVABLE should:
1463          *
1464          * - be set for removable media with permanent block devices
1465          * - be unset for removable block devices with permanent media
1466          *
1467          * Since MMC block devices clearly fall under the second
1468          * case, we do not set GENHD_FL_REMOVABLE.  Userspace
1469          * should use the block device creation/destruction hotplug
1470          * messages to tell when the card is present.
1471          */
1472
1473         snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1474                  "mmcblk%d%s", md->name_idx, subname ? subname : "");
1475
1476         blk_queue_logical_block_size(md->queue.queue, 512);
1477         set_capacity(md->disk, size);
1478
1479         if (mmc_host_cmd23(card->host)) {
1480                 if (mmc_card_mmc(card) ||
1481                     (mmc_card_sd(card) &&
1482                      card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1483                         md->flags |= MMC_BLK_CMD23;
1484         }
1485
1486         if (mmc_card_mmc(card) &&
1487             md->flags & MMC_BLK_CMD23 &&
1488             ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1489              card->ext_csd.rel_sectors)) {
1490                 md->flags |= MMC_BLK_REL_WR;
1491                 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1492         }
1493
1494         return md;
1495
1496  err_putdisk:
1497         put_disk(md->disk);
1498  err_kfree:
1499         kfree(md);
1500  out:
1501         return ERR_PTR(ret);
1502 }
1503
1504 static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1505 {
1506         sector_t size;
1507         struct mmc_blk_data *md;
1508
1509         if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1510                 /*
1511                  * The EXT_CSD sector count is in number or 512 byte
1512                  * sectors.
1513                  */
1514                 size = card->ext_csd.sectors;
1515         } else {
1516                 /*
1517                  * The CSD capacity field is in units of read_blkbits.
1518                  * set_capacity takes units of 512 bytes.
1519                  */
1520                 size = card->csd.capacity << (card->csd.read_blkbits - 9);
1521         }
1522
1523         md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL);
1524         return md;
1525 }
1526
1527 static int mmc_blk_alloc_part(struct mmc_card *card,
1528                               struct mmc_blk_data *md,
1529                               unsigned int part_type,
1530                               sector_t size,
1531                               bool default_ro,
1532                               const char *subname)
1533 {
1534         char cap_str[10];
1535         struct mmc_blk_data *part_md;
1536
1537         part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
1538                                     subname);
1539         if (IS_ERR(part_md))
1540                 return PTR_ERR(part_md);
1541         part_md->part_type = part_type;
1542         list_add(&part_md->part, &md->part);
1543
1544         string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1545                         cap_str, sizeof(cap_str));
1546         pr_info("%s: %s %s partition %u %s\n",
1547                part_md->disk->disk_name, mmc_card_id(card),
1548                mmc_card_name(card), part_md->part_type, cap_str);
1549         return 0;
1550 }
1551
1552 /* MMC Physical partitions consist of two boot partitions and
1553  * up to four general purpose partitions.
1554  * For each partition enabled in EXT_CSD a block device will be allocatedi
1555  * to provide access to the partition.
1556  */
1557
1558 static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1559 {
1560         int idx, ret = 0;
1561
1562         if (!mmc_card_mmc(card))
1563                 return 0;
1564
1565         for (idx = 0; idx < card->nr_parts; idx++) {
1566                 if (card->part[idx].size) {
1567                         ret = mmc_blk_alloc_part(card, md,
1568                                 card->part[idx].part_cfg,
1569                                 card->part[idx].size >> 9,
1570                                 card->part[idx].force_ro,
1571                                 card->part[idx].name);
1572                         if (ret)
1573                                 return ret;
1574                 }
1575         }
1576
1577         return ret;
1578 }
1579
1580 static int
1581 mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
1582 {
1583         int err;
1584
1585         mmc_claim_host(card->host);
1586         err = mmc_set_blocklen(card, 512);
1587         mmc_release_host(card->host);
1588
1589         if (err) {
1590                 pr_err("%s: unable to set block size to 512: %d\n",
1591                         md->disk->disk_name, err);
1592                 return -EINVAL;
1593         }
1594
1595         return 0;
1596 }
1597
1598 static void mmc_blk_remove_req(struct mmc_blk_data *md)
1599 {
1600         if (md) {
1601                 if (md->disk->flags & GENHD_FL_UP) {
1602                         device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1603
1604                         /* Stop new requests from getting into the queue */
1605                         del_gendisk(md->disk);
1606                 }
1607
1608                 /* Then flush out any already in there */
1609                 mmc_cleanup_queue(&md->queue);
1610                 mmc_blk_put(md);
1611         }
1612 }
1613
1614 static void mmc_blk_remove_parts(struct mmc_card *card,
1615                                  struct mmc_blk_data *md)
1616 {
1617         struct list_head *pos, *q;
1618         struct mmc_blk_data *part_md;
1619
1620         __clear_bit(md->name_idx, name_use);
1621         list_for_each_safe(pos, q, &md->part) {
1622                 part_md = list_entry(pos, struct mmc_blk_data, part);
1623                 list_del(pos);
1624                 mmc_blk_remove_req(part_md);
1625         }
1626 }
1627
1628 static int mmc_add_disk(struct mmc_blk_data *md)
1629 {
1630         int ret;
1631
1632         add_disk(md->disk);
1633         md->force_ro.show = force_ro_show;
1634         md->force_ro.store = force_ro_store;
1635         sysfs_attr_init(&md->force_ro.attr);
1636         md->force_ro.attr.name = "force_ro";
1637         md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1638         ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1639         if (ret)
1640                 del_gendisk(md->disk);
1641
1642         return ret;
1643 }
1644
1645 #define CID_MANFID_SAMSUNG      0x15
1646
1647 static const struct mmc_fixup blk_fixups[] =
1648 {
1649         MMC_FIXUP("SEM02G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1650         MMC_FIXUP("SEM04G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1651         MMC_FIXUP("SEM08G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1652         MMC_FIXUP("SEM16G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1653         MMC_FIXUP("SEM32G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1654
1655         /*
1656          * Some MMC cards experience performance degradation with CMD23
1657          * instead of CMD12-bounded multiblock transfers. For now we'll
1658          * black list what's bad...
1659          * - Certain Toshiba cards.
1660          *
1661          * N.B. This doesn't affect SD cards.
1662          */
1663         MMC_FIXUP("MMC08G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1664                   MMC_QUIRK_BLK_NO_CMD23),
1665         MMC_FIXUP("MMC16G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1666                   MMC_QUIRK_BLK_NO_CMD23),
1667         MMC_FIXUP("MMC32G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1668                   MMC_QUIRK_BLK_NO_CMD23),
1669
1670         /*
1671          * Some Micron MMC cards needs longer data read timeout than
1672          * indicated in CSD.
1673          */
1674         MMC_FIXUP(CID_NAME_ANY, 0x13, 0x200, add_quirk_mmc,
1675                   MMC_QUIRK_LONG_READ_TIME),
1676
1677         /*
1678          * On these Samsung MoviNAND parts, performing secure erase or
1679          * secure trim can result in unrecoverable corruption due to a
1680          * firmware bug.
1681          */
1682         MMC_FIXUP("M8G2FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1683                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1684         MMC_FIXUP("MAG4FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1685                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1686         MMC_FIXUP("MBG8FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1687                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1688         MMC_FIXUP("MCGAFA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1689                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1690         MMC_FIXUP("VAL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1691                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1692         MMC_FIXUP("VYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1693                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1694         MMC_FIXUP("KYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1695                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1696         MMC_FIXUP("VZL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
1697                   MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
1698
1699         END_FIXUP
1700 };
1701
1702 static int mmc_blk_probe(struct mmc_card *card)
1703 {
1704         struct mmc_blk_data *md, *part_md;
1705         int err;
1706         char cap_str[10];
1707
1708         /*
1709          * Check that the card supports the command class(es) we need.
1710          */
1711         if (!(card->csd.cmdclass & CCC_BLOCK_READ))
1712                 return -ENODEV;
1713
1714         md = mmc_blk_alloc(card);
1715         if (IS_ERR(md))
1716                 return PTR_ERR(md);
1717
1718         err = mmc_blk_set_blksize(md, card);
1719         if (err)
1720                 goto out;
1721
1722         string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
1723                         cap_str, sizeof(cap_str));
1724         pr_info("%s: %s %s %s %s\n",
1725                 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
1726                 cap_str, md->read_only ? "(ro)" : "");
1727
1728         if (mmc_blk_alloc_parts(card, md))
1729                 goto out;
1730
1731         mmc_set_drvdata(card, md);
1732         mmc_fixup_device(card, blk_fixups);
1733
1734         if (mmc_add_disk(md))
1735                 goto out;
1736
1737         list_for_each_entry(part_md, &md->part, part) {
1738                 if (mmc_add_disk(part_md))
1739                         goto out;
1740         }
1741         return 0;
1742
1743  out:
1744         mmc_blk_remove_parts(card, md);
1745         mmc_blk_remove_req(md);
1746         return err;
1747 }
1748
1749 static void mmc_blk_remove(struct mmc_card *card)
1750 {
1751         struct mmc_blk_data *md = mmc_get_drvdata(card);
1752
1753         mmc_blk_remove_parts(card, md);
1754         mmc_claim_host(card->host);
1755         mmc_blk_part_switch(card, md);
1756         mmc_release_host(card->host);
1757         mmc_blk_remove_req(md);
1758         mmc_set_drvdata(card, NULL);
1759 }
1760
1761 #ifdef CONFIG_PM
1762 static int mmc_blk_suspend(struct mmc_card *card)
1763 {
1764         struct mmc_blk_data *part_md;
1765         struct mmc_blk_data *md = mmc_get_drvdata(card);
1766
1767         if (md) {
1768                 mmc_queue_suspend(&md->queue);
1769                 list_for_each_entry(part_md, &md->part, part) {
1770                         mmc_queue_suspend(&part_md->queue);
1771                 }
1772         }
1773         return 0;
1774 }
1775
1776 static int mmc_blk_resume(struct mmc_card *card)
1777 {
1778         struct mmc_blk_data *part_md;
1779         struct mmc_blk_data *md = mmc_get_drvdata(card);
1780
1781         if (md) {
1782                 mmc_blk_set_blksize(md, card);
1783
1784                 /*
1785                  * Resume involves the card going into idle state,
1786                  * so current partition is always the main one.
1787                  */
1788                 md->part_curr = md->part_type;
1789                 mmc_queue_resume(&md->queue);
1790                 list_for_each_entry(part_md, &md->part, part) {
1791                         mmc_queue_resume(&part_md->queue);
1792                 }
1793         }
1794         return 0;
1795 }
1796 #else
1797 #define mmc_blk_suspend NULL
1798 #define mmc_blk_resume  NULL
1799 #endif
1800
1801 static struct mmc_driver mmc_driver = {
1802         .drv            = {
1803                 .name   = "mmcblk",
1804         },
1805         .probe          = mmc_blk_probe,
1806         .remove         = mmc_blk_remove,
1807         .suspend        = mmc_blk_suspend,
1808         .resume         = mmc_blk_resume,
1809 };
1810
1811 static int __init mmc_blk_init(void)
1812 {
1813         int res;
1814
1815         if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1816                 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1817
1818         max_devices = 256 / perdev_minors;
1819
1820         res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1821         if (res)
1822                 goto out;
1823
1824         res = mmc_register_driver(&mmc_driver);
1825         if (res)
1826                 goto out2;
1827
1828         return 0;
1829  out2:
1830         unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
1831  out:
1832         return res;
1833 }
1834
1835 static void __exit mmc_blk_exit(void)
1836 {
1837         mmc_unregister_driver(&mmc_driver);
1838         unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
1839 }
1840
1841 module_init(mmc_blk_init);
1842 module_exit(mmc_blk_exit);
1843
1844 MODULE_LICENSE("GPL");
1845 MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1846