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