mmc: atmel-mci: add support for odd clock dividers
[deliverable/linux.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;
387 goto cmd_done;
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);
486 kfree(idata->buf);
487 kfree(idata);
488 return err;
489}
490
491static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
492 unsigned int cmd, unsigned long arg)
493{
494 int ret = -EINVAL;
495 if (cmd == MMC_IOC_CMD)
496 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
497 return ret;
498}
499
500#ifdef CONFIG_COMPAT
501static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
502 unsigned int cmd, unsigned long arg)
503{
504 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
505}
506#endif
507
83d5cde4 508static const struct block_device_operations mmc_bdops = {
a5a1561f
AV
509 .open = mmc_blk_open,
510 .release = mmc_blk_release,
a885c8c4 511 .getgeo = mmc_blk_getgeo,
1da177e4 512 .owner = THIS_MODULE,
cb87ea28
JC
513 .ioctl = mmc_blk_ioctl,
514#ifdef CONFIG_COMPAT
515 .compat_ioctl = mmc_blk_compat_ioctl,
516#endif
1da177e4
LT
517};
518
371a689f
AW
519static inline int mmc_blk_part_switch(struct mmc_card *card,
520 struct mmc_blk_data *md)
521{
522 int ret;
523 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
0d7d85ca 524
371a689f
AW
525 if (main_md->part_curr == md->part_type)
526 return 0;
527
528 if (mmc_card_mmc(card)) {
0d7d85ca
AH
529 u8 part_config = card->ext_csd.part_config;
530
531 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
532 part_config |= md->part_type;
371a689f
AW
533
534 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
0d7d85ca 535 EXT_CSD_PART_CONFIG, part_config,
371a689f
AW
536 card->ext_csd.part_time);
537 if (ret)
538 return ret;
0d7d85ca
AH
539
540 card->ext_csd.part_config = part_config;
67716327 541 }
371a689f
AW
542
543 main_md->part_curr = md->part_type;
544 return 0;
545}
546
ec5a19dd
PO
547static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
548{
549 int err;
051913da
BD
550 u32 result;
551 __be32 *blocks;
ec5a19dd 552
ad5fd972 553 struct mmc_request mrq = {NULL};
1278dba1 554 struct mmc_command cmd = {0};
a61ad2b4 555 struct mmc_data data = {0};
ec5a19dd
PO
556 unsigned int timeout_us;
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.timeout_ns = card->csd.tacc_ns * 100;
577 data.timeout_clks = card->csd.tacc_clks * 100;
578
579 timeout_us = data.timeout_ns / 1000;
580 timeout_us += data.timeout_clks * 1000 /
581 (card->host->ios.clock / 1000);
582
583 if (timeout_us > 100000) {
584 data.timeout_ns = 100000000;
585 data.timeout_clks = 0;
586 }
587
588 data.blksz = 4;
589 data.blocks = 1;
590 data.flags = MMC_DATA_READ;
591 data.sg = &sg;
592 data.sg_len = 1;
593
ec5a19dd
PO
594 mrq.cmd = &cmd;
595 mrq.data = &data;
596
051913da
BD
597 blocks = kmalloc(4, GFP_KERNEL);
598 if (!blocks)
599 return (u32)-1;
600
601 sg_init_one(&sg, blocks, 4);
ec5a19dd
PO
602
603 mmc_wait_for_req(card->host, &mrq);
604
051913da
BD
605 result = ntohl(*blocks);
606 kfree(blocks);
607
17b0429d 608 if (cmd.error || data.error)
051913da 609 result = (u32)-1;
ec5a19dd 610
051913da 611 return result;
ec5a19dd
PO
612}
613
a01f3ccf
RKAL
614static int send_stop(struct mmc_card *card, u32 *status)
615{
616 struct mmc_command cmd = {0};
617 int err;
618
619 cmd.opcode = MMC_STOP_TRANSMISSION;
620 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
621 err = mmc_wait_for_cmd(card->host, &cmd, 5);
622 if (err == 0)
623 *status = cmd.resp[0];
624 return err;
625}
626
0a2d4048 627static int get_card_status(struct mmc_card *card, u32 *status, int retries)
504f191f 628{
1278dba1 629 struct mmc_command cmd = {0};
504f191f
AH
630 int err;
631
504f191f
AH
632 cmd.opcode = MMC_SEND_STATUS;
633 if (!mmc_host_is_spi(card->host))
634 cmd.arg = card->rca << 16;
635 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
0a2d4048
RKAL
636 err = mmc_wait_for_cmd(card->host, &cmd, retries);
637 if (err == 0)
638 *status = cmd.resp[0];
639 return err;
504f191f
AH
640}
641
a8ad82cc 642#define ERR_NOMEDIUM 3
a01f3ccf
RKAL
643#define ERR_RETRY 2
644#define ERR_ABORT 1
645#define ERR_CONTINUE 0
646
647static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
648 bool status_valid, u32 status)
649{
650 switch (error) {
651 case -EILSEQ:
652 /* response crc error, retry the r/w cmd */
653 pr_err("%s: %s sending %s command, card status %#x\n",
654 req->rq_disk->disk_name, "response CRC error",
655 name, status);
656 return ERR_RETRY;
657
658 case -ETIMEDOUT:
659 pr_err("%s: %s sending %s command, card status %#x\n",
660 req->rq_disk->disk_name, "timed out", name, status);
661
662 /* If the status cmd initially failed, retry the r/w cmd */
663 if (!status_valid)
664 return ERR_RETRY;
665
666 /*
667 * If it was a r/w cmd crc error, or illegal command
668 * (eg, issued in wrong state) then retry - we should
669 * have corrected the state problem above.
670 */
671 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
672 return ERR_RETRY;
673
674 /* Otherwise abort the command */
675 return ERR_ABORT;
676
677 default:
678 /* We don't understand the error code the driver gave us */
679 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
680 req->rq_disk->disk_name, error, status);
681 return ERR_ABORT;
682 }
683}
684
685/*
686 * Initial r/w and stop cmd error recovery.
687 * We don't know whether the card received the r/w cmd or not, so try to
688 * restore things back to a sane state. Essentially, we do this as follows:
689 * - Obtain card status. If the first attempt to obtain card status fails,
690 * the status word will reflect the failed status cmd, not the failed
691 * r/w cmd. If we fail to obtain card status, it suggests we can no
692 * longer communicate with the card.
693 * - Check the card state. If the card received the cmd but there was a
694 * transient problem with the response, it might still be in a data transfer
695 * mode. Try to send it a stop command. If this fails, we can't recover.
696 * - If the r/w cmd failed due to a response CRC error, it was probably
697 * transient, so retry the cmd.
698 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
699 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
700 * illegal cmd, retry.
701 * Otherwise we don't understand what happened, so abort.
702 */
703static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
67716327 704 struct mmc_blk_request *brq, int *ecc_err)
a01f3ccf
RKAL
705{
706 bool prev_cmd_status_valid = true;
707 u32 status, stop_status = 0;
708 int err, retry;
709
a8ad82cc
SRT
710 if (mmc_card_removed(card))
711 return ERR_NOMEDIUM;
712
a01f3ccf
RKAL
713 /*
714 * Try to get card status which indicates both the card state
715 * and why there was no response. If the first attempt fails,
716 * we can't be sure the returned status is for the r/w command.
717 */
718 for (retry = 2; retry >= 0; retry--) {
719 err = get_card_status(card, &status, 0);
720 if (!err)
721 break;
722
723 prev_cmd_status_valid = false;
724 pr_err("%s: error %d sending status command, %sing\n",
725 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
726 }
727
728 /* We couldn't get a response from the card. Give up. */
a8ad82cc
SRT
729 if (err) {
730 /* Check if the card is removed */
731 if (mmc_detect_card_removed(card->host))
732 return ERR_NOMEDIUM;
a01f3ccf 733 return ERR_ABORT;
a8ad82cc 734 }
a01f3ccf 735
67716327
AH
736 /* Flag ECC errors */
737 if ((status & R1_CARD_ECC_FAILED) ||
738 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
739 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
740 *ecc_err = 1;
741
a01f3ccf
RKAL
742 /*
743 * Check the current card state. If it is in some data transfer
744 * mode, tell it to stop (and hopefully transition back to TRAN.)
745 */
746 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
747 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
748 err = send_stop(card, &stop_status);
749 if (err)
750 pr_err("%s: error %d sending stop command\n",
751 req->rq_disk->disk_name, err);
752
753 /*
754 * If the stop cmd also timed out, the card is probably
755 * not present, so abort. Other errors are bad news too.
756 */
757 if (err)
758 return ERR_ABORT;
67716327
AH
759 if (stop_status & R1_CARD_ECC_FAILED)
760 *ecc_err = 1;
a01f3ccf
RKAL
761 }
762
763 /* Check for set block count errors */
764 if (brq->sbc.error)
765 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
766 prev_cmd_status_valid, status);
767
768 /* Check for r/w command errors */
769 if (brq->cmd.error)
770 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
771 prev_cmd_status_valid, status);
772
67716327
AH
773 /* Data errors */
774 if (!brq->stop.error)
775 return ERR_CONTINUE;
776
a01f3ccf
RKAL
777 /* Now for stop errors. These aren't fatal to the transfer. */
778 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
779 req->rq_disk->disk_name, brq->stop.error,
780 brq->cmd.resp[0], status);
781
782 /*
783 * Subsitute in our own stop status as this will give the error
784 * state which happened during the execution of the r/w command.
785 */
786 if (stop_status) {
787 brq->stop.resp[0] = stop_status;
788 brq->stop.error = 0;
789 }
790 return ERR_CONTINUE;
791}
792
67716327
AH
793static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
794 int type)
795{
796 int err;
797
798 if (md->reset_done & type)
799 return -EEXIST;
800
801 md->reset_done |= type;
802 err = mmc_hw_reset(host);
803 /* Ensure we switch back to the correct partition */
804 if (err != -EOPNOTSUPP) {
805 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
806 int part_err;
807
808 main_md->part_curr = main_md->part_type;
809 part_err = mmc_blk_part_switch(host->card, md);
810 if (part_err) {
811 /*
812 * We have failed to get back into the correct
813 * partition, so we need to abort the whole request.
814 */
815 return -ENODEV;
816 }
817 }
818 return err;
819}
820
821static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
822{
823 md->reset_done &= ~type;
824}
825
bd788c96
AH
826static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
827{
828 struct mmc_blk_data *md = mq->data;
829 struct mmc_card *card = md->queue.card;
830 unsigned int from, nr, arg;
67716327 831 int err = 0, type = MMC_BLK_DISCARD;
bd788c96 832
bd788c96
AH
833 if (!mmc_can_erase(card)) {
834 err = -EOPNOTSUPP;
835 goto out;
836 }
837
838 from = blk_rq_pos(req);
839 nr = blk_rq_sectors(req);
840
b3bf9153
KP
841 if (mmc_can_discard(card))
842 arg = MMC_DISCARD_ARG;
843 else if (mmc_can_trim(card))
bd788c96
AH
844 arg = MMC_TRIM_ARG;
845 else
846 arg = MMC_ERASE_ARG;
67716327 847retry:
6a7a6b45
AW
848 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
849 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
850 INAND_CMD38_ARG_EXT_CSD,
851 arg == MMC_TRIM_ARG ?
852 INAND_CMD38_ARG_TRIM :
853 INAND_CMD38_ARG_ERASE,
854 0);
855 if (err)
856 goto out;
857 }
bd788c96
AH
858 err = mmc_erase(card, from, nr, arg);
859out:
67716327
AH
860 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
861 goto retry;
862 if (!err)
863 mmc_blk_reset_success(md, type);
bd788c96
AH
864 spin_lock_irq(&md->lock);
865 __blk_end_request(req, err, blk_rq_bytes(req));
866 spin_unlock_irq(&md->lock);
867
bd788c96
AH
868 return err ? 0 : 1;
869}
870
49804548
AH
871static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
872 struct request *req)
873{
874 struct mmc_blk_data *md = mq->data;
875 struct mmc_card *card = md->queue.card;
876 unsigned int from, nr, arg;
67716327 877 int err = 0, type = MMC_BLK_SECDISCARD;
49804548 878
d9ddd629 879 if (!(mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))) {
49804548
AH
880 err = -EOPNOTSUPP;
881 goto out;
882 }
883
d9ddd629
KP
884 /* The sanitize operation is supported at v4.5 only */
885 if (mmc_can_sanitize(card)) {
886 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
887 EXT_CSD_SANITIZE_START, 1, 0);
888 goto out;
889 }
890
49804548
AH
891 from = blk_rq_pos(req);
892 nr = blk_rq_sectors(req);
893
894 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
895 arg = MMC_SECURE_TRIM1_ARG;
896 else
897 arg = MMC_SECURE_ERASE_ARG;
67716327 898retry:
6a7a6b45
AW
899 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
900 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
901 INAND_CMD38_ARG_EXT_CSD,
902 arg == MMC_SECURE_TRIM1_ARG ?
903 INAND_CMD38_ARG_SECTRIM1 :
904 INAND_CMD38_ARG_SECERASE,
905 0);
906 if (err)
907 goto out;
908 }
49804548 909 err = mmc_erase(card, from, nr, arg);
6a7a6b45
AW
910 if (!err && arg == MMC_SECURE_TRIM1_ARG) {
911 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
912 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
913 INAND_CMD38_ARG_EXT_CSD,
914 INAND_CMD38_ARG_SECTRIM2,
915 0);
916 if (err)
917 goto out;
918 }
49804548 919 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
6a7a6b45 920 }
49804548 921out:
67716327
AH
922 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
923 goto retry;
924 if (!err)
925 mmc_blk_reset_success(md, type);
49804548
AH
926 spin_lock_irq(&md->lock);
927 __blk_end_request(req, err, blk_rq_bytes(req));
928 spin_unlock_irq(&md->lock);
929
49804548
AH
930 return err ? 0 : 1;
931}
932
f4c5522b
AW
933static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
934{
935 struct mmc_blk_data *md = mq->data;
881d1c25
SJ
936 struct mmc_card *card = md->queue.card;
937 int ret = 0;
938
939 ret = mmc_flush_cache(card);
940 if (ret)
941 ret = -EIO;
f4c5522b 942
f4c5522b 943 spin_lock_irq(&md->lock);
881d1c25 944 __blk_end_request_all(req, ret);
f4c5522b
AW
945 spin_unlock_irq(&md->lock);
946
881d1c25 947 return ret ? 0 : 1;
f4c5522b
AW
948}
949
950/*
951 * Reformat current write as a reliable write, supporting
952 * both legacy and the enhanced reliable write MMC cards.
953 * In each transfer we'll handle only as much as a single
954 * reliable write can handle, thus finish the request in
955 * partial completions.
956 */
d0c97cfb
AW
957static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
958 struct mmc_card *card,
959 struct request *req)
f4c5522b 960{
f4c5522b
AW
961 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
962 /* Legacy mode imposes restrictions on transfers. */
963 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
964 brq->data.blocks = 1;
965
966 if (brq->data.blocks > card->ext_csd.rel_sectors)
967 brq->data.blocks = card->ext_csd.rel_sectors;
968 else if (brq->data.blocks < card->ext_csd.rel_sectors)
969 brq->data.blocks = 1;
970 }
f4c5522b
AW
971}
972
4c2b8f26
RKAL
973#define CMD_ERRORS \
974 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
975 R1_ADDRESS_ERROR | /* Misaligned address */ \
976 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
977 R1_WP_VIOLATION | /* Tried to write to protected block */ \
978 R1_CC_ERROR | /* Card controller error */ \
979 R1_ERROR) /* General/unknown error */
980
ee8a43a5
PF
981static int mmc_blk_err_check(struct mmc_card *card,
982 struct mmc_async_req *areq)
d78d4a8a 983{
ee8a43a5
PF
984 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
985 mmc_active);
986 struct mmc_blk_request *brq = &mq_mrq->brq;
987 struct request *req = mq_mrq->req;
67716327 988 int ecc_err = 0;
d78d4a8a
PF
989
990 /*
991 * sbc.error indicates a problem with the set block count
992 * command. No data will have been transferred.
993 *
994 * cmd.error indicates a problem with the r/w command. No
995 * data will have been transferred.
996 *
997 * stop.error indicates a problem with the stop command. Data
998 * may have been transferred, or may still be transferring.
999 */
67716327
AH
1000 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
1001 brq->data.error) {
1002 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err)) {
d78d4a8a
PF
1003 case ERR_RETRY:
1004 return MMC_BLK_RETRY;
1005 case ERR_ABORT:
1006 return MMC_BLK_ABORT;
a8ad82cc
SRT
1007 case ERR_NOMEDIUM:
1008 return MMC_BLK_NOMEDIUM;
d78d4a8a
PF
1009 case ERR_CONTINUE:
1010 break;
1011 }
1012 }
1013
1014 /*
1015 * Check for errors relating to the execution of the
1016 * initial command - such as address errors. No data
1017 * has been transferred.
1018 */
1019 if (brq->cmd.resp[0] & CMD_ERRORS) {
1020 pr_err("%s: r/w command failed, status = %#x\n",
1021 req->rq_disk->disk_name, brq->cmd.resp[0]);
1022 return MMC_BLK_ABORT;
1023 }
1024
1025 /*
1026 * Everything else is either success, or a data error of some
1027 * kind. If it was a write, we may have transitioned to
1028 * program mode, which we have to wait for it to complete.
1029 */
1030 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1031 u32 status;
1032 do {
1033 int err = get_card_status(card, &status, 5);
1034 if (err) {
a3c76eb9 1035 pr_err("%s: error %d requesting status\n",
d78d4a8a
PF
1036 req->rq_disk->disk_name, err);
1037 return MMC_BLK_CMD_ERR;
1038 }
1039 /*
1040 * Some cards mishandle the status bits,
1041 * so make sure to check both the busy
1042 * indication and the card state.
1043 */
1044 } while (!(status & R1_READY_FOR_DATA) ||
1045 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1046 }
1047
1048 if (brq->data.error) {
1049 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1050 req->rq_disk->disk_name, brq->data.error,
1051 (unsigned)blk_rq_pos(req),
1052 (unsigned)blk_rq_sectors(req),
1053 brq->cmd.resp[0], brq->stop.resp[0]);
1054
1055 if (rq_data_dir(req) == READ) {
67716327
AH
1056 if (ecc_err)
1057 return MMC_BLK_ECC_ERR;
d78d4a8a
PF
1058 return MMC_BLK_DATA_ERR;
1059 } else {
1060 return MMC_BLK_CMD_ERR;
1061 }
1062 }
1063
67716327
AH
1064 if (!brq->data.bytes_xfered)
1065 return MMC_BLK_RETRY;
d78d4a8a 1066
67716327
AH
1067 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1068 return MMC_BLK_PARTIAL;
1069
1070 return MMC_BLK_SUCCESS;
d78d4a8a
PF
1071}
1072
54d49d77
PF
1073static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1074 struct mmc_card *card,
1075 int disable_multi,
1076 struct mmc_queue *mq)
1da177e4 1077{
54d49d77
PF
1078 u32 readcmd, writecmd;
1079 struct mmc_blk_request *brq = &mqrq->brq;
1080 struct request *req = mqrq->req;
1da177e4 1081 struct mmc_blk_data *md = mq->data;
4265900e 1082 bool do_data_tag;
1da177e4 1083
f4c5522b
AW
1084 /*
1085 * Reliable writes are used to implement Forced Unit Access and
1086 * REQ_META accesses, and are supported only on MMCs.
65299a3b
CH
1087 *
1088 * XXX: this really needs a good explanation of why REQ_META
1089 * is treated special.
f4c5522b
AW
1090 */
1091 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1092 (req->cmd_flags & REQ_META)) &&
1093 (rq_data_dir(req) == WRITE) &&
d0c97cfb 1094 (md->flags & MMC_BLK_REL_WR);
f4c5522b 1095
54d49d77
PF
1096 memset(brq, 0, sizeof(struct mmc_blk_request));
1097 brq->mrq.cmd = &brq->cmd;
1098 brq->mrq.data = &brq->data;
1da177e4 1099
54d49d77
PF
1100 brq->cmd.arg = blk_rq_pos(req);
1101 if (!mmc_card_blockaddr(card))
1102 brq->cmd.arg <<= 9;
1103 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1104 brq->data.blksz = 512;
1105 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1106 brq->stop.arg = 0;
1107 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1108 brq->data.blocks = blk_rq_sectors(req);
6a79e391 1109
54d49d77
PF
1110 /*
1111 * The block layer doesn't support all sector count
1112 * restrictions, so we need to be prepared for too big
1113 * requests.
1114 */
1115 if (brq->data.blocks > card->host->max_blk_count)
1116 brq->data.blocks = card->host->max_blk_count;
1da177e4 1117
2bf22b39
PW
1118 if (brq->data.blocks > 1) {
1119 /*
1120 * After a read error, we redo the request one sector
1121 * at a time in order to accurately determine which
1122 * sectors can be read successfully.
1123 */
1124 if (disable_multi)
1125 brq->data.blocks = 1;
1126
1127 /* Some controllers can't do multiblock reads due to hw bugs */
1128 if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1129 rq_data_dir(req) == READ)
1130 brq->data.blocks = 1;
1131 }
d0c97cfb 1132
54d49d77
PF
1133 if (brq->data.blocks > 1 || do_rel_wr) {
1134 /* SPI multiblock writes terminate using a special
1135 * token, not a STOP_TRANSMISSION request.
d0c97cfb 1136 */
54d49d77
PF
1137 if (!mmc_host_is_spi(card->host) ||
1138 rq_data_dir(req) == READ)
1139 brq->mrq.stop = &brq->stop;
1140 readcmd = MMC_READ_MULTIPLE_BLOCK;
1141 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1142 } else {
1143 brq->mrq.stop = NULL;
1144 readcmd = MMC_READ_SINGLE_BLOCK;
1145 writecmd = MMC_WRITE_BLOCK;
1146 }
1147 if (rq_data_dir(req) == READ) {
1148 brq->cmd.opcode = readcmd;
1149 brq->data.flags |= MMC_DATA_READ;
1150 } else {
1151 brq->cmd.opcode = writecmd;
1152 brq->data.flags |= MMC_DATA_WRITE;
1153 }
d0c97cfb 1154
54d49d77
PF
1155 if (do_rel_wr)
1156 mmc_apply_rel_rw(brq, card, req);
f4c5522b 1157
4265900e
SD
1158 /*
1159 * Data tag is used only during writing meta data to speed
1160 * up write and any subsequent read of this meta data
1161 */
1162 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1163 (req->cmd_flags & REQ_META) &&
1164 (rq_data_dir(req) == WRITE) &&
1165 ((brq->data.blocks * brq->data.blksz) >=
1166 card->ext_csd.data_tag_unit_size);
1167
54d49d77
PF
1168 /*
1169 * Pre-defined multi-block transfers are preferable to
1170 * open ended-ones (and necessary for reliable writes).
1171 * However, it is not sufficient to just send CMD23,
1172 * and avoid the final CMD12, as on an error condition
1173 * CMD12 (stop) needs to be sent anyway. This, coupled
1174 * with Auto-CMD23 enhancements provided by some
1175 * hosts, means that the complexity of dealing
1176 * with this is best left to the host. If CMD23 is
1177 * supported by card and host, we'll fill sbc in and let
1178 * the host deal with handling it correctly. This means
1179 * that for hosts that don't expose MMC_CAP_CMD23, no
1180 * change of behavior will be observed.
1181 *
1182 * N.B: Some MMC cards experience perf degradation.
1183 * We'll avoid using CMD23-bounded multiblock writes for
1184 * these, while retaining features like reliable writes.
1185 */
4265900e
SD
1186 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1187 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1188 do_data_tag)) {
54d49d77
PF
1189 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1190 brq->sbc.arg = brq->data.blocks |
4265900e
SD
1191 (do_rel_wr ? (1 << 31) : 0) |
1192 (do_data_tag ? (1 << 29) : 0);
54d49d77
PF
1193 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1194 brq->mrq.sbc = &brq->sbc;
1195 }
98ccf149 1196
54d49d77
PF
1197 mmc_set_data_timeout(&brq->data, card);
1198
1199 brq->data.sg = mqrq->sg;
1200 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1201
1202 /*
1203 * Adjust the sg list so it is the same size as the
1204 * request.
1205 */
1206 if (brq->data.blocks != blk_rq_sectors(req)) {
1207 int i, data_size = brq->data.blocks << 9;
1208 struct scatterlist *sg;
1209
1210 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1211 data_size -= sg->length;
1212 if (data_size <= 0) {
1213 sg->length += data_size;
1214 i++;
1215 break;
6a79e391 1216 }
6a79e391 1217 }
54d49d77
PF
1218 brq->data.sg_len = i;
1219 }
1220
ee8a43a5
PF
1221 mqrq->mmc_active.mrq = &brq->mrq;
1222 mqrq->mmc_active.err_check = mmc_blk_err_check;
1223
54d49d77
PF
1224 mmc_queue_bounce_pre(mqrq);
1225}
6a79e391 1226
67716327
AH
1227static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1228 struct mmc_blk_request *brq, struct request *req,
1229 int ret)
1230{
1231 /*
1232 * If this is an SD card and we're writing, we can first
1233 * mark the known good sectors as ok.
1234 *
1235 * If the card is not SD, we can still ok written sectors
1236 * as reported by the controller (which might be less than
1237 * the real number of written sectors, but never more).
1238 */
1239 if (mmc_card_sd(card)) {
1240 u32 blocks;
1241
1242 blocks = mmc_sd_num_wr_blocks(card);
1243 if (blocks != (u32)-1) {
1244 spin_lock_irq(&md->lock);
1245 ret = __blk_end_request(req, 0, blocks << 9);
1246 spin_unlock_irq(&md->lock);
1247 }
1248 } else {
1249 spin_lock_irq(&md->lock);
1250 ret = __blk_end_request(req, 0, brq->data.bytes_xfered);
1251 spin_unlock_irq(&md->lock);
1252 }
1253 return ret;
1254}
1255
ee8a43a5 1256static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
54d49d77
PF
1257{
1258 struct mmc_blk_data *md = mq->data;
1259 struct mmc_card *card = md->queue.card;
1260 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
67716327 1261 int ret = 1, disable_multi = 0, retry = 0, type;
d78d4a8a 1262 enum mmc_blk_status status;
ee8a43a5
PF
1263 struct mmc_queue_req *mq_rq;
1264 struct request *req;
1265 struct mmc_async_req *areq;
1da177e4 1266
ee8a43a5
PF
1267 if (!rqc && !mq->mqrq_prev->req)
1268 return 0;
98ccf149 1269
ee8a43a5
PF
1270 do {
1271 if (rqc) {
1272 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1273 areq = &mq->mqrq_cur->mmc_active;
1274 } else
1275 areq = NULL;
1276 areq = mmc_start_req(card->host, areq, (int *) &status);
1277 if (!areq)
1278 return 0;
1279
1280 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1281 brq = &mq_rq->brq;
1282 req = mq_rq->req;
67716327 1283 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
ee8a43a5 1284 mmc_queue_bounce_post(mq_rq);
98ccf149 1285
d78d4a8a
PF
1286 switch (status) {
1287 case MMC_BLK_SUCCESS:
1288 case MMC_BLK_PARTIAL:
1289 /*
1290 * A block was successfully transferred.
1291 */
67716327 1292 mmc_blk_reset_success(md, type);
d78d4a8a
PF
1293 spin_lock_irq(&md->lock);
1294 ret = __blk_end_request(req, 0,
1295 brq->data.bytes_xfered);
1296 spin_unlock_irq(&md->lock);
67716327
AH
1297 /*
1298 * If the blk_end_request function returns non-zero even
1299 * though all data has been transferred and no errors
1300 * were returned by the host controller, it's a bug.
1301 */
ee8a43a5 1302 if (status == MMC_BLK_SUCCESS && ret) {
a3c76eb9 1303 pr_err("%s BUG rq_tot %d d_xfer %d\n",
ee8a43a5
PF
1304 __func__, blk_rq_bytes(req),
1305 brq->data.bytes_xfered);
1306 rqc = NULL;
1307 goto cmd_abort;
1308 }
d78d4a8a
PF
1309 break;
1310 case MMC_BLK_CMD_ERR:
67716327
AH
1311 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1312 if (!mmc_blk_reset(md, card->host, type))
1313 break;
1314 goto cmd_abort;
d78d4a8a
PF
1315 case MMC_BLK_RETRY:
1316 if (retry++ < 5)
a01f3ccf 1317 break;
67716327 1318 /* Fall through */
d78d4a8a 1319 case MMC_BLK_ABORT:
67716327
AH
1320 if (!mmc_blk_reset(md, card->host, type))
1321 break;
4c2b8f26 1322 goto cmd_abort;
67716327
AH
1323 case MMC_BLK_DATA_ERR: {
1324 int err;
1325
1326 err = mmc_blk_reset(md, card->host, type);
1327 if (!err)
1328 break;
1329 if (err == -ENODEV)
1330 goto cmd_abort;
1331 /* Fall through */
1332 }
1333 case MMC_BLK_ECC_ERR:
1334 if (brq->data.blocks > 1) {
1335 /* Redo read one sector at a time */
1336 pr_warning("%s: retrying using single block read\n",
1337 req->rq_disk->disk_name);
1338 disable_multi = 1;
1339 break;
1340 }
d78d4a8a
PF
1341 /*
1342 * After an error, we redo I/O one sector at a
1343 * time, so we only reach here after trying to
1344 * read a single sector.
1345 */
1346 spin_lock_irq(&md->lock);
1347 ret = __blk_end_request(req, -EIO,
1348 brq->data.blksz);
1349 spin_unlock_irq(&md->lock);
ee8a43a5
PF
1350 if (!ret)
1351 goto start_new_req;
d78d4a8a 1352 break;
a8ad82cc
SRT
1353 case MMC_BLK_NOMEDIUM:
1354 goto cmd_abort;
4c2b8f26
RKAL
1355 }
1356
ee8a43a5
PF
1357 if (ret) {
1358 /*
67716327 1359 * In case of a incomplete request
ee8a43a5
PF
1360 * prepare it again and resend.
1361 */
1362 mmc_blk_rw_rq_prep(mq_rq, card, disable_multi, mq);
1363 mmc_start_req(card->host, &mq_rq->mmc_active, NULL);
1364 }
1da177e4
LT
1365 } while (ret);
1366
1da177e4
LT
1367 return 1;
1368
a01f3ccf 1369 cmd_abort:
1da177e4 1370 spin_lock_irq(&md->lock);
a8ad82cc
SRT
1371 if (mmc_card_removed(card))
1372 req->cmd_flags |= REQ_QUIET;
fd539832
KU
1373 while (ret)
1374 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
1da177e4
LT
1375 spin_unlock_irq(&md->lock);
1376
ee8a43a5
PF
1377 start_new_req:
1378 if (rqc) {
1379 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1380 mmc_start_req(card->host, &mq->mqrq_cur->mmc_active, NULL);
1381 }
1382
1da177e4
LT
1383 return 0;
1384}
1385
bd788c96
AH
1386static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1387{
1a258db6
AW
1388 int ret;
1389 struct mmc_blk_data *md = mq->data;
1390 struct mmc_card *card = md->queue.card;
1391
ee8a43a5
PF
1392 if (req && !mq->mqrq_prev->req)
1393 /* claim host only for the first request */
1394 mmc_claim_host(card->host);
1395
371a689f
AW
1396 ret = mmc_blk_part_switch(card, md);
1397 if (ret) {
0d7d85ca
AH
1398 if (req) {
1399 spin_lock_irq(&md->lock);
1400 __blk_end_request_all(req, -EIO);
1401 spin_unlock_irq(&md->lock);
1402 }
371a689f
AW
1403 ret = 0;
1404 goto out;
1405 }
1a258db6 1406
ee8a43a5
PF
1407 if (req && req->cmd_flags & REQ_DISCARD) {
1408 /* complete ongoing async transfer before issuing discard */
1409 if (card->host->areq)
1410 mmc_blk_issue_rw_rq(mq, NULL);
49804548 1411 if (req->cmd_flags & REQ_SECURE)
1a258db6 1412 ret = mmc_blk_issue_secdiscard_rq(mq, req);
49804548 1413 else
1a258db6 1414 ret = mmc_blk_issue_discard_rq(mq, req);
ee8a43a5 1415 } else if (req && req->cmd_flags & REQ_FLUSH) {
393f9a08
JC
1416 /* complete ongoing async transfer before issuing flush */
1417 if (card->host->areq)
1418 mmc_blk_issue_rw_rq(mq, NULL);
1a258db6 1419 ret = mmc_blk_issue_flush(mq, req);
49804548 1420 } else {
1a258db6 1421 ret = mmc_blk_issue_rw_rq(mq, req);
49804548 1422 }
1a258db6 1423
371a689f 1424out:
ee8a43a5
PF
1425 if (!req)
1426 /* release host only when there are no more requests */
1427 mmc_release_host(card->host);
1a258db6 1428 return ret;
bd788c96 1429}
1da177e4 1430
a6f6c96b
RK
1431static inline int mmc_blk_readonly(struct mmc_card *card)
1432{
1433 return mmc_card_readonly(card) ||
1434 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1435}
1436
371a689f
AW
1437static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1438 struct device *parent,
1439 sector_t size,
1440 bool default_ro,
add710ea
JR
1441 const char *subname,
1442 int area_type)
1da177e4
LT
1443{
1444 struct mmc_blk_data *md;
1445 int devidx, ret;
1446
5e71b7a6
OJ
1447 devidx = find_first_zero_bit(dev_use, max_devices);
1448 if (devidx >= max_devices)
1da177e4
LT
1449 return ERR_PTR(-ENOSPC);
1450 __set_bit(devidx, dev_use);
1451
dd00cc48 1452 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
a6f6c96b
RK
1453 if (!md) {
1454 ret = -ENOMEM;
1455 goto out;
1456 }
1da177e4 1457
f06c9153
AW
1458 /*
1459 * !subname implies we are creating main mmc_blk_data that will be
1460 * associated with mmc_card with mmc_set_drvdata. Due to device
1461 * partitions, devidx will not coincide with a per-physical card
1462 * index anymore so we keep track of a name index.
1463 */
1464 if (!subname) {
1465 md->name_idx = find_first_zero_bit(name_use, max_devices);
1466 __set_bit(md->name_idx, name_use);
add710ea 1467 } else
f06c9153
AW
1468 md->name_idx = ((struct mmc_blk_data *)
1469 dev_to_disk(parent)->private_data)->name_idx;
1470
add710ea
JR
1471 md->area_type = area_type;
1472
a6f6c96b
RK
1473 /*
1474 * Set the read-only status based on the supported commands
1475 * and the write protect switch.
1476 */
1477 md->read_only = mmc_blk_readonly(card);
1da177e4 1478
5e71b7a6 1479 md->disk = alloc_disk(perdev_minors);
a6f6c96b
RK
1480 if (md->disk == NULL) {
1481 ret = -ENOMEM;
1482 goto err_kfree;
1483 }
1da177e4 1484
a6f6c96b 1485 spin_lock_init(&md->lock);
371a689f 1486 INIT_LIST_HEAD(&md->part);
a6f6c96b 1487 md->usage = 1;
1da177e4 1488
d09408ad 1489 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
a6f6c96b
RK
1490 if (ret)
1491 goto err_putdisk;
1da177e4 1492
a6f6c96b
RK
1493 md->queue.issue_fn = mmc_blk_issue_rq;
1494 md->queue.data = md;
d2b18394 1495
fe6b4c88 1496 md->disk->major = MMC_BLOCK_MAJOR;
5e71b7a6 1497 md->disk->first_minor = devidx * perdev_minors;
a6f6c96b
RK
1498 md->disk->fops = &mmc_bdops;
1499 md->disk->private_data = md;
1500 md->disk->queue = md->queue.queue;
371a689f
AW
1501 md->disk->driverfs_dev = parent;
1502 set_disk_ro(md->disk, md->read_only || default_ro);
a6f6c96b
RK
1503
1504 /*
1505 * As discussed on lkml, GENHD_FL_REMOVABLE should:
1506 *
1507 * - be set for removable media with permanent block devices
1508 * - be unset for removable block devices with permanent media
1509 *
1510 * Since MMC block devices clearly fall under the second
1511 * case, we do not set GENHD_FL_REMOVABLE. Userspace
1512 * should use the block device creation/destruction hotplug
1513 * messages to tell when the card is present.
1514 */
1515
f06c9153
AW
1516 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1517 "mmcblk%d%s", md->name_idx, subname ? subname : "");
a6f6c96b 1518
e1defc4f 1519 blk_queue_logical_block_size(md->queue.queue, 512);
371a689f 1520 set_capacity(md->disk, size);
d0c97cfb 1521
f0d89972
AW
1522 if (mmc_host_cmd23(card->host)) {
1523 if (mmc_card_mmc(card) ||
1524 (mmc_card_sd(card) &&
1525 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1526 md->flags |= MMC_BLK_CMD23;
1527 }
d0c97cfb
AW
1528
1529 if (mmc_card_mmc(card) &&
1530 md->flags & MMC_BLK_CMD23 &&
1531 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1532 card->ext_csd.rel_sectors)) {
1533 md->flags |= MMC_BLK_REL_WR;
1534 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1535 }
1536
371a689f
AW
1537 return md;
1538
1539 err_putdisk:
1540 put_disk(md->disk);
1541 err_kfree:
1542 kfree(md);
1543 out:
1544 return ERR_PTR(ret);
1545}
1546
1547static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1548{
1549 sector_t size;
1550 struct mmc_blk_data *md;
a6f6c96b 1551
85a18ad9
PO
1552 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1553 /*
1554 * The EXT_CSD sector count is in number or 512 byte
1555 * sectors.
1556 */
371a689f 1557 size = card->ext_csd.sectors;
85a18ad9
PO
1558 } else {
1559 /*
1560 * The CSD capacity field is in units of read_blkbits.
1561 * set_capacity takes units of 512 bytes.
1562 */
371a689f 1563 size = card->csd.capacity << (card->csd.read_blkbits - 9);
85a18ad9 1564 }
371a689f 1565
add710ea
JR
1566 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
1567 MMC_BLK_DATA_AREA_MAIN);
1da177e4 1568 return md;
371a689f 1569}
a6f6c96b 1570
371a689f
AW
1571static int mmc_blk_alloc_part(struct mmc_card *card,
1572 struct mmc_blk_data *md,
1573 unsigned int part_type,
1574 sector_t size,
1575 bool default_ro,
add710ea
JR
1576 const char *subname,
1577 int area_type)
371a689f
AW
1578{
1579 char cap_str[10];
1580 struct mmc_blk_data *part_md;
1581
1582 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
add710ea 1583 subname, area_type);
371a689f
AW
1584 if (IS_ERR(part_md))
1585 return PTR_ERR(part_md);
1586 part_md->part_type = part_type;
1587 list_add(&part_md->part, &md->part);
1588
1589 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1590 cap_str, sizeof(cap_str));
a3c76eb9 1591 pr_info("%s: %s %s partition %u %s\n",
371a689f
AW
1592 part_md->disk->disk_name, mmc_card_id(card),
1593 mmc_card_name(card), part_md->part_type, cap_str);
1594 return 0;
1595}
1596
e0c368d5
NJ
1597/* MMC Physical partitions consist of two boot partitions and
1598 * up to four general purpose partitions.
1599 * For each partition enabled in EXT_CSD a block device will be allocatedi
1600 * to provide access to the partition.
1601 */
1602
371a689f
AW
1603static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1604{
e0c368d5 1605 int idx, ret = 0;
371a689f
AW
1606
1607 if (!mmc_card_mmc(card))
1608 return 0;
1609
e0c368d5
NJ
1610 for (idx = 0; idx < card->nr_parts; idx++) {
1611 if (card->part[idx].size) {
1612 ret = mmc_blk_alloc_part(card, md,
1613 card->part[idx].part_cfg,
1614 card->part[idx].size >> 9,
1615 card->part[idx].force_ro,
add710ea
JR
1616 card->part[idx].name,
1617 card->part[idx].area_type);
e0c368d5
NJ
1618 if (ret)
1619 return ret;
1620 }
371a689f
AW
1621 }
1622
1623 return ret;
1da177e4
LT
1624}
1625
1626static int
1627mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
1628{
1da177e4
LT
1629 int err;
1630
b855885e 1631 mmc_claim_host(card->host);
0f8d8ea6 1632 err = mmc_set_blocklen(card, 512);
b855885e 1633 mmc_release_host(card->host);
1da177e4
LT
1634
1635 if (err) {
a3c76eb9 1636 pr_err("%s: unable to set block size to 512: %d\n",
0f8d8ea6 1637 md->disk->disk_name, err);
1da177e4
LT
1638 return -EINVAL;
1639 }
1640
1641 return 0;
1642}
1643
371a689f
AW
1644static void mmc_blk_remove_req(struct mmc_blk_data *md)
1645{
add710ea
JR
1646 struct mmc_card *card;
1647
371a689f 1648 if (md) {
add710ea 1649 card = md->queue.card;
371a689f
AW
1650 if (md->disk->flags & GENHD_FL_UP) {
1651 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
add710ea
JR
1652 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1653 card->ext_csd.boot_ro_lockable)
1654 device_remove_file(disk_to_dev(md->disk),
1655 &md->power_ro_lock);
371a689f
AW
1656
1657 /* Stop new requests from getting into the queue */
1658 del_gendisk(md->disk);
1659 }
1660
1661 /* Then flush out any already in there */
1662 mmc_cleanup_queue(&md->queue);
1663 mmc_blk_put(md);
1664 }
1665}
1666
1667static void mmc_blk_remove_parts(struct mmc_card *card,
1668 struct mmc_blk_data *md)
1669{
1670 struct list_head *pos, *q;
1671 struct mmc_blk_data *part_md;
1672
f06c9153 1673 __clear_bit(md->name_idx, name_use);
371a689f
AW
1674 list_for_each_safe(pos, q, &md->part) {
1675 part_md = list_entry(pos, struct mmc_blk_data, part);
1676 list_del(pos);
1677 mmc_blk_remove_req(part_md);
1678 }
1679}
1680
1681static int mmc_add_disk(struct mmc_blk_data *md)
1682{
1683 int ret;
add710ea 1684 struct mmc_card *card = md->queue.card;
371a689f
AW
1685
1686 add_disk(md->disk);
1687 md->force_ro.show = force_ro_show;
1688 md->force_ro.store = force_ro_store;
641c3187 1689 sysfs_attr_init(&md->force_ro.attr);
371a689f
AW
1690 md->force_ro.attr.name = "force_ro";
1691 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1692 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1693 if (ret)
add710ea
JR
1694 goto force_ro_fail;
1695
1696 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1697 card->ext_csd.boot_ro_lockable) {
88187398 1698 umode_t mode;
add710ea
JR
1699
1700 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
1701 mode = S_IRUGO;
1702 else
1703 mode = S_IRUGO | S_IWUSR;
1704
1705 md->power_ro_lock.show = power_ro_lock_show;
1706 md->power_ro_lock.store = power_ro_lock_store;
00d9ac08 1707 sysfs_attr_init(&md->power_ro_lock.attr);
add710ea
JR
1708 md->power_ro_lock.attr.mode = mode;
1709 md->power_ro_lock.attr.name =
1710 "ro_lock_until_next_power_on";
1711 ret = device_create_file(disk_to_dev(md->disk),
1712 &md->power_ro_lock);
1713 if (ret)
1714 goto power_ro_lock_fail;
1715 }
1716 return ret;
1717
1718power_ro_lock_fail:
1719 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1720force_ro_fail:
1721 del_gendisk(md->disk);
371a689f
AW
1722
1723 return ret;
1724}
1725
c59d4473
CB
1726#define CID_MANFID_SANDISK 0x2
1727#define CID_MANFID_TOSHIBA 0x11
1728#define CID_MANFID_MICRON 0x13
1729
6f60c222
AW
1730static const struct mmc_fixup blk_fixups[] =
1731{
c59d4473
CB
1732 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
1733 MMC_QUIRK_INAND_CMD38),
1734 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
1735 MMC_QUIRK_INAND_CMD38),
1736 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
1737 MMC_QUIRK_INAND_CMD38),
1738 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
1739 MMC_QUIRK_INAND_CMD38),
1740 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
1741 MMC_QUIRK_INAND_CMD38),
d0c97cfb
AW
1742
1743 /*
1744 * Some MMC cards experience performance degradation with CMD23
1745 * instead of CMD12-bounded multiblock transfers. For now we'll
1746 * black list what's bad...
1747 * - Certain Toshiba cards.
1748 *
1749 * N.B. This doesn't affect SD cards.
1750 */
c59d4473 1751 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
d0c97cfb 1752 MMC_QUIRK_BLK_NO_CMD23),
c59d4473 1753 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
d0c97cfb 1754 MMC_QUIRK_BLK_NO_CMD23),
c59d4473 1755 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
d0c97cfb 1756 MMC_QUIRK_BLK_NO_CMD23),
6de5fc9c
SNX
1757
1758 /*
1759 * Some Micron MMC cards needs longer data read timeout than
1760 * indicated in CSD.
1761 */
c59d4473 1762 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
6de5fc9c
SNX
1763 MMC_QUIRK_LONG_READ_TIME),
1764
6f60c222
AW
1765 END_FIXUP
1766};
1767
1da177e4
LT
1768static int mmc_blk_probe(struct mmc_card *card)
1769{
371a689f 1770 struct mmc_blk_data *md, *part_md;
1da177e4 1771 int err;
a7bbb573
PO
1772 char cap_str[10];
1773
912490db
PO
1774 /*
1775 * Check that the card supports the command class(es) we need.
1776 */
1777 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
1da177e4
LT
1778 return -ENODEV;
1779
1da177e4
LT
1780 md = mmc_blk_alloc(card);
1781 if (IS_ERR(md))
1782 return PTR_ERR(md);
1783
1784 err = mmc_blk_set_blksize(md, card);
1785 if (err)
1786 goto out;
1787
444122fd 1788 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
a7bbb573 1789 cap_str, sizeof(cap_str));
a3c76eb9 1790 pr_info("%s: %s %s %s %s\n",
1da177e4 1791 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
a7bbb573 1792 cap_str, md->read_only ? "(ro)" : "");
1da177e4 1793
371a689f
AW
1794 if (mmc_blk_alloc_parts(card, md))
1795 goto out;
1796
1da177e4 1797 mmc_set_drvdata(card, md);
6f60c222
AW
1798 mmc_fixup_device(card, blk_fixups);
1799
371a689f
AW
1800 if (mmc_add_disk(md))
1801 goto out;
1802
1803 list_for_each_entry(part_md, &md->part, part) {
1804 if (mmc_add_disk(part_md))
1805 goto out;
1806 }
1da177e4
LT
1807 return 0;
1808
1809 out:
371a689f
AW
1810 mmc_blk_remove_parts(card, md);
1811 mmc_blk_remove_req(md);
1da177e4
LT
1812 return err;
1813}
1814
1815static void mmc_blk_remove(struct mmc_card *card)
1816{
1817 struct mmc_blk_data *md = mmc_get_drvdata(card);
1818
371a689f 1819 mmc_blk_remove_parts(card, md);
ddd6fa7e
AH
1820 mmc_claim_host(card->host);
1821 mmc_blk_part_switch(card, md);
1822 mmc_release_host(card->host);
371a689f 1823 mmc_blk_remove_req(md);
1da177e4
LT
1824 mmc_set_drvdata(card, NULL);
1825}
1826
1827#ifdef CONFIG_PM
1828static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
1829{
371a689f 1830 struct mmc_blk_data *part_md;
1da177e4
LT
1831 struct mmc_blk_data *md = mmc_get_drvdata(card);
1832
1833 if (md) {
1834 mmc_queue_suspend(&md->queue);
371a689f
AW
1835 list_for_each_entry(part_md, &md->part, part) {
1836 mmc_queue_suspend(&part_md->queue);
1837 }
1da177e4
LT
1838 }
1839 return 0;
1840}
1841
1842static int mmc_blk_resume(struct mmc_card *card)
1843{
371a689f 1844 struct mmc_blk_data *part_md;
1da177e4
LT
1845 struct mmc_blk_data *md = mmc_get_drvdata(card);
1846
1847 if (md) {
1848 mmc_blk_set_blksize(md, card);
371a689f
AW
1849
1850 /*
1851 * Resume involves the card going into idle state,
1852 * so current partition is always the main one.
1853 */
1854 md->part_curr = md->part_type;
1da177e4 1855 mmc_queue_resume(&md->queue);
371a689f
AW
1856 list_for_each_entry(part_md, &md->part, part) {
1857 mmc_queue_resume(&part_md->queue);
1858 }
1da177e4
LT
1859 }
1860 return 0;
1861}
1862#else
1863#define mmc_blk_suspend NULL
1864#define mmc_blk_resume NULL
1865#endif
1866
1867static struct mmc_driver mmc_driver = {
1868 .drv = {
1869 .name = "mmcblk",
1870 },
1871 .probe = mmc_blk_probe,
1872 .remove = mmc_blk_remove,
1873 .suspend = mmc_blk_suspend,
1874 .resume = mmc_blk_resume,
1875};
1876
1877static int __init mmc_blk_init(void)
1878{
9d4e98e9 1879 int res;
1da177e4 1880
5e71b7a6
OJ
1881 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1882 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1883
1884 max_devices = 256 / perdev_minors;
1885
fe6b4c88
PO
1886 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1887 if (res)
1da177e4 1888 goto out;
1da177e4 1889
9d4e98e9
AM
1890 res = mmc_register_driver(&mmc_driver);
1891 if (res)
1892 goto out2;
1da177e4 1893
9d4e98e9
AM
1894 return 0;
1895 out2:
1896 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
1da177e4
LT
1897 out:
1898 return res;
1899}
1900
1901static void __exit mmc_blk_exit(void)
1902{
1903 mmc_unregister_driver(&mmc_driver);
fe6b4c88 1904 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
1da177e4
LT
1905}
1906
1907module_init(mmc_blk_init);
1908module_exit(mmc_blk_exit);
1909
1910MODULE_LICENSE("GPL");
1911MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1912
This page took 0.844841 seconds and 5 git commands to generate.