Branch data Line data Source code
1 : : /*
2 : : * Block driver for media (i.e., flash cards)
3 : : *
4 : : * Copyright 2002 Hewlett-Packard Company
5 : : * Copyright 2005-2008 Pierre Ossman
6 : : *
7 : : * Use consistent with the GNU GPL is permitted,
8 : : * provided that this copyright notice is
9 : : * preserved in its entirety in all copies and derived works.
10 : : *
11 : : * HEWLETT-PACKARD COMPANY MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
12 : : * AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
13 : : * FITNESS FOR ANY PARTICULAR PURPOSE.
14 : : *
15 : : * Many thanks to Alessandro Rubini and Jonathan Corbet!
16 : : *
17 : : * Author: Andrew Christian
18 : : * 28 May 2002
19 : : */
20 : : #include <linux/moduleparam.h>
21 : : #include <linux/module.h>
22 : : #include <linux/init.h>
23 : :
24 : : #include <linux/kernel.h>
25 : : #include <linux/fs.h>
26 : : #include <linux/slab.h>
27 : : #include <linux/errno.h>
28 : : #include <linux/hdreg.h>
29 : : #include <linux/kdev_t.h>
30 : : #include <linux/blkdev.h>
31 : : #include <linux/mutex.h>
32 : : #include <linux/scatterlist.h>
33 : : #include <linux/string_helpers.h>
34 : : #include <linux/delay.h>
35 : : #include <linux/capability.h>
36 : : #include <linux/compat.h>
37 : : #include <linux/pm_runtime.h>
38 : :
39 : : #define CREATE_TRACE_POINTS
40 : : #include <trace/events/mmc.h>
41 : :
42 : : #include <linux/mmc/ioctl.h>
43 : : #include <linux/mmc/card.h>
44 : : #include <linux/mmc/host.h>
45 : : #include <linux/mmc/mmc.h>
46 : : #include <linux/mmc/sd.h>
47 : :
48 : : #include <asm/uaccess.h>
49 : :
50 : : #include "queue.h"
51 : :
52 : : MODULE_ALIAS("mmc:block");
53 : : #ifdef MODULE_PARAM_PREFIX
54 : : #undef MODULE_PARAM_PREFIX
55 : : #endif
56 : : #define MODULE_PARAM_PREFIX "mmcblk."
57 : :
58 : : #define INAND_CMD38_ARG_EXT_CSD 113
59 : : #define INAND_CMD38_ARG_ERASE 0x00
60 : : #define INAND_CMD38_ARG_TRIM 0x01
61 : : #define INAND_CMD38_ARG_SECERASE 0x80
62 : : #define INAND_CMD38_ARG_SECTRIM1 0x81
63 : : #define INAND_CMD38_ARG_SECTRIM2 0x88
64 : : #define MMC_BLK_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */
65 : : #define MMC_SANITIZE_REQ_TIMEOUT 240000
66 : : #define MMC_EXTRACT_INDEX_FROM_ARG(x) ((x & 0x00FF0000) >> 16)
67 : :
68 : : #define mmc_req_rel_wr(req) (((req->cmd_flags & REQ_FUA) || \
69 : : (req->cmd_flags & REQ_META)) && \
70 : : (rq_data_dir(req) == WRITE))
71 : : #define PACKED_CMD_VER 0x01
72 : : #define PACKED_CMD_WR 0x02
73 : :
74 : : static DEFINE_MUTEX(block_mutex);
75 : :
76 : : /*
77 : : * The defaults come from config options but can be overriden by module
78 : : * or bootarg options.
79 : : */
80 : : static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
81 : :
82 : : /*
83 : : * We've only got one major, so number of mmcblk devices is
84 : : * limited to 256 / number of minors per device.
85 : : */
86 : : static int max_devices;
87 : :
88 : : /* 256 minors, so at most 256 separate devices */
89 : : static DECLARE_BITMAP(dev_use, 256);
90 : : static DECLARE_BITMAP(name_use, 256);
91 : :
92 : : /*
93 : : * There is one mmc_blk_data per slot.
94 : : */
95 : : struct mmc_blk_data {
96 : : spinlock_t lock;
97 : : struct gendisk *disk;
98 : : struct mmc_queue queue;
99 : : struct list_head part;
100 : :
101 : : unsigned int flags;
102 : : #define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */
103 : : #define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */
104 : : #define MMC_BLK_PACKED_CMD (1 << 2) /* MMC packed command support */
105 : :
106 : : unsigned int usage;
107 : : unsigned int read_only;
108 : : unsigned int part_type;
109 : : unsigned int name_idx;
110 : : unsigned int reset_done;
111 : : #define MMC_BLK_READ BIT(0)
112 : : #define MMC_BLK_WRITE BIT(1)
113 : : #define MMC_BLK_DISCARD BIT(2)
114 : : #define MMC_BLK_SECDISCARD BIT(3)
115 : :
116 : : /*
117 : : * Only set in main mmc_blk_data associated
118 : : * with mmc_card with mmc_set_drvdata, and keeps
119 : : * track of the current selected device partition.
120 : : */
121 : : unsigned int part_curr;
122 : : struct device_attribute force_ro;
123 : : struct device_attribute power_ro_lock;
124 : : int area_type;
125 : : };
126 : :
127 : : static DEFINE_MUTEX(open_lock);
128 : :
129 : : enum {
130 : : MMC_PACKED_NR_IDX = -1,
131 : : MMC_PACKED_NR_ZERO,
132 : : MMC_PACKED_NR_SINGLE,
133 : : };
134 : :
135 : : module_param(perdev_minors, int, 0444);
136 : : MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
137 : :
138 : : static inline int mmc_blk_part_switch(struct mmc_card *card,
139 : : struct mmc_blk_data *md);
140 : : static int get_card_status(struct mmc_card *card, u32 *status, int retries);
141 : :
142 : : static inline void mmc_blk_clear_packed(struct mmc_queue_req *mqrq)
143 : : {
144 : : struct mmc_packed *packed = mqrq->packed;
145 : :
146 [ # # ][ # # ]: 0 : BUG_ON(!packed);
[ # # ][ # # ]
[ # # ]
147 : :
148 : 0 : mqrq->cmd_type = MMC_PACKED_NONE;
149 : 0 : packed->nr_entries = MMC_PACKED_NR_ZERO;
150 : 0 : packed->idx_failure = MMC_PACKED_NR_IDX;
151 : 0 : packed->retries = 0;
152 : 0 : packed->blocks = 0;
153 : : }
154 : :
155 : 0 : static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
156 : : {
157 : : struct mmc_blk_data *md;
158 : :
159 : 0 : mutex_lock(&open_lock);
160 : 0 : md = disk->private_data;
161 [ # # ][ # # ]: 0 : if (md && md->usage == 0)
162 : : md = NULL;
163 [ # # ]: 0 : if (md)
164 : 0 : md->usage++;
165 : 0 : mutex_unlock(&open_lock);
166 : :
167 : 0 : return md;
168 : : }
169 : :
170 : : static inline int mmc_get_devidx(struct gendisk *disk)
171 : : {
172 : 0 : int devidx = disk->first_minor / perdev_minors;
173 : : return devidx;
174 : : }
175 : :
176 : 0 : static void mmc_blk_put(struct mmc_blk_data *md)
177 : : {
178 : 0 : mutex_lock(&open_lock);
179 : 0 : md->usage--;
180 [ # # ]: 0 : if (md->usage == 0) {
181 : 0 : int devidx = mmc_get_devidx(md->disk);
182 : 0 : blk_cleanup_queue(md->queue.queue);
183 : :
184 : : __clear_bit(devidx, dev_use);
185 : :
186 : 0 : put_disk(md->disk);
187 : 0 : kfree(md);
188 : : }
189 : 0 : mutex_unlock(&open_lock);
190 : 0 : }
191 : :
192 : 0 : static ssize_t power_ro_lock_show(struct device *dev,
193 : : struct device_attribute *attr, char *buf)
194 : : {
195 : : int ret;
196 : 0 : struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
197 : 0 : struct mmc_card *card = md->queue.card;
198 : : int locked = 0;
199 : :
200 [ # # ]: 0 : if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
201 : : locked = 2;
202 [ # # ]: 0 : else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
203 : : locked = 1;
204 : :
205 : 0 : ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
206 : :
207 : 0 : return ret;
208 : : }
209 : :
210 : 0 : static ssize_t power_ro_lock_store(struct device *dev,
211 : : struct device_attribute *attr, const char *buf, size_t count)
212 : : {
213 : : int ret;
214 : : struct mmc_blk_data *md, *part_md;
215 : : struct mmc_card *card;
216 : : unsigned long set;
217 : :
218 [ # # ]: 0 : if (kstrtoul(buf, 0, &set))
219 : : return -EINVAL;
220 : :
221 [ # # ]: 0 : if (set != 1)
222 : 0 : return count;
223 : :
224 : 0 : md = mmc_blk_get(dev_to_disk(dev));
225 : 0 : card = md->queue.card;
226 : :
227 : 0 : mmc_get_card(card);
228 : :
229 : 0 : ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
230 : 0 : card->ext_csd.boot_ro_lock |
231 : : EXT_CSD_BOOT_WP_B_PWR_WP_EN,
232 : : card->ext_csd.part_time);
233 [ # # ]: 0 : if (ret)
234 : 0 : pr_err("%s: Locking boot partition ro until next power on failed: %d\n", md->disk->disk_name, ret);
235 : : else
236 : 0 : card->ext_csd.boot_ro_lock |= EXT_CSD_BOOT_WP_B_PWR_WP_EN;
237 : :
238 : 0 : mmc_put_card(card);
239 : :
240 [ # # ]: 0 : if (!ret) {
241 : 0 : pr_info("%s: Locking boot partition ro until next power on\n",
242 : : md->disk->disk_name);
243 : 0 : set_disk_ro(md->disk, 1);
244 : :
245 [ # # ]: 0 : list_for_each_entry(part_md, &md->part, part)
246 [ # # ]: 0 : if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
247 : 0 : pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
248 : 0 : set_disk_ro(part_md->disk, 1);
249 : : }
250 : : }
251 : :
252 : 0 : mmc_blk_put(md);
253 : 0 : return count;
254 : : }
255 : :
256 : 0 : static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
257 : : char *buf)
258 : : {
259 : : int ret;
260 : 0 : struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
261 : :
262 : 0 : ret = snprintf(buf, PAGE_SIZE, "%d",
263 : 0 : get_disk_ro(dev_to_disk(dev)) ^
264 : 0 : md->read_only);
265 : 0 : mmc_blk_put(md);
266 : 0 : return ret;
267 : : }
268 : :
269 : 0 : static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
270 : : const char *buf, size_t count)
271 : : {
272 : : int ret;
273 : : char *end;
274 : 0 : struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
275 : 0 : unsigned long set = simple_strtoul(buf, &end, 0);
276 [ # # ]: 0 : if (end == buf) {
277 : : ret = -EINVAL;
278 : : goto out;
279 : : }
280 : :
281 [ # # ][ # # ]: 0 : set_disk_ro(dev_to_disk(dev), set || md->read_only);
282 : 0 : ret = count;
283 : : out:
284 : 0 : mmc_blk_put(md);
285 : 0 : return ret;
286 : : }
287 : :
288 : 0 : static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
289 : : {
290 : 0 : struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
291 : : int ret = -ENXIO;
292 : :
293 : 0 : mutex_lock(&block_mutex);
294 [ # # ]: 0 : if (md) {
295 [ # # ]: 0 : if (md->usage == 2)
296 : 0 : check_disk_change(bdev);
297 : : ret = 0;
298 : :
299 [ # # ][ # # ]: 0 : if ((mode & FMODE_WRITE) && md->read_only) {
300 : 0 : mmc_blk_put(md);
301 : : ret = -EROFS;
302 : : }
303 : : }
304 : 0 : mutex_unlock(&block_mutex);
305 : :
306 : 0 : return ret;
307 : : }
308 : :
309 : 0 : static void mmc_blk_release(struct gendisk *disk, fmode_t mode)
310 : : {
311 : 0 : struct mmc_blk_data *md = disk->private_data;
312 : :
313 : 0 : mutex_lock(&block_mutex);
314 : 0 : mmc_blk_put(md);
315 : 0 : mutex_unlock(&block_mutex);
316 : 0 : }
317 : :
318 : : static int
319 : 0 : mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
320 : : {
321 : 0 : geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
322 : 0 : geo->heads = 4;
323 : 0 : geo->sectors = 16;
324 : 0 : return 0;
325 : : }
326 : :
327 : : struct mmc_blk_ioc_data {
328 : : struct mmc_ioc_cmd ic;
329 : : unsigned char *buf;
330 : : u64 buf_bytes;
331 : : };
332 : :
333 : 0 : static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
334 : : struct mmc_ioc_cmd __user *user)
335 : : {
336 : : struct mmc_blk_ioc_data *idata;
337 : : int err;
338 : :
339 : : idata = kzalloc(sizeof(*idata), GFP_KERNEL);
340 [ # # ]: 0 : if (!idata) {
341 : : err = -ENOMEM;
342 : : goto out;
343 : : }
344 : :
345 [ # # ]: 0 : if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
346 : : err = -EFAULT;
347 : : goto idata_err;
348 : : }
349 : :
350 : 0 : idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
351 [ # # ]: 0 : if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
352 : : err = -EOVERFLOW;
353 : : goto idata_err;
354 : : }
355 : :
356 [ # # ]: 0 : if (!idata->buf_bytes)
357 : : return idata;
358 : :
359 : 0 : idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
360 [ # # ]: 0 : if (!idata->buf) {
361 : : err = -ENOMEM;
362 : : goto idata_err;
363 : : }
364 : :
365 [ # # ]: 0 : if (copy_from_user(idata->buf, (void __user *)(unsigned long)
366 : 0 : idata->ic.data_ptr, idata->buf_bytes)) {
367 : : err = -EFAULT;
368 : : goto copy_err;
369 : : }
370 : :
371 : : return idata;
372 : :
373 : : copy_err:
374 : 0 : kfree(idata->buf);
375 : : idata_err:
376 : 0 : kfree(idata);
377 : : out:
378 : 0 : return ERR_PTR(err);
379 : : }
380 : :
381 : 0 : static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status,
382 : : u32 retries_max)
383 : : {
384 : : int err;
385 : : u32 retry_count = 0;
386 : :
387 [ # # ]: 0 : if (!status || !retries_max)
388 : : return -EINVAL;
389 : :
390 : : do {
391 : 0 : err = get_card_status(card, status, 5);
392 [ # # ]: 0 : if (err)
393 : : break;
394 : :
395 [ # # ][ # # ]: 0 : if (!R1_STATUS(*status) &&
396 : 0 : (R1_CURRENT_STATE(*status) != R1_STATE_PRG))
397 : : break; /* RPMB programming operation complete */
398 : :
399 : : /*
400 : : * Rechedule to give the MMC device a chance to continue
401 : : * processing the previous command without being polled too
402 : : * frequently.
403 : : */
404 : 0 : usleep_range(1000, 5000);
405 [ # # ]: 0 : } while (++retry_count < retries_max);
406 : :
407 [ # # ]: 0 : if (retry_count == retries_max)
408 : : err = -EPERM;
409 : :
410 : 0 : return err;
411 : : }
412 : :
413 : 0 : static int ioctl_do_sanitize(struct mmc_card *card)
414 : : {
415 : : int err;
416 : :
417 [ # # ][ # # ]: 0 : if (!(mmc_can_sanitize(card) &&
418 : 0 : (card->host->caps2 & MMC_CAP2_SANITIZE))) {
419 : 0 : pr_warn("%s: %s - SANITIZE is not supported\n",
420 : : mmc_hostname(card->host), __func__);
421 : : err = -EOPNOTSUPP;
422 : 0 : goto out;
423 : : }
424 : :
425 : : pr_debug("%s: %s - SANITIZE IN PROGRESS...\n",
426 : : mmc_hostname(card->host), __func__);
427 : :
428 : 0 : err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
429 : : EXT_CSD_SANITIZE_START, 1,
430 : : MMC_SANITIZE_REQ_TIMEOUT);
431 : :
432 [ # # ]: 0 : if (err)
433 : 0 : pr_err("%s: %s - EXT_CSD_SANITIZE_START failed. err=%d\n",
434 : : mmc_hostname(card->host), __func__, err);
435 : :
436 : 0 : pr_debug("%s: %s - SANITIZE COMPLETED\n", mmc_hostname(card->host),
437 : : __func__);
438 : : out:
439 : 0 : return err;
440 : : }
441 : :
442 : 0 : static int mmc_blk_ioctl_cmd(struct block_device *bdev,
443 : : struct mmc_ioc_cmd __user *ic_ptr)
444 : : {
445 : : struct mmc_blk_ioc_data *idata;
446 : : struct mmc_blk_data *md;
447 : : struct mmc_card *card;
448 : 0 : struct mmc_command cmd = {0};
449 : 0 : struct mmc_data data = {0};
450 : 0 : struct mmc_request mrq = {NULL};
451 : : struct scatterlist sg;
452 : : int err;
453 : : int is_rpmb = false;
454 : 0 : u32 status = 0;
455 : :
456 : : /*
457 : : * The caller must have CAP_SYS_RAWIO, and must be calling this on the
458 : : * whole block device, not on a partition. This prevents overspray
459 : : * between sibling partitions.
460 : : */
461 [ # # ][ # # ]: 0 : if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
462 : : return -EPERM;
463 : :
464 : 0 : idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
465 [ # # ]: 0 : if (IS_ERR(idata))
466 : 0 : return PTR_ERR(idata);
467 : :
468 : 0 : md = mmc_blk_get(bdev->bd_disk);
469 [ # # ]: 0 : if (!md) {
470 : : err = -EINVAL;
471 : : goto cmd_err;
472 : : }
473 : :
474 [ # # ]: 0 : if (md->area_type & MMC_BLK_DATA_AREA_RPMB)
475 : : is_rpmb = true;
476 : :
477 : 0 : card = md->queue.card;
478 [ # # ]: 0 : if (IS_ERR(card)) {
479 : : err = PTR_ERR(card);
480 : 0 : goto cmd_done;
481 : : }
482 : :
483 : 0 : cmd.opcode = idata->ic.opcode;
484 : 0 : cmd.arg = idata->ic.arg;
485 : 0 : cmd.flags = idata->ic.flags;
486 : :
487 [ # # ]: 0 : if (idata->buf_bytes) {
488 : 0 : data.sg = &sg;
489 : 0 : data.sg_len = 1;
490 : 0 : data.blksz = idata->ic.blksz;
491 : 0 : data.blocks = idata->ic.blocks;
492 : :
493 : 0 : sg_init_one(data.sg, idata->buf, idata->buf_bytes);
494 : :
495 [ # # ]: 0 : if (idata->ic.write_flag)
496 : 0 : data.flags = MMC_DATA_WRITE;
497 : : else
498 : 0 : data.flags = MMC_DATA_READ;
499 : :
500 : : /* data.flags must already be set before doing this. */
501 : 0 : mmc_set_data_timeout(&data, card);
502 : :
503 : : /* Allow overriding the timeout_ns for empirical tuning. */
504 [ # # ]: 0 : if (idata->ic.data_timeout_ns)
505 : 0 : data.timeout_ns = idata->ic.data_timeout_ns;
506 : :
507 [ # # ]: 0 : if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
508 : : /*
509 : : * Pretend this is a data transfer and rely on the
510 : : * host driver to compute timeout. When all host
511 : : * drivers support cmd.cmd_timeout for R1B, this
512 : : * can be changed to:
513 : : *
514 : : * mrq.data = NULL;
515 : : * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
516 : : */
517 : 0 : data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
518 : : }
519 : :
520 : 0 : mrq.data = &data;
521 : : }
522 : :
523 : 0 : mrq.cmd = &cmd;
524 : :
525 : 0 : mmc_get_card(card);
526 : :
527 : : err = mmc_blk_part_switch(card, md);
528 [ # # ]: 0 : if (err)
529 : : goto cmd_rel_host;
530 : :
531 [ # # ]: 0 : if (idata->ic.is_acmd) {
532 : 0 : err = mmc_app_cmd(card->host, card);
533 [ # # ]: 0 : if (err)
534 : : goto cmd_rel_host;
535 : : }
536 : :
537 [ # # ]: 0 : if (is_rpmb) {
538 : 0 : err = mmc_set_blockcount(card, data.blocks,
539 : 0 : idata->ic.write_flag & (1 << 31));
540 [ # # ]: 0 : if (err)
541 : : goto cmd_rel_host;
542 : : }
543 : :
544 [ # # ][ # # ]: 0 : if ((MMC_EXTRACT_INDEX_FROM_ARG(cmd.arg) == EXT_CSD_SANITIZE_START) &&
545 : 0 : (cmd.opcode == MMC_SWITCH)) {
546 : 0 : err = ioctl_do_sanitize(card);
547 : :
548 [ # # ]: 0 : if (err)
549 : 0 : pr_err("%s: ioctl_do_sanitize() failed. err = %d",
550 : : __func__, err);
551 : :
552 : : goto cmd_rel_host;
553 : : }
554 : :
555 : 0 : mmc_wait_for_req(card->host, &mrq);
556 : :
557 [ # # ]: 0 : if (cmd.error) {
558 : 0 : dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
559 : : __func__, cmd.error);
560 : 0 : err = cmd.error;
561 : 0 : goto cmd_rel_host;
562 : : }
563 [ # # ]: 0 : if (data.error) {
564 : 0 : dev_err(mmc_dev(card->host), "%s: data error %d\n",
565 : : __func__, data.error);
566 : 0 : err = data.error;
567 : 0 : goto cmd_rel_host;
568 : : }
569 : :
570 : : /*
571 : : * According to the SD specs, some commands require a delay after
572 : : * issuing the command.
573 : : */
574 [ # # ]: 0 : if (idata->ic.postsleep_min_us)
575 : 0 : usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
576 : :
577 [ # # ]: 0 : if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
578 : : err = -EFAULT;
579 : : goto cmd_rel_host;
580 : : }
581 : :
582 [ # # ]: 0 : if (!idata->ic.write_flag) {
583 [ # # ]: 0 : if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
584 : 0 : idata->buf, idata->buf_bytes)) {
585 : : err = -EFAULT;
586 : : goto cmd_rel_host;
587 : : }
588 : : }
589 : :
590 [ # # ]: 0 : if (is_rpmb) {
591 : : /*
592 : : * Ensure RPMB command has completed by polling CMD13
593 : : * "Send Status".
594 : : */
595 : 0 : err = ioctl_rpmb_card_status_poll(card, &status, 5);
596 [ # # ]: 0 : if (err)
597 : 0 : dev_err(mmc_dev(card->host),
598 : : "%s: Card Status=0x%08X, error %d\n",
599 : : __func__, status, err);
600 : : }
601 : :
602 : : cmd_rel_host:
603 : 0 : mmc_put_card(card);
604 : :
605 : : cmd_done:
606 : 0 : mmc_blk_put(md);
607 : : cmd_err:
608 : 0 : kfree(idata->buf);
609 : 0 : kfree(idata);
610 : 0 : return err;
611 : : }
612 : :
613 : 0 : static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
614 : : unsigned int cmd, unsigned long arg)
615 : : {
616 : : int ret = -EINVAL;
617 [ # # ]: 0 : if (cmd == MMC_IOC_CMD)
618 : 0 : ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
619 : 0 : return ret;
620 : : }
621 : :
622 : : #ifdef CONFIG_COMPAT
623 : : static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
624 : : unsigned int cmd, unsigned long arg)
625 : : {
626 : : return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
627 : : }
628 : : #endif
629 : :
630 : : static const struct block_device_operations mmc_bdops = {
631 : : .open = mmc_blk_open,
632 : : .release = mmc_blk_release,
633 : : .getgeo = mmc_blk_getgeo,
634 : : .owner = THIS_MODULE,
635 : : .ioctl = mmc_blk_ioctl,
636 : : #ifdef CONFIG_COMPAT
637 : : .compat_ioctl = mmc_blk_compat_ioctl,
638 : : #endif
639 : : };
640 : :
641 : : static inline int mmc_blk_part_switch(struct mmc_card *card,
642 : : struct mmc_blk_data *md)
643 : : {
644 : : int ret;
645 : 0 : struct mmc_blk_data *main_md = mmc_get_drvdata(card);
646 : :
647 [ # # # # : 0 : if (main_md->part_curr == md->part_type)
# # # # ]
648 : : return 0;
649 : :
650 [ # # ][ # # ]: 0 : if (mmc_card_mmc(card)) {
[ # # ][ # # ]
651 : 0 : u8 part_config = card->ext_csd.part_config;
652 : :
653 : 0 : part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
654 : 0 : part_config |= md->part_type;
655 : :
656 : 0 : ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
657 : : EXT_CSD_PART_CONFIG, part_config,
658 : : card->ext_csd.part_time);
659 [ # # # # : 0 : if (ret)
# # # # ]
660 : : return ret;
661 : :
662 : 0 : card->ext_csd.part_config = part_config;
663 : : }
664 : :
665 : 0 : main_md->part_curr = md->part_type;
666 : : return 0;
667 : : }
668 : :
669 : 0 : static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
670 : : {
671 : : int err;
672 : : u32 result;
673 : : __be32 *blocks;
674 : :
675 : 0 : struct mmc_request mrq = {NULL};
676 : 0 : struct mmc_command cmd = {0};
677 : 0 : struct mmc_data data = {0};
678 : :
679 : : struct scatterlist sg;
680 : :
681 : 0 : cmd.opcode = MMC_APP_CMD;
682 : 0 : cmd.arg = card->rca << 16;
683 : 0 : cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
684 : :
685 : 0 : err = mmc_wait_for_cmd(card->host, &cmd, 0);
686 [ # # ]: 0 : if (err)
687 : : return (u32)-1;
688 [ # # ][ # # ]: 0 : if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
689 : : return (u32)-1;
690 : :
691 : 0 : memset(&cmd, 0, sizeof(struct mmc_command));
692 : :
693 : 0 : cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
694 : 0 : cmd.arg = 0;
695 : 0 : cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
696 : :
697 : 0 : data.blksz = 4;
698 : 0 : data.blocks = 1;
699 : 0 : data.flags = MMC_DATA_READ;
700 : 0 : data.sg = &sg;
701 : 0 : data.sg_len = 1;
702 : 0 : mmc_set_data_timeout(&data, card);
703 : :
704 : 0 : mrq.cmd = &cmd;
705 : 0 : mrq.data = &data;
706 : :
707 : : blocks = kmalloc(4, GFP_KERNEL);
708 [ # # ]: 0 : if (!blocks)
709 : : return (u32)-1;
710 : :
711 : 0 : sg_init_one(&sg, blocks, 4);
712 : :
713 : 0 : mmc_wait_for_req(card->host, &mrq);
714 : :
715 [ # # ]: 0 : result = ntohl(*blocks);
716 : 0 : kfree(blocks);
717 : :
718 [ # # ][ # # ]: 0 : if (cmd.error || data.error)
719 : : result = (u32)-1;
720 : :
721 : 0 : return result;
722 : : }
723 : :
724 : 0 : static int send_stop(struct mmc_card *card, u32 *status)
725 : : {
726 : 0 : struct mmc_command cmd = {0};
727 : : int err;
728 : :
729 : 0 : cmd.opcode = MMC_STOP_TRANSMISSION;
730 : 0 : cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
731 : 0 : err = mmc_wait_for_cmd(card->host, &cmd, 5);
732 [ # # ]: 0 : if (err == 0)
733 : 0 : *status = cmd.resp[0];
734 : 0 : return err;
735 : : }
736 : :
737 : 0 : static int get_card_status(struct mmc_card *card, u32 *status, int retries)
738 : : {
739 : 0 : struct mmc_command cmd = {0};
740 : : int err;
741 : :
742 : 0 : cmd.opcode = MMC_SEND_STATUS;
743 [ # # ]: 0 : if (!mmc_host_is_spi(card->host))
744 : 0 : cmd.arg = card->rca << 16;
745 : 0 : cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
746 : 0 : err = mmc_wait_for_cmd(card->host, &cmd, retries);
747 [ # # ]: 0 : if (err == 0)
748 : 0 : *status = cmd.resp[0];
749 : 0 : return err;
750 : : }
751 : :
752 : : #define ERR_NOMEDIUM 3
753 : : #define ERR_RETRY 2
754 : : #define ERR_ABORT 1
755 : : #define ERR_CONTINUE 0
756 : :
757 : 0 : static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
758 : : bool status_valid, u32 status)
759 : : {
760 [ # # # ]: 0 : switch (error) {
761 : : case -EILSEQ:
762 : : /* response crc error, retry the r/w cmd */
763 : 0 : pr_err("%s: %s sending %s command, card status %#x\n",
764 : : req->rq_disk->disk_name, "response CRC error",
765 : : name, status);
766 : : return ERR_RETRY;
767 : :
768 : : case -ETIMEDOUT:
769 : 0 : pr_err("%s: %s sending %s command, card status %#x\n",
770 : : req->rq_disk->disk_name, "timed out", name, status);
771 : :
772 : : /* If the status cmd initially failed, retry the r/w cmd */
773 [ # # ]: 0 : if (!status_valid) {
774 : 0 : pr_err("%s: status not valid, retrying timeout\n", req->rq_disk->disk_name);
775 : : return ERR_RETRY;
776 : : }
777 : : /*
778 : : * If it was a r/w cmd crc error, or illegal command
779 : : * (eg, issued in wrong state) then retry - we should
780 : : * have corrected the state problem above.
781 : : */
782 [ # # ]: 0 : if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND)) {
783 : 0 : pr_err("%s: command error, retrying timeout\n", req->rq_disk->disk_name);
784 : : return ERR_RETRY;
785 : : }
786 : :
787 : : /* Otherwise abort the command */
788 : 0 : pr_err("%s: not retrying timeout\n", req->rq_disk->disk_name);
789 : : return ERR_ABORT;
790 : :
791 : : default:
792 : : /* We don't understand the error code the driver gave us */
793 : 0 : pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
794 : : req->rq_disk->disk_name, error, status);
795 : : return ERR_ABORT;
796 : : }
797 : : }
798 : :
799 : : /*
800 : : * Initial r/w and stop cmd error recovery.
801 : : * We don't know whether the card received the r/w cmd or not, so try to
802 : : * restore things back to a sane state. Essentially, we do this as follows:
803 : : * - Obtain card status. If the first attempt to obtain card status fails,
804 : : * the status word will reflect the failed status cmd, not the failed
805 : : * r/w cmd. If we fail to obtain card status, it suggests we can no
806 : : * longer communicate with the card.
807 : : * - Check the card state. If the card received the cmd but there was a
808 : : * transient problem with the response, it might still be in a data transfer
809 : : * mode. Try to send it a stop command. If this fails, we can't recover.
810 : : * - If the r/w cmd failed due to a response CRC error, it was probably
811 : : * transient, so retry the cmd.
812 : : * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
813 : : * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
814 : : * illegal cmd, retry.
815 : : * Otherwise we don't understand what happened, so abort.
816 : : */
817 : 0 : static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
818 : : struct mmc_blk_request *brq, int *ecc_err, int *gen_err)
819 : : {
820 : : bool prev_cmd_status_valid = true;
821 : 0 : u32 status, stop_status = 0;
822 : : int err, retry;
823 : :
824 [ # # ][ # # ]: 0 : if (mmc_card_removed(card))
825 : : return ERR_NOMEDIUM;
826 : :
827 : : /*
828 : : * Try to get card status which indicates both the card state
829 : : * and why there was no response. If the first attempt fails,
830 : : * we can't be sure the returned status is for the r/w command.
831 : : */
832 [ # # ]: 0 : for (retry = 2; retry >= 0; retry--) {
833 : 0 : err = get_card_status(card, &status, 0);
834 [ # # ]: 0 : if (!err)
835 : : break;
836 : :
837 : : prev_cmd_status_valid = false;
838 [ # # ]: 0 : pr_err("%s: error %d sending status command, %sing\n",
839 : : req->rq_disk->disk_name, err, retry ? "retry" : "abort");
840 : : }
841 : :
842 : : /* We couldn't get a response from the card. Give up. */
843 [ # # ]: 0 : if (err) {
844 : : /* Check if the card is removed */
845 [ # # ]: 0 : if (mmc_detect_card_removed(card->host))
846 : : return ERR_NOMEDIUM;
847 : 0 : return ERR_ABORT;
848 : : }
849 : :
850 : : /* Flag ECC errors */
851 [ # # ][ # # ]: 0 : if ((status & R1_CARD_ECC_FAILED) ||
852 [ # # ]: 0 : (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
853 : 0 : (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
854 : 0 : *ecc_err = 1;
855 : :
856 : : /* Flag General errors */
857 [ # # ][ # # ]: 0 : if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
858 [ # # ][ # # ]: 0 : if ((status & R1_ERROR) ||
859 : 0 : (brq->stop.resp[0] & R1_ERROR)) {
860 : 0 : pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n",
861 : : req->rq_disk->disk_name, __func__,
862 : : brq->stop.resp[0], status);
863 : 0 : *gen_err = 1;
864 : : }
865 : :
866 : : /*
867 : : * Check the current card state. If it is in some data transfer
868 : : * mode, tell it to stop (and hopefully transition back to TRAN.)
869 : : */
870 [ # # ]: 0 : if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
871 : : R1_CURRENT_STATE(status) == R1_STATE_RCV) {
872 : 0 : err = send_stop(card, &stop_status);
873 [ # # ]: 0 : if (err)
874 : 0 : pr_err("%s: error %d sending stop command\n",
875 : : req->rq_disk->disk_name, err);
876 : :
877 : : /*
878 : : * If the stop cmd also timed out, the card is probably
879 : : * not present, so abort. Other errors are bad news too.
880 : : */
881 [ # # ]: 0 : if (err)
882 : : return ERR_ABORT;
883 [ # # ]: 0 : if (stop_status & R1_CARD_ECC_FAILED)
884 : 0 : *ecc_err = 1;
885 [ # # ][ # # ]: 0 : if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
886 [ # # ]: 0 : if (stop_status & R1_ERROR) {
887 : 0 : pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
888 : : req->rq_disk->disk_name, __func__,
889 : : stop_status);
890 : 0 : *gen_err = 1;
891 : : }
892 : : }
893 : :
894 : : /* Check for set block count errors */
895 [ # # ]: 0 : if (brq->sbc.error)
896 : 0 : return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
897 : : prev_cmd_status_valid, status);
898 : :
899 : : /* Check for r/w command errors */
900 [ # # ]: 0 : if (brq->cmd.error)
901 : 0 : return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
902 : : prev_cmd_status_valid, status);
903 : :
904 : : /* Data errors */
905 [ # # ]: 0 : if (!brq->stop.error)
906 : : return ERR_CONTINUE;
907 : :
908 : : /* Now for stop errors. These aren't fatal to the transfer. */
909 : 0 : pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
910 : : req->rq_disk->disk_name, brq->stop.error,
911 : : brq->cmd.resp[0], status);
912 : :
913 : : /*
914 : : * Subsitute in our own stop status as this will give the error
915 : : * state which happened during the execution of the r/w command.
916 : : */
917 [ # # ]: 0 : if (stop_status) {
918 : 0 : brq->stop.resp[0] = stop_status;
919 : 0 : brq->stop.error = 0;
920 : : }
921 : : return ERR_CONTINUE;
922 : : }
923 : :
924 : 0 : static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
925 : : int type)
926 : : {
927 : : int err;
928 : :
929 [ # # ]: 0 : if (md->reset_done & type)
930 : : return -EEXIST;
931 : :
932 : 0 : md->reset_done |= type;
933 : 0 : err = mmc_hw_reset(host);
934 : : /* Ensure we switch back to the correct partition */
935 [ # # ]: 0 : if (err != -EOPNOTSUPP) {
936 : 0 : struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
937 : : int part_err;
938 : :
939 : 0 : main_md->part_curr = main_md->part_type;
940 : 0 : part_err = mmc_blk_part_switch(host->card, md);
941 [ # # ]: 0 : if (part_err) {
942 : : /*
943 : : * We have failed to get back into the correct
944 : : * partition, so we need to abort the whole request.
945 : : */
946 : : return -ENODEV;
947 : : }
948 : : }
949 : 0 : return err;
950 : : }
951 : :
952 : : static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
953 : : {
954 : 0 : md->reset_done &= ~type;
955 : : }
956 : :
957 : 0 : static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
958 : : {
959 : 0 : struct mmc_blk_data *md = mq->data;
960 : 0 : struct mmc_card *card = md->queue.card;
961 : : unsigned int from, nr, arg;
962 : : int err = 0, type = MMC_BLK_DISCARD;
963 : :
964 [ # # ]: 0 : if (!mmc_can_erase(card)) {
965 : : err = -EOPNOTSUPP;
966 : : goto out;
967 : : }
968 : :
969 : 0 : from = blk_rq_pos(req);
970 : : nr = blk_rq_sectors(req);
971 : :
972 [ # # ]: 0 : if (mmc_can_discard(card))
973 : : arg = MMC_DISCARD_ARG;
974 [ # # ]: 0 : else if (mmc_can_trim(card))
975 : : arg = MMC_TRIM_ARG;
976 : : else
977 : : arg = MMC_ERASE_ARG;
978 : : retry:
979 [ # # ]: 0 : if (card->quirks & MMC_QUIRK_INAND_CMD38) {
980 : 0 : err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
981 : : INAND_CMD38_ARG_EXT_CSD,
982 : : arg == MMC_TRIM_ARG ?
983 : : INAND_CMD38_ARG_TRIM :
984 : : INAND_CMD38_ARG_ERASE,
985 : : 0);
986 [ # # ]: 0 : if (err)
987 : : goto out;
988 : : }
989 : 0 : err = mmc_erase(card, from, nr, arg);
990 : : out:
991 [ # # ][ # # ]: 0 : if (err == -EIO && !mmc_blk_reset(md, card->host, type))
992 : : goto retry;
993 [ # # ]: 0 : if (!err)
994 : : mmc_blk_reset_success(md, type);
995 : 0 : blk_end_request(req, err, blk_rq_bytes(req));
996 : :
997 : 0 : return err ? 0 : 1;
998 : : }
999 : :
1000 : 0 : static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
1001 : 0 : struct request *req)
1002 : : {
1003 : 0 : struct mmc_blk_data *md = mq->data;
1004 : 0 : struct mmc_card *card = md->queue.card;
1005 : : unsigned int from, nr, arg;
1006 : : int err = 0, type = MMC_BLK_SECDISCARD;
1007 : :
1008 [ # # ]: 0 : if (!(mmc_can_secure_erase_trim(card))) {
1009 : : err = -EOPNOTSUPP;
1010 : : goto out;
1011 : : }
1012 : :
1013 : 0 : from = blk_rq_pos(req);
1014 : : nr = blk_rq_sectors(req);
1015 : :
1016 [ # # ][ # # ]: 0 : if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
1017 : : arg = MMC_SECURE_TRIM1_ARG;
1018 : : else
1019 : : arg = MMC_SECURE_ERASE_ARG;
1020 : :
1021 : : retry:
1022 [ # # ]: 0 : if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1023 [ # # ]: 0 : err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1024 : : INAND_CMD38_ARG_EXT_CSD,
1025 : : arg == MMC_SECURE_TRIM1_ARG ?
1026 : : INAND_CMD38_ARG_SECTRIM1 :
1027 : : INAND_CMD38_ARG_SECERASE,
1028 : : 0);
1029 [ # # ]: 0 : if (err)
1030 : : goto out_retry;
1031 : : }
1032 : :
1033 : 0 : err = mmc_erase(card, from, nr, arg);
1034 [ # # ]: 0 : if (err == -EIO)
1035 : : goto out_retry;
1036 [ # # ]: 0 : if (err)
1037 : : goto out;
1038 : :
1039 [ # # ]: 0 : if (arg == MMC_SECURE_TRIM1_ARG) {
1040 [ # # ]: 0 : if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1041 : 0 : err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1042 : : INAND_CMD38_ARG_EXT_CSD,
1043 : : INAND_CMD38_ARG_SECTRIM2,
1044 : : 0);
1045 [ # # ]: 0 : if (err)
1046 : : goto out_retry;
1047 : : }
1048 : :
1049 : 0 : err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
1050 [ # # ]: 0 : if (err == -EIO)
1051 : : goto out_retry;
1052 [ # # ]: 0 : if (err)
1053 : : goto out;
1054 : : }
1055 : :
1056 [ # # ]: 0 : if (mmc_can_sanitize(card)) {
1057 : : trace_mmc_blk_erase_start(EXT_CSD_SANITIZE_START, 0, 0);
1058 : 0 : err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1059 : : EXT_CSD_SANITIZE_START, 1, 0);
1060 : : trace_mmc_blk_erase_end(EXT_CSD_SANITIZE_START, 0, 0);
1061 : : }
1062 : :
1063 : : out_retry:
1064 [ # # ][ # # ]: 0 : if (err && !mmc_blk_reset(md, card->host, type))
1065 : : goto retry;
1066 [ # # ]: 0 : if (!err)
1067 : : mmc_blk_reset_success(md, type);
1068 : : out:
1069 : 0 : blk_end_request(req, err, blk_rq_bytes(req));
1070 : :
1071 : 0 : return err ? 0 : 1;
1072 : : }
1073 : :
1074 : 0 : static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
1075 : : {
1076 : 0 : struct mmc_blk_data *md = mq->data;
1077 : 0 : struct mmc_card *card = md->queue.card;
1078 : : int ret = 0;
1079 : :
1080 : 0 : ret = mmc_flush_cache(card);
1081 [ # # ]: 0 : if (ret)
1082 : : ret = -EIO;
1083 : :
1084 : 0 : blk_end_request_all(req, ret);
1085 : :
1086 : 0 : return ret ? 0 : 1;
1087 : : }
1088 : :
1089 : : /*
1090 : : * Reformat current write as a reliable write, supporting
1091 : : * both legacy and the enhanced reliable write MMC cards.
1092 : : * In each transfer we'll handle only as much as a single
1093 : : * reliable write can handle, thus finish the request in
1094 : : * partial completions.
1095 : : */
1096 : : static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
1097 : : struct mmc_card *card,
1098 : : struct request *req)
1099 : : {
1100 [ # # ]: 0 : if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
1101 : : /* Legacy mode imposes restrictions on transfers. */
1102 [ # # ]: 0 : if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
1103 : 0 : brq->data.blocks = 1;
1104 : :
1105 [ # # ]: 0 : if (brq->data.blocks > card->ext_csd.rel_sectors)
1106 : 0 : brq->data.blocks = card->ext_csd.rel_sectors;
1107 [ # # ]: 0 : else if (brq->data.blocks < card->ext_csd.rel_sectors)
1108 : 0 : brq->data.blocks = 1;
1109 : : }
1110 : : }
1111 : :
1112 : : #define CMD_ERRORS \
1113 : : (R1_OUT_OF_RANGE | /* Command argument out of range */ \
1114 : : R1_ADDRESS_ERROR | /* Misaligned address */ \
1115 : : R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1116 : : R1_WP_VIOLATION | /* Tried to write to protected block */ \
1117 : : R1_CC_ERROR | /* Card controller error */ \
1118 : : R1_ERROR) /* General/unknown error */
1119 : :
1120 : 0 : static int mmc_blk_err_check(struct mmc_card *card,
1121 : : struct mmc_async_req *areq)
1122 : : {
1123 : : struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1124 : : mmc_active);
1125 : 0 : struct mmc_blk_request *brq = &mq_mrq->brq;
1126 : 0 : struct request *req = mq_mrq->req;
1127 : 0 : int ecc_err = 0, gen_err = 0;
1128 : :
1129 : : /*
1130 : : * sbc.error indicates a problem with the set block count
1131 : : * command. No data will have been transferred.
1132 : : *
1133 : : * cmd.error indicates a problem with the r/w command. No
1134 : : * data will have been transferred.
1135 : : *
1136 : : * stop.error indicates a problem with the stop command. Data
1137 : : * may have been transferred, or may still be transferring.
1138 : : */
1139 [ # # ][ # # ]: 0 : if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
[ # # ][ # # ]
1140 : 0 : brq->data.error) {
1141 [ # # # # ]: 0 : switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) {
1142 : : case ERR_RETRY:
1143 : : return MMC_BLK_RETRY;
1144 : : case ERR_ABORT:
1145 : 0 : return MMC_BLK_ABORT;
1146 : : case ERR_NOMEDIUM:
1147 : 0 : return MMC_BLK_NOMEDIUM;
1148 : : case ERR_CONTINUE:
1149 : : break;
1150 : : }
1151 : : }
1152 : :
1153 : : /*
1154 : : * Check for errors relating to the execution of the
1155 : : * initial command - such as address errors. No data
1156 : : * has been transferred.
1157 : : */
1158 [ # # ]: 0 : if (brq->cmd.resp[0] & CMD_ERRORS) {
1159 : 0 : pr_err("%s: r/w command failed, status = %#x\n",
1160 : : req->rq_disk->disk_name, brq->cmd.resp[0]);
1161 : 0 : return MMC_BLK_ABORT;
1162 : : }
1163 : :
1164 : : /*
1165 : : * Everything else is either success, or a data error of some
1166 : : * kind. If it was a write, we may have transitioned to
1167 : : * program mode, which we have to wait for it to complete.
1168 : : */
1169 [ # # ][ # # ]: 0 : if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1170 : : u32 status;
1171 : : unsigned long timeout;
1172 : :
1173 : : /* Check stop command response */
1174 [ # # ]: 0 : if (brq->stop.resp[0] & R1_ERROR) {
1175 : 0 : pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
1176 : : req->rq_disk->disk_name, __func__,
1177 : : brq->stop.resp[0]);
1178 : 0 : gen_err = 1;
1179 : : }
1180 : :
1181 : 0 : timeout = jiffies + msecs_to_jiffies(MMC_BLK_TIMEOUT_MS);
1182 : : do {
1183 : 0 : int err = get_card_status(card, &status, 5);
1184 [ # # ]: 0 : if (err) {
1185 : 0 : pr_err("%s: error %d requesting status\n",
1186 : : req->rq_disk->disk_name, err);
1187 : 0 : return MMC_BLK_CMD_ERR;
1188 : : }
1189 : :
1190 [ # # ]: 0 : if (status & R1_ERROR) {
1191 : 0 : pr_err("%s: %s: general error sending status command, card status %#x\n",
1192 : : req->rq_disk->disk_name, __func__,
1193 : : status);
1194 : 0 : gen_err = 1;
1195 : : }
1196 : :
1197 : : /* Timeout if the device never becomes ready for data
1198 : : * and never leaves the program state.
1199 : : */
1200 [ # # ]: 0 : if (time_after(jiffies, timeout)) {
1201 : 0 : pr_err("%s: Card stuck in programming state!"\
1202 : : " %s %s\n", mmc_hostname(card->host),
1203 : : req->rq_disk->disk_name, __func__);
1204 : :
1205 : 0 : return MMC_BLK_CMD_ERR;
1206 : : }
1207 : : /*
1208 : : * Some cards mishandle the status bits,
1209 : : * so make sure to check both the busy
1210 : : * indication and the card state.
1211 : : */
1212 [ # # ]: 0 : } while (!(status & R1_READY_FOR_DATA) ||
1213 [ # # ]: 0 : (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1214 : : }
1215 : :
1216 : : /* if general error occurs, retry the write operation. */
1217 [ # # ]: 0 : if (gen_err) {
1218 : 0 : pr_warn("%s: retrying write for general error\n",
1219 : : req->rq_disk->disk_name);
1220 : 0 : return MMC_BLK_RETRY;
1221 : : }
1222 : :
1223 [ # # ]: 0 : if (brq->data.error) {
1224 : 0 : pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1225 : : req->rq_disk->disk_name, brq->data.error,
1226 : : (unsigned)blk_rq_pos(req),
1227 : : (unsigned)blk_rq_sectors(req),
1228 : : brq->cmd.resp[0], brq->stop.resp[0]);
1229 : :
1230 [ # # ]: 0 : if (rq_data_dir(req) == READ) {
1231 [ # # ]: 0 : if (ecc_err)
1232 : : return MMC_BLK_ECC_ERR;
1233 : 0 : return MMC_BLK_DATA_ERR;
1234 : : } else {
1235 : : return MMC_BLK_CMD_ERR;
1236 : : }
1237 : : }
1238 : :
1239 [ # # ]: 0 : if (!brq->data.bytes_xfered)
1240 : : return MMC_BLK_RETRY;
1241 : :
1242 [ # # ]: 0 : if (mmc_packed_cmd(mq_mrq->cmd_type)) {
1243 [ # # ]: 0 : if (unlikely(brq->data.blocks << 9 != brq->data.bytes_xfered))
1244 : : return MMC_BLK_PARTIAL;
1245 : : else
1246 : 0 : return MMC_BLK_SUCCESS;
1247 : : }
1248 : :
1249 [ # # ]: 0 : if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1250 : : return MMC_BLK_PARTIAL;
1251 : :
1252 : 0 : return MMC_BLK_SUCCESS;
1253 : : }
1254 : :
1255 : 0 : static int mmc_blk_packed_err_check(struct mmc_card *card,
1256 : : struct mmc_async_req *areq)
1257 : : {
1258 : : struct mmc_queue_req *mq_rq = container_of(areq, struct mmc_queue_req,
1259 : : mmc_active);
1260 : 0 : struct request *req = mq_rq->req;
1261 : 0 : struct mmc_packed *packed = mq_rq->packed;
1262 : : int err, check, status;
1263 : : u8 *ext_csd;
1264 : :
1265 [ # # ]: 0 : BUG_ON(!packed);
1266 : :
1267 : 0 : packed->retries--;
1268 : 0 : check = mmc_blk_err_check(card, areq);
1269 : 0 : err = get_card_status(card, &status, 0);
1270 [ # # ]: 0 : if (err) {
1271 : 0 : pr_err("%s: error %d sending status command\n",
1272 : : req->rq_disk->disk_name, err);
1273 : 0 : return MMC_BLK_ABORT;
1274 : : }
1275 : :
1276 [ # # ]: 0 : if (status & R1_EXCEPTION_EVENT) {
1277 : : ext_csd = kzalloc(512, GFP_KERNEL);
1278 [ # # ]: 0 : if (!ext_csd) {
1279 : 0 : pr_err("%s: unable to allocate buffer for ext_csd\n",
1280 : : req->rq_disk->disk_name);
1281 : 0 : return -ENOMEM;
1282 : : }
1283 : :
1284 : 0 : err = mmc_send_ext_csd(card, ext_csd);
1285 [ # # ]: 0 : if (err) {
1286 : 0 : pr_err("%s: error %d sending ext_csd\n",
1287 : : req->rq_disk->disk_name, err);
1288 : : check = MMC_BLK_ABORT;
1289 : 0 : goto free;
1290 : : }
1291 : :
1292 [ # # ]: 0 : if ((ext_csd[EXT_CSD_EXP_EVENTS_STATUS] &
1293 [ # # ]: 0 : EXT_CSD_PACKED_FAILURE) &&
1294 : 0 : (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1295 : : EXT_CSD_PACKED_GENERIC_ERROR)) {
1296 [ # # ]: 0 : if (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1297 : : EXT_CSD_PACKED_INDEXED_ERROR) {
1298 : 0 : packed->idx_failure =
1299 : 0 : ext_csd[EXT_CSD_PACKED_FAILURE_INDEX] - 1;
1300 : : check = MMC_BLK_PARTIAL;
1301 : : }
1302 : 0 : pr_err("%s: packed cmd failed, nr %u, sectors %u, "
1303 : : "failure index: %d\n",
1304 : : req->rq_disk->disk_name, packed->nr_entries,
1305 : : packed->blocks, packed->idx_failure);
1306 : : }
1307 : : free:
1308 : 0 : kfree(ext_csd);
1309 : : }
1310 : :
1311 : 0 : return check;
1312 : : }
1313 : :
1314 : 0 : static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1315 : 0 : struct mmc_card *card,
1316 : : int disable_multi,
1317 : : struct mmc_queue *mq)
1318 : : {
1319 : : u32 readcmd, writecmd;
1320 : 0 : struct mmc_blk_request *brq = &mqrq->brq;
1321 : 0 : struct request *req = mqrq->req;
1322 : 0 : struct mmc_blk_data *md = mq->data;
1323 : : bool do_data_tag;
1324 : :
1325 : : /*
1326 : : * Reliable writes are used to implement Forced Unit Access and
1327 : : * REQ_META accesses, and are supported only on MMCs.
1328 : : *
1329 : : * XXX: this really needs a good explanation of why REQ_META
1330 : : * is treated special.
1331 : : */
1332 [ # # ]: 0 : bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1333 [ # # ]: 0 : (req->cmd_flags & REQ_META)) &&
1334 [ # # ][ # # ]: 0 : (rq_data_dir(req) == WRITE) &&
1335 : 0 : (md->flags & MMC_BLK_REL_WR);
1336 : :
1337 : 0 : memset(brq, 0, sizeof(struct mmc_blk_request));
1338 : 0 : brq->mrq.cmd = &brq->cmd;
1339 : 0 : brq->mrq.data = &brq->data;
1340 : :
1341 : 0 : brq->cmd.arg = blk_rq_pos(req);
1342 [ # # ]: 0 : if (!mmc_card_blockaddr(card))
1343 : 0 : brq->cmd.arg <<= 9;
1344 : 0 : brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1345 : 0 : brq->data.blksz = 512;
1346 : 0 : brq->stop.opcode = MMC_STOP_TRANSMISSION;
1347 : 0 : brq->stop.arg = 0;
1348 : 0 : brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1349 : 0 : brq->data.blocks = blk_rq_sectors(req);
1350 : :
1351 : : /*
1352 : : * The block layer doesn't support all sector count
1353 : : * restrictions, so we need to be prepared for too big
1354 : : * requests.
1355 : : */
1356 [ # # ]: 0 : if (brq->data.blocks > card->host->max_blk_count)
1357 : 0 : brq->data.blocks = card->host->max_blk_count;
1358 : :
1359 [ # # ]: 0 : if (brq->data.blocks > 1) {
1360 : : /*
1361 : : * After a read error, we redo the request one sector
1362 : : * at a time in order to accurately determine which
1363 : : * sectors can be read successfully.
1364 : : */
1365 [ # # ]: 0 : if (disable_multi)
1366 : 0 : brq->data.blocks = 1;
1367 : :
1368 : : /* Some controllers can't do multiblock reads due to hw bugs */
1369 [ # # ][ # # ]: 0 : if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1370 : 0 : rq_data_dir(req) == READ)
1371 : 0 : brq->data.blocks = 1;
1372 : : }
1373 : :
1374 [ # # ][ # # ]: 0 : if (brq->data.blocks > 1 || do_rel_wr) {
1375 : : /* SPI multiblock writes terminate using a special
1376 : : * token, not a STOP_TRANSMISSION request.
1377 : : */
1378 [ # # ][ # # ]: 0 : if (!mmc_host_is_spi(card->host) ||
1379 : 0 : rq_data_dir(req) == READ)
1380 : 0 : brq->mrq.stop = &brq->stop;
1381 : : readcmd = MMC_READ_MULTIPLE_BLOCK;
1382 : : writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1383 : : } else {
1384 : 0 : brq->mrq.stop = NULL;
1385 : : readcmd = MMC_READ_SINGLE_BLOCK;
1386 : : writecmd = MMC_WRITE_BLOCK;
1387 : : }
1388 [ # # ]: 0 : if (rq_data_dir(req) == READ) {
1389 : 0 : brq->cmd.opcode = readcmd;
1390 : 0 : brq->data.flags |= MMC_DATA_READ;
1391 : : } else {
1392 : 0 : brq->cmd.opcode = writecmd;
1393 : 0 : brq->data.flags |= MMC_DATA_WRITE;
1394 : : }
1395 : :
1396 [ # # ]: 0 : if (do_rel_wr)
1397 : : mmc_apply_rel_rw(brq, card, req);
1398 : :
1399 : : /*
1400 : : * Data tag is used only during writing meta data to speed
1401 : : * up write and any subsequent read of this meta data
1402 : : */
1403 [ # # ]: 0 : do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1404 [ # # ]: 0 : (req->cmd_flags & REQ_META) &&
1405 [ # # ][ # # ]: 0 : (rq_data_dir(req) == WRITE) &&
1406 : 0 : ((brq->data.blocks * brq->data.blksz) >=
1407 : : card->ext_csd.data_tag_unit_size);
1408 : :
1409 : : /*
1410 : : * Pre-defined multi-block transfers are preferable to
1411 : : * open ended-ones (and necessary for reliable writes).
1412 : : * However, it is not sufficient to just send CMD23,
1413 : : * and avoid the final CMD12, as on an error condition
1414 : : * CMD12 (stop) needs to be sent anyway. This, coupled
1415 : : * with Auto-CMD23 enhancements provided by some
1416 : : * hosts, means that the complexity of dealing
1417 : : * with this is best left to the host. If CMD23 is
1418 : : * supported by card and host, we'll fill sbc in and let
1419 : : * the host deal with handling it correctly. This means
1420 : : * that for hosts that don't expose MMC_CAP_CMD23, no
1421 : : * change of behavior will be observed.
1422 : : *
1423 : : * N.B: Some MMC cards experience perf degradation.
1424 : : * We'll avoid using CMD23-bounded multiblock writes for
1425 : : * these, while retaining features like reliable writes.
1426 : : */
1427 [ # # ][ # # ]: 0 : if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
[ # # ]
1428 [ # # ][ # # ]: 0 : (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1429 : : do_data_tag)) {
1430 : 0 : brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1431 [ # # ]: 0 : brq->sbc.arg = brq->data.blocks |
1432 [ # # ]: 0 : (do_rel_wr ? (1 << 31) : 0) |
1433 : : (do_data_tag ? (1 << 29) : 0);
1434 : 0 : brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1435 : 0 : brq->mrq.sbc = &brq->sbc;
1436 : : }
1437 : :
1438 : 0 : mmc_set_data_timeout(&brq->data, card);
1439 : :
1440 : 0 : brq->data.sg = mqrq->sg;
1441 : 0 : brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1442 : :
1443 : : /*
1444 : : * Adjust the sg list so it is the same size as the
1445 : : * request.
1446 : : */
1447 [ # # ]: 0 : if (brq->data.blocks != blk_rq_sectors(req)) {
1448 : 0 : int i, data_size = brq->data.blocks << 9;
1449 : : struct scatterlist *sg;
1450 : :
1451 [ # # ]: 0 : for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1452 : 0 : data_size -= sg->length;
1453 [ # # ]: 0 : if (data_size <= 0) {
1454 : 0 : sg->length += data_size;
1455 : 0 : i++;
1456 : 0 : break;
1457 : : }
1458 : : }
1459 : 0 : brq->data.sg_len = i;
1460 : : }
1461 : :
1462 : 0 : mqrq->mmc_active.mrq = &brq->mrq;
1463 : 0 : mqrq->mmc_active.err_check = mmc_blk_err_check;
1464 : :
1465 : 0 : mmc_queue_bounce_pre(mqrq);
1466 : 0 : }
1467 : :
1468 : 0 : static inline u8 mmc_calc_packed_hdr_segs(struct request_queue *q,
1469 : : struct mmc_card *card)
1470 : : {
1471 [ # # ]: 0 : unsigned int hdr_sz = mmc_large_sector(card) ? 4096 : 512;
1472 : : unsigned int max_seg_sz = queue_max_segment_size(q);
1473 : : unsigned int len, nr_segs = 0;
1474 : :
1475 : : do {
1476 : 0 : len = min(hdr_sz, max_seg_sz);
1477 : 0 : hdr_sz -= len;
1478 : 0 : nr_segs++;
1479 [ # # ]: 0 : } while (hdr_sz);
1480 : :
1481 : 0 : return nr_segs;
1482 : : }
1483 : :
1484 : 0 : static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
1485 : : {
1486 : 0 : struct request_queue *q = mq->queue;
1487 : 0 : struct mmc_card *card = mq->card;
1488 : : struct request *cur = req, *next = NULL;
1489 : 0 : struct mmc_blk_data *md = mq->data;
1490 : 0 : struct mmc_queue_req *mqrq = mq->mqrq_cur;
1491 : 0 : bool en_rel_wr = card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN;
1492 : : unsigned int req_sectors = 0, phys_segments = 0;
1493 : : unsigned int max_blk_count, max_phys_segs;
1494 : : bool put_back = true;
1495 : : u8 max_packed_rw = 0;
1496 : : u8 reqs = 0;
1497 : :
1498 [ # # ]: 0 : if (!(md->flags & MMC_BLK_PACKED_CMD))
1499 : : goto no_packed;
1500 : :
1501 [ # # ][ # # ]: 0 : if ((rq_data_dir(cur) == WRITE) &&
1502 : 0 : mmc_host_packed_wr(card->host))
1503 : 0 : max_packed_rw = card->ext_csd.max_packed_writes;
1504 : :
1505 [ # # ]: 0 : if (max_packed_rw == 0)
1506 : : goto no_packed;
1507 : :
1508 [ # # ][ # # ]: 0 : if (mmc_req_rel_wr(cur) &&
[ # # ][ # # ]
1509 [ # # ]: 0 : (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1510 : : goto no_packed;
1511 : :
1512 [ # # ][ # # ]: 0 : if (mmc_large_sector(card) &&
1513 : 0 : !IS_ALIGNED(blk_rq_sectors(cur), 8))
1514 : : goto no_packed;
1515 : :
1516 : : mmc_blk_clear_packed(mqrq);
1517 : :
1518 : 0 : max_blk_count = min(card->host->max_blk_count,
1519 : : card->host->max_req_size >> 9);
1520 [ # # ]: 0 : if (unlikely(max_blk_count > 0xffff))
1521 : : max_blk_count = 0xffff;
1522 : :
1523 : 0 : max_phys_segs = queue_max_segments(q);
1524 : : req_sectors += blk_rq_sectors(cur);
1525 : 0 : phys_segments += cur->nr_phys_segments;
1526 : :
1527 [ # # ]: 0 : if (rq_data_dir(cur) == WRITE) {
1528 [ # # ]: 0 : req_sectors += mmc_large_sector(card) ? 8 : 1;
1529 : 0 : phys_segments += mmc_calc_packed_hdr_segs(q, card);
1530 : : }
1531 : :
1532 : : do {
1533 [ # # ]: 0 : if (reqs >= max_packed_rw - 1) {
1534 : : put_back = false;
1535 : : break;
1536 : : }
1537 : :
1538 : 0 : spin_lock_irq(q->queue_lock);
1539 : 0 : next = blk_fetch_request(q);
1540 : 0 : spin_unlock_irq(q->queue_lock);
1541 [ # # ]: 0 : if (!next) {
1542 : : put_back = false;
1543 : : break;
1544 : : }
1545 : :
1546 [ # # ][ # # ]: 0 : if (mmc_large_sector(card) &&
1547 : 0 : !IS_ALIGNED(blk_rq_sectors(next), 8))
1548 : : break;
1549 : :
1550 [ # # ][ # # ]: 0 : if (next->cmd_flags & REQ_DISCARD ||
1551 : 0 : next->cmd_flags & REQ_FLUSH)
1552 : : break;
1553 : :
1554 [ # # ]: 0 : if (rq_data_dir(cur) != rq_data_dir(next))
1555 : : break;
1556 : :
1557 [ # # ][ # # ]: 0 : if (mmc_req_rel_wr(next) &&
[ # # ][ # # ]
1558 [ # # ]: 0 : (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1559 : : break;
1560 : :
1561 : 0 : req_sectors += blk_rq_sectors(next);
1562 [ # # ]: 0 : if (req_sectors > max_blk_count)
1563 : : break;
1564 : :
1565 : 0 : phys_segments += next->nr_phys_segments;
1566 [ # # ]: 0 : if (phys_segments > max_phys_segs)
1567 : : break;
1568 : :
1569 : 0 : list_add_tail(&next->queuelist, &mqrq->packed->list);
1570 : : cur = next;
1571 : 0 : reqs++;
1572 : 0 : } while (1);
1573 : :
1574 [ # # ]: 0 : if (put_back) {
1575 : 0 : spin_lock_irq(q->queue_lock);
1576 : 0 : blk_requeue_request(q, next);
1577 : 0 : spin_unlock_irq(q->queue_lock);
1578 : : }
1579 : :
1580 [ # # ]: 0 : if (reqs > 0) {
1581 : 0 : list_add(&req->queuelist, &mqrq->packed->list);
1582 : 0 : mqrq->packed->nr_entries = ++reqs;
1583 : 0 : mqrq->packed->retries = reqs;
1584 : 0 : return reqs;
1585 : : }
1586 : :
1587 : : no_packed:
1588 : 0 : mqrq->cmd_type = MMC_PACKED_NONE;
1589 : 0 : return 0;
1590 : : }
1591 : :
1592 : 0 : static void mmc_blk_packed_hdr_wrq_prep(struct mmc_queue_req *mqrq,
1593 : 0 : struct mmc_card *card,
1594 : : struct mmc_queue *mq)
1595 : : {
1596 : 0 : struct mmc_blk_request *brq = &mqrq->brq;
1597 : 0 : struct request *req = mqrq->req;
1598 : 0 : struct request *prq;
1599 : 0 : struct mmc_blk_data *md = mq->data;
1600 : 0 : struct mmc_packed *packed = mqrq->packed;
1601 : : bool do_rel_wr, do_data_tag;
1602 : : u32 *packed_cmd_hdr;
1603 : : u8 hdr_blocks;
1604 : : u8 i = 1;
1605 : :
1606 [ # # ]: 0 : BUG_ON(!packed);
1607 : :
1608 : 0 : mqrq->cmd_type = MMC_PACKED_WRITE;
1609 : 0 : packed->blocks = 0;
1610 : 0 : packed->idx_failure = MMC_PACKED_NR_IDX;
1611 : :
1612 : 0 : packed_cmd_hdr = packed->cmd_hdr;
1613 : 0 : memset(packed_cmd_hdr, 0, sizeof(packed->cmd_hdr));
1614 : 0 : packed_cmd_hdr[0] = (packed->nr_entries << 16) |
1615 : 0 : (PACKED_CMD_WR << 8) | PACKED_CMD_VER;
1616 [ # # ]: 0 : hdr_blocks = mmc_large_sector(card) ? 8 : 1;
1617 : :
1618 : : /*
1619 : : * Argument for each entry of packed group
1620 : : */
1621 [ # # ]: 0 : list_for_each_entry(prq, &packed->list, queuelist) {
1622 [ # # ][ # # ]: 0 : do_rel_wr = mmc_req_rel_wr(prq) && (md->flags & MMC_BLK_REL_WR);
[ # # ][ # # ]
1623 [ # # ]: 0 : do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1624 [ # # ]: 0 : (prq->cmd_flags & REQ_META) &&
1625 [ # # ][ # # ]: 0 : (rq_data_dir(prq) == WRITE) &&
1626 : 0 : ((brq->data.blocks * brq->data.blksz) >=
1627 : : card->ext_csd.data_tag_unit_size);
1628 : : /* Argument of CMD23 */
1629 : 0 : packed_cmd_hdr[(i * 2)] =
1630 [ # # ]: 0 : (do_rel_wr ? MMC_CMD23_ARG_REL_WR : 0) |
1631 [ # # ]: 0 : (do_data_tag ? MMC_CMD23_ARG_TAG_REQ : 0) |
1632 : : blk_rq_sectors(prq);
1633 : : /* Argument of CMD18 or CMD25 */
1634 [ # # ]: 0 : packed_cmd_hdr[((i * 2)) + 1] =
1635 : 0 : mmc_card_blockaddr(card) ?
1636 : : blk_rq_pos(prq) : blk_rq_pos(prq) << 9;
1637 : 0 : packed->blocks += blk_rq_sectors(prq);
1638 : 0 : i++;
1639 : : }
1640 : :
1641 : 0 : memset(brq, 0, sizeof(struct mmc_blk_request));
1642 : 0 : brq->mrq.cmd = &brq->cmd;
1643 : 0 : brq->mrq.data = &brq->data;
1644 : 0 : brq->mrq.sbc = &brq->sbc;
1645 : 0 : brq->mrq.stop = &brq->stop;
1646 : :
1647 : 0 : brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1648 : 0 : brq->sbc.arg = MMC_CMD23_ARG_PACKED | (packed->blocks + hdr_blocks);
1649 : 0 : brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1650 : :
1651 : 0 : brq->cmd.opcode = MMC_WRITE_MULTIPLE_BLOCK;
1652 : 0 : brq->cmd.arg = blk_rq_pos(req);
1653 [ # # ]: 0 : if (!mmc_card_blockaddr(card))
1654 : 0 : brq->cmd.arg <<= 9;
1655 : 0 : brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1656 : :
1657 : 0 : brq->data.blksz = 512;
1658 : 0 : brq->data.blocks = packed->blocks + hdr_blocks;
1659 : 0 : brq->data.flags |= MMC_DATA_WRITE;
1660 : :
1661 : 0 : brq->stop.opcode = MMC_STOP_TRANSMISSION;
1662 : 0 : brq->stop.arg = 0;
1663 : 0 : brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1664 : :
1665 : 0 : mmc_set_data_timeout(&brq->data, card);
1666 : :
1667 : 0 : brq->data.sg = mqrq->sg;
1668 : 0 : brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1669 : :
1670 : 0 : mqrq->mmc_active.mrq = &brq->mrq;
1671 : 0 : mqrq->mmc_active.err_check = mmc_blk_packed_err_check;
1672 : :
1673 : 0 : mmc_queue_bounce_pre(mqrq);
1674 : 0 : }
1675 : :
1676 : 0 : static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1677 : : struct mmc_blk_request *brq, struct request *req,
1678 : : int ret)
1679 : : {
1680 : : struct mmc_queue_req *mq_rq;
1681 : : mq_rq = container_of(brq, struct mmc_queue_req, brq);
1682 : :
1683 : : /*
1684 : : * If this is an SD card and we're writing, we can first
1685 : : * mark the known good sectors as ok.
1686 : : *
1687 : : * If the card is not SD, we can still ok written sectors
1688 : : * as reported by the controller (which might be less than
1689 : : * the real number of written sectors, but never more).
1690 : : */
1691 [ # # ]: 0 : if (mmc_card_sd(card)) {
1692 : : u32 blocks;
1693 : :
1694 : 0 : blocks = mmc_sd_num_wr_blocks(card);
1695 [ # # ]: 0 : if (blocks != (u32)-1) {
1696 : 0 : ret = blk_end_request(req, 0, blocks << 9);
1697 : : }
1698 : : } else {
1699 [ # # ]: 0 : if (!mmc_packed_cmd(mq_rq->cmd_type))
1700 : 0 : ret = blk_end_request(req, 0, brq->data.bytes_xfered);
1701 : : }
1702 : 0 : return ret;
1703 : : }
1704 : :
1705 : 0 : static int mmc_blk_end_packed_req(struct mmc_queue_req *mq_rq)
1706 : : {
1707 : 0 : struct request *prq;
1708 : 0 : struct mmc_packed *packed = mq_rq->packed;
1709 : 0 : int idx = packed->idx_failure, i = 0;
1710 : : int ret = 0;
1711 : :
1712 [ # # ]: 0 : BUG_ON(!packed);
1713 : :
1714 [ # # ]: 0 : while (!list_empty(&packed->list)) {
1715 : : prq = list_entry_rq(packed->list.next);
1716 [ # # ]: 0 : if (idx == i) {
1717 : : /* retry from error index */
1718 : 0 : packed->nr_entries -= idx;
1719 : 0 : mq_rq->req = prq;
1720 : : ret = 1;
1721 : :
1722 [ # # ]: 0 : if (packed->nr_entries == MMC_PACKED_NR_SINGLE) {
1723 : 0 : list_del_init(&prq->queuelist);
1724 : : mmc_blk_clear_packed(mq_rq);
1725 : : }
1726 : : return ret;
1727 : : }
1728 : 0 : list_del_init(&prq->queuelist);
1729 : 0 : blk_end_request(prq, 0, blk_rq_bytes(prq));
1730 : 0 : i++;
1731 : : }
1732 : :
1733 : : mmc_blk_clear_packed(mq_rq);
1734 : 0 : return ret;
1735 : : }
1736 : :
1737 : 0 : static void mmc_blk_abort_packed_req(struct mmc_queue_req *mq_rq)
1738 : : {
1739 : 0 : struct request *prq;
1740 : 0 : struct mmc_packed *packed = mq_rq->packed;
1741 : :
1742 [ # # ]: 0 : BUG_ON(!packed);
1743 : :
1744 [ # # ]: 0 : while (!list_empty(&packed->list)) {
1745 : : prq = list_entry_rq(packed->list.next);
1746 : 0 : list_del_init(&prq->queuelist);
1747 : 0 : blk_end_request(prq, -EIO, blk_rq_bytes(prq));
1748 : : }
1749 : :
1750 : : mmc_blk_clear_packed(mq_rq);
1751 : 0 : }
1752 : :
1753 : 0 : static void mmc_blk_revert_packed_req(struct mmc_queue *mq,
1754 : 0 : struct mmc_queue_req *mq_rq)
1755 : : {
1756 : : struct request *prq;
1757 : 0 : struct request_queue *q = mq->queue;
1758 : 0 : struct mmc_packed *packed = mq_rq->packed;
1759 : :
1760 [ # # ]: 0 : BUG_ON(!packed);
1761 : :
1762 [ # # ]: 0 : while (!list_empty(&packed->list)) {
1763 : 0 : prq = list_entry_rq(packed->list.prev);
1764 [ # # ]: 0 : if (prq->queuelist.prev != &packed->list) {
1765 : 0 : list_del_init(&prq->queuelist);
1766 : 0 : spin_lock_irq(q->queue_lock);
1767 : 0 : blk_requeue_request(mq->queue, prq);
1768 : 0 : spin_unlock_irq(q->queue_lock);
1769 : : } else {
1770 : 0 : list_del_init(&prq->queuelist);
1771 : : }
1772 : : }
1773 : :
1774 : : mmc_blk_clear_packed(mq_rq);
1775 : 0 : }
1776 : :
1777 : 0 : static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
1778 : : {
1779 : 0 : struct mmc_blk_data *md = mq->data;
1780 : 0 : struct mmc_card *card = md->queue.card;
1781 : 0 : struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
1782 : : int ret = 1, disable_multi = 0, retry = 0, type;
1783 : : enum mmc_blk_status status;
1784 : : struct mmc_queue_req *mq_rq;
1785 : 0 : struct request *req = rqc;
1786 : : struct mmc_async_req *areq;
1787 : : const u8 packed_nr = 2;
1788 : : u8 reqs = 0;
1789 : :
1790 [ # # ][ # # ]: 0 : if (!rqc && !mq->mqrq_prev->req)
1791 : : return 0;
1792 : :
1793 [ # # ]: 0 : if (rqc)
1794 : 0 : reqs = mmc_blk_prep_packed_list(mq, rqc);
1795 : :
1796 : : do {
1797 [ # # ]: 0 : if (rqc) {
1798 : : /*
1799 : : * When 4KB native sector is enabled, only 8 blocks
1800 : : * multiple read or write is allowed
1801 : : */
1802 [ # # ][ # # ]: 0 : if ((brq->data.blocks & 0x07) &&
1803 : 0 : (card->ext_csd.data_sector_size == 4096)) {
1804 : 0 : pr_err("%s: Transfer size is not 4KB sector size aligned\n",
1805 : : req->rq_disk->disk_name);
1806 : 0 : mq_rq = mq->mqrq_cur;
1807 : 0 : goto cmd_abort;
1808 : : }
1809 : :
1810 [ # # ]: 0 : if (reqs >= packed_nr)
1811 : 0 : mmc_blk_packed_hdr_wrq_prep(mq->mqrq_cur,
1812 : : card, mq);
1813 : : else
1814 : 0 : mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1815 : 0 : areq = &mq->mqrq_cur->mmc_active;
1816 : : } else
1817 : : areq = NULL;
1818 : 0 : areq = mmc_start_req(card->host, areq, (int *) &status);
1819 [ # # ]: 0 : if (!areq) {
1820 [ # # ]: 0 : if (status == MMC_BLK_NEW_REQUEST)
1821 : 0 : mq->flags |= MMC_QUEUE_NEW_REQUEST;
1822 : : return 0;
1823 : : }
1824 : :
1825 : 0 : mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1826 : 0 : brq = &mq_rq->brq;
1827 : 0 : req = mq_rq->req;
1828 [ # # ]: 0 : type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
1829 : 0 : mmc_queue_bounce_post(mq_rq);
1830 : :
1831 [ # # # # : 0 : switch (status) {
# # # # ]
1832 : : case MMC_BLK_SUCCESS:
1833 : : case MMC_BLK_PARTIAL:
1834 : : /*
1835 : : * A block was successfully transferred.
1836 : : */
1837 : : mmc_blk_reset_success(md, type);
1838 : :
1839 [ # # ]: 0 : if (mmc_packed_cmd(mq_rq->cmd_type)) {
1840 : 0 : ret = mmc_blk_end_packed_req(mq_rq);
1841 : 0 : break;
1842 : : } else {
1843 : 0 : ret = blk_end_request(req, 0,
1844 : : brq->data.bytes_xfered);
1845 : : }
1846 : :
1847 : : /*
1848 : : * If the blk_end_request function returns non-zero even
1849 : : * though all data has been transferred and no errors
1850 : : * were returned by the host controller, it's a bug.
1851 : : */
1852 [ # # ][ # # ]: 0 : if (status == MMC_BLK_SUCCESS && ret) {
1853 : 0 : pr_err("%s BUG rq_tot %d d_xfer %d\n",
1854 : : __func__, blk_rq_bytes(req),
1855 : : brq->data.bytes_xfered);
1856 : : rqc = NULL;
1857 : 0 : goto cmd_abort;
1858 : : }
1859 : : break;
1860 : : case MMC_BLK_CMD_ERR:
1861 : 0 : ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1862 [ # # ]: 0 : if (!mmc_blk_reset(md, card->host, type))
1863 : : break;
1864 : : goto cmd_abort;
1865 : : case MMC_BLK_RETRY:
1866 [ # # ]: 0 : if (retry++ < 5)
1867 : : break;
1868 : : /* Fall through */
1869 : : case MMC_BLK_ABORT:
1870 [ # # ]: 0 : if (!mmc_blk_reset(md, card->host, type))
1871 : : break;
1872 : : goto cmd_abort;
1873 : : case MMC_BLK_DATA_ERR: {
1874 : : int err;
1875 : :
1876 : 0 : err = mmc_blk_reset(md, card->host, type);
1877 [ # # ]: 0 : if (!err)
1878 : : break;
1879 [ # # ][ # # ]: 0 : if (err == -ENODEV ||
1880 : 0 : mmc_packed_cmd(mq_rq->cmd_type))
1881 : : goto cmd_abort;
1882 : : /* Fall through */
1883 : : }
1884 : : case MMC_BLK_ECC_ERR:
1885 [ # # ]: 0 : if (brq->data.blocks > 1) {
1886 : : /* Redo read one sector at a time */
1887 : 0 : pr_warning("%s: retrying using single block read\n",
1888 : : req->rq_disk->disk_name);
1889 : : disable_multi = 1;
1890 : 0 : break;
1891 : : }
1892 : : /*
1893 : : * After an error, we redo I/O one sector at a
1894 : : * time, so we only reach here after trying to
1895 : : * read a single sector.
1896 : : */
1897 : 0 : ret = blk_end_request(req, -EIO,
1898 : : brq->data.blksz);
1899 [ # # ]: 0 : if (!ret)
1900 : : goto start_new_req;
1901 : : break;
1902 : : case MMC_BLK_NOMEDIUM:
1903 : : goto cmd_abort;
1904 : : default:
1905 : 0 : pr_err("%s: Unhandled return value (%d)",
1906 : : req->rq_disk->disk_name, status);
1907 : 0 : goto cmd_abort;
1908 : : }
1909 : :
1910 [ # # ]: 0 : if (ret) {
1911 [ # # ]: 0 : if (mmc_packed_cmd(mq_rq->cmd_type)) {
1912 [ # # ]: 0 : if (!mq_rq->packed->retries)
1913 : : goto cmd_abort;
1914 : 0 : mmc_blk_packed_hdr_wrq_prep(mq_rq, card, mq);
1915 : 0 : mmc_start_req(card->host,
1916 : : &mq_rq->mmc_active, NULL);
1917 : : } else {
1918 : :
1919 : : /*
1920 : : * In case of a incomplete request
1921 : : * prepare it again and resend.
1922 : : */
1923 : 0 : mmc_blk_rw_rq_prep(mq_rq, card,
1924 : : disable_multi, mq);
1925 : 0 : mmc_start_req(card->host,
1926 : : &mq_rq->mmc_active, NULL);
1927 : : }
1928 : : }
1929 [ # # ]: 0 : } while (ret);
1930 : :
1931 : : return 1;
1932 : :
1933 : : cmd_abort:
1934 [ # # ]: 0 : if (mmc_packed_cmd(mq_rq->cmd_type)) {
1935 : 0 : mmc_blk_abort_packed_req(mq_rq);
1936 : : } else {
1937 [ # # ][ # # ]: 0 : if (mmc_card_removed(card))
1938 : 0 : req->cmd_flags |= REQ_QUIET;
1939 [ # # ]: 0 : while (ret)
1940 : 0 : ret = blk_end_request(req, -EIO,
1941 : : blk_rq_cur_bytes(req));
1942 : : }
1943 : :
1944 : : start_new_req:
1945 [ # # ]: 0 : if (rqc) {
1946 [ # # ][ # # ]: 0 : if (mmc_card_removed(card)) {
1947 : 0 : rqc->cmd_flags |= REQ_QUIET;
1948 : 0 : blk_end_request_all(rqc, -EIO);
1949 : : } else {
1950 : : /*
1951 : : * If current request is packed, it needs to put back.
1952 : : */
1953 [ # # ]: 0 : if (mmc_packed_cmd(mq->mqrq_cur->cmd_type))
1954 : 0 : mmc_blk_revert_packed_req(mq, mq->mqrq_cur);
1955 : :
1956 : 0 : mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1957 : 0 : mmc_start_req(card->host,
1958 : 0 : &mq->mqrq_cur->mmc_active, NULL);
1959 : : }
1960 : : }
1961 : :
1962 : : return 0;
1963 : : }
1964 : :
1965 : 0 : static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1966 : : {
1967 : : int ret;
1968 : 0 : struct mmc_blk_data *md = mq->data;
1969 : 0 : struct mmc_card *card = md->queue.card;
1970 : 0 : struct mmc_host *host = card->host;
1971 : : unsigned long flags;
1972 : :
1973 : : #ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1974 : : if (mmc_bus_needs_resume(card->host))
1975 : : mmc_resume_bus(card->host);
1976 : : #endif
1977 : :
1978 [ # # ][ # # ]: 0 : if (req && !mq->mqrq_prev->req)
1979 : : /* claim host only for the first request */
1980 : 0 : mmc_get_card(card);
1981 : :
1982 : : ret = mmc_blk_part_switch(card, md);
1983 [ # # ]: 0 : if (ret) {
1984 [ # # ]: 0 : if (req) {
1985 : 0 : blk_end_request_all(req, -EIO);
1986 : : }
1987 : : ret = 0;
1988 : : goto out;
1989 : : }
1990 : :
1991 : 0 : mq->flags &= ~MMC_QUEUE_NEW_REQUEST;
1992 [ # # ][ # # ]: 0 : if (req && req->cmd_flags & REQ_DISCARD) {
1993 : : /* complete ongoing async transfer before issuing discard */
1994 [ # # ]: 0 : if (card->host->areq)
1995 : 0 : mmc_blk_issue_rw_rq(mq, NULL);
1996 [ # # ][ # # ]: 0 : if (req->cmd_flags & REQ_SECURE &&
1997 : 0 : !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
1998 : 0 : ret = mmc_blk_issue_secdiscard_rq(mq, req);
1999 : : else
2000 : 0 : ret = mmc_blk_issue_discard_rq(mq, req);
2001 [ # # ][ # # ]: 0 : } else if (req && req->cmd_flags & REQ_FLUSH) {
2002 : : /* complete ongoing async transfer before issuing flush */
2003 [ # # ]: 0 : if (card->host->areq)
2004 : 0 : mmc_blk_issue_rw_rq(mq, NULL);
2005 : 0 : ret = mmc_blk_issue_flush(mq, req);
2006 : : } else {
2007 [ # # ][ # # ]: 0 : if (!req && host->areq) {
2008 : 0 : spin_lock_irqsave(&host->context_info.lock, flags);
2009 : 0 : host->context_info.is_waiting_last_req = true;
2010 : : spin_unlock_irqrestore(&host->context_info.lock, flags);
2011 : : }
2012 : 0 : ret = mmc_blk_issue_rw_rq(mq, req);
2013 : : }
2014 : :
2015 : : out:
2016 [ # # ][ # # ]: 0 : if ((!req && !(mq->flags & MMC_QUEUE_NEW_REQUEST)) ||
[ # # ]
2017 [ # # ]: 0 : (req && (req->cmd_flags & MMC_REQ_SPECIAL_MASK)))
2018 : : /*
2019 : : * Release host when there are no more requests
2020 : : * and after special request(discard, flush) is done.
2021 : : * In case sepecial request, there is no reentry to
2022 : : * the 'mmc_blk_issue_rq' with 'mqrq_prev->req'.
2023 : : */
2024 : 0 : mmc_put_card(card);
2025 : 0 : return ret;
2026 : : }
2027 : :
2028 : : static inline int mmc_blk_readonly(struct mmc_card *card)
2029 : : {
2030 [ # # ][ # # ]: 0 : return mmc_card_readonly(card) ||
2031 : 0 : !(card->csd.cmdclass & CCC_BLOCK_WRITE);
2032 : : }
2033 : :
2034 : 0 : static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
2035 : : struct device *parent,
2036 : : sector_t size,
2037 : : bool default_ro,
2038 : : const char *subname,
2039 : : int area_type)
2040 : : {
2041 : : struct mmc_blk_data *md;
2042 : : int devidx, ret;
2043 : :
2044 : 0 : devidx = find_first_zero_bit(dev_use, max_devices);
2045 [ # # ]: 0 : if (devidx >= max_devices)
2046 : : return ERR_PTR(-ENOSPC);
2047 : : __set_bit(devidx, dev_use);
2048 : :
2049 : : md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
2050 [ # # ]: 0 : if (!md) {
2051 : : ret = -ENOMEM;
2052 : : goto out;
2053 : : }
2054 : :
2055 : : /*
2056 : : * !subname implies we are creating main mmc_blk_data that will be
2057 : : * associated with mmc_card with mmc_set_drvdata. Due to device
2058 : : * partitions, devidx will not coincide with a per-physical card
2059 : : * index anymore so we keep track of a name index.
2060 : : */
2061 [ # # ]: 0 : if (!subname) {
2062 : 0 : md->name_idx = find_first_zero_bit(name_use, max_devices);
2063 : : __set_bit(md->name_idx, name_use);
2064 : : } else
2065 : 0 : md->name_idx = ((struct mmc_blk_data *)
2066 : 0 : dev_to_disk(parent)->private_data)->name_idx;
2067 : :
2068 : 0 : md->area_type = area_type;
2069 : :
2070 : : /*
2071 : : * Set the read-only status based on the supported commands
2072 : : * and the write protect switch.
2073 : : */
2074 : 0 : md->read_only = mmc_blk_readonly(card);
2075 : :
2076 : 0 : md->disk = alloc_disk(perdev_minors);
2077 [ # # ]: 0 : if (md->disk == NULL) {
2078 : : ret = -ENOMEM;
2079 : : goto err_kfree;
2080 : : }
2081 : :
2082 : 0 : spin_lock_init(&md->lock);
2083 : 0 : INIT_LIST_HEAD(&md->part);
2084 : 0 : md->usage = 1;
2085 : :
2086 : 0 : ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
2087 [ # # ]: 0 : if (ret)
2088 : : goto err_putdisk;
2089 : :
2090 : 0 : md->queue.issue_fn = mmc_blk_issue_rq;
2091 : 0 : md->queue.data = md;
2092 : :
2093 : 0 : md->disk->major = MMC_BLOCK_MAJOR;
2094 : 0 : md->disk->first_minor = devidx * perdev_minors;
2095 : 0 : md->disk->fops = &mmc_bdops;
2096 : 0 : md->disk->private_data = md;
2097 : 0 : md->disk->queue = md->queue.queue;
2098 : 0 : md->disk->driverfs_dev = parent;
2099 [ # # ][ # # ]: 0 : set_disk_ro(md->disk, md->read_only || default_ro);
2100 : 0 : md->disk->flags = GENHD_FL_EXT_DEVT;
2101 [ # # ]: 0 : if (area_type & MMC_BLK_DATA_AREA_RPMB)
2102 : 0 : md->disk->flags |= GENHD_FL_NO_PART_SCAN;
2103 : :
2104 : : /*
2105 : : * As discussed on lkml, GENHD_FL_REMOVABLE should:
2106 : : *
2107 : : * - be set for removable media with permanent block devices
2108 : : * - be unset for removable block devices with permanent media
2109 : : *
2110 : : * Since MMC block devices clearly fall under the second
2111 : : * case, we do not set GENHD_FL_REMOVABLE. Userspace
2112 : : * should use the block device creation/destruction hotplug
2113 : : * messages to tell when the card is present.
2114 : : */
2115 : :
2116 [ # # ]: 0 : snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
2117 : : "mmcblk%d%s", md->name_idx, subname ? subname : "");
2118 : :
2119 [ # # ]: 0 : if (mmc_card_mmc(card))
2120 : 0 : blk_queue_logical_block_size(md->queue.queue,
2121 : 0 : card->ext_csd.data_sector_size);
2122 : : else
2123 : 0 : blk_queue_logical_block_size(md->queue.queue, 512);
2124 : :
2125 : 0 : set_capacity(md->disk, size);
2126 : :
2127 [ # # ]: 0 : if (mmc_host_cmd23(card->host)) {
2128 [ # # ][ # # ]: 0 : if (mmc_card_mmc(card) ||
2129 [ # # ]: 0 : (mmc_card_sd(card) &&
2130 : 0 : card->scr.cmds & SD_SCR_CMD23_SUPPORT))
2131 : 0 : md->flags |= MMC_BLK_CMD23;
2132 : : }
2133 : :
2134 [ # # ][ # # ]: 0 : if (mmc_card_mmc(card) &&
2135 [ # # ]: 0 : md->flags & MMC_BLK_CMD23 &&
2136 [ # # ]: 0 : ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
2137 : 0 : card->ext_csd.rel_sectors)) {
2138 : 0 : md->flags |= MMC_BLK_REL_WR;
2139 : 0 : blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
2140 : : }
2141 : :
2142 [ # # ][ # # ]: 0 : if (mmc_card_mmc(card) &&
2143 [ # # ]: 0 : (area_type == MMC_BLK_DATA_AREA_MAIN) &&
2144 [ # # ]: 0 : (md->flags & MMC_BLK_CMD23) &&
2145 : 0 : card->ext_csd.packed_event_en) {
2146 [ # # ]: 0 : if (!mmc_packed_init(&md->queue, card))
2147 : 0 : md->flags |= MMC_BLK_PACKED_CMD;
2148 : : }
2149 : :
2150 : 0 : return md;
2151 : :
2152 : : err_putdisk:
2153 : 0 : put_disk(md->disk);
2154 : : err_kfree:
2155 : 0 : kfree(md);
2156 : : out:
2157 : 0 : return ERR_PTR(ret);
2158 : : }
2159 : :
2160 : 0 : static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
2161 : : {
2162 : : sector_t size;
2163 : : struct mmc_blk_data *md;
2164 : :
2165 [ # # ][ # # ]: 0 : if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
2166 : : /*
2167 : : * The EXT_CSD sector count is in number or 512 byte
2168 : : * sectors.
2169 : : */
2170 : 0 : size = card->ext_csd.sectors;
2171 : : } else {
2172 : : /*
2173 : : * The CSD capacity field is in units of read_blkbits.
2174 : : * set_capacity takes units of 512 bytes.
2175 : : */
2176 : 0 : size = card->csd.capacity << (card->csd.read_blkbits - 9);
2177 : : }
2178 : :
2179 : 0 : md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
2180 : : MMC_BLK_DATA_AREA_MAIN);
2181 : 0 : return md;
2182 : : }
2183 : :
2184 : 0 : static int mmc_blk_alloc_part(struct mmc_card *card,
2185 : : struct mmc_blk_data *md,
2186 : : unsigned int part_type,
2187 : : sector_t size,
2188 : : bool default_ro,
2189 : : const char *subname,
2190 : : int area_type)
2191 : : {
2192 : : char cap_str[10];
2193 : : struct mmc_blk_data *part_md;
2194 : :
2195 : 0 : part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
2196 : : subname, area_type);
2197 [ # # ]: 0 : if (IS_ERR(part_md))
2198 : 0 : return PTR_ERR(part_md);
2199 : 0 : part_md->part_type = part_type;
2200 : 0 : list_add(&part_md->part, &md->part);
2201 : :
2202 : 0 : string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
2203 : : cap_str, sizeof(cap_str));
2204 : 0 : pr_info("%s: %s %s partition %u %s\n",
2205 : : part_md->disk->disk_name, mmc_card_id(card),
2206 : : mmc_card_name(card), part_md->part_type, cap_str);
2207 : 0 : return 0;
2208 : : }
2209 : :
2210 : : /* MMC Physical partitions consist of two boot partitions and
2211 : : * up to four general purpose partitions.
2212 : : * For each partition enabled in EXT_CSD a block device will be allocatedi
2213 : : * to provide access to the partition.
2214 : : */
2215 : :
2216 : 0 : static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
2217 : : {
2218 : : int idx, ret = 0;
2219 : :
2220 [ # # ]: 0 : if (!mmc_card_mmc(card))
2221 : : return 0;
2222 : :
2223 [ # # ]: 0 : for (idx = 0; idx < card->nr_parts; idx++) {
2224 [ # # ]: 0 : if (card->part[idx].size) {
2225 : 0 : ret = mmc_blk_alloc_part(card, md,
2226 : : card->part[idx].part_cfg,
2227 : 0 : card->part[idx].size >> 9,
2228 : : card->part[idx].force_ro,
2229 : 0 : card->part[idx].name,
2230 : 0 : card->part[idx].area_type);
2231 [ # # ]: 0 : if (ret)
2232 : : return ret;
2233 : : }
2234 : : }
2235 : :
2236 : : return ret;
2237 : : }
2238 : :
2239 : 0 : static void mmc_blk_remove_req(struct mmc_blk_data *md)
2240 : : {
2241 : : struct mmc_card *card;
2242 : :
2243 [ # # ]: 0 : if (md) {
2244 : : /*
2245 : : * Flush remaining requests and free queues. It
2246 : : * is freeing the queue that stops new requests
2247 : : * from being accepted.
2248 : : */
2249 : 0 : card = md->queue.card;
2250 : 0 : mmc_cleanup_queue(&md->queue);
2251 [ # # ]: 0 : if (md->flags & MMC_BLK_PACKED_CMD)
2252 : 0 : mmc_packed_clean(&md->queue);
2253 [ # # ]: 0 : if (md->disk->flags & GENHD_FL_UP) {
2254 : 0 : device_remove_file(disk_to_dev(md->disk), &md->force_ro);
2255 [ # # ][ # # ]: 0 : if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2256 : 0 : card->ext_csd.boot_ro_lockable)
2257 : 0 : device_remove_file(disk_to_dev(md->disk),
2258 : 0 : &md->power_ro_lock);
2259 : :
2260 : 0 : del_gendisk(md->disk);
2261 : : }
2262 : 0 : mmc_blk_put(md);
2263 : : }
2264 : 0 : }
2265 : :
2266 : 0 : static void mmc_blk_remove_parts(struct mmc_card *card,
2267 : : struct mmc_blk_data *md)
2268 : : {
2269 : : struct list_head *pos, *q;
2270 : : struct mmc_blk_data *part_md;
2271 : :
2272 : 0 : __clear_bit(md->name_idx, name_use);
2273 [ # # ]: 0 : list_for_each_safe(pos, q, &md->part) {
2274 : 0 : part_md = list_entry(pos, struct mmc_blk_data, part);
2275 : : list_del(pos);
2276 : 0 : mmc_blk_remove_req(part_md);
2277 : : }
2278 : 0 : }
2279 : :
2280 : 0 : static int mmc_add_disk(struct mmc_blk_data *md)
2281 : : {
2282 : : int ret;
2283 : 0 : struct mmc_card *card = md->queue.card;
2284 : :
2285 : 0 : add_disk(md->disk);
2286 : 0 : md->force_ro.show = force_ro_show;
2287 : 0 : md->force_ro.store = force_ro_store;
2288 : : sysfs_attr_init(&md->force_ro.attr);
2289 : 0 : md->force_ro.attr.name = "force_ro";
2290 : 0 : md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
2291 : 0 : ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
2292 [ # # ]: 0 : if (ret)
2293 : : goto force_ro_fail;
2294 : :
2295 [ # # ][ # # ]: 0 : if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2296 : 0 : card->ext_csd.boot_ro_lockable) {
2297 : : umode_t mode;
2298 : :
2299 [ # # ]: 0 : if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
2300 : : mode = S_IRUGO;
2301 : : else
2302 : : mode = S_IRUGO | S_IWUSR;
2303 : :
2304 : 0 : md->power_ro_lock.show = power_ro_lock_show;
2305 : 0 : md->power_ro_lock.store = power_ro_lock_store;
2306 : : sysfs_attr_init(&md->power_ro_lock.attr);
2307 : 0 : md->power_ro_lock.attr.mode = mode;
2308 : 0 : md->power_ro_lock.attr.name =
2309 : : "ro_lock_until_next_power_on";
2310 : 0 : ret = device_create_file(disk_to_dev(md->disk),
2311 : 0 : &md->power_ro_lock);
2312 [ # # ]: 0 : if (ret)
2313 : : goto power_ro_lock_fail;
2314 : : }
2315 : 0 : return ret;
2316 : :
2317 : : power_ro_lock_fail:
2318 : 0 : device_remove_file(disk_to_dev(md->disk), &md->force_ro);
2319 : : force_ro_fail:
2320 : 0 : del_gendisk(md->disk);
2321 : :
2322 : 0 : return ret;
2323 : : }
2324 : :
2325 : : #define CID_MANFID_SANDISK 0x2
2326 : : #define CID_MANFID_TOSHIBA 0x11
2327 : : #define CID_MANFID_MICRON 0x13
2328 : : #define CID_MANFID_SAMSUNG 0x15
2329 : :
2330 : : static const struct mmc_fixup blk_fixups[] =
2331 : : {
2332 : : MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
2333 : : MMC_QUIRK_INAND_CMD38),
2334 : : MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
2335 : : MMC_QUIRK_INAND_CMD38),
2336 : : MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
2337 : : MMC_QUIRK_INAND_CMD38),
2338 : : MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
2339 : : MMC_QUIRK_INAND_CMD38),
2340 : : MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
2341 : : MMC_QUIRK_INAND_CMD38),
2342 : :
2343 : : /*
2344 : : * Some MMC cards experience performance degradation with CMD23
2345 : : * instead of CMD12-bounded multiblock transfers. For now we'll
2346 : : * black list what's bad...
2347 : : * - Certain Toshiba cards.
2348 : : *
2349 : : * N.B. This doesn't affect SD cards.
2350 : : */
2351 : : MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
2352 : : MMC_QUIRK_BLK_NO_CMD23),
2353 : : MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
2354 : : MMC_QUIRK_BLK_NO_CMD23),
2355 : : MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
2356 : : MMC_QUIRK_BLK_NO_CMD23),
2357 : :
2358 : : /*
2359 : : * Some Micron MMC cards needs longer data read timeout than
2360 : : * indicated in CSD.
2361 : : */
2362 : : MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
2363 : : MMC_QUIRK_LONG_READ_TIME),
2364 : :
2365 : : /*
2366 : : * On these Samsung MoviNAND parts, performing secure erase or
2367 : : * secure trim can result in unrecoverable corruption due to a
2368 : : * firmware bug.
2369 : : */
2370 : : MMC_FIXUP("M8G2FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2371 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2372 : : MMC_FIXUP("MAG4FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2373 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2374 : : MMC_FIXUP("MBG8FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2375 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2376 : : MMC_FIXUP("MCGAFA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2377 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2378 : : MMC_FIXUP("VAL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2379 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2380 : : MMC_FIXUP("VYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2381 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2382 : : MMC_FIXUP("KYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2383 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2384 : : MMC_FIXUP("VZL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2385 : : MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2386 : :
2387 : : END_FIXUP
2388 : : };
2389 : :
2390 : 0 : static int mmc_blk_probe(struct mmc_card *card)
2391 : : {
2392 : : struct mmc_blk_data *md, *part_md;
2393 : : char cap_str[10];
2394 : :
2395 : : /*
2396 : : * Check that the card supports the command class(es) we need.
2397 : : */
2398 [ # # ]: 0 : if (!(card->csd.cmdclass & CCC_BLOCK_READ))
2399 : : return -ENODEV;
2400 : :
2401 : 0 : md = mmc_blk_alloc(card);
2402 [ # # ]: 0 : if (IS_ERR(md))
2403 : 0 : return PTR_ERR(md);
2404 : :
2405 : 0 : string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
2406 : : cap_str, sizeof(cap_str));
2407 [ # # ]: 0 : pr_info("%s: %s %s %s %s\n",
2408 : : md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
2409 : : cap_str, md->read_only ? "(ro)" : "");
2410 : :
2411 [ # # ]: 0 : if (mmc_blk_alloc_parts(card, md))
2412 : : goto out;
2413 : :
2414 : 0 : mmc_set_drvdata(card, md);
2415 : 0 : mmc_fixup_device(card, blk_fixups);
2416 : :
2417 : : #ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
2418 : : mmc_set_bus_resume_policy(card->host, 1);
2419 : : #endif
2420 [ # # ]: 0 : if (mmc_add_disk(md))
2421 : : goto out;
2422 : :
2423 [ # # ]: 0 : list_for_each_entry(part_md, &md->part, part) {
2424 [ # # ]: 0 : if (mmc_add_disk(part_md))
2425 : : goto out;
2426 : : }
2427 : :
2428 : : pm_runtime_set_autosuspend_delay(&card->dev, 3000);
2429 : : pm_runtime_use_autosuspend(&card->dev);
2430 : :
2431 : : /*
2432 : : * Don't enable runtime PM for SD-combo cards here. Leave that
2433 : : * decision to be taken during the SDIO init sequence instead.
2434 : : */
2435 : : if (card->type != MMC_TYPE_SD_COMBO) {
2436 : : pm_runtime_set_active(&card->dev);
2437 : : pm_runtime_enable(&card->dev);
2438 : : }
2439 : :
2440 : : return 0;
2441 : :
2442 : : out:
2443 : 0 : mmc_blk_remove_parts(card, md);
2444 : 0 : mmc_blk_remove_req(md);
2445 : 0 : return 0;
2446 : : }
2447 : :
2448 : 0 : static void mmc_blk_remove(struct mmc_card *card)
2449 : : {
2450 : 0 : struct mmc_blk_data *md = mmc_get_drvdata(card);
2451 : :
2452 : 0 : mmc_blk_remove_parts(card, md);
2453 : : pm_runtime_get_sync(&card->dev);
2454 : 0 : mmc_claim_host(card->host);
2455 : : mmc_blk_part_switch(card, md);
2456 : 0 : mmc_release_host(card->host);
2457 : : if (card->type != MMC_TYPE_SD_COMBO)
2458 : : pm_runtime_disable(&card->dev);
2459 : : pm_runtime_put_noidle(&card->dev);
2460 : 0 : mmc_blk_remove_req(md);
2461 : 0 : mmc_set_drvdata(card, NULL);
2462 : : #ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
2463 : : mmc_set_bus_resume_policy(card->host, 0);
2464 : : #endif
2465 : 0 : }
2466 : :
2467 : 0 : static int _mmc_blk_suspend(struct mmc_card *card)
2468 : : {
2469 : : struct mmc_blk_data *part_md;
2470 : 0 : struct mmc_blk_data *md = mmc_get_drvdata(card);
2471 : :
2472 [ # # ]: 0 : if (md) {
2473 : 0 : mmc_queue_suspend(&md->queue);
2474 [ # # ]: 0 : list_for_each_entry(part_md, &md->part, part) {
2475 : 0 : mmc_queue_suspend(&part_md->queue);
2476 : : }
2477 : : }
2478 : 0 : return 0;
2479 : : }
2480 : :
2481 : 0 : static void mmc_blk_shutdown(struct mmc_card *card)
2482 : : {
2483 : 0 : _mmc_blk_suspend(card);
2484 : 0 : }
2485 : :
2486 : : #ifdef CONFIG_PM
2487 : 0 : static int mmc_blk_suspend(struct mmc_card *card)
2488 : : {
2489 : 0 : return _mmc_blk_suspend(card);
2490 : : }
2491 : :
2492 : 0 : static int mmc_blk_resume(struct mmc_card *card)
2493 : : {
2494 : : struct mmc_blk_data *part_md;
2495 : 0 : struct mmc_blk_data *md = mmc_get_drvdata(card);
2496 : :
2497 [ # # ]: 0 : if (md) {
2498 : : /*
2499 : : * Resume involves the card going into idle state,
2500 : : * so current partition is always the main one.
2501 : : */
2502 : 0 : md->part_curr = md->part_type;
2503 : 0 : mmc_queue_resume(&md->queue);
2504 [ # # ]: 0 : list_for_each_entry(part_md, &md->part, part) {
2505 : 0 : mmc_queue_resume(&part_md->queue);
2506 : : }
2507 : : }
2508 : 0 : return 0;
2509 : : }
2510 : : #else
2511 : : #define mmc_blk_suspend NULL
2512 : : #define mmc_blk_resume NULL
2513 : : #endif
2514 : :
2515 : : static struct mmc_driver mmc_driver = {
2516 : : .drv = {
2517 : : .name = "mmcblk",
2518 : : },
2519 : : .probe = mmc_blk_probe,
2520 : : .remove = mmc_blk_remove,
2521 : : .suspend = mmc_blk_suspend,
2522 : : .resume = mmc_blk_resume,
2523 : : .shutdown = mmc_blk_shutdown,
2524 : : };
2525 : :
2526 : 0 : static int __init mmc_blk_init(void)
2527 : : {
2528 : : int res;
2529 : :
2530 [ # # ]: 0 : if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
2531 : 0 : pr_info("mmcblk: using %d minors per device\n", perdev_minors);
2532 : :
2533 : 0 : max_devices = 256 / perdev_minors;
2534 : :
2535 : 0 : res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
2536 [ # # ]: 0 : if (res)
2537 : : goto out;
2538 : :
2539 : 0 : res = mmc_register_driver(&mmc_driver);
2540 [ # # ]: 0 : if (res)
2541 : : goto out2;
2542 : :
2543 : : return 0;
2544 : : out2:
2545 : 0 : unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
2546 : : out:
2547 : 0 : return res;
2548 : : }
2549 : :
2550 : 0 : static void __exit mmc_blk_exit(void)
2551 : : {
2552 : 0 : mmc_unregister_driver(&mmc_driver);
2553 : 0 : unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
2554 : 0 : }
2555 : :
2556 : : module_init(mmc_blk_init);
2557 : : module_exit(mmc_blk_exit);
2558 : :
2559 : : MODULE_LICENSE("GPL");
2560 : : MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
2561 : :
|