blob: a1b820fcb2a6ff60093011d696761ba4ca15e584 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Block driver for media (i.e., flash cards)
3 *
4 * Copyright 2002 Hewlett-Packard Company
Pierre Ossman979ce722008-06-29 12:19:47 +02005 * Copyright 2005-2008 Pierre Ossman
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/kernel.h>
25#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/errno.h>
28#include <linux/hdreg.h>
29#include <linux/kdev_t.h>
30#include <linux/blkdev.h>
Arjan van de Vena621aae2006-01-12 18:43:35 +000031#include <linux/mutex.h>
Pierre Ossmanec5a19d2006-10-06 00:44:03 -070032#include <linux/scatterlist.h>
Pierre Ossmana7bbb572008-09-06 10:57:57 +020033#include <linux/string_helpers.h>
John Calixtocb87ea22011-04-26 18:56:29 -040034#include <linux/delay.h>
35#include <linux/capability.h>
36#include <linux/compat.h>
Ulf Hanssone94cfef2013-05-02 14:02:38 +020037#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
John Calixtocb87ea22011-04-26 18:56:29 -040039#include <linux/mmc/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/mmc/card.h>
Pierre Ossman385e32272006-06-18 14:34:37 +020041#include <linux/mmc/host.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010042#include <linux/mmc/mmc.h>
43#include <linux/mmc/sd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
46
Pierre Ossman98ac2162006-12-23 20:03:02 +010047#include "queue.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Andy Whitcroft6b0b6282009-02-23 12:38:41 +000049MODULE_ALIAS("mmc:block");
Olof Johansson5e71b7a2010-09-17 21:19:57 -040050#ifdef MODULE_PARAM_PREFIX
51#undef MODULE_PARAM_PREFIX
52#endif
53#define MODULE_PARAM_PREFIX "mmcblk."
David Woodhouse1dff3142007-11-21 18:45:12 +010054
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -050055#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
Trey Ramsay8fee4762012-11-16 09:31:41 -060061#define MMC_BLK_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */
Maya Erez775a9362013-04-18 15:41:55 +030062#define MMC_SANITIZE_REQ_TIMEOUT 240000
63#define MMC_EXTRACT_INDEX_FROM_ARG(x) ((x & 0x00FF0000) >> 16)
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -050064
Seungwon Jeonce39f9d2013-02-06 17:02:46 +090065#define mmc_req_rel_wr(req) (((req->cmd_flags & REQ_FUA) || \
66 (req->cmd_flags & REQ_META)) && \
67 (rq_data_dir(req) == WRITE))
68#define PACKED_CMD_VER 0x01
69#define PACKED_CMD_WR 0x02
70
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020071static DEFINE_MUTEX(block_mutex);
Olof Johansson5e71b7a2010-09-17 21:19:57 -040072
73/*
74 * The defaults come from config options but can be overriden by module
75 * or bootarg options.
76 */
77static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
78
79/*
80 * We've only got one major, so number of mmcblk devices is
Ben Hutchingsa26eba62014-11-06 03:35:09 +000081 * limited to (1 << 20) / number of minors per device. It is also
82 * currently limited by the size of the static bitmaps below.
Olof Johansson5e71b7a2010-09-17 21:19:57 -040083 */
84static int max_devices;
85
Ben Hutchingsa26eba62014-11-06 03:35:09 +000086#define MAX_DEVICES 256
87
88/* TODO: Replace these with struct ida */
89static DECLARE_BITMAP(dev_use, MAX_DEVICES);
90static DECLARE_BITMAP(name_use, MAX_DEVICES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * There is one mmc_blk_data per slot.
94 */
95struct mmc_blk_data {
96 spinlock_t lock;
97 struct gendisk *disk;
98 struct mmc_queue queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -050099 struct list_head part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500101 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 */
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900104#define MMC_BLK_PACKED_CMD (1 << 2) /* MMC packed command support */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 unsigned int usage;
Russell Kinga6f6c962006-01-03 22:38:44 +0000107 unsigned int read_only;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500108 unsigned int part_type;
Andrei Warkentinf06c9152011-04-21 22:46:13 -0500109 unsigned int name_idx;
Adrian Hunter67716322011-08-29 16:42:15 +0300110 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)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500115
116 /*
117 * Only set in main mmc_blk_data associated
Ulf Hanssonfc95e302014-10-06 14:34:09 +0200118 * with mmc_card with dev_set_drvdata, and keeps
Andrei Warkentin371a6892011-04-11 18:10:25 -0500119 * track of the current selected device partition.
120 */
121 unsigned int part_curr;
122 struct device_attribute force_ro;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100123 struct device_attribute power_ro_lock;
124 int area_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Arjan van de Vena621aae2006-01-12 18:43:35 +0000127static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900129enum {
130 MMC_PACKED_NR_IDX = -1,
131 MMC_PACKED_NR_ZERO,
132 MMC_PACKED_NR_SINGLE,
133};
134
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400135module_param(perdev_minors, int, 0444);
136MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
137
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200138static inline int mmc_blk_part_switch(struct mmc_card *card,
139 struct mmc_blk_data *md);
140static int get_card_status(struct mmc_card *card, u32 *status, int retries);
141
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900142static inline void mmc_blk_clear_packed(struct mmc_queue_req *mqrq)
143{
144 struct mmc_packed *packed = mqrq->packed;
145
146 BUG_ON(!packed);
147
148 mqrq->cmd_type = MMC_PACKED_NONE;
149 packed->nr_entries = MMC_PACKED_NR_ZERO;
150 packed->idx_failure = MMC_PACKED_NR_IDX;
151 packed->retries = 0;
152 packed->blocks = 0;
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
156{
157 struct mmc_blk_data *md;
158
Arjan van de Vena621aae2006-01-12 18:43:35 +0000159 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 md = disk->private_data;
161 if (md && md->usage == 0)
162 md = NULL;
163 if (md)
164 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000165 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 return md;
168}
169
Andrei Warkentin371a6892011-04-11 18:10:25 -0500170static inline int mmc_get_devidx(struct gendisk *disk)
171{
172 int devmaj = MAJOR(disk_devt(disk));
173 int devidx = MINOR(disk_devt(disk)) / perdev_minors;
174
175 if (!devmaj)
176 devidx = disk->first_minor / perdev_minors;
177 return devidx;
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static void mmc_blk_put(struct mmc_blk_data *md)
181{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000182 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 md->usage--;
184 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500185 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800186 blk_cleanup_queue(md->queue.queue);
187
David Woodhouse1dff3142007-11-21 18:45:12 +0100188 __clear_bit(devidx, dev_use);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 kfree(md);
192 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000193 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Johan Rudholmadd710e2011-12-02 08:51:06 +0100196static ssize_t power_ro_lock_show(struct device *dev,
197 struct device_attribute *attr, char *buf)
198{
199 int ret;
200 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
201 struct mmc_card *card = md->queue.card;
202 int locked = 0;
203
204 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
205 locked = 2;
206 else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
207 locked = 1;
208
209 ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
210
Tomas Winkler9098f842015-07-16 15:50:45 +0200211 mmc_blk_put(md);
212
Johan Rudholmadd710e2011-12-02 08:51:06 +0100213 return ret;
214}
215
216static ssize_t power_ro_lock_store(struct device *dev,
217 struct device_attribute *attr, const char *buf, size_t count)
218{
219 int ret;
220 struct mmc_blk_data *md, *part_md;
221 struct mmc_card *card;
222 unsigned long set;
223
224 if (kstrtoul(buf, 0, &set))
225 return -EINVAL;
226
227 if (set != 1)
228 return count;
229
230 md = mmc_blk_get(dev_to_disk(dev));
231 card = md->queue.card;
232
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200233 mmc_get_card(card);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100234
235 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
236 card->ext_csd.boot_ro_lock |
237 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
238 card->ext_csd.part_time);
239 if (ret)
240 pr_err("%s: Locking boot partition ro until next power on failed: %d\n", md->disk->disk_name, ret);
241 else
242 card->ext_csd.boot_ro_lock |= EXT_CSD_BOOT_WP_B_PWR_WP_EN;
243
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200244 mmc_put_card(card);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100245
246 if (!ret) {
247 pr_info("%s: Locking boot partition ro until next power on\n",
248 md->disk->disk_name);
249 set_disk_ro(md->disk, 1);
250
251 list_for_each_entry(part_md, &md->part, part)
252 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
253 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
254 set_disk_ro(part_md->disk, 1);
255 }
256 }
257
258 mmc_blk_put(md);
259 return count;
260}
261
Andrei Warkentin371a6892011-04-11 18:10:25 -0500262static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
263 char *buf)
264{
265 int ret;
266 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
267
Baruch Siach0031a982014-09-22 10:12:51 +0300268 ret = snprintf(buf, PAGE_SIZE, "%d\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -0500269 get_disk_ro(dev_to_disk(dev)) ^
270 md->read_only);
271 mmc_blk_put(md);
272 return ret;
273}
274
275static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
276 const char *buf, size_t count)
277{
278 int ret;
279 char *end;
280 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
281 unsigned long set = simple_strtoul(buf, &end, 0);
282 if (end == buf) {
283 ret = -EINVAL;
284 goto out;
285 }
286
287 set_disk_ro(dev_to_disk(dev), set || md->read_only);
288 ret = count;
289out:
290 mmc_blk_put(md);
291 return ret;
292}
293
Al Viroa5a15612008-03-02 10:33:30 -0500294static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Al Viroa5a15612008-03-02 10:33:30 -0500296 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int ret = -ENXIO;
298
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200299 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (md) {
301 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500302 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700304
Al Viroa5a15612008-03-02 10:33:30 -0500305 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700306 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700307 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200310 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 return ret;
313}
314
Al Virodb2a1442013-05-05 21:52:57 -0400315static void mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Al Viroa5a15612008-03-02 10:33:30 -0500317 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200319 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200321 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800325mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800327 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
328 geo->heads = 4;
329 geo->sectors = 16;
330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
John Calixtocb87ea22011-04-26 18:56:29 -0400333struct mmc_blk_ioc_data {
334 struct mmc_ioc_cmd ic;
335 unsigned char *buf;
336 u64 buf_bytes;
337};
338
339static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
340 struct mmc_ioc_cmd __user *user)
341{
342 struct mmc_blk_ioc_data *idata;
343 int err;
344
345 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
346 if (!idata) {
347 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400348 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400349 }
350
351 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
352 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400353 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400354 }
355
356 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
357 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
358 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400359 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400360 }
361
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100362 if (!idata->buf_bytes)
363 return idata;
364
John Calixtocb87ea22011-04-26 18:56:29 -0400365 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
366 if (!idata->buf) {
367 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400368 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400369 }
370
371 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
372 idata->ic.data_ptr, idata->buf_bytes)) {
373 err = -EFAULT;
374 goto copy_err;
375 }
376
377 return idata;
378
379copy_err:
380 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400381idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400382 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400383out:
John Calixtocb87ea22011-04-26 18:56:29 -0400384 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400385}
386
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200387static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status,
388 u32 retries_max)
389{
390 int err;
391 u32 retry_count = 0;
392
393 if (!status || !retries_max)
394 return -EINVAL;
395
396 do {
397 err = get_card_status(card, status, 5);
398 if (err)
399 break;
400
401 if (!R1_STATUS(*status) &&
402 (R1_CURRENT_STATE(*status) != R1_STATE_PRG))
403 break; /* RPMB programming operation complete */
404
405 /*
406 * Rechedule to give the MMC device a chance to continue
407 * processing the previous command without being polled too
408 * frequently.
409 */
410 usleep_range(1000, 5000);
411 } while (++retry_count < retries_max);
412
413 if (retry_count == retries_max)
414 err = -EPERM;
415
416 return err;
417}
418
Maya Erez775a9362013-04-18 15:41:55 +0300419static int ioctl_do_sanitize(struct mmc_card *card)
420{
421 int err;
422
Ulf Hanssona2d10862013-12-16 14:37:26 +0100423 if (!mmc_can_sanitize(card)) {
Maya Erez775a9362013-04-18 15:41:55 +0300424 pr_warn("%s: %s - SANITIZE is not supported\n",
425 mmc_hostname(card->host), __func__);
426 err = -EOPNOTSUPP;
427 goto out;
428 }
429
430 pr_debug("%s: %s - SANITIZE IN PROGRESS...\n",
431 mmc_hostname(card->host), __func__);
432
433 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
434 EXT_CSD_SANITIZE_START, 1,
435 MMC_SANITIZE_REQ_TIMEOUT);
436
437 if (err)
438 pr_err("%s: %s - EXT_CSD_SANITIZE_START failed. err=%d\n",
439 mmc_hostname(card->host), __func__, err);
440
441 pr_debug("%s: %s - SANITIZE COMPLETED\n", mmc_hostname(card->host),
442 __func__);
443out:
444 return err;
445}
446
John Calixtocb87ea22011-04-26 18:56:29 -0400447static int mmc_blk_ioctl_cmd(struct block_device *bdev,
448 struct mmc_ioc_cmd __user *ic_ptr)
449{
450 struct mmc_blk_ioc_data *idata;
451 struct mmc_blk_data *md;
452 struct mmc_card *card;
453 struct mmc_command cmd = {0};
454 struct mmc_data data = {0};
Venkatraman Sad5fd972011-08-25 00:30:50 +0530455 struct mmc_request mrq = {NULL};
John Calixtocb87ea22011-04-26 18:56:29 -0400456 struct scatterlist sg;
457 int err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200458 int is_rpmb = false;
459 u32 status = 0;
John Calixtocb87ea22011-04-26 18:56:29 -0400460
461 /*
462 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
463 * whole block device, not on a partition. This prevents overspray
464 * between sibling partitions.
465 */
466 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
467 return -EPERM;
468
469 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
470 if (IS_ERR(idata))
471 return PTR_ERR(idata);
472
John Calixtocb87ea22011-04-26 18:56:29 -0400473 md = mmc_blk_get(bdev->bd_disk);
474 if (!md) {
475 err = -EINVAL;
Philippe De Swert1c02f002012-04-11 23:31:45 +0300476 goto cmd_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400477 }
478
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200479 if (md->area_type & MMC_BLK_DATA_AREA_RPMB)
480 is_rpmb = true;
481
John Calixtocb87ea22011-04-26 18:56:29 -0400482 card = md->queue.card;
483 if (IS_ERR(card)) {
484 err = PTR_ERR(card);
485 goto cmd_done;
486 }
487
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100488 cmd.opcode = idata->ic.opcode;
489 cmd.arg = idata->ic.arg;
490 cmd.flags = idata->ic.flags;
491
492 if (idata->buf_bytes) {
493 data.sg = &sg;
494 data.sg_len = 1;
495 data.blksz = idata->ic.blksz;
496 data.blocks = idata->ic.blocks;
497
498 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
499
500 if (idata->ic.write_flag)
501 data.flags = MMC_DATA_WRITE;
502 else
503 data.flags = MMC_DATA_READ;
504
505 /* data.flags must already be set before doing this. */
506 mmc_set_data_timeout(&data, card);
507
508 /* Allow overriding the timeout_ns for empirical tuning. */
509 if (idata->ic.data_timeout_ns)
510 data.timeout_ns = idata->ic.data_timeout_ns;
511
512 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
513 /*
514 * Pretend this is a data transfer and rely on the
515 * host driver to compute timeout. When all host
516 * drivers support cmd.cmd_timeout for R1B, this
517 * can be changed to:
518 *
519 * mrq.data = NULL;
520 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
521 */
522 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
523 }
524
525 mrq.data = &data;
526 }
527
528 mrq.cmd = &cmd;
529
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200530 mmc_get_card(card);
John Calixtocb87ea22011-04-26 18:56:29 -0400531
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200532 err = mmc_blk_part_switch(card, md);
533 if (err)
534 goto cmd_rel_host;
535
John Calixtocb87ea22011-04-26 18:56:29 -0400536 if (idata->ic.is_acmd) {
537 err = mmc_app_cmd(card->host, card);
538 if (err)
539 goto cmd_rel_host;
540 }
541
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200542 if (is_rpmb) {
543 err = mmc_set_blockcount(card, data.blocks,
544 idata->ic.write_flag & (1 << 31));
545 if (err)
546 goto cmd_rel_host;
547 }
548
Yaniv Gardia82e4842013-06-05 14:13:08 +0300549 if ((MMC_EXTRACT_INDEX_FROM_ARG(cmd.arg) == EXT_CSD_SANITIZE_START) &&
550 (cmd.opcode == MMC_SWITCH)) {
Maya Erez775a9362013-04-18 15:41:55 +0300551 err = ioctl_do_sanitize(card);
552
553 if (err)
554 pr_err("%s: ioctl_do_sanitize() failed. err = %d",
555 __func__, err);
556
557 goto cmd_rel_host;
558 }
559
John Calixtocb87ea22011-04-26 18:56:29 -0400560 mmc_wait_for_req(card->host, &mrq);
561
562 if (cmd.error) {
563 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
564 __func__, cmd.error);
565 err = cmd.error;
566 goto cmd_rel_host;
567 }
568 if (data.error) {
569 dev_err(mmc_dev(card->host), "%s: data error %d\n",
570 __func__, data.error);
571 err = data.error;
572 goto cmd_rel_host;
573 }
574
575 /*
576 * According to the SD specs, some commands require a delay after
577 * issuing the command.
578 */
579 if (idata->ic.postsleep_min_us)
580 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
581
582 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
583 err = -EFAULT;
584 goto cmd_rel_host;
585 }
586
587 if (!idata->ic.write_flag) {
588 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
589 idata->buf, idata->buf_bytes)) {
590 err = -EFAULT;
591 goto cmd_rel_host;
592 }
593 }
594
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200595 if (is_rpmb) {
596 /*
597 * Ensure RPMB command has completed by polling CMD13
598 * "Send Status".
599 */
600 err = ioctl_rpmb_card_status_poll(card, &status, 5);
601 if (err)
602 dev_err(mmc_dev(card->host),
603 "%s: Card Status=0x%08X, error %d\n",
604 __func__, status, err);
605 }
606
John Calixtocb87ea22011-04-26 18:56:29 -0400607cmd_rel_host:
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200608 mmc_put_card(card);
John Calixtocb87ea22011-04-26 18:56:29 -0400609
610cmd_done:
611 mmc_blk_put(md);
Philippe De Swert1c02f002012-04-11 23:31:45 +0300612cmd_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400613 kfree(idata->buf);
614 kfree(idata);
615 return err;
616}
617
618static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
619 unsigned int cmd, unsigned long arg)
620{
621 int ret = -EINVAL;
622 if (cmd == MMC_IOC_CMD)
623 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
624 return ret;
625}
626
627#ifdef CONFIG_COMPAT
628static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
629 unsigned int cmd, unsigned long arg)
630{
631 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
632}
633#endif
634
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700635static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500636 .open = mmc_blk_open,
637 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800638 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400640 .ioctl = mmc_blk_ioctl,
641#ifdef CONFIG_COMPAT
642 .compat_ioctl = mmc_blk_compat_ioctl,
643#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644};
645
Andrei Warkentin371a6892011-04-11 18:10:25 -0500646static inline int mmc_blk_part_switch(struct mmc_card *card,
647 struct mmc_blk_data *md)
648{
649 int ret;
Ulf Hanssonfc95e302014-10-06 14:34:09 +0200650 struct mmc_blk_data *main_md = dev_get_drvdata(&card->dev);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300651
Andrei Warkentin371a6892011-04-11 18:10:25 -0500652 if (main_md->part_curr == md->part_type)
653 return 0;
654
655 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300656 u8 part_config = card->ext_csd.part_config;
657
658 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
659 part_config |= md->part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500660
661 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300662 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500663 card->ext_csd.part_time);
664 if (ret)
665 return ret;
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300666
667 card->ext_csd.part_config = part_config;
Adrian Hunter67716322011-08-29 16:42:15 +0300668 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500669
670 main_md->part_curr = md->part_type;
671 return 0;
672}
673
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700674static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
675{
676 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100677 u32 result;
678 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700679
Venkatraman Sad5fd972011-08-25 00:30:50 +0530680 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400681 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400682 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700683
684 struct scatterlist sg;
685
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700686 cmd.opcode = MMC_APP_CMD;
687 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700688 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700689
690 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700691 if (err)
692 return (u32)-1;
693 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700694 return (u32)-1;
695
696 memset(&cmd, 0, sizeof(struct mmc_command));
697
698 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
699 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700700 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700701
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700702 data.blksz = 4;
703 data.blocks = 1;
704 data.flags = MMC_DATA_READ;
705 data.sg = &sg;
706 data.sg_len = 1;
Subhash Jadavanid3804432012-06-13 17:10:43 +0530707 mmc_set_data_timeout(&data, card);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700708
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700709 mrq.cmd = &cmd;
710 mrq.data = &data;
711
Ben Dooks051913d2009-06-08 23:33:57 +0100712 blocks = kmalloc(4, GFP_KERNEL);
713 if (!blocks)
714 return (u32)-1;
715
716 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700717
718 mmc_wait_for_req(card->host, &mrq);
719
Ben Dooks051913d2009-06-08 23:33:57 +0100720 result = ntohl(*blocks);
721 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700722
Ben Dooks051913d2009-06-08 23:33:57 +0100723 if (cmd.error || data.error)
724 result = (u32)-1;
725
726 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700727}
728
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100729static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300730{
Chris Ball1278dba2011-04-13 23:40:30 -0400731 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300732 int err;
733
Adrian Hunter504f1912008-10-16 12:55:25 +0300734 cmd.opcode = MMC_SEND_STATUS;
735 if (!mmc_host_is_spi(card->host))
736 cmd.arg = card->rca << 16;
737 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100738 err = mmc_wait_for_cmd(card->host, &cmd, retries);
739 if (err == 0)
740 *status = cmd.resp[0];
741 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300742}
743
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100744static int card_busy_detect(struct mmc_card *card, unsigned int timeout_ms,
Ulf Hansson95a91292014-01-29 13:11:27 +0100745 bool hw_busy_detect, struct request *req, int *gen_err)
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100746{
747 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
748 int err = 0;
749 u32 status;
750
751 do {
752 err = get_card_status(card, &status, 5);
753 if (err) {
754 pr_err("%s: error %d requesting status\n",
755 req->rq_disk->disk_name, err);
756 return err;
757 }
758
759 if (status & R1_ERROR) {
760 pr_err("%s: %s: error sending status cmd, status %#x\n",
761 req->rq_disk->disk_name, __func__, status);
762 *gen_err = 1;
763 }
764
Ulf Hansson95a91292014-01-29 13:11:27 +0100765 /* We may rely on the host hw to handle busy detection.*/
766 if ((card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) &&
767 hw_busy_detect)
768 break;
769
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100770 /*
771 * Timeout if the device never becomes ready for data and never
772 * leaves the program state.
773 */
774 if (time_after(jiffies, timeout)) {
775 pr_err("%s: Card stuck in programming state! %s %s\n",
776 mmc_hostname(card->host),
777 req->rq_disk->disk_name, __func__);
778 return -ETIMEDOUT;
779 }
780
781 /*
782 * Some cards mishandle the status bits,
783 * so make sure to check both the busy
784 * indication and the card state.
785 */
786 } while (!(status & R1_READY_FOR_DATA) ||
787 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
788
789 return err;
790}
791
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100792static int send_stop(struct mmc_card *card, unsigned int timeout_ms,
793 struct request *req, int *gen_err, u32 *stop_status)
794{
795 struct mmc_host *host = card->host;
796 struct mmc_command cmd = {0};
797 int err;
798 bool use_r1b_resp = rq_data_dir(req) == WRITE;
799
800 /*
801 * Normally we use R1B responses for WRITE, but in cases where the host
802 * has specified a max_busy_timeout we need to validate it. A failure
803 * means we need to prevent the host from doing hw busy detection, which
804 * is done by converting to a R1 response instead.
805 */
806 if (host->max_busy_timeout && (timeout_ms > host->max_busy_timeout))
807 use_r1b_resp = false;
808
809 cmd.opcode = MMC_STOP_TRANSMISSION;
810 if (use_r1b_resp) {
811 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
812 cmd.busy_timeout = timeout_ms;
813 } else {
814 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
815 }
816
817 err = mmc_wait_for_cmd(host, &cmd, 5);
818 if (err)
819 return err;
820
821 *stop_status = cmd.resp[0];
822
823 /* No need to check card status in case of READ. */
824 if (rq_data_dir(req) == READ)
825 return 0;
826
827 if (!mmc_host_is_spi(host) &&
828 (*stop_status & R1_ERROR)) {
829 pr_err("%s: %s: general error sending stop command, resp %#x\n",
830 req->rq_disk->disk_name, __func__, *stop_status);
831 *gen_err = 1;
832 }
833
834 return card_busy_detect(card, timeout_ms, use_r1b_resp, req, gen_err);
835}
836
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530837#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100838#define ERR_RETRY 2
839#define ERR_ABORT 1
840#define ERR_CONTINUE 0
841
842static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
843 bool status_valid, u32 status)
844{
845 switch (error) {
846 case -EILSEQ:
847 /* response crc error, retry the r/w cmd */
848 pr_err("%s: %s sending %s command, card status %#x\n",
849 req->rq_disk->disk_name, "response CRC error",
850 name, status);
851 return ERR_RETRY;
852
853 case -ETIMEDOUT:
854 pr_err("%s: %s sending %s command, card status %#x\n",
855 req->rq_disk->disk_name, "timed out", name, status);
856
857 /* If the status cmd initially failed, retry the r/w cmd */
858 if (!status_valid)
859 return ERR_RETRY;
860
861 /*
862 * If it was a r/w cmd crc error, or illegal command
863 * (eg, issued in wrong state) then retry - we should
864 * have corrected the state problem above.
865 */
866 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
867 return ERR_RETRY;
868
869 /* Otherwise abort the command */
870 return ERR_ABORT;
871
872 default:
873 /* We don't understand the error code the driver gave us */
874 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
875 req->rq_disk->disk_name, error, status);
876 return ERR_ABORT;
877 }
878}
879
880/*
881 * Initial r/w and stop cmd error recovery.
882 * We don't know whether the card received the r/w cmd or not, so try to
883 * restore things back to a sane state. Essentially, we do this as follows:
884 * - Obtain card status. If the first attempt to obtain card status fails,
885 * the status word will reflect the failed status cmd, not the failed
886 * r/w cmd. If we fail to obtain card status, it suggests we can no
887 * longer communicate with the card.
888 * - Check the card state. If the card received the cmd but there was a
889 * transient problem with the response, it might still be in a data transfer
890 * mode. Try to send it a stop command. If this fails, we can't recover.
891 * - If the r/w cmd failed due to a response CRC error, it was probably
892 * transient, so retry the cmd.
893 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
894 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
895 * illegal cmd, retry.
896 * Otherwise we don't understand what happened, so abort.
897 */
898static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +0900899 struct mmc_blk_request *brq, int *ecc_err, int *gen_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100900{
901 bool prev_cmd_status_valid = true;
902 u32 status, stop_status = 0;
903 int err, retry;
904
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530905 if (mmc_card_removed(card))
906 return ERR_NOMEDIUM;
907
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100908 /*
909 * Try to get card status which indicates both the card state
910 * and why there was no response. If the first attempt fails,
911 * we can't be sure the returned status is for the r/w command.
912 */
913 for (retry = 2; retry >= 0; retry--) {
914 err = get_card_status(card, &status, 0);
915 if (!err)
916 break;
917
Adrian Hunter6f398ad2015-05-07 13:10:23 +0300918 /* Re-tune if needed */
919 mmc_retune_recheck(card->host);
920
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100921 prev_cmd_status_valid = false;
922 pr_err("%s: error %d sending status command, %sing\n",
923 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
924 }
925
926 /* We couldn't get a response from the card. Give up. */
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530927 if (err) {
928 /* Check if the card is removed */
929 if (mmc_detect_card_removed(card->host))
930 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100931 return ERR_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530932 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100933
Adrian Hunter67716322011-08-29 16:42:15 +0300934 /* Flag ECC errors */
935 if ((status & R1_CARD_ECC_FAILED) ||
936 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
937 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
938 *ecc_err = 1;
939
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +0900940 /* Flag General errors */
941 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
942 if ((status & R1_ERROR) ||
943 (brq->stop.resp[0] & R1_ERROR)) {
944 pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n",
945 req->rq_disk->disk_name, __func__,
946 brq->stop.resp[0], status);
947 *gen_err = 1;
948 }
949
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100950 /*
951 * Check the current card state. If it is in some data transfer
952 * mode, tell it to stop (and hopefully transition back to TRAN.)
953 */
954 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
955 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100956 err = send_stop(card,
957 DIV_ROUND_UP(brq->data.timeout_ns, 1000000),
958 req, gen_err, &stop_status);
959 if (err) {
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100960 pr_err("%s: error %d sending stop command\n",
961 req->rq_disk->disk_name, err);
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100962 /*
963 * If the stop cmd also timed out, the card is probably
964 * not present, so abort. Other errors are bad news too.
965 */
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100966 return ERR_ABORT;
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100967 }
968
Adrian Hunter67716322011-08-29 16:42:15 +0300969 if (stop_status & R1_CARD_ECC_FAILED)
970 *ecc_err = 1;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100971 }
972
973 /* Check for set block count errors */
974 if (brq->sbc.error)
975 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
976 prev_cmd_status_valid, status);
977
978 /* Check for r/w command errors */
979 if (brq->cmd.error)
980 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
981 prev_cmd_status_valid, status);
982
Adrian Hunter67716322011-08-29 16:42:15 +0300983 /* Data errors */
984 if (!brq->stop.error)
985 return ERR_CONTINUE;
986
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100987 /* Now for stop errors. These aren't fatal to the transfer. */
Johan Rudholm5e1344e2014-09-17 09:50:42 +0200988 pr_info("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100989 req->rq_disk->disk_name, brq->stop.error,
990 brq->cmd.resp[0], status);
991
992 /*
993 * Subsitute in our own stop status as this will give the error
994 * state which happened during the execution of the r/w command.
995 */
996 if (stop_status) {
997 brq->stop.resp[0] = stop_status;
998 brq->stop.error = 0;
999 }
1000 return ERR_CONTINUE;
1001}
1002
Adrian Hunter67716322011-08-29 16:42:15 +03001003static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
1004 int type)
1005{
1006 int err;
1007
1008 if (md->reset_done & type)
1009 return -EEXIST;
1010
1011 md->reset_done |= type;
1012 err = mmc_hw_reset(host);
1013 /* Ensure we switch back to the correct partition */
1014 if (err != -EOPNOTSUPP) {
Ulf Hanssonfc95e302014-10-06 14:34:09 +02001015 struct mmc_blk_data *main_md =
1016 dev_get_drvdata(&host->card->dev);
Adrian Hunter67716322011-08-29 16:42:15 +03001017 int part_err;
1018
1019 main_md->part_curr = main_md->part_type;
1020 part_err = mmc_blk_part_switch(host->card, md);
1021 if (part_err) {
1022 /*
1023 * We have failed to get back into the correct
1024 * partition, so we need to abort the whole request.
1025 */
1026 return -ENODEV;
1027 }
1028 }
1029 return err;
1030}
1031
1032static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
1033{
1034 md->reset_done &= ~type;
1035}
1036
Chuanxiao Dong4e93b9a2014-08-12 12:01:30 +08001037int mmc_access_rpmb(struct mmc_queue *mq)
1038{
1039 struct mmc_blk_data *md = mq->data;
1040 /*
1041 * If this is a RPMB partition access, return ture
1042 */
1043 if (md && md->part_type == EXT_CSD_PART_CONFIG_ACC_RPMB)
1044 return true;
1045
1046 return false;
1047}
1048
Adrian Hunterbd788c92010-08-11 14:17:47 -07001049static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
1050{
1051 struct mmc_blk_data *md = mq->data;
1052 struct mmc_card *card = md->queue.card;
1053 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001054 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001055
Adrian Hunterbd788c92010-08-11 14:17:47 -07001056 if (!mmc_can_erase(card)) {
1057 err = -EOPNOTSUPP;
1058 goto out;
1059 }
1060
1061 from = blk_rq_pos(req);
1062 nr = blk_rq_sectors(req);
1063
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001064 if (mmc_can_discard(card))
1065 arg = MMC_DISCARD_ARG;
1066 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -07001067 arg = MMC_TRIM_ARG;
1068 else
1069 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +03001070retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001071 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1072 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1073 INAND_CMD38_ARG_EXT_CSD,
1074 arg == MMC_TRIM_ARG ?
1075 INAND_CMD38_ARG_TRIM :
1076 INAND_CMD38_ARG_ERASE,
1077 0);
1078 if (err)
1079 goto out;
1080 }
Adrian Hunterbd788c92010-08-11 14:17:47 -07001081 err = mmc_erase(card, from, nr, arg);
1082out:
Adrian Hunter67716322011-08-29 16:42:15 +03001083 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
1084 goto retry;
1085 if (!err)
1086 mmc_blk_reset_success(md, type);
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301087 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunterbd788c92010-08-11 14:17:47 -07001088
Adrian Hunterbd788c92010-08-11 14:17:47 -07001089 return err ? 0 : 1;
1090}
1091
Adrian Hunter49804542010-08-11 14:17:50 -07001092static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
1093 struct request *req)
1094{
1095 struct mmc_blk_data *md = mq->data;
1096 struct mmc_card *card = md->queue.card;
Maya Erez775a9362013-04-18 15:41:55 +03001097 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001098 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -07001099
Maya Erez775a9362013-04-18 15:41:55 +03001100 if (!(mmc_can_secure_erase_trim(card))) {
Adrian Hunter49804542010-08-11 14:17:50 -07001101 err = -EOPNOTSUPP;
1102 goto out;
1103 }
1104
1105 from = blk_rq_pos(req);
1106 nr = blk_rq_sectors(req);
1107
Maya Erez775a9362013-04-18 15:41:55 +03001108 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
1109 arg = MMC_SECURE_TRIM1_ARG;
1110 else
1111 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter28302812012-04-05 14:45:48 +03001112
Adrian Hunter67716322011-08-29 16:42:15 +03001113retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001114 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1115 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1116 INAND_CMD38_ARG_EXT_CSD,
1117 arg == MMC_SECURE_TRIM1_ARG ?
1118 INAND_CMD38_ARG_SECTRIM1 :
1119 INAND_CMD38_ARG_SECERASE,
1120 0);
1121 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001122 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001123 }
Adrian Hunter28302812012-04-05 14:45:48 +03001124
Adrian Hunter49804542010-08-11 14:17:50 -07001125 err = mmc_erase(card, from, nr, arg);
Adrian Hunter28302812012-04-05 14:45:48 +03001126 if (err == -EIO)
1127 goto out_retry;
1128 if (err)
1129 goto out;
1130
1131 if (arg == MMC_SECURE_TRIM1_ARG) {
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001132 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1133 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1134 INAND_CMD38_ARG_EXT_CSD,
1135 INAND_CMD38_ARG_SECTRIM2,
1136 0);
1137 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001138 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001139 }
Adrian Hunter28302812012-04-05 14:45:48 +03001140
Adrian Hunter49804542010-08-11 14:17:50 -07001141 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Adrian Hunter28302812012-04-05 14:45:48 +03001142 if (err == -EIO)
1143 goto out_retry;
1144 if (err)
1145 goto out;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001146 }
Adrian Hunter28302812012-04-05 14:45:48 +03001147
Adrian Hunter28302812012-04-05 14:45:48 +03001148out_retry:
1149 if (err && !mmc_blk_reset(md, card->host, type))
Adrian Hunter67716322011-08-29 16:42:15 +03001150 goto retry;
1151 if (!err)
1152 mmc_blk_reset_success(md, type);
Adrian Hunter28302812012-04-05 14:45:48 +03001153out:
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301154 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunter49804542010-08-11 14:17:50 -07001155
Adrian Hunter49804542010-08-11 14:17:50 -07001156 return err ? 0 : 1;
1157}
1158
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001159static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
1160{
1161 struct mmc_blk_data *md = mq->data;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001162 struct mmc_card *card = md->queue.card;
1163 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001164
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001165 ret = mmc_flush_cache(card);
1166 if (ret)
1167 ret = -EIO;
1168
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301169 blk_end_request_all(req, ret);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001170
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001171 return ret ? 0 : 1;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001172}
1173
1174/*
1175 * Reformat current write as a reliable write, supporting
1176 * both legacy and the enhanced reliable write MMC cards.
1177 * In each transfer we'll handle only as much as a single
1178 * reliable write can handle, thus finish the request in
1179 * partial completions.
1180 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001181static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
1182 struct mmc_card *card,
1183 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001184{
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001185 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
1186 /* Legacy mode imposes restrictions on transfers. */
1187 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
1188 brq->data.blocks = 1;
1189
1190 if (brq->data.blocks > card->ext_csd.rel_sectors)
1191 brq->data.blocks = card->ext_csd.rel_sectors;
1192 else if (brq->data.blocks < card->ext_csd.rel_sectors)
1193 brq->data.blocks = 1;
1194 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001195}
1196
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001197#define CMD_ERRORS \
1198 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
1199 R1_ADDRESS_ERROR | /* Misaligned address */ \
1200 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1201 R1_WP_VIOLATION | /* Tried to write to protected block */ \
1202 R1_CC_ERROR | /* Card controller error */ \
1203 R1_ERROR) /* General/unknown error */
1204
Per Forlinee8a43a2011-07-01 18:55:33 +02001205static int mmc_blk_err_check(struct mmc_card *card,
1206 struct mmc_async_req *areq)
Per Forlind78d4a8a2011-07-01 18:55:30 +02001207{
Per Forlinee8a43a2011-07-01 18:55:33 +02001208 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1209 mmc_active);
1210 struct mmc_blk_request *brq = &mq_mrq->brq;
1211 struct request *req = mq_mrq->req;
Adrian Hunterb8360a42015-05-07 13:10:24 +03001212 int need_retune = card->host->need_retune;
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001213 int ecc_err = 0, gen_err = 0;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001214
1215 /*
1216 * sbc.error indicates a problem with the set block count
1217 * command. No data will have been transferred.
1218 *
1219 * cmd.error indicates a problem with the r/w command. No
1220 * data will have been transferred.
1221 *
1222 * stop.error indicates a problem with the stop command. Data
1223 * may have been transferred, or may still be transferring.
1224 */
Adrian Hunter67716322011-08-29 16:42:15 +03001225 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
1226 brq->data.error) {
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001227 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) {
Per Forlind78d4a8a2011-07-01 18:55:30 +02001228 case ERR_RETRY:
1229 return MMC_BLK_RETRY;
1230 case ERR_ABORT:
1231 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301232 case ERR_NOMEDIUM:
1233 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001234 case ERR_CONTINUE:
1235 break;
1236 }
1237 }
1238
1239 /*
1240 * Check for errors relating to the execution of the
1241 * initial command - such as address errors. No data
1242 * has been transferred.
1243 */
1244 if (brq->cmd.resp[0] & CMD_ERRORS) {
1245 pr_err("%s: r/w command failed, status = %#x\n",
1246 req->rq_disk->disk_name, brq->cmd.resp[0]);
1247 return MMC_BLK_ABORT;
1248 }
1249
1250 /*
1251 * Everything else is either success, or a data error of some
1252 * kind. If it was a write, we may have transitioned to
1253 * program mode, which we have to wait for it to complete.
1254 */
1255 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001256 int err;
Trey Ramsay8fee4762012-11-16 09:31:41 -06001257
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001258 /* Check stop command response */
1259 if (brq->stop.resp[0] & R1_ERROR) {
1260 pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
1261 req->rq_disk->disk_name, __func__,
1262 brq->stop.resp[0]);
1263 gen_err = 1;
1264 }
1265
Ulf Hansson95a91292014-01-29 13:11:27 +01001266 err = card_busy_detect(card, MMC_BLK_TIMEOUT_MS, false, req,
1267 &gen_err);
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001268 if (err)
1269 return MMC_BLK_CMD_ERR;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001270 }
1271
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001272 /* if general error occurs, retry the write operation. */
1273 if (gen_err) {
1274 pr_warn("%s: retrying write for general error\n",
1275 req->rq_disk->disk_name);
1276 return MMC_BLK_RETRY;
1277 }
1278
Per Forlind78d4a8a2011-07-01 18:55:30 +02001279 if (brq->data.error) {
Adrian Hunterb8360a42015-05-07 13:10:24 +03001280 if (need_retune && !brq->retune_retry_done) {
1281 pr_info("%s: retrying because a re-tune was needed\n",
1282 req->rq_disk->disk_name);
1283 brq->retune_retry_done = 1;
1284 return MMC_BLK_RETRY;
1285 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02001286 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1287 req->rq_disk->disk_name, brq->data.error,
1288 (unsigned)blk_rq_pos(req),
1289 (unsigned)blk_rq_sectors(req),
1290 brq->cmd.resp[0], brq->stop.resp[0]);
1291
1292 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001293 if (ecc_err)
1294 return MMC_BLK_ECC_ERR;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001295 return MMC_BLK_DATA_ERR;
1296 } else {
1297 return MMC_BLK_CMD_ERR;
1298 }
1299 }
1300
Adrian Hunter67716322011-08-29 16:42:15 +03001301 if (!brq->data.bytes_xfered)
1302 return MMC_BLK_RETRY;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001303
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001304 if (mmc_packed_cmd(mq_mrq->cmd_type)) {
1305 if (unlikely(brq->data.blocks << 9 != brq->data.bytes_xfered))
1306 return MMC_BLK_PARTIAL;
1307 else
1308 return MMC_BLK_SUCCESS;
1309 }
1310
Adrian Hunter67716322011-08-29 16:42:15 +03001311 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1312 return MMC_BLK_PARTIAL;
1313
1314 return MMC_BLK_SUCCESS;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001315}
1316
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001317static int mmc_blk_packed_err_check(struct mmc_card *card,
1318 struct mmc_async_req *areq)
1319{
1320 struct mmc_queue_req *mq_rq = container_of(areq, struct mmc_queue_req,
1321 mmc_active);
1322 struct request *req = mq_rq->req;
1323 struct mmc_packed *packed = mq_rq->packed;
1324 int err, check, status;
1325 u8 *ext_csd;
1326
1327 BUG_ON(!packed);
1328
1329 packed->retries--;
1330 check = mmc_blk_err_check(card, areq);
1331 err = get_card_status(card, &status, 0);
1332 if (err) {
1333 pr_err("%s: error %d sending status command\n",
1334 req->rq_disk->disk_name, err);
1335 return MMC_BLK_ABORT;
1336 }
1337
1338 if (status & R1_EXCEPTION_EVENT) {
Ulf Hansson86817ff2014-10-17 11:39:05 +02001339 err = mmc_get_ext_csd(card, &ext_csd);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001340 if (err) {
1341 pr_err("%s: error %d sending ext_csd\n",
1342 req->rq_disk->disk_name, err);
Ulf Hansson86817ff2014-10-17 11:39:05 +02001343 return MMC_BLK_ABORT;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001344 }
1345
1346 if ((ext_csd[EXT_CSD_EXP_EVENTS_STATUS] &
1347 EXT_CSD_PACKED_FAILURE) &&
1348 (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1349 EXT_CSD_PACKED_GENERIC_ERROR)) {
1350 if (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1351 EXT_CSD_PACKED_INDEXED_ERROR) {
1352 packed->idx_failure =
1353 ext_csd[EXT_CSD_PACKED_FAILURE_INDEX] - 1;
1354 check = MMC_BLK_PARTIAL;
1355 }
1356 pr_err("%s: packed cmd failed, nr %u, sectors %u, "
1357 "failure index: %d\n",
1358 req->rq_disk->disk_name, packed->nr_entries,
1359 packed->blocks, packed->idx_failure);
1360 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001361 kfree(ext_csd);
1362 }
1363
1364 return check;
1365}
1366
Per Forlin54d49d72011-07-01 18:55:29 +02001367static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1368 struct mmc_card *card,
1369 int disable_multi,
1370 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Per Forlin54d49d72011-07-01 18:55:29 +02001372 u32 readcmd, writecmd;
1373 struct mmc_blk_request *brq = &mqrq->brq;
1374 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 struct mmc_blk_data *md = mq->data;
Saugata Das42659002011-12-21 13:09:17 +05301376 bool do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001378 /*
1379 * Reliable writes are used to implement Forced Unit Access and
1380 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +02001381 *
1382 * XXX: this really needs a good explanation of why REQ_META
1383 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001384 */
1385 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1386 (req->cmd_flags & REQ_META)) &&
1387 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001388 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001389
Per Forlin54d49d72011-07-01 18:55:29 +02001390 memset(brq, 0, sizeof(struct mmc_blk_request));
1391 brq->mrq.cmd = &brq->cmd;
1392 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Per Forlin54d49d72011-07-01 18:55:29 +02001394 brq->cmd.arg = blk_rq_pos(req);
1395 if (!mmc_card_blockaddr(card))
1396 brq->cmd.arg <<= 9;
1397 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1398 brq->data.blksz = 512;
1399 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1400 brq->stop.arg = 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001401 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Per Forlin54d49d72011-07-01 18:55:29 +02001403 /*
1404 * The block layer doesn't support all sector count
1405 * restrictions, so we need to be prepared for too big
1406 * requests.
1407 */
1408 if (brq->data.blocks > card->host->max_blk_count)
1409 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001411 if (brq->data.blocks > 1) {
1412 /*
1413 * After a read error, we redo the request one sector
1414 * at a time in order to accurately determine which
1415 * sectors can be read successfully.
1416 */
1417 if (disable_multi)
1418 brq->data.blocks = 1;
1419
Kuninori Morimoto2e47e842014-09-02 19:08:53 -07001420 /*
1421 * Some controllers have HW issues while operating
1422 * in multiple I/O mode
1423 */
1424 if (card->host->ops->multi_io_quirk)
1425 brq->data.blocks = card->host->ops->multi_io_quirk(card,
1426 (rq_data_dir(req) == READ) ?
1427 MMC_DATA_READ : MMC_DATA_WRITE,
1428 brq->data.blocks);
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001429 }
Per Forlin54d49d72011-07-01 18:55:29 +02001430
1431 if (brq->data.blocks > 1 || do_rel_wr) {
1432 /* SPI multiblock writes terminate using a special
1433 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001434 */
Per Forlin54d49d72011-07-01 18:55:29 +02001435 if (!mmc_host_is_spi(card->host) ||
1436 rq_data_dir(req) == READ)
1437 brq->mrq.stop = &brq->stop;
1438 readcmd = MMC_READ_MULTIPLE_BLOCK;
1439 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1440 } else {
1441 brq->mrq.stop = NULL;
1442 readcmd = MMC_READ_SINGLE_BLOCK;
1443 writecmd = MMC_WRITE_BLOCK;
1444 }
1445 if (rq_data_dir(req) == READ) {
1446 brq->cmd.opcode = readcmd;
1447 brq->data.flags |= MMC_DATA_READ;
Ulf Hanssonbcc3e172014-01-14 21:24:21 +01001448 if (brq->mrq.stop)
1449 brq->stop.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 |
1450 MMC_CMD_AC;
Per Forlin54d49d72011-07-01 18:55:29 +02001451 } else {
1452 brq->cmd.opcode = writecmd;
1453 brq->data.flags |= MMC_DATA_WRITE;
Ulf Hanssonbcc3e172014-01-14 21:24:21 +01001454 if (brq->mrq.stop)
1455 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B |
1456 MMC_CMD_AC;
Per Forlin54d49d72011-07-01 18:55:29 +02001457 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001458
Per Forlin54d49d72011-07-01 18:55:29 +02001459 if (do_rel_wr)
1460 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001461
Per Forlin54d49d72011-07-01 18:55:29 +02001462 /*
Saugata Das42659002011-12-21 13:09:17 +05301463 * Data tag is used only during writing meta data to speed
1464 * up write and any subsequent read of this meta data
1465 */
1466 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1467 (req->cmd_flags & REQ_META) &&
1468 (rq_data_dir(req) == WRITE) &&
1469 ((brq->data.blocks * brq->data.blksz) >=
1470 card->ext_csd.data_tag_unit_size);
1471
1472 /*
Per Forlin54d49d72011-07-01 18:55:29 +02001473 * Pre-defined multi-block transfers are preferable to
1474 * open ended-ones (and necessary for reliable writes).
1475 * However, it is not sufficient to just send CMD23,
1476 * and avoid the final CMD12, as on an error condition
1477 * CMD12 (stop) needs to be sent anyway. This, coupled
1478 * with Auto-CMD23 enhancements provided by some
1479 * hosts, means that the complexity of dealing
1480 * with this is best left to the host. If CMD23 is
1481 * supported by card and host, we'll fill sbc in and let
1482 * the host deal with handling it correctly. This means
1483 * that for hosts that don't expose MMC_CAP_CMD23, no
1484 * change of behavior will be observed.
1485 *
1486 * N.B: Some MMC cards experience perf degradation.
1487 * We'll avoid using CMD23-bounded multiblock writes for
1488 * these, while retaining features like reliable writes.
1489 */
Saugata Das42659002011-12-21 13:09:17 +05301490 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1491 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1492 do_data_tag)) {
Per Forlin54d49d72011-07-01 18:55:29 +02001493 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1494 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301495 (do_rel_wr ? (1 << 31) : 0) |
1496 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d72011-07-01 18:55:29 +02001497 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1498 brq->mrq.sbc = &brq->sbc;
1499 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001500
Per Forlin54d49d72011-07-01 18:55:29 +02001501 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001502
Per Forlin54d49d72011-07-01 18:55:29 +02001503 brq->data.sg = mqrq->sg;
1504 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001505
Per Forlin54d49d72011-07-01 18:55:29 +02001506 /*
1507 * Adjust the sg list so it is the same size as the
1508 * request.
1509 */
1510 if (brq->data.blocks != blk_rq_sectors(req)) {
1511 int i, data_size = brq->data.blocks << 9;
1512 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001513
Per Forlin54d49d72011-07-01 18:55:29 +02001514 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1515 data_size -= sg->length;
1516 if (data_size <= 0) {
1517 sg->length += data_size;
1518 i++;
1519 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001520 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001521 }
Per Forlin54d49d72011-07-01 18:55:29 +02001522 brq->data.sg_len = i;
1523 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001524
Per Forlinee8a43a2011-07-01 18:55:33 +02001525 mqrq->mmc_active.mrq = &brq->mrq;
1526 mqrq->mmc_active.err_check = mmc_blk_err_check;
1527
Per Forlin54d49d72011-07-01 18:55:29 +02001528 mmc_queue_bounce_pre(mqrq);
1529}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001531static inline u8 mmc_calc_packed_hdr_segs(struct request_queue *q,
1532 struct mmc_card *card)
1533{
1534 unsigned int hdr_sz = mmc_large_sector(card) ? 4096 : 512;
1535 unsigned int max_seg_sz = queue_max_segment_size(q);
1536 unsigned int len, nr_segs = 0;
1537
1538 do {
1539 len = min(hdr_sz, max_seg_sz);
1540 hdr_sz -= len;
1541 nr_segs++;
1542 } while (hdr_sz);
1543
1544 return nr_segs;
1545}
1546
1547static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
1548{
1549 struct request_queue *q = mq->queue;
1550 struct mmc_card *card = mq->card;
1551 struct request *cur = req, *next = NULL;
1552 struct mmc_blk_data *md = mq->data;
1553 struct mmc_queue_req *mqrq = mq->mqrq_cur;
1554 bool en_rel_wr = card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN;
1555 unsigned int req_sectors = 0, phys_segments = 0;
1556 unsigned int max_blk_count, max_phys_segs;
1557 bool put_back = true;
1558 u8 max_packed_rw = 0;
1559 u8 reqs = 0;
1560
1561 if (!(md->flags & MMC_BLK_PACKED_CMD))
1562 goto no_packed;
1563
1564 if ((rq_data_dir(cur) == WRITE) &&
1565 mmc_host_packed_wr(card->host))
1566 max_packed_rw = card->ext_csd.max_packed_writes;
1567
1568 if (max_packed_rw == 0)
1569 goto no_packed;
1570
1571 if (mmc_req_rel_wr(cur) &&
1572 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1573 goto no_packed;
1574
1575 if (mmc_large_sector(card) &&
1576 !IS_ALIGNED(blk_rq_sectors(cur), 8))
1577 goto no_packed;
1578
1579 mmc_blk_clear_packed(mqrq);
1580
1581 max_blk_count = min(card->host->max_blk_count,
1582 card->host->max_req_size >> 9);
1583 if (unlikely(max_blk_count > 0xffff))
1584 max_blk_count = 0xffff;
1585
1586 max_phys_segs = queue_max_segments(q);
1587 req_sectors += blk_rq_sectors(cur);
1588 phys_segments += cur->nr_phys_segments;
1589
1590 if (rq_data_dir(cur) == WRITE) {
1591 req_sectors += mmc_large_sector(card) ? 8 : 1;
1592 phys_segments += mmc_calc_packed_hdr_segs(q, card);
1593 }
1594
1595 do {
1596 if (reqs >= max_packed_rw - 1) {
1597 put_back = false;
1598 break;
1599 }
1600
1601 spin_lock_irq(q->queue_lock);
1602 next = blk_fetch_request(q);
1603 spin_unlock_irq(q->queue_lock);
1604 if (!next) {
1605 put_back = false;
1606 break;
1607 }
1608
1609 if (mmc_large_sector(card) &&
1610 !IS_ALIGNED(blk_rq_sectors(next), 8))
1611 break;
1612
1613 if (next->cmd_flags & REQ_DISCARD ||
1614 next->cmd_flags & REQ_FLUSH)
1615 break;
1616
1617 if (rq_data_dir(cur) != rq_data_dir(next))
1618 break;
1619
1620 if (mmc_req_rel_wr(next) &&
1621 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1622 break;
1623
1624 req_sectors += blk_rq_sectors(next);
1625 if (req_sectors > max_blk_count)
1626 break;
1627
1628 phys_segments += next->nr_phys_segments;
1629 if (phys_segments > max_phys_segs)
1630 break;
1631
1632 list_add_tail(&next->queuelist, &mqrq->packed->list);
1633 cur = next;
1634 reqs++;
1635 } while (1);
1636
1637 if (put_back) {
1638 spin_lock_irq(q->queue_lock);
1639 blk_requeue_request(q, next);
1640 spin_unlock_irq(q->queue_lock);
1641 }
1642
1643 if (reqs > 0) {
1644 list_add(&req->queuelist, &mqrq->packed->list);
1645 mqrq->packed->nr_entries = ++reqs;
1646 mqrq->packed->retries = reqs;
1647 return reqs;
1648 }
1649
1650no_packed:
1651 mqrq->cmd_type = MMC_PACKED_NONE;
1652 return 0;
1653}
1654
1655static void mmc_blk_packed_hdr_wrq_prep(struct mmc_queue_req *mqrq,
1656 struct mmc_card *card,
1657 struct mmc_queue *mq)
1658{
1659 struct mmc_blk_request *brq = &mqrq->brq;
1660 struct request *req = mqrq->req;
1661 struct request *prq;
1662 struct mmc_blk_data *md = mq->data;
1663 struct mmc_packed *packed = mqrq->packed;
1664 bool do_rel_wr, do_data_tag;
1665 u32 *packed_cmd_hdr;
1666 u8 hdr_blocks;
1667 u8 i = 1;
1668
1669 BUG_ON(!packed);
1670
1671 mqrq->cmd_type = MMC_PACKED_WRITE;
1672 packed->blocks = 0;
1673 packed->idx_failure = MMC_PACKED_NR_IDX;
1674
1675 packed_cmd_hdr = packed->cmd_hdr;
1676 memset(packed_cmd_hdr, 0, sizeof(packed->cmd_hdr));
1677 packed_cmd_hdr[0] = (packed->nr_entries << 16) |
1678 (PACKED_CMD_WR << 8) | PACKED_CMD_VER;
1679 hdr_blocks = mmc_large_sector(card) ? 8 : 1;
1680
1681 /*
1682 * Argument for each entry of packed group
1683 */
1684 list_for_each_entry(prq, &packed->list, queuelist) {
1685 do_rel_wr = mmc_req_rel_wr(prq) && (md->flags & MMC_BLK_REL_WR);
1686 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1687 (prq->cmd_flags & REQ_META) &&
1688 (rq_data_dir(prq) == WRITE) &&
1689 ((brq->data.blocks * brq->data.blksz) >=
1690 card->ext_csd.data_tag_unit_size);
1691 /* Argument of CMD23 */
1692 packed_cmd_hdr[(i * 2)] =
1693 (do_rel_wr ? MMC_CMD23_ARG_REL_WR : 0) |
1694 (do_data_tag ? MMC_CMD23_ARG_TAG_REQ : 0) |
1695 blk_rq_sectors(prq);
1696 /* Argument of CMD18 or CMD25 */
1697 packed_cmd_hdr[((i * 2)) + 1] =
1698 mmc_card_blockaddr(card) ?
1699 blk_rq_pos(prq) : blk_rq_pos(prq) << 9;
1700 packed->blocks += blk_rq_sectors(prq);
1701 i++;
1702 }
1703
1704 memset(brq, 0, sizeof(struct mmc_blk_request));
1705 brq->mrq.cmd = &brq->cmd;
1706 brq->mrq.data = &brq->data;
1707 brq->mrq.sbc = &brq->sbc;
1708 brq->mrq.stop = &brq->stop;
1709
1710 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1711 brq->sbc.arg = MMC_CMD23_ARG_PACKED | (packed->blocks + hdr_blocks);
1712 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1713
1714 brq->cmd.opcode = MMC_WRITE_MULTIPLE_BLOCK;
1715 brq->cmd.arg = blk_rq_pos(req);
1716 if (!mmc_card_blockaddr(card))
1717 brq->cmd.arg <<= 9;
1718 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1719
1720 brq->data.blksz = 512;
1721 brq->data.blocks = packed->blocks + hdr_blocks;
1722 brq->data.flags |= MMC_DATA_WRITE;
1723
1724 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1725 brq->stop.arg = 0;
1726 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1727
1728 mmc_set_data_timeout(&brq->data, card);
1729
1730 brq->data.sg = mqrq->sg;
1731 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1732
1733 mqrq->mmc_active.mrq = &brq->mrq;
1734 mqrq->mmc_active.err_check = mmc_blk_packed_err_check;
1735
1736 mmc_queue_bounce_pre(mqrq);
1737}
1738
Adrian Hunter67716322011-08-29 16:42:15 +03001739static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1740 struct mmc_blk_request *brq, struct request *req,
1741 int ret)
1742{
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001743 struct mmc_queue_req *mq_rq;
1744 mq_rq = container_of(brq, struct mmc_queue_req, brq);
1745
Adrian Hunter67716322011-08-29 16:42:15 +03001746 /*
1747 * If this is an SD card and we're writing, we can first
1748 * mark the known good sectors as ok.
1749 *
1750 * If the card is not SD, we can still ok written sectors
1751 * as reported by the controller (which might be less than
1752 * the real number of written sectors, but never more).
1753 */
1754 if (mmc_card_sd(card)) {
1755 u32 blocks;
1756
1757 blocks = mmc_sd_num_wr_blocks(card);
1758 if (blocks != (u32)-1) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301759 ret = blk_end_request(req, 0, blocks << 9);
Adrian Hunter67716322011-08-29 16:42:15 +03001760 }
1761 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001762 if (!mmc_packed_cmd(mq_rq->cmd_type))
1763 ret = blk_end_request(req, 0, brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03001764 }
1765 return ret;
1766}
1767
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001768static int mmc_blk_end_packed_req(struct mmc_queue_req *mq_rq)
1769{
1770 struct request *prq;
1771 struct mmc_packed *packed = mq_rq->packed;
1772 int idx = packed->idx_failure, i = 0;
1773 int ret = 0;
1774
1775 BUG_ON(!packed);
1776
1777 while (!list_empty(&packed->list)) {
1778 prq = list_entry_rq(packed->list.next);
1779 if (idx == i) {
1780 /* retry from error index */
1781 packed->nr_entries -= idx;
1782 mq_rq->req = prq;
1783 ret = 1;
1784
1785 if (packed->nr_entries == MMC_PACKED_NR_SINGLE) {
1786 list_del_init(&prq->queuelist);
1787 mmc_blk_clear_packed(mq_rq);
1788 }
1789 return ret;
1790 }
1791 list_del_init(&prq->queuelist);
1792 blk_end_request(prq, 0, blk_rq_bytes(prq));
1793 i++;
1794 }
1795
1796 mmc_blk_clear_packed(mq_rq);
1797 return ret;
1798}
1799
1800static void mmc_blk_abort_packed_req(struct mmc_queue_req *mq_rq)
1801{
1802 struct request *prq;
1803 struct mmc_packed *packed = mq_rq->packed;
1804
1805 BUG_ON(!packed);
1806
1807 while (!list_empty(&packed->list)) {
1808 prq = list_entry_rq(packed->list.next);
1809 list_del_init(&prq->queuelist);
1810 blk_end_request(prq, -EIO, blk_rq_bytes(prq));
1811 }
1812
1813 mmc_blk_clear_packed(mq_rq);
1814}
1815
1816static void mmc_blk_revert_packed_req(struct mmc_queue *mq,
1817 struct mmc_queue_req *mq_rq)
1818{
1819 struct request *prq;
1820 struct request_queue *q = mq->queue;
1821 struct mmc_packed *packed = mq_rq->packed;
1822
1823 BUG_ON(!packed);
1824
1825 while (!list_empty(&packed->list)) {
1826 prq = list_entry_rq(packed->list.prev);
1827 if (prq->queuelist.prev != &packed->list) {
1828 list_del_init(&prq->queuelist);
1829 spin_lock_irq(q->queue_lock);
1830 blk_requeue_request(mq->queue, prq);
1831 spin_unlock_irq(q->queue_lock);
1832 } else {
1833 list_del_init(&prq->queuelist);
1834 }
1835 }
1836
1837 mmc_blk_clear_packed(mq_rq);
1838}
1839
Per Forlinee8a43a2011-07-01 18:55:33 +02001840static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001841{
1842 struct mmc_blk_data *md = mq->data;
1843 struct mmc_card *card = md->queue.card;
1844 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunterb8360a42015-05-07 13:10:24 +03001845 int ret = 1, disable_multi = 0, retry = 0, type, retune_retry_done = 0;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001846 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001847 struct mmc_queue_req *mq_rq;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301848 struct request *req = rqc;
Per Forlinee8a43a2011-07-01 18:55:33 +02001849 struct mmc_async_req *areq;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001850 const u8 packed_nr = 2;
1851 u8 reqs = 0;
Per Forlinee8a43a2011-07-01 18:55:33 +02001852
1853 if (!rqc && !mq->mqrq_prev->req)
1854 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001855
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001856 if (rqc)
1857 reqs = mmc_blk_prep_packed_list(mq, rqc);
1858
Per Forlin54d49d72011-07-01 18:55:29 +02001859 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001860 if (rqc) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05301861 /*
1862 * When 4KB native sector is enabled, only 8 blocks
1863 * multiple read or write is allowed
1864 */
1865 if ((brq->data.blocks & 0x07) &&
1866 (card->ext_csd.data_sector_size == 4096)) {
1867 pr_err("%s: Transfer size is not 4KB sector size aligned\n",
1868 req->rq_disk->disk_name);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001869 mq_rq = mq->mqrq_cur;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301870 goto cmd_abort;
1871 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001872
1873 if (reqs >= packed_nr)
1874 mmc_blk_packed_hdr_wrq_prep(mq->mqrq_cur,
1875 card, mq);
1876 else
1877 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
Per Forlinee8a43a2011-07-01 18:55:33 +02001878 areq = &mq->mqrq_cur->mmc_active;
1879 } else
1880 areq = NULL;
1881 areq = mmc_start_req(card->host, areq, (int *) &status);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001882 if (!areq) {
1883 if (status == MMC_BLK_NEW_REQUEST)
1884 mq->flags |= MMC_QUEUE_NEW_REQUEST;
Per Forlinee8a43a2011-07-01 18:55:33 +02001885 return 0;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001886 }
Pierre Ossman98ccf142007-05-12 00:26:16 +02001887
Per Forlinee8a43a2011-07-01 18:55:33 +02001888 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1889 brq = &mq_rq->brq;
1890 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001891 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001892 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001893
Per Forlind78d4a8a2011-07-01 18:55:30 +02001894 switch (status) {
1895 case MMC_BLK_SUCCESS:
1896 case MMC_BLK_PARTIAL:
1897 /*
1898 * A block was successfully transferred.
1899 */
Adrian Hunter67716322011-08-29 16:42:15 +03001900 mmc_blk_reset_success(md, type);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001901
1902 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1903 ret = mmc_blk_end_packed_req(mq_rq);
1904 break;
1905 } else {
1906 ret = blk_end_request(req, 0,
Per Forlind78d4a8a2011-07-01 18:55:30 +02001907 brq->data.bytes_xfered);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001908 }
1909
Adrian Hunter67716322011-08-29 16:42:15 +03001910 /*
1911 * If the blk_end_request function returns non-zero even
1912 * though all data has been transferred and no errors
1913 * were returned by the host controller, it's a bug.
1914 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001915 if (status == MMC_BLK_SUCCESS && ret) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301916 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Per Forlinee8a43a2011-07-01 18:55:33 +02001917 __func__, blk_rq_bytes(req),
1918 brq->data.bytes_xfered);
1919 rqc = NULL;
1920 goto cmd_abort;
1921 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02001922 break;
1923 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001924 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
Ding Wang29535f72015-05-18 20:14:15 +08001925 if (mmc_blk_reset(md, card->host, type))
1926 goto cmd_abort;
1927 if (!ret)
1928 goto start_new_req;
1929 break;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001930 case MMC_BLK_RETRY:
Adrian Hunterb8360a42015-05-07 13:10:24 +03001931 retune_retry_done = brq->retune_retry_done;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001932 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001933 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001934 /* Fall through */
Per Forlind78d4a8a2011-07-01 18:55:30 +02001935 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001936 if (!mmc_blk_reset(md, card->host, type))
1937 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001938 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001939 case MMC_BLK_DATA_ERR: {
1940 int err;
1941
1942 err = mmc_blk_reset(md, card->host, type);
1943 if (!err)
1944 break;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001945 if (err == -ENODEV ||
1946 mmc_packed_cmd(mq_rq->cmd_type))
Adrian Hunter67716322011-08-29 16:42:15 +03001947 goto cmd_abort;
1948 /* Fall through */
1949 }
1950 case MMC_BLK_ECC_ERR:
1951 if (brq->data.blocks > 1) {
1952 /* Redo read one sector at a time */
Joe Perches66061102014-09-12 14:56:56 -07001953 pr_warn("%s: retrying using single block read\n",
1954 req->rq_disk->disk_name);
Adrian Hunter67716322011-08-29 16:42:15 +03001955 disable_multi = 1;
1956 break;
1957 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02001958 /*
1959 * After an error, we redo I/O one sector at a
1960 * time, so we only reach here after trying to
1961 * read a single sector.
1962 */
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301963 ret = blk_end_request(req, -EIO,
Per Forlind78d4a8a2011-07-01 18:55:30 +02001964 brq->data.blksz);
Per Forlinee8a43a2011-07-01 18:55:33 +02001965 if (!ret)
1966 goto start_new_req;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001967 break;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301968 case MMC_BLK_NOMEDIUM:
1969 goto cmd_abort;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001970 default:
1971 pr_err("%s: Unhandled return value (%d)",
1972 req->rq_disk->disk_name, status);
1973 goto cmd_abort;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001974 }
1975
Per Forlinee8a43a2011-07-01 18:55:33 +02001976 if (ret) {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001977 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1978 if (!mq_rq->packed->retries)
1979 goto cmd_abort;
1980 mmc_blk_packed_hdr_wrq_prep(mq_rq, card, mq);
1981 mmc_start_req(card->host,
1982 &mq_rq->mmc_active, NULL);
1983 } else {
1984
1985 /*
1986 * In case of a incomplete request
1987 * prepare it again and resend.
1988 */
1989 mmc_blk_rw_rq_prep(mq_rq, card,
1990 disable_multi, mq);
1991 mmc_start_req(card->host,
1992 &mq_rq->mmc_active, NULL);
1993 }
Adrian Hunterb8360a42015-05-07 13:10:24 +03001994 mq_rq->brq.retune_retry_done = retune_retry_done;
Per Forlinee8a43a2011-07-01 18:55:33 +02001995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 } while (ret);
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 return 1;
1999
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01002000 cmd_abort:
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002001 if (mmc_packed_cmd(mq_rq->cmd_type)) {
2002 mmc_blk_abort_packed_req(mq_rq);
2003 } else {
2004 if (mmc_card_removed(card))
2005 req->cmd_flags |= REQ_QUIET;
2006 while (ret)
2007 ret = blk_end_request(req, -EIO,
2008 blk_rq_cur_bytes(req));
2009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Per Forlinee8a43a2011-07-01 18:55:33 +02002011 start_new_req:
2012 if (rqc) {
Seungwon Jeon7a819022013-01-22 19:48:07 +09002013 if (mmc_card_removed(card)) {
2014 rqc->cmd_flags |= REQ_QUIET;
2015 blk_end_request_all(rqc, -EIO);
2016 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002017 /*
2018 * If current request is packed, it needs to put back.
2019 */
2020 if (mmc_packed_cmd(mq->mqrq_cur->cmd_type))
2021 mmc_blk_revert_packed_req(mq, mq->mqrq_cur);
2022
Seungwon Jeon7a819022013-01-22 19:48:07 +09002023 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
2024 mmc_start_req(card->host,
2025 &mq->mqrq_cur->mmc_active, NULL);
2026 }
Per Forlinee8a43a2011-07-01 18:55:33 +02002027 }
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return 0;
2030}
2031
Adrian Hunterbd788c92010-08-11 14:17:47 -07002032static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
2033{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002034 int ret;
2035 struct mmc_blk_data *md = mq->data;
2036 struct mmc_card *card = md->queue.card;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002037 struct mmc_host *host = card->host;
2038 unsigned long flags;
Ray Juif662ae42013-10-26 11:03:44 -07002039 unsigned int cmd_flags = req ? req->cmd_flags : 0;
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002040
Per Forlinee8a43a2011-07-01 18:55:33 +02002041 if (req && !mq->mqrq_prev->req)
2042 /* claim host only for the first request */
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002043 mmc_get_card(card);
Per Forlinee8a43a2011-07-01 18:55:33 +02002044
Andrei Warkentin371a6892011-04-11 18:10:25 -05002045 ret = mmc_blk_part_switch(card, md);
2046 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002047 if (req) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05302048 blk_end_request_all(req, -EIO);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002049 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002050 ret = 0;
2051 goto out;
2052 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002053
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002054 mq->flags &= ~MMC_QUEUE_NEW_REQUEST;
Ray Juif662ae42013-10-26 11:03:44 -07002055 if (cmd_flags & REQ_DISCARD) {
Per Forlinee8a43a2011-07-01 18:55:33 +02002056 /* complete ongoing async transfer before issuing discard */
2057 if (card->host->areq)
2058 mmc_blk_issue_rw_rq(mq, NULL);
Lukas Czerner5204d002014-06-18 13:18:07 +02002059 if (req->cmd_flags & REQ_SECURE)
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002060 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07002061 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002062 ret = mmc_blk_issue_discard_rq(mq, req);
Ray Juif662ae42013-10-26 11:03:44 -07002063 } else if (cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09002064 /* complete ongoing async transfer before issuing flush */
2065 if (card->host->areq)
2066 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002067 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07002068 } else {
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002069 if (!req && host->areq) {
2070 spin_lock_irqsave(&host->context_info.lock, flags);
2071 host->context_info.is_waiting_last_req = true;
2072 spin_unlock_irqrestore(&host->context_info.lock, flags);
2073 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002074 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07002075 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002076
Andrei Warkentin371a6892011-04-11 18:10:25 -05002077out:
Seungwon Jeonef3a69c72013-03-14 15:17:13 +09002078 if ((!req && !(mq->flags & MMC_QUEUE_NEW_REQUEST)) ||
Ray Juif662ae42013-10-26 11:03:44 -07002079 (cmd_flags & MMC_REQ_SPECIAL_MASK))
Seungwon Jeonef3a69c72013-03-14 15:17:13 +09002080 /*
2081 * Release host when there are no more requests
2082 * and after special request(discard, flush) is done.
2083 * In case sepecial request, there is no reentry to
2084 * the 'mmc_blk_issue_rq' with 'mqrq_prev->req'.
2085 */
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002086 mmc_put_card(card);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002087 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07002088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Russell Kinga6f6c962006-01-03 22:38:44 +00002090static inline int mmc_blk_readonly(struct mmc_card *card)
2091{
2092 return mmc_card_readonly(card) ||
2093 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
2094}
2095
Andrei Warkentin371a6892011-04-11 18:10:25 -05002096static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
2097 struct device *parent,
2098 sector_t size,
2099 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002100 const char *subname,
2101 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 struct mmc_blk_data *md;
2104 int devidx, ret;
2105
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002106 devidx = find_first_zero_bit(dev_use, max_devices);
2107 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return ERR_PTR(-ENOSPC);
2109 __set_bit(devidx, dev_use);
2110
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002111 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00002112 if (!md) {
2113 ret = -ENOMEM;
2114 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
Russell Kinga6f6c962006-01-03 22:38:44 +00002116
Russell Kinga6f6c962006-01-03 22:38:44 +00002117 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002118 * !subname implies we are creating main mmc_blk_data that will be
Ulf Hanssonfc95e302014-10-06 14:34:09 +02002119 * associated with mmc_card with dev_set_drvdata. Due to device
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002120 * partitions, devidx will not coincide with a per-physical card
2121 * index anymore so we keep track of a name index.
2122 */
2123 if (!subname) {
2124 md->name_idx = find_first_zero_bit(name_use, max_devices);
2125 __set_bit(md->name_idx, name_use);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002126 } else
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002127 md->name_idx = ((struct mmc_blk_data *)
2128 dev_to_disk(parent)->private_data)->name_idx;
2129
Johan Rudholmadd710e2011-12-02 08:51:06 +01002130 md->area_type = area_type;
2131
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002132 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00002133 * Set the read-only status based on the supported commands
2134 * and the write protect switch.
2135 */
2136 md->read_only = mmc_blk_readonly(card);
2137
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002138 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00002139 if (md->disk == NULL) {
2140 ret = -ENOMEM;
2141 goto err_kfree;
2142 }
2143
2144 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002145 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00002146 md->usage = 1;
2147
Adrian Hunterd09408a2011-06-23 13:40:28 +03002148 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00002149 if (ret)
2150 goto err_putdisk;
2151
Russell Kinga6f6c962006-01-03 22:38:44 +00002152 md->queue.issue_fn = mmc_blk_issue_rq;
2153 md->queue.data = md;
2154
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002155 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002156 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00002157 md->disk->fops = &mmc_bdops;
2158 md->disk->private_data = md;
2159 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002160 md->disk->driverfs_dev = parent;
2161 set_disk_ro(md->disk, md->read_only || default_ro);
Ulf Hanssonf5b4d712014-09-03 11:02:23 +02002162 if (area_type & (MMC_BLK_DATA_AREA_RPMB | MMC_BLK_DATA_AREA_BOOT))
Loic Pallardy53d8f972012-08-06 17:12:28 +02002163 md->disk->flags |= GENHD_FL_NO_PART_SCAN;
Russell Kinga6f6c962006-01-03 22:38:44 +00002164
2165 /*
2166 * As discussed on lkml, GENHD_FL_REMOVABLE should:
2167 *
2168 * - be set for removable media with permanent block devices
2169 * - be unset for removable block devices with permanent media
2170 *
2171 * Since MMC block devices clearly fall under the second
2172 * case, we do not set GENHD_FL_REMOVABLE. Userspace
2173 * should use the block device creation/destruction hotplug
2174 * messages to tell when the card is present.
2175 */
2176
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002177 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
Asaf Vertzfe821912015-01-20 18:33:35 +02002178 "mmcblk%u%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00002179
Saugata Dasa5075eb2012-05-17 16:32:21 +05302180 if (mmc_card_mmc(card))
2181 blk_queue_logical_block_size(md->queue.queue,
2182 card->ext_csd.data_sector_size);
2183 else
2184 blk_queue_logical_block_size(md->queue.queue, 512);
2185
Andrei Warkentin371a6892011-04-11 18:10:25 -05002186 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002187
Andrei Warkentinf0d89972011-05-23 15:06:38 -05002188 if (mmc_host_cmd23(card->host)) {
2189 if (mmc_card_mmc(card) ||
2190 (mmc_card_sd(card) &&
2191 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
2192 md->flags |= MMC_BLK_CMD23;
2193 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002194
2195 if (mmc_card_mmc(card) &&
2196 md->flags & MMC_BLK_CMD23 &&
2197 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
2198 card->ext_csd.rel_sectors)) {
2199 md->flags |= MMC_BLK_REL_WR;
2200 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
2201 }
2202
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002203 if (mmc_card_mmc(card) &&
2204 (area_type == MMC_BLK_DATA_AREA_MAIN) &&
2205 (md->flags & MMC_BLK_CMD23) &&
2206 card->ext_csd.packed_event_en) {
2207 if (!mmc_packed_init(&md->queue, card))
2208 md->flags |= MMC_BLK_PACKED_CMD;
2209 }
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00002212
2213 err_putdisk:
2214 put_disk(md->disk);
2215 err_kfree:
2216 kfree(md);
2217 out:
2218 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
Andrei Warkentin371a6892011-04-11 18:10:25 -05002221static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
2222{
2223 sector_t size;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002224
2225 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
2226 /*
2227 * The EXT_CSD sector count is in number or 512 byte
2228 * sectors.
2229 */
2230 size = card->ext_csd.sectors;
2231 } else {
2232 /*
2233 * The CSD capacity field is in units of read_blkbits.
2234 * set_capacity takes units of 512 bytes.
2235 */
Kuninori Morimoto087de9e2015-05-11 07:35:28 +00002236 size = (typeof(sector_t))card->csd.capacity
2237 << (card->csd.read_blkbits - 9);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002238 }
2239
Tobias Klauser7a30f2a2015-01-21 15:56:44 +01002240 return mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002241 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002242}
2243
2244static int mmc_blk_alloc_part(struct mmc_card *card,
2245 struct mmc_blk_data *md,
2246 unsigned int part_type,
2247 sector_t size,
2248 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002249 const char *subname,
2250 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05002251{
2252 char cap_str[10];
2253 struct mmc_blk_data *part_md;
2254
2255 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002256 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002257 if (IS_ERR(part_md))
2258 return PTR_ERR(part_md);
2259 part_md->part_type = part_type;
2260 list_add(&part_md->part, &md->part);
2261
James Bottomleyb9f28d82015-03-05 18:47:01 -08002262 string_get_size((u64)get_capacity(part_md->disk), 512, STRING_UNITS_2,
Andrei Warkentin371a6892011-04-11 18:10:25 -05002263 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302264 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05002265 part_md->disk->disk_name, mmc_card_id(card),
2266 mmc_card_name(card), part_md->part_type, cap_str);
2267 return 0;
2268}
2269
Namjae Jeone0c368d2011-10-06 23:41:38 +09002270/* MMC Physical partitions consist of two boot partitions and
2271 * up to four general purpose partitions.
2272 * For each partition enabled in EXT_CSD a block device will be allocatedi
2273 * to provide access to the partition.
2274 */
2275
Andrei Warkentin371a6892011-04-11 18:10:25 -05002276static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
2277{
Namjae Jeone0c368d2011-10-06 23:41:38 +09002278 int idx, ret = 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002279
2280 if (!mmc_card_mmc(card))
2281 return 0;
2282
Namjae Jeone0c368d2011-10-06 23:41:38 +09002283 for (idx = 0; idx < card->nr_parts; idx++) {
2284 if (card->part[idx].size) {
2285 ret = mmc_blk_alloc_part(card, md,
2286 card->part[idx].part_cfg,
2287 card->part[idx].size >> 9,
2288 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002289 card->part[idx].name,
2290 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09002291 if (ret)
2292 return ret;
2293 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002294 }
2295
2296 return ret;
2297}
2298
Andrei Warkentin371a6892011-04-11 18:10:25 -05002299static void mmc_blk_remove_req(struct mmc_blk_data *md)
2300{
Johan Rudholmadd710e2011-12-02 08:51:06 +01002301 struct mmc_card *card;
2302
Andrei Warkentin371a6892011-04-11 18:10:25 -05002303 if (md) {
Paul Taysomfdfa20c2013-06-04 14:42:40 -07002304 /*
2305 * Flush remaining requests and free queues. It
2306 * is freeing the queue that stops new requests
2307 * from being accepted.
2308 */
Franck Jullien8efb83a2013-07-24 15:17:48 +02002309 card = md->queue.card;
Paul Taysomfdfa20c2013-06-04 14:42:40 -07002310 mmc_cleanup_queue(&md->queue);
2311 if (md->flags & MMC_BLK_PACKED_CMD)
2312 mmc_packed_clean(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002313 if (md->disk->flags & GENHD_FL_UP) {
2314 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002315 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2316 card->ext_csd.boot_ro_lockable)
2317 device_remove_file(disk_to_dev(md->disk),
2318 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002319
Andrei Warkentin371a6892011-04-11 18:10:25 -05002320 del_gendisk(md->disk);
2321 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002322 mmc_blk_put(md);
2323 }
2324}
2325
2326static void mmc_blk_remove_parts(struct mmc_card *card,
2327 struct mmc_blk_data *md)
2328{
2329 struct list_head *pos, *q;
2330 struct mmc_blk_data *part_md;
2331
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002332 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002333 list_for_each_safe(pos, q, &md->part) {
2334 part_md = list_entry(pos, struct mmc_blk_data, part);
2335 list_del(pos);
2336 mmc_blk_remove_req(part_md);
2337 }
2338}
2339
2340static int mmc_add_disk(struct mmc_blk_data *md)
2341{
2342 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002343 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002344
2345 add_disk(md->disk);
2346 md->force_ro.show = force_ro_show;
2347 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05302348 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002349 md->force_ro.attr.name = "force_ro";
2350 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
2351 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
2352 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01002353 goto force_ro_fail;
2354
2355 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2356 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04002357 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002358
2359 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
2360 mode = S_IRUGO;
2361 else
2362 mode = S_IRUGO | S_IWUSR;
2363
2364 md->power_ro_lock.show = power_ro_lock_show;
2365 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01002366 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002367 md->power_ro_lock.attr.mode = mode;
2368 md->power_ro_lock.attr.name =
2369 "ro_lock_until_next_power_on";
2370 ret = device_create_file(disk_to_dev(md->disk),
2371 &md->power_ro_lock);
2372 if (ret)
2373 goto power_ro_lock_fail;
2374 }
2375 return ret;
2376
2377power_ro_lock_fail:
2378 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
2379force_ro_fail:
2380 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002381
2382 return ret;
2383}
2384
Chris Ballc59d4472011-11-11 22:01:43 -05002385#define CID_MANFID_SANDISK 0x2
2386#define CID_MANFID_TOSHIBA 0x11
2387#define CID_MANFID_MICRON 0x13
Ian Chen3550ccd2012-08-29 15:05:36 +09002388#define CID_MANFID_SAMSUNG 0x15
Chris Ballc59d4472011-11-11 22:01:43 -05002389
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002390static const struct mmc_fixup blk_fixups[] =
2391{
Chris Ballc59d4472011-11-11 22:01:43 -05002392 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
2393 MMC_QUIRK_INAND_CMD38),
2394 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
2395 MMC_QUIRK_INAND_CMD38),
2396 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
2397 MMC_QUIRK_INAND_CMD38),
2398 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
2399 MMC_QUIRK_INAND_CMD38),
2400 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
2401 MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002402
2403 /*
2404 * Some MMC cards experience performance degradation with CMD23
2405 * instead of CMD12-bounded multiblock transfers. For now we'll
2406 * black list what's bad...
2407 * - Certain Toshiba cards.
2408 *
2409 * N.B. This doesn't affect SD cards.
2410 */
Chris Ballc59d4472011-11-11 22:01:43 -05002411 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002412 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002413 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002414 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002415 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002416 MMC_QUIRK_BLK_NO_CMD23),
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002417
2418 /*
2419 * Some Micron MMC cards needs longer data read timeout than
2420 * indicated in CSD.
2421 */
Chris Ballc59d4472011-11-11 22:01:43 -05002422 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002423 MMC_QUIRK_LONG_READ_TIME),
2424
Ian Chen3550ccd2012-08-29 15:05:36 +09002425 /*
2426 * On these Samsung MoviNAND parts, performing secure erase or
2427 * secure trim can result in unrecoverable corruption due to a
2428 * firmware bug.
2429 */
2430 MMC_FIXUP("M8G2FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2431 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2432 MMC_FIXUP("MAG4FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2433 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2434 MMC_FIXUP("MBG8FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2435 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2436 MMC_FIXUP("MCGAFA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2437 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2438 MMC_FIXUP("VAL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2439 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2440 MMC_FIXUP("VYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2441 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2442 MMC_FIXUP("KYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2443 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2444 MMC_FIXUP("VZL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2445 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2446
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002447 END_FIXUP
2448};
2449
Ulf Hansson96541ba2015-04-14 13:06:12 +02002450static int mmc_blk_probe(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002452 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002453 char cap_str[10];
2454
Pierre Ossman912490d2005-05-21 10:27:02 +01002455 /*
2456 * Check that the card supports the command class(es) we need.
2457 */
2458 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return -ENODEV;
2460
Lukas Czerner5204d002014-06-18 13:18:07 +02002461 mmc_fixup_device(card, blk_fixups);
2462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 md = mmc_blk_alloc(card);
2464 if (IS_ERR(md))
2465 return PTR_ERR(md);
2466
James Bottomleyb9f28d82015-03-05 18:47:01 -08002467 string_get_size((u64)get_capacity(md->disk), 512, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002468 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302469 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002471 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Andrei Warkentin371a6892011-04-11 18:10:25 -05002473 if (mmc_blk_alloc_parts(card, md))
2474 goto out;
2475
Ulf Hansson96541ba2015-04-14 13:06:12 +02002476 dev_set_drvdata(&card->dev, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002477
Andrei Warkentin371a6892011-04-11 18:10:25 -05002478 if (mmc_add_disk(md))
2479 goto out;
2480
2481 list_for_each_entry(part_md, &md->part, part) {
2482 if (mmc_add_disk(part_md))
2483 goto out;
2484 }
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002485
2486 pm_runtime_set_autosuspend_delay(&card->dev, 3000);
2487 pm_runtime_use_autosuspend(&card->dev);
2488
2489 /*
2490 * Don't enable runtime PM for SD-combo cards here. Leave that
2491 * decision to be taken during the SDIO init sequence instead.
2492 */
2493 if (card->type != MMC_TYPE_SD_COMBO) {
2494 pm_runtime_set_active(&card->dev);
2495 pm_runtime_enable(&card->dev);
2496 }
2497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 return 0;
2499
2500 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05002501 mmc_blk_remove_parts(card, md);
2502 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01002503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Ulf Hansson96541ba2015-04-14 13:06:12 +02002506static void mmc_blk_remove(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Ulf Hansson96541ba2015-04-14 13:06:12 +02002508 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Andrei Warkentin371a6892011-04-11 18:10:25 -05002510 mmc_blk_remove_parts(card, md);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002511 pm_runtime_get_sync(&card->dev);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03002512 mmc_claim_host(card->host);
2513 mmc_blk_part_switch(card, md);
2514 mmc_release_host(card->host);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002515 if (card->type != MMC_TYPE_SD_COMBO)
2516 pm_runtime_disable(&card->dev);
2517 pm_runtime_put_noidle(&card->dev);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002518 mmc_blk_remove_req(md);
Ulf Hansson96541ba2015-04-14 13:06:12 +02002519 dev_set_drvdata(&card->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
Ulf Hansson96541ba2015-04-14 13:06:12 +02002522static int _mmc_blk_suspend(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002524 struct mmc_blk_data *part_md;
Ulf Hansson96541ba2015-04-14 13:06:12 +02002525 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 if (md) {
2528 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002529 list_for_each_entry(part_md, &md->part, part) {
2530 mmc_queue_suspend(&part_md->queue);
2531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 }
2533 return 0;
2534}
2535
Ulf Hansson96541ba2015-04-14 13:06:12 +02002536static void mmc_blk_shutdown(struct mmc_card *card)
Ulf Hansson76287742013-06-10 17:03:40 +02002537{
Ulf Hansson96541ba2015-04-14 13:06:12 +02002538 _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02002539}
2540
Ulf Hansson0967edc2014-10-06 11:29:42 +02002541#ifdef CONFIG_PM_SLEEP
2542static int mmc_blk_suspend(struct device *dev)
Ulf Hansson76287742013-06-10 17:03:40 +02002543{
Ulf Hansson96541ba2015-04-14 13:06:12 +02002544 struct mmc_card *card = mmc_dev_to_card(dev);
2545
2546 return _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02002547}
2548
Ulf Hansson0967edc2014-10-06 11:29:42 +02002549static int mmc_blk_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002551 struct mmc_blk_data *part_md;
Ulf Hanssonfc95e302014-10-06 14:34:09 +02002552 struct mmc_blk_data *md = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
2554 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05002555 /*
2556 * Resume involves the card going into idle state,
2557 * so current partition is always the main one.
2558 */
2559 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002561 list_for_each_entry(part_md, &md->part, part) {
2562 mmc_queue_resume(&part_md->queue);
2563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 }
2565 return 0;
2566}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567#endif
2568
Ulf Hansson0967edc2014-10-06 11:29:42 +02002569static SIMPLE_DEV_PM_OPS(mmc_blk_pm_ops, mmc_blk_suspend, mmc_blk_resume);
2570
Ulf Hansson96541ba2015-04-14 13:06:12 +02002571static struct mmc_driver mmc_driver = {
2572 .drv = {
2573 .name = "mmcblk",
2574 .pm = &mmc_blk_pm_ops,
2575 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 .probe = mmc_blk_probe,
2577 .remove = mmc_blk_remove,
Ulf Hansson76287742013-06-10 17:03:40 +02002578 .shutdown = mmc_blk_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579};
2580
2581static int __init mmc_blk_init(void)
2582{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002583 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002585 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
2586 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
2587
Ben Hutchingsa26eba62014-11-06 03:35:09 +00002588 max_devices = min(MAX_DEVICES, (1 << MINORBITS) / perdev_minors);
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002589
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002590 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
2591 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002594 res = mmc_register_driver(&mmc_driver);
2595 if (res)
2596 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002598 return 0;
2599 out2:
2600 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 out:
2602 return res;
2603}
2604
2605static void __exit mmc_blk_exit(void)
2606{
2607 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002608 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609}
2610
2611module_init(mmc_blk_init);
2612module_exit(mmc_blk_exit);
2613
2614MODULE_LICENSE("GPL");
2615MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
2616