Merge remote-tracking branch 'common/android-3.0' into develop-3.0-jb
[firefly-linux-kernel-4.4.55.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
98         /*
99          * Only set in main mmc_blk_data associated
100          * with mmc_card with mmc_set_drvdata, and keeps
101          * track of the current selected device partition.
102          */
103         unsigned int    part_curr;
104         struct device_attribute force_ro;
105 };
106
107 static DEFINE_MUTEX(open_lock);
108
109 module_param(perdev_minors, int, 0444);
110 MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
111
112 static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
113 {
114         struct mmc_blk_data *md;
115
116         mutex_lock(&open_lock);
117         md = disk->private_data;
118         if (md && md->usage == 0)
119                 md = NULL;
120         if (md)
121                 md->usage++;
122         mutex_unlock(&open_lock);
123
124         return md;
125 }
126
127 static inline int mmc_get_devidx(struct gendisk *disk)
128 {
129         int devidx = disk->first_minor / perdev_minors;
130         return devidx;
131 }
132
133 static void mmc_blk_put(struct mmc_blk_data *md)
134 {
135         mutex_lock(&open_lock);
136         md->usage--;
137         if (md->usage == 0) {
138                 int devidx = mmc_get_devidx(md->disk);
139                 blk_cleanup_queue(md->queue.queue);
140
141                 __clear_bit(devidx, dev_use);
142
143                 put_disk(md->disk);
144                 kfree(md);
145         }
146         mutex_unlock(&open_lock);
147 }
148
149 static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
150                              char *buf)
151 {
152         int ret;
153         struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
154
155         ret = snprintf(buf, PAGE_SIZE, "%d",
156                        get_disk_ro(dev_to_disk(dev)) ^
157                        md->read_only);
158         mmc_blk_put(md);
159         return ret;
160 }
161
162 static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
163                               const char *buf, size_t count)
164 {
165         int ret;
166         char *end;
167         struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
168         unsigned long set = simple_strtoul(buf, &end, 0);
169         if (end == buf) {
170                 ret = -EINVAL;
171                 goto out;
172         }
173
174         set_disk_ro(dev_to_disk(dev), set || md->read_only);
175         ret = count;
176 out:
177         mmc_blk_put(md);
178         return ret;
179 }
180
181 static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
182 {
183         struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
184         int ret = -ENXIO;
185
186         mutex_lock(&block_mutex);
187         if (md) {
188                 if (md->usage == 2)
189                         check_disk_change(bdev);
190                 ret = 0;
191
192                 if ((mode & FMODE_WRITE) && md->read_only) {
193                         mmc_blk_put(md);
194                         ret = -EROFS;
195                 }
196         }
197         mutex_unlock(&block_mutex);
198
199         return ret;
200 }
201
202 static int mmc_blk_release(struct gendisk *disk, fmode_t mode)
203 {
204         struct mmc_blk_data *md = disk->private_data;
205
206         mutex_lock(&block_mutex);
207         mmc_blk_put(md);
208         mutex_unlock(&block_mutex);
209         return 0;
210 }
211
212 static int
213 mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
214 {
215         geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
216         geo->heads = 4;
217         geo->sectors = 16;
218         return 0;
219 }
220
221 struct mmc_blk_ioc_data {
222         struct mmc_ioc_cmd ic;
223         unsigned char *buf;
224         u64 buf_bytes;
225 };
226
227 static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
228         struct mmc_ioc_cmd __user *user)
229 {
230         struct mmc_blk_ioc_data *idata;
231         int err;
232
233         idata = kzalloc(sizeof(*idata), GFP_KERNEL);
234         if (!idata) {
235                 err = -ENOMEM;
236                 goto out;
237         }
238
239         if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
240                 err = -EFAULT;
241                 goto idata_err;
242         }
243
244         idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
245         if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
246                 err = -EOVERFLOW;
247                 goto idata_err;
248         }
249
250         if (!idata->buf_bytes)
251                 return idata;
252
253         idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
254         if (!idata->buf) {
255                 err = -ENOMEM;
256                 goto idata_err;
257         }
258
259         if (copy_from_user(idata->buf, (void __user *)(unsigned long)
260                                         idata->ic.data_ptr, idata->buf_bytes)) {
261                 err = -EFAULT;
262                 goto copy_err;
263         }
264
265         return idata;
266
267 copy_err:
268         kfree(idata->buf);
269 idata_err:
270         kfree(idata);
271 out:
272         return ERR_PTR(err);
273 }
274
275 static int mmc_blk_ioctl_cmd(struct block_device *bdev,
276         struct mmc_ioc_cmd __user *ic_ptr)
277 {
278         struct mmc_blk_ioc_data *idata;
279         struct mmc_blk_data *md;
280         struct mmc_card *card;
281         struct mmc_command cmd = {0};
282         struct mmc_data data = {0};
283         struct mmc_request mrq = {0};
284         struct scatterlist sg;
285         int err;
286
287         /*
288          * The caller must have CAP_SYS_RAWIO, and must be calling this on the
289          * whole block device, not on a partition.  This prevents overspray
290          * between sibling partitions.
291          */
292         if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
293                 return -EPERM;
294
295         idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
296         if (IS_ERR(idata))
297                 return PTR_ERR(idata);
298
299         md = mmc_blk_get(bdev->bd_disk);
300         if (!md) {
301                 err = -EINVAL;
302                 goto cmd_done;
303         }
304
305         card = md->queue.card;
306         if (IS_ERR(card)) {
307                 err = PTR_ERR(card);
308                 goto cmd_done;
309         }
310
311         cmd.opcode = idata->ic.opcode;
312         cmd.arg = idata->ic.arg;
313         cmd.flags = idata->ic.flags;
314
315         if (idata->buf_bytes) {
316                 data.sg = &sg;
317                 data.sg_len = 1;
318                 data.blksz = idata->ic.blksz;
319                 data.blocks = idata->ic.blocks;
320
321                 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
322
323                 if (idata->ic.write_flag)
324                         data.flags = MMC_DATA_WRITE;
325                 else
326                         data.flags = MMC_DATA_READ;
327
328                 /* data.flags must already be set before doing this. */
329                 mmc_set_data_timeout(&data, card);
330
331                 /* Allow overriding the timeout_ns for empirical tuning. */
332                 if (idata->ic.data_timeout_ns)
333                         data.timeout_ns = idata->ic.data_timeout_ns;
334
335                 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
336                         /*
337                          * Pretend this is a data transfer and rely on the
338                          * host driver to compute timeout.  When all host
339                          * drivers support cmd.cmd_timeout for R1B, this
340                          * can be changed to:
341                          *
342                          *     mrq.data = NULL;
343                          *     cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
344                          */
345                         data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
346                 }
347
348                 mrq.data = &data;
349         }
350
351         mrq.cmd = &cmd;
352
353         mmc_claim_host(card->host);
354
355         if (idata->ic.is_acmd) {
356                 err = mmc_app_cmd(card->host, card);
357                 if (err)
358                         goto cmd_rel_host;
359         }
360
361         mmc_wait_for_req(card->host, &mrq);
362
363         if (cmd.error) {
364                 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
365                                                 __func__, cmd.error);
366                 err = cmd.error;
367                 goto cmd_rel_host;
368         }
369         if (data.error) {
370                 dev_err(mmc_dev(card->host), "%s: data error %d\n",
371                                                 __func__, data.error);
372                 err = data.error;
373                 goto cmd_rel_host;
374         }
375
376         /*
377          * According to the SD specs, some commands require a delay after
378          * issuing the command.
379          */
380         if (idata->ic.postsleep_min_us)
381                 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
382
383         if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
384                 err = -EFAULT;
385                 goto cmd_rel_host;
386         }
387
388         if (!idata->ic.write_flag) {
389                 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
390                                                 idata->buf, idata->buf_bytes)) {
391                         err = -EFAULT;
392                         goto cmd_rel_host;
393                 }
394         }
395
396 cmd_rel_host:
397         mmc_release_host(card->host);
398
399 cmd_done:
400         mmc_blk_put(md);
401         kfree(idata->buf);
402         kfree(idata);
403         return err;
404 }
405
406 static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
407         unsigned int cmd, unsigned long arg)
408 {
409         int ret = -EINVAL;
410         if (cmd == MMC_IOC_CMD)
411                 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
412         return ret;
413 }
414
415 #ifdef CONFIG_COMPAT
416 static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
417         unsigned int cmd, unsigned long arg)
418 {
419         return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
420 }
421 #endif
422
423 static const struct block_device_operations mmc_bdops = {
424         .open                   = mmc_blk_open,
425         .release                = mmc_blk_release,
426         .getgeo                 = mmc_blk_getgeo,
427         .owner                  = THIS_MODULE,
428         .ioctl                  = mmc_blk_ioctl,
429 #ifdef CONFIG_COMPAT
430         .compat_ioctl           = mmc_blk_compat_ioctl,
431 #endif
432 };
433
434 struct mmc_blk_request {
435         struct mmc_request      mrq;
436         struct mmc_command      sbc;
437         struct mmc_command      cmd;
438         struct mmc_command      stop;
439         struct mmc_data         data;
440 };
441
442 static inline int mmc_blk_part_switch(struct mmc_card *card,
443                                       struct mmc_blk_data *md)
444 {
445         int ret;
446         struct mmc_blk_data *main_md = mmc_get_drvdata(card);
447         if (main_md->part_curr == md->part_type)
448                 return 0;
449
450         if (mmc_card_mmc(card)) {
451                 card->ext_csd.part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
452                 card->ext_csd.part_config |= md->part_type;
453
454                 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
455                                  EXT_CSD_PART_CONFIG, card->ext_csd.part_config,
456                                  card->ext_csd.part_time);
457                 if (ret)
458                         return ret;
459 }
460
461         main_md->part_curr = md->part_type;
462         return 0;
463 }
464
465 static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
466 {
467         int err;
468         u32 result;
469         __be32 *blocks;
470
471         struct mmc_request mrq = {0};
472         struct mmc_command cmd = {0};
473         struct mmc_data data = {0};
474         unsigned int timeout_us;
475
476         struct scatterlist sg;
477
478         cmd.opcode = MMC_APP_CMD;
479         cmd.arg = card->rca << 16;
480         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
481
482         err = mmc_wait_for_cmd(card->host, &cmd, 0);
483         if (err)
484                 return (u32)-1;
485         if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
486                 return (u32)-1;
487
488         memset(&cmd, 0, sizeof(struct mmc_command));
489
490         cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
491         cmd.arg = 0;
492         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
493
494         data.timeout_ns = card->csd.tacc_ns * 100;
495         data.timeout_clks = card->csd.tacc_clks * 100;
496
497         timeout_us = data.timeout_ns / 1000;
498         timeout_us += data.timeout_clks * 1000 /
499                 (card->host->ios.clock / 1000);
500
501         if (timeout_us > 100000) {
502                 data.timeout_ns = 100000000;
503                 data.timeout_clks = 0;
504         }
505
506         data.blksz = 4;
507         data.blocks = 1;
508         data.flags = MMC_DATA_READ;
509         data.sg = &sg;
510         data.sg_len = 1;
511
512         mrq.cmd = &cmd;
513         mrq.data = &data;
514
515         blocks = kmalloc(4, GFP_KERNEL);
516         if (!blocks)
517                 return (u32)-1;
518
519         sg_init_one(&sg, blocks, 4);
520
521         mmc_wait_for_req(card->host, &mrq);
522
523         result = ntohl(*blocks);
524         kfree(blocks);
525
526         if (cmd.error || data.error)
527                 result = (u32)-1;
528
529         return result;
530 }
531
532 static int send_stop(struct mmc_card *card, u32 *status)
533 {
534         struct mmc_command cmd = {0};
535         int err;
536
537         cmd.opcode = MMC_STOP_TRANSMISSION;
538         cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
539         err = mmc_wait_for_cmd(card->host, &cmd, 5);
540         if (err == 0)
541                 *status = cmd.resp[0];
542         return err;
543 }
544
545 static int get_card_status(struct mmc_card *card, u32 *status, int retries)
546 {
547         struct mmc_command cmd = {0};
548         int err;
549
550         cmd.opcode = MMC_SEND_STATUS;
551         if (!mmc_host_is_spi(card->host))
552                 cmd.arg = card->rca << 16;
553         cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
554         err = mmc_wait_for_cmd(card->host, &cmd, retries);
555         if (err == 0)
556                 *status = cmd.resp[0];
557         return err;
558 }
559
560 #define ERR_RETRY       2
561 #define ERR_ABORT       1
562 #define ERR_CONTINUE    0
563
564 static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
565         bool status_valid, u32 status)
566 {
567         switch (error) {
568         case -EILSEQ:
569                 /* response crc error, retry the r/w cmd */
570                 pr_err("%s: %s sending %s command, card status %#x\n",
571                         req->rq_disk->disk_name, "response CRC error",
572                         name, status);
573                 return ERR_RETRY;
574
575         case -ETIMEDOUT:
576                 pr_err("%s: %s sending %s command, card status %#x\n",
577                         req->rq_disk->disk_name, "timed out", name, status);
578
579                 /* If the status cmd initially failed, retry the r/w cmd */
580                 if (!status_valid) {
581                         pr_err("%s: status not valid, retrying timeout\n", req->rq_disk->disk_name);
582                         return ERR_RETRY;
583                 }
584                 /*
585                  * If it was a r/w cmd crc error, or illegal command
586                  * (eg, issued in wrong state) then retry - we should
587                  * have corrected the state problem above.
588                  */
589                 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND)) {
590                         pr_err("%s: command error, retrying timeout\n", req->rq_disk->disk_name);
591                         return ERR_RETRY;
592                 }
593
594                 /* Otherwise abort the command */
595                 pr_err("%s: not retrying timeout\n", req->rq_disk->disk_name);
596                 return ERR_ABORT;
597
598         default:
599                 /* We don't understand the error code the driver gave us */
600                 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
601                        req->rq_disk->disk_name, error, status);
602                 return ERR_ABORT;
603         }
604 }
605
606 /*
607  * Initial r/w and stop cmd error recovery.
608  * We don't know whether the card received the r/w cmd or not, so try to
609  * restore things back to a sane state.  Essentially, we do this as follows:
610  * - Obtain card status.  If the first attempt to obtain card status fails,
611  *   the status word will reflect the failed status cmd, not the failed
612  *   r/w cmd.  If we fail to obtain card status, it suggests we can no
613  *   longer communicate with the card.
614  * - Check the card state.  If the card received the cmd but there was a
615  *   transient problem with the response, it might still be in a data transfer
616  *   mode.  Try to send it a stop command.  If this fails, we can't recover.
617  * - If the r/w cmd failed due to a response CRC error, it was probably
618  *   transient, so retry the cmd.
619  * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
620  * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
621  *   illegal cmd, retry.
622  * Otherwise we don't understand what happened, so abort.
623  */
624 static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
625         struct mmc_blk_request *brq)
626 {
627         bool prev_cmd_status_valid = true;
628         u32 status, stop_status = 0;
629         int err, retry;
630
631         /*
632          * Try to get card status which indicates both the card state
633          * and why there was no response.  If the first attempt fails,
634          * we can't be sure the returned status is for the r/w command.
635          */
636         for (retry = 2; retry >= 0; retry--) {
637                 err = get_card_status(card, &status, 0);
638                 if (!err)
639                         break;
640
641                 prev_cmd_status_valid = false;
642                 pr_err("%s: error %d sending status command, %sing\n",
643                        req->rq_disk->disk_name, err, retry ? "retry" : "abort");
644         }
645
646         /* We couldn't get a response from the card.  Give up. */
647         if (err)
648                 return ERR_ABORT;
649
650         /*
651          * Check the current card state.  If it is in some data transfer
652          * mode, tell it to stop (and hopefully transition back to TRAN.)
653          */
654         if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
655             R1_CURRENT_STATE(status) == R1_STATE_RCV) {
656                 err = send_stop(card, &stop_status);
657                 if (err)
658                         pr_err("%s: error %d sending stop command\n",
659                                req->rq_disk->disk_name, err);
660
661                 /*
662                  * If the stop cmd also timed out, the card is probably
663                  * not present, so abort.  Other errors are bad news too.
664                  */
665                 if (err)
666                         return ERR_ABORT;
667         }
668
669         /* Check for set block count errors */
670         if (brq->sbc.error)
671                 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
672                                 prev_cmd_status_valid, status);
673
674         /* Check for r/w command errors */
675         if (brq->cmd.error)
676                 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
677                                 prev_cmd_status_valid, status);
678
679         /* Now for stop errors.  These aren't fatal to the transfer. */
680         pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
681                req->rq_disk->disk_name, brq->stop.error,
682                brq->cmd.resp[0], status);
683
684         /*
685          * Subsitute in our own stop status as this will give the error
686          * state which happened during the execution of the r/w command.
687          */
688         if (stop_status) {
689                 brq->stop.resp[0] = stop_status;
690                 brq->stop.error = 0;
691         }
692         return ERR_CONTINUE;
693 }
694
695 static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
696 {
697         struct mmc_blk_data *md = mq->data;
698         struct mmc_card *card = md->queue.card;
699         unsigned int from, nr, arg;
700         int err = 0;
701
702         if (!mmc_can_erase(card)) {
703                 err = -EOPNOTSUPP;
704                 goto out;
705         }
706
707         from = blk_rq_pos(req);
708         nr = blk_rq_sectors(req);
709
710         if (mmc_can_trim(card))
711                 arg = MMC_TRIM_ARG;
712         else
713                 arg = MMC_ERASE_ARG;
714
715         if (card->quirks & MMC_QUIRK_INAND_CMD38) {
716                 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
717                                  INAND_CMD38_ARG_EXT_CSD,
718                                  arg == MMC_TRIM_ARG ?
719                                  INAND_CMD38_ARG_TRIM :
720                                  INAND_CMD38_ARG_ERASE,
721                                  0);
722                 if (err)
723                         goto out;
724         }
725         err = mmc_erase(card, from, nr, arg);
726 out:
727         spin_lock_irq(&md->lock);
728         __blk_end_request(req, err, blk_rq_bytes(req));
729         spin_unlock_irq(&md->lock);
730
731         return err ? 0 : 1;
732 }
733
734 static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
735                                        struct request *req)
736 {
737         struct mmc_blk_data *md = mq->data;
738         struct mmc_card *card = md->queue.card;
739         unsigned int from, nr, arg;
740         int err = 0;
741
742         if (!mmc_can_secure_erase_trim(card)) {
743                 err = -EOPNOTSUPP;
744                 goto out;
745         }
746
747         from = blk_rq_pos(req);
748         nr = blk_rq_sectors(req);
749
750         if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
751                 arg = MMC_SECURE_TRIM1_ARG;
752         else
753                 arg = MMC_SECURE_ERASE_ARG;
754
755         if (card->quirks & MMC_QUIRK_INAND_CMD38) {
756                 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
757                                  INAND_CMD38_ARG_EXT_CSD,
758                                  arg == MMC_SECURE_TRIM1_ARG ?
759                                  INAND_CMD38_ARG_SECTRIM1 :
760                                  INAND_CMD38_ARG_SECERASE,
761                                  0);
762                 if (err)
763                         goto out;
764         }
765         err = mmc_erase(card, from, nr, arg);
766         if (!err && arg == MMC_SECURE_TRIM1_ARG) {
767                 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
768                         err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
769                                          INAND_CMD38_ARG_EXT_CSD,
770                                          INAND_CMD38_ARG_SECTRIM2,
771                                          0);
772                         if (err)
773                                 goto out;
774                 }
775                 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
776         }
777 out:
778         spin_lock_irq(&md->lock);
779         __blk_end_request(req, err, blk_rq_bytes(req));
780         spin_unlock_irq(&md->lock);
781
782         return err ? 0 : 1;
783 }
784
785 static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
786 {
787         struct mmc_blk_data *md = mq->data;
788
789         /*
790          * No-op, only service this because we need REQ_FUA for reliable
791          * writes.
792          */
793         spin_lock_irq(&md->lock);
794         __blk_end_request_all(req, 0);
795         spin_unlock_irq(&md->lock);
796
797         return 1;
798 }
799
800 /*
801  * Reformat current write as a reliable write, supporting
802  * both legacy and the enhanced reliable write MMC cards.
803  * In each transfer we'll handle only as much as a single
804  * reliable write can handle, thus finish the request in
805  * partial completions.
806  */
807 static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
808                                     struct mmc_card *card,
809                                     struct request *req)
810 {
811         if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
812                 /* Legacy mode imposes restrictions on transfers. */
813                 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
814                         brq->data.blocks = 1;
815
816                 if (brq->data.blocks > card->ext_csd.rel_sectors)
817                         brq->data.blocks = card->ext_csd.rel_sectors;
818                 else if (brq->data.blocks < card->ext_csd.rel_sectors)
819                         brq->data.blocks = 1;
820         }
821 }
822
823 #define CMD_ERRORS                                                      \
824         (R1_OUT_OF_RANGE |      /* Command argument out of range */     \
825          R1_ADDRESS_ERROR |     /* Misaligned address */                \
826          R1_BLOCK_LEN_ERROR |   /* Transferred block length incorrect */\
827          R1_WP_VIOLATION |      /* Tried to write to protected block */ \
828          R1_CC_ERROR |          /* Card controller error */             \
829          R1_ERROR)              /* General/unknown error */
830
831 static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *req)
832 {
833         struct mmc_blk_data *md = mq->data;
834         struct mmc_card *card = md->queue.card;
835         struct mmc_blk_request brq;
836         int ret = 1, disable_multi = 0, retry = 0;
837
838         /*
839          * Reliable writes are used to implement Forced Unit Access and
840          * REQ_META accesses, and are supported only on MMCs.
841          */
842         bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
843                           (req->cmd_flags & REQ_META)) &&
844                 (rq_data_dir(req) == WRITE) &&
845                 (md->flags & MMC_BLK_REL_WR);
846
847         do {
848                 u32 readcmd, writecmd;
849
850                 memset(&brq, 0, sizeof(struct mmc_blk_request));
851                 brq.mrq.cmd = &brq.cmd;
852                 brq.mrq.data = &brq.data;
853
854                 brq.cmd.arg = blk_rq_pos(req);
855                 if (!mmc_card_blockaddr(card))
856                         brq.cmd.arg <<= 9;
857                 brq.cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
858                 brq.data.blksz = 512;
859                 brq.stop.opcode = MMC_STOP_TRANSMISSION;
860                 brq.stop.arg = 0;
861                 brq.stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
862                 brq.data.blocks = blk_rq_sectors(req);
863
864                 /*
865                  * The block layer doesn't support all sector count
866                  * restrictions, so we need to be prepared for too big
867                  * requests.
868                  */
869                 if (brq.data.blocks > card->host->max_blk_count)
870                         brq.data.blocks = card->host->max_blk_count;
871
872                 /*
873                  * After a read error, we redo the request one sector at a time
874                  * in order to accurately determine which sectors can be read
875                  * successfully.
876                  */
877                 if (disable_multi && brq.data.blocks > 1)
878                         brq.data.blocks = 1;
879
880                 if (brq.data.blocks > 1 || do_rel_wr) {
881                         /* SPI multiblock writes terminate using a special
882                          * token, not a STOP_TRANSMISSION request.
883                          */
884                         if (!mmc_host_is_spi(card->host) ||
885                             rq_data_dir(req) == READ)
886                                 brq.mrq.stop = &brq.stop;
887                         readcmd = MMC_READ_MULTIPLE_BLOCK;
888                         writecmd = MMC_WRITE_MULTIPLE_BLOCK;
889                 } else {
890                         brq.mrq.stop = NULL;
891                         readcmd = MMC_READ_SINGLE_BLOCK;
892                         writecmd = MMC_WRITE_BLOCK;
893                 }
894                 if (rq_data_dir(req) == READ) {
895                         brq.cmd.opcode = readcmd;
896                         brq.data.flags |= MMC_DATA_READ;
897                 } else {
898                         brq.cmd.opcode = writecmd;
899                         brq.data.flags |= MMC_DATA_WRITE;
900                 }
901
902                 if (do_rel_wr)
903                         mmc_apply_rel_rw(&brq, card, req);
904
905                 /*
906                  * Pre-defined multi-block transfers are preferable to
907                  * open ended-ones (and necessary for reliable writes).
908                  * However, it is not sufficient to just send CMD23,
909                  * and avoid the final CMD12, as on an error condition
910                  * CMD12 (stop) needs to be sent anyway. This, coupled
911                  * with Auto-CMD23 enhancements provided by some
912                  * hosts, means that the complexity of dealing
913                  * with this is best left to the host. If CMD23 is
914                  * supported by card and host, we'll fill sbc in and let
915                  * the host deal with handling it correctly. This means
916                  * that for hosts that don't expose MMC_CAP_CMD23, no
917                  * change of behavior will be observed.
918                  *
919                  * N.B: Some MMC cards experience perf degradation.
920                  * We'll avoid using CMD23-bounded multiblock writes for
921                  * these, while retaining features like reliable writes.
922                  */
923
924                 if ((md->flags & MMC_BLK_CMD23) &&
925                     mmc_op_multi(brq.cmd.opcode) &&
926                     (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23))) {
927                         brq.sbc.opcode = MMC_SET_BLOCK_COUNT;
928                         brq.sbc.arg = brq.data.blocks |
929                                 (do_rel_wr ? (1 << 31) : 0);
930                         brq.sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
931                         brq.mrq.sbc = &brq.sbc;
932                 }
933
934                 mmc_set_data_timeout(&brq.data, card);
935
936                 brq.data.sg = mq->sg;
937                 brq.data.sg_len = mmc_queue_map_sg(mq);
938
939                 /*
940                  * Adjust the sg list so it is the same size as the
941                  * request.
942                  */
943                 if (brq.data.blocks != blk_rq_sectors(req)) {
944                         int i, data_size = brq.data.blocks << 9;
945                         struct scatterlist *sg;
946
947                         for_each_sg(brq.data.sg, sg, brq.data.sg_len, i) {
948                                 data_size -= sg->length;
949                                 if (data_size <= 0) {
950                                         sg->length += data_size;
951                                         i++;
952                                         break;
953                                 }
954                         }
955                         brq.data.sg_len = i;
956                 }
957
958                 mmc_queue_bounce_pre(mq);
959
960                 mmc_wait_for_req(card->host, &brq.mrq);
961
962                 mmc_queue_bounce_post(mq);
963
964 #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD)
965     //delete all retry code. modifyed by xbw at 2011-11-17
966 #else
967                 /*
968                  * sbc.error indicates a problem with the set block count
969                  * command.  No data will have been transferred.
970                  *
971                  * cmd.error indicates a problem with the r/w command.  No
972                  * data will have been transferred.
973                  *
974                  * stop.error indicates a problem with the stop command.  Data
975                  * may have been transferred, or may still be transferring.
976                  */
977                 if (brq.sbc.error || brq.cmd.error || brq.stop.error) {
978                         switch (mmc_blk_cmd_recovery(card, req, &brq)) {
979                         case ERR_RETRY:
980                                 if (retry++ < 5)
981                                         continue;
982                         case ERR_ABORT:
983                                 goto cmd_abort;
984                         case ERR_CONTINUE:
985                                 break;
986                         }
987                 }
988 #endif          
989
990                 /*
991                  * Check for errors relating to the execution of the
992                  * initial command - such as address errors.  No data
993                  * has been transferred.
994                  */
995                 if (brq.cmd.resp[0] & CMD_ERRORS) {
996                         pr_err("%s: r/w command failed, status = %#x\n",
997                                 req->rq_disk->disk_name, brq.cmd.resp[0]);
998                         goto cmd_abort;
999                 }
1000
1001 #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD)
1002     //delete all retry code. modifyed by xbw at 2011-11-17
1003 #else    
1004                 /*
1005                  * Everything else is either success, or a data error of some
1006                  * kind.  If it was a write, we may have transitioned to
1007                  * program mode, which we have to wait for it to complete.
1008                  */
1009                 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1010                         u32 status;
1011                         do {
1012                                 int err = get_card_status(card, &status, 5);
1013                                 if (err) {
1014                                         printk(KERN_ERR "%s: error %d requesting status\n",
1015                                                req->rq_disk->disk_name, err);
1016                                         goto cmd_err;
1017                                 }
1018                                 /*
1019                                  * Some cards mishandle the status bits,
1020                                  * so make sure to check both the busy
1021                                  * indication and the card state.
1022                                  */
1023                         } while (!(status & R1_READY_FOR_DATA) ||
1024                                  (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1025                 }
1026 #endif
1027
1028 #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD)
1029         if (brq.sbc.error || brq.cmd.error || brq.stop.error || brq.data.error) {   //modifyed by xbw at 2011-11-17
1030 #else
1031                 if (brq.data.error) {
1032                         pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1033                                 req->rq_disk->disk_name, brq.data.error,
1034                                 (unsigned)blk_rq_pos(req),
1035                                 (unsigned)blk_rq_sectors(req),
1036                                 brq.cmd.resp[0], brq.stop.resp[0]);
1037 #endif
1038                         if (rq_data_dir(req) == READ) {
1039                           #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD)
1040                           //direct to exit when error happen; deleted by xbw at 2011-12-14
1041                           #else
1042                                 if (brq.data.blocks > 1) {
1043                                         /* Redo read one sector at a time */
1044                                         pr_warning("%s: retrying using single block read\n",
1045                                                 req->rq_disk->disk_name);
1046                                         disable_multi = 1;
1047                                         continue;
1048                                 }
1049                                 #endif
1050
1051                                 /*
1052                                  * After an error, we redo I/O one sector at a
1053                                  * time, so we only reach here after trying to
1054                                  * read a single sector.
1055                                  */
1056                                 spin_lock_irq(&md->lock);
1057                                 ret = __blk_end_request(req, -EIO, brq.data.blksz);
1058                                 spin_unlock_irq(&md->lock);
1059                                 continue;
1060                         } else {
1061                                 goto cmd_err;
1062                         }
1063                 }
1064
1065                 /*
1066                  * A block was successfully transferred.
1067                  */
1068                 spin_lock_irq(&md->lock);
1069                 ret = __blk_end_request(req, 0, brq.data.bytes_xfered);
1070                 spin_unlock_irq(&md->lock);
1071         } while (ret);
1072
1073         return 1;
1074
1075  cmd_err:
1076         /*
1077          * If this is an SD card and we're writing, we can first
1078          * mark the known good sectors as ok.
1079          *
1080          * If the card is not SD, we can still ok written sectors
1081          * as reported by the controller (which might be less than
1082          * the real number of written sectors, but never more).
1083          */
1084         if (mmc_card_sd(card)) {
1085                 u32 blocks;
1086
1087                 blocks = mmc_sd_num_wr_blocks(card);
1088                 if (blocks != (u32)-1) {
1089                         spin_lock_irq(&md->lock);
1090                         ret = __blk_end_request(req, 0, blocks << 9);
1091                         spin_unlock_irq(&md->lock);
1092                 }
1093         } else {
1094                 spin_lock_irq(&md->lock);
1095                 ret = __blk_end_request(req, 0, brq.data.bytes_xfered);
1096                 spin_unlock_irq(&md->lock);
1097         }
1098
1099  cmd_abort:
1100         spin_lock_irq(&md->lock);
1101         while (ret)
1102                 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
1103         spin_unlock_irq(&md->lock);
1104
1105         return 0;
1106 }
1107
1108 static int
1109 mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card);
1110
1111 static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1112 {
1113         int ret;
1114         struct mmc_blk_data *md = mq->data;
1115         struct mmc_card *card = md->queue.card;
1116
1117 #ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1118         if (mmc_bus_needs_resume(card->host)) {
1119                 mmc_resume_bus(card->host);
1120                 mmc_blk_set_blksize(md, card);
1121         }
1122 #endif
1123
1124         mmc_claim_host(card->host);
1125         ret = mmc_blk_part_switch(card, md);
1126         if (ret) {
1127                 ret = 0;
1128                 goto out;
1129         }
1130
1131         if (req->cmd_flags & REQ_DISCARD) {
1132                 if (req->cmd_flags & REQ_SECURE)
1133                         ret = mmc_blk_issue_secdiscard_rq(mq, req);
1134                 else
1135                         ret = mmc_blk_issue_discard_rq(mq, req);
1136         } else if (req->cmd_flags & REQ_FLUSH) {
1137                 ret = mmc_blk_issue_flush(mq, req);
1138         } else {
1139                 ret = mmc_blk_issue_rw_rq(mq, req);
1140         }
1141
1142 out:
1143         mmc_release_host(card->host);
1144         return ret;
1145 }
1146
1147 static inline int mmc_blk_readonly(struct mmc_card *card)
1148 {
1149         return mmc_card_readonly(card) ||
1150                !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1151 }
1152
1153 static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1154                                               struct device *parent,
1155                                               sector_t size,
1156                                               bool default_ro,
1157                                               const char *subname)
1158 {
1159         struct mmc_blk_data *md;
1160         int devidx, ret;
1161
1162         devidx = find_first_zero_bit(dev_use, max_devices);
1163         if (devidx >= max_devices)
1164                 return ERR_PTR(-ENOSPC);
1165         __set_bit(devidx, dev_use);
1166
1167         md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
1168         if (!md) {
1169                 ret = -ENOMEM;
1170                 goto out;
1171         }
1172
1173         /*
1174          * !subname implies we are creating main mmc_blk_data that will be
1175          * associated with mmc_card with mmc_set_drvdata. Due to device
1176          * partitions, devidx will not coincide with a per-physical card
1177          * index anymore so we keep track of a name index.
1178          */
1179         if (!subname) {
1180                 md->name_idx = find_first_zero_bit(name_use, max_devices);
1181                 __set_bit(md->name_idx, name_use);
1182         }
1183         else
1184                 md->name_idx = ((struct mmc_blk_data *)
1185                                 dev_to_disk(parent)->private_data)->name_idx;
1186
1187         /*
1188          * Set the read-only status based on the supported commands
1189          * and the write protect switch.
1190          */
1191         md->read_only = mmc_blk_readonly(card);
1192
1193         md->disk = alloc_disk(perdev_minors);
1194         if (md->disk == NULL) {
1195                 ret = -ENOMEM;
1196                 goto err_kfree;
1197         }
1198
1199         spin_lock_init(&md->lock);
1200         INIT_LIST_HEAD(&md->part);
1201         md->usage = 1;
1202
1203         ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
1204         if (ret)
1205                 goto err_putdisk;
1206
1207         md->queue.issue_fn = mmc_blk_issue_rq;
1208         md->queue.data = md;
1209
1210         md->disk->major = MMC_BLOCK_MAJOR;
1211         md->disk->first_minor = devidx * perdev_minors;
1212         md->disk->fops = &mmc_bdops;
1213         md->disk->private_data = md;
1214         md->disk->queue = md->queue.queue;
1215         md->disk->driverfs_dev = parent;
1216         set_disk_ro(md->disk, md->read_only || default_ro);
1217         md->disk->flags = GENHD_FL_EXT_DEVT;
1218
1219         /*
1220          * As discussed on lkml, GENHD_FL_REMOVABLE should:
1221          *
1222          * - be set for removable media with permanent block devices
1223          * - be unset for removable block devices with permanent media
1224          *
1225          * Since MMC block devices clearly fall under the second
1226          * case, we do not set GENHD_FL_REMOVABLE.  Userspace
1227          * should use the block device creation/destruction hotplug
1228          * messages to tell when the card is present.
1229          */
1230
1231         snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1232                  "mmcblk%d%s", md->name_idx, subname ? subname : "");
1233
1234         blk_queue_logical_block_size(md->queue.queue, 512);
1235         set_capacity(md->disk, size);
1236
1237         if (mmc_host_cmd23(card->host)) {
1238                 if (mmc_card_mmc(card) ||
1239                     (mmc_card_sd(card) &&
1240                      card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1241                         md->flags |= MMC_BLK_CMD23;
1242         }
1243
1244         if (mmc_card_mmc(card) &&
1245             md->flags & MMC_BLK_CMD23 &&
1246             ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1247              card->ext_csd.rel_sectors)) {
1248                 md->flags |= MMC_BLK_REL_WR;
1249                 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1250         }
1251
1252         return md;
1253
1254  err_putdisk:
1255         put_disk(md->disk);
1256  err_kfree:
1257         kfree(md);
1258  out:
1259         return ERR_PTR(ret);
1260 }
1261
1262 static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1263 {
1264         sector_t size;
1265         struct mmc_blk_data *md;
1266
1267         if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1268                 /*
1269                  * The EXT_CSD sector count is in number or 512 byte
1270                  * sectors.
1271                  */
1272                 size = card->ext_csd.sectors;
1273         } else {
1274                 /*
1275                  * The CSD capacity field is in units of read_blkbits.
1276                  * set_capacity takes units of 512 bytes.
1277                  */
1278                 size = card->csd.capacity << (card->csd.read_blkbits - 9);
1279         }
1280
1281         md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL);
1282         return md;
1283 }
1284
1285 static int mmc_blk_alloc_part(struct mmc_card *card,
1286                               struct mmc_blk_data *md,
1287                               unsigned int part_type,
1288                               sector_t size,
1289                               bool default_ro,
1290                               const char *subname)
1291 {
1292         char cap_str[10];
1293         struct mmc_blk_data *part_md;
1294
1295         part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
1296                                     subname);
1297         if (IS_ERR(part_md))
1298                 return PTR_ERR(part_md);
1299         part_md->part_type = part_type;
1300         list_add(&part_md->part, &md->part);
1301
1302         string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1303                         cap_str, sizeof(cap_str));
1304         printk(KERN_INFO "%s: %s %s partition %u %s\n",
1305                part_md->disk->disk_name, mmc_card_id(card),
1306                mmc_card_name(card), part_md->part_type, cap_str);
1307         return 0;
1308 }
1309
1310 static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1311 {
1312         int ret = 0;
1313
1314         if (!mmc_card_mmc(card))
1315                 return 0;
1316
1317         if (card->ext_csd.boot_size) {
1318                 ret = mmc_blk_alloc_part(card, md, EXT_CSD_PART_CONFIG_ACC_BOOT0,
1319                                          card->ext_csd.boot_size >> 9,
1320                                          true,
1321                                          "boot0");
1322                 if (ret)
1323                         return ret;
1324                 ret = mmc_blk_alloc_part(card, md, EXT_CSD_PART_CONFIG_ACC_BOOT1,
1325                                          card->ext_csd.boot_size >> 9,
1326                                          true,
1327                                          "boot1");
1328                 if (ret)
1329                         return ret;
1330         }
1331
1332         return ret;
1333 }
1334
1335 static int
1336 mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
1337 {
1338         int err;
1339
1340         mmc_claim_host(card->host);
1341         err = mmc_set_blocklen(card, 512);
1342         mmc_release_host(card->host);
1343
1344         if (err) {
1345                 printk(KERN_ERR "%s: unable to set block size to 512: %d\n",
1346                         md->disk->disk_name, err);
1347                 return -EINVAL;
1348         }
1349
1350         return 0;
1351 }
1352
1353 static void mmc_blk_remove_req(struct mmc_blk_data *md)
1354 {
1355         if (md) {
1356                 if (md->disk->flags & GENHD_FL_UP) {
1357                         device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1358
1359                         /* Stop new requests from getting into the queue */
1360                         del_gendisk(md->disk);
1361                 }
1362
1363                 /* Then flush out any already in there */
1364                 mmc_cleanup_queue(&md->queue);
1365                 mmc_blk_put(md);
1366         }
1367 }
1368
1369 static void mmc_blk_remove_parts(struct mmc_card *card,
1370                                  struct mmc_blk_data *md)
1371 {
1372         struct list_head *pos, *q;
1373         struct mmc_blk_data *part_md;
1374
1375         __clear_bit(md->name_idx, name_use);
1376         list_for_each_safe(pos, q, &md->part) {
1377                 part_md = list_entry(pos, struct mmc_blk_data, part);
1378                 list_del(pos);
1379                 mmc_blk_remove_req(part_md);
1380         }
1381 }
1382
1383 static int mmc_add_disk(struct mmc_blk_data *md)
1384 {
1385         int ret;
1386
1387         add_disk(md->disk);
1388         md->force_ro.show = force_ro_show;
1389         md->force_ro.store = force_ro_store;
1390         sysfs_attr_init(&md->force_ro.attr);
1391         md->force_ro.attr.name = "force_ro";
1392         md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1393         ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1394         if (ret)
1395                 del_gendisk(md->disk);
1396
1397         return ret;
1398 }
1399
1400 static const struct mmc_fixup blk_fixups[] =
1401 {
1402         MMC_FIXUP("SEM02G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1403         MMC_FIXUP("SEM04G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1404         MMC_FIXUP("SEM08G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1405         MMC_FIXUP("SEM16G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1406         MMC_FIXUP("SEM32G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1407
1408         /*
1409          * Some MMC cards experience performance degradation with CMD23
1410          * instead of CMD12-bounded multiblock transfers. For now we'll
1411          * black list what's bad...
1412          * - Certain Toshiba cards.
1413          *
1414          * N.B. This doesn't affect SD cards.
1415          */
1416         MMC_FIXUP("MMC08G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1417                   MMC_QUIRK_BLK_NO_CMD23),
1418         MMC_FIXUP("MMC16G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1419                   MMC_QUIRK_BLK_NO_CMD23),
1420         MMC_FIXUP("MMC32G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1421                   MMC_QUIRK_BLK_NO_CMD23),
1422         END_FIXUP
1423 };
1424
1425 static int mmc_blk_probe(struct mmc_card *card)
1426 {
1427         struct mmc_blk_data *md, *part_md;
1428         int err;
1429         char cap_str[10];
1430
1431         /*
1432          * Check that the card supports the command class(es) we need.
1433          */
1434         if (!(card->csd.cmdclass & CCC_BLOCK_READ))
1435                 return -ENODEV;
1436
1437         md = mmc_blk_alloc(card);
1438         if (IS_ERR(md))
1439                 return PTR_ERR(md);
1440
1441         err = mmc_blk_set_blksize(md, card);
1442         if (err)
1443                 goto out;
1444
1445         string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
1446                         cap_str, sizeof(cap_str));
1447         printk(KERN_INFO "%s: %s %s %s %s\n",
1448                 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
1449                 cap_str, md->read_only ? "(ro)" : "");
1450
1451         if (mmc_blk_alloc_parts(card, md))
1452                 goto out;
1453
1454         mmc_set_drvdata(card, md);
1455         mmc_fixup_device(card, blk_fixups);
1456
1457 #ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1458         mmc_set_bus_resume_policy(card->host, 1);
1459 #endif
1460         if (mmc_add_disk(md))
1461                 goto out;
1462
1463         list_for_each_entry(part_md, &md->part, part) {
1464                 if (mmc_add_disk(part_md))
1465                         goto out;
1466         }
1467         return 0;
1468
1469  out:
1470         mmc_blk_remove_parts(card, md);
1471         mmc_blk_remove_req(md);
1472         return err;
1473 }
1474
1475 static void mmc_blk_remove(struct mmc_card *card)
1476 {
1477         struct mmc_blk_data *md = mmc_get_drvdata(card);
1478
1479         mmc_blk_remove_parts(card, md);
1480         mmc_claim_host(card->host);
1481         mmc_blk_part_switch(card, md);
1482         mmc_release_host(card->host);
1483         mmc_blk_remove_req(md);
1484         mmc_set_drvdata(card, NULL);
1485 #ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1486         mmc_set_bus_resume_policy(card->host, 0);
1487 #endif
1488 }
1489
1490 #ifdef CONFIG_PM
1491 static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
1492 {
1493         struct mmc_blk_data *part_md;
1494         struct mmc_blk_data *md = mmc_get_drvdata(card);
1495
1496         if (md) {
1497                 mmc_queue_suspend(&md->queue);
1498                 list_for_each_entry(part_md, &md->part, part) {
1499                         mmc_queue_suspend(&part_md->queue);
1500                 }
1501         }
1502         return 0;
1503 }
1504
1505 static int mmc_blk_resume(struct mmc_card *card)
1506 {
1507         struct mmc_blk_data *part_md;
1508         struct mmc_blk_data *md = mmc_get_drvdata(card);
1509
1510         if (md) {
1511 #ifndef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1512                 mmc_blk_set_blksize(md, card);
1513 #endif
1514
1515                 /*
1516                  * Resume involves the card going into idle state,
1517                  * so current partition is always the main one.
1518                  */
1519                 md->part_curr = md->part_type;
1520                 mmc_queue_resume(&md->queue);
1521                 list_for_each_entry(part_md, &md->part, part) {
1522                         mmc_queue_resume(&part_md->queue);
1523                 }
1524         }
1525         return 0;
1526 }
1527 #else
1528 #define mmc_blk_suspend NULL
1529 #define mmc_blk_resume  NULL
1530 #endif
1531
1532 static struct mmc_driver mmc_driver = {
1533         .drv            = {
1534                 .name   = "mmcblk",
1535         },
1536         .probe          = mmc_blk_probe,
1537         .remove         = mmc_blk_remove,
1538         .suspend        = mmc_blk_suspend,
1539         .resume         = mmc_blk_resume,
1540 };
1541
1542 static int __init mmc_blk_init(void)
1543 {
1544         int res;
1545
1546         if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1547                 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1548
1549         max_devices = 256 / perdev_minors;
1550
1551         res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1552         if (res)
1553                 goto out;
1554
1555         res = mmc_register_driver(&mmc_driver);
1556         if (res)
1557                 goto out2;
1558
1559         return 0;
1560  out2:
1561         unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
1562  out:
1563         return res;
1564 }
1565
1566 static void __exit mmc_blk_exit(void)
1567 {
1568         mmc_unregister_driver(&mmc_driver);
1569         unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
1570 }
1571
1572 module_init(mmc_blk_init);
1573 module_exit(mmc_blk_exit);
1574
1575 MODULE_LICENSE("GPL");
1576 MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1577