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