blob: 5af52fd9e37acd860586b2dc50676cf0922c0972 [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
211 return ret;
212}
213
214static ssize_t power_ro_lock_store(struct device *dev,
215 struct device_attribute *attr, const char *buf, size_t count)
216{
217 int ret;
218 struct mmc_blk_data *md, *part_md;
219 struct mmc_card *card;
220 unsigned long set;
221
222 if (kstrtoul(buf, 0, &set))
223 return -EINVAL;
224
225 if (set != 1)
226 return count;
227
228 md = mmc_blk_get(dev_to_disk(dev));
229 card = md->queue.card;
230
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200231 mmc_get_card(card);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100232
233 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
234 card->ext_csd.boot_ro_lock |
235 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
236 card->ext_csd.part_time);
237 if (ret)
238 pr_err("%s: Locking boot partition ro until next power on failed: %d\n", md->disk->disk_name, ret);
239 else
240 card->ext_csd.boot_ro_lock |= EXT_CSD_BOOT_WP_B_PWR_WP_EN;
241
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200242 mmc_put_card(card);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100243
244 if (!ret) {
245 pr_info("%s: Locking boot partition ro until next power on\n",
246 md->disk->disk_name);
247 set_disk_ro(md->disk, 1);
248
249 list_for_each_entry(part_md, &md->part, part)
250 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
251 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
252 set_disk_ro(part_md->disk, 1);
253 }
254 }
255
256 mmc_blk_put(md);
257 return count;
258}
259
Andrei Warkentin371a6892011-04-11 18:10:25 -0500260static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
261 char *buf)
262{
263 int ret;
264 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
265
Baruch Siach0031a982014-09-22 10:12:51 +0300266 ret = snprintf(buf, PAGE_SIZE, "%d\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -0500267 get_disk_ro(dev_to_disk(dev)) ^
268 md->read_only);
269 mmc_blk_put(md);
270 return ret;
271}
272
273static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
274 const char *buf, size_t count)
275{
276 int ret;
277 char *end;
278 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
279 unsigned long set = simple_strtoul(buf, &end, 0);
280 if (end == buf) {
281 ret = -EINVAL;
282 goto out;
283 }
284
285 set_disk_ro(dev_to_disk(dev), set || md->read_only);
286 ret = count;
287out:
288 mmc_blk_put(md);
289 return ret;
290}
291
Al Viroa5a15612008-03-02 10:33:30 -0500292static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Al Viroa5a15612008-03-02 10:33:30 -0500294 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int ret = -ENXIO;
296
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200297 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (md) {
299 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500300 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700302
Al Viroa5a15612008-03-02 10:33:30 -0500303 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700304 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700305 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200308 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 return ret;
311}
312
Al Virodb2a1442013-05-05 21:52:57 -0400313static void mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Al Viroa5a15612008-03-02 10:33:30 -0500315 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200317 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200319 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800323mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800325 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
326 geo->heads = 4;
327 geo->sectors = 16;
328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
John Calixtocb87ea22011-04-26 18:56:29 -0400331struct mmc_blk_ioc_data {
332 struct mmc_ioc_cmd ic;
333 unsigned char *buf;
334 u64 buf_bytes;
335};
336
337static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
338 struct mmc_ioc_cmd __user *user)
339{
340 struct mmc_blk_ioc_data *idata;
341 int err;
342
343 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
344 if (!idata) {
345 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400346 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400347 }
348
349 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
350 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400351 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400352 }
353
354 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
355 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
356 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400357 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400358 }
359
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100360 if (!idata->buf_bytes)
361 return idata;
362
John Calixtocb87ea22011-04-26 18:56:29 -0400363 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
364 if (!idata->buf) {
365 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400366 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400367 }
368
369 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
370 idata->ic.data_ptr, idata->buf_bytes)) {
371 err = -EFAULT;
372 goto copy_err;
373 }
374
375 return idata;
376
377copy_err:
378 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400379idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400380 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400381out:
John Calixtocb87ea22011-04-26 18:56:29 -0400382 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400383}
384
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200385static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status,
386 u32 retries_max)
387{
388 int err;
389 u32 retry_count = 0;
390
391 if (!status || !retries_max)
392 return -EINVAL;
393
394 do {
395 err = get_card_status(card, status, 5);
396 if (err)
397 break;
398
399 if (!R1_STATUS(*status) &&
400 (R1_CURRENT_STATE(*status) != R1_STATE_PRG))
401 break; /* RPMB programming operation complete */
402
403 /*
404 * Rechedule to give the MMC device a chance to continue
405 * processing the previous command without being polled too
406 * frequently.
407 */
408 usleep_range(1000, 5000);
409 } while (++retry_count < retries_max);
410
411 if (retry_count == retries_max)
412 err = -EPERM;
413
414 return err;
415}
416
Maya Erez775a9362013-04-18 15:41:55 +0300417static int ioctl_do_sanitize(struct mmc_card *card)
418{
419 int err;
420
Ulf Hanssona2d10862013-12-16 14:37:26 +0100421 if (!mmc_can_sanitize(card)) {
Maya Erez775a9362013-04-18 15:41:55 +0300422 pr_warn("%s: %s - SANITIZE is not supported\n",
423 mmc_hostname(card->host), __func__);
424 err = -EOPNOTSUPP;
425 goto out;
426 }
427
428 pr_debug("%s: %s - SANITIZE IN PROGRESS...\n",
429 mmc_hostname(card->host), __func__);
430
431 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
432 EXT_CSD_SANITIZE_START, 1,
433 MMC_SANITIZE_REQ_TIMEOUT);
434
435 if (err)
436 pr_err("%s: %s - EXT_CSD_SANITIZE_START failed. err=%d\n",
437 mmc_hostname(card->host), __func__, err);
438
439 pr_debug("%s: %s - SANITIZE COMPLETED\n", mmc_hostname(card->host),
440 __func__);
441out:
442 return err;
443}
444
John Calixtocb87ea22011-04-26 18:56:29 -0400445static int mmc_blk_ioctl_cmd(struct block_device *bdev,
446 struct mmc_ioc_cmd __user *ic_ptr)
447{
448 struct mmc_blk_ioc_data *idata;
449 struct mmc_blk_data *md;
450 struct mmc_card *card;
451 struct mmc_command cmd = {0};
452 struct mmc_data data = {0};
Venkatraman Sad5fd972011-08-25 00:30:50 +0530453 struct mmc_request mrq = {NULL};
John Calixtocb87ea22011-04-26 18:56:29 -0400454 struct scatterlist sg;
455 int err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200456 int is_rpmb = false;
457 u32 status = 0;
John Calixtocb87ea22011-04-26 18:56:29 -0400458
459 /*
460 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
461 * whole block device, not on a partition. This prevents overspray
462 * between sibling partitions.
463 */
464 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
465 return -EPERM;
466
467 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
468 if (IS_ERR(idata))
469 return PTR_ERR(idata);
470
John Calixtocb87ea22011-04-26 18:56:29 -0400471 md = mmc_blk_get(bdev->bd_disk);
472 if (!md) {
473 err = -EINVAL;
Philippe De Swert1c02f002012-04-11 23:31:45 +0300474 goto cmd_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400475 }
476
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200477 if (md->area_type & MMC_BLK_DATA_AREA_RPMB)
478 is_rpmb = true;
479
John Calixtocb87ea22011-04-26 18:56:29 -0400480 card = md->queue.card;
481 if (IS_ERR(card)) {
482 err = PTR_ERR(card);
483 goto cmd_done;
484 }
485
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100486 cmd.opcode = idata->ic.opcode;
487 cmd.arg = idata->ic.arg;
488 cmd.flags = idata->ic.flags;
489
490 if (idata->buf_bytes) {
491 data.sg = &sg;
492 data.sg_len = 1;
493 data.blksz = idata->ic.blksz;
494 data.blocks = idata->ic.blocks;
495
496 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
497
498 if (idata->ic.write_flag)
499 data.flags = MMC_DATA_WRITE;
500 else
501 data.flags = MMC_DATA_READ;
502
503 /* data.flags must already be set before doing this. */
504 mmc_set_data_timeout(&data, card);
505
506 /* Allow overriding the timeout_ns for empirical tuning. */
507 if (idata->ic.data_timeout_ns)
508 data.timeout_ns = idata->ic.data_timeout_ns;
509
510 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
511 /*
512 * Pretend this is a data transfer and rely on the
513 * host driver to compute timeout. When all host
514 * drivers support cmd.cmd_timeout for R1B, this
515 * can be changed to:
516 *
517 * mrq.data = NULL;
518 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
519 */
520 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
521 }
522
523 mrq.data = &data;
524 }
525
526 mrq.cmd = &cmd;
527
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200528 mmc_get_card(card);
John Calixtocb87ea22011-04-26 18:56:29 -0400529
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200530 err = mmc_blk_part_switch(card, md);
531 if (err)
532 goto cmd_rel_host;
533
John Calixtocb87ea22011-04-26 18:56:29 -0400534 if (idata->ic.is_acmd) {
535 err = mmc_app_cmd(card->host, card);
536 if (err)
537 goto cmd_rel_host;
538 }
539
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200540 if (is_rpmb) {
541 err = mmc_set_blockcount(card, data.blocks,
542 idata->ic.write_flag & (1 << 31));
543 if (err)
544 goto cmd_rel_host;
545 }
546
Yaniv Gardia82e4842013-06-05 14:13:08 +0300547 if ((MMC_EXTRACT_INDEX_FROM_ARG(cmd.arg) == EXT_CSD_SANITIZE_START) &&
548 (cmd.opcode == MMC_SWITCH)) {
Maya Erez775a9362013-04-18 15:41:55 +0300549 err = ioctl_do_sanitize(card);
550
551 if (err)
552 pr_err("%s: ioctl_do_sanitize() failed. err = %d",
553 __func__, err);
554
555 goto cmd_rel_host;
556 }
557
John Calixtocb87ea22011-04-26 18:56:29 -0400558 mmc_wait_for_req(card->host, &mrq);
559
560 if (cmd.error) {
561 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
562 __func__, cmd.error);
563 err = cmd.error;
564 goto cmd_rel_host;
565 }
566 if (data.error) {
567 dev_err(mmc_dev(card->host), "%s: data error %d\n",
568 __func__, data.error);
569 err = data.error;
570 goto cmd_rel_host;
571 }
572
573 /*
574 * According to the SD specs, some commands require a delay after
575 * issuing the command.
576 */
577 if (idata->ic.postsleep_min_us)
578 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
579
580 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
581 err = -EFAULT;
582 goto cmd_rel_host;
583 }
584
585 if (!idata->ic.write_flag) {
586 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
587 idata->buf, idata->buf_bytes)) {
588 err = -EFAULT;
589 goto cmd_rel_host;
590 }
591 }
592
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200593 if (is_rpmb) {
594 /*
595 * Ensure RPMB command has completed by polling CMD13
596 * "Send Status".
597 */
598 err = ioctl_rpmb_card_status_poll(card, &status, 5);
599 if (err)
600 dev_err(mmc_dev(card->host),
601 "%s: Card Status=0x%08X, error %d\n",
602 __func__, status, err);
603 }
604
John Calixtocb87ea22011-04-26 18:56:29 -0400605cmd_rel_host:
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200606 mmc_put_card(card);
John Calixtocb87ea22011-04-26 18:56:29 -0400607
608cmd_done:
609 mmc_blk_put(md);
Philippe De Swert1c02f002012-04-11 23:31:45 +0300610cmd_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400611 kfree(idata->buf);
612 kfree(idata);
613 return err;
614}
615
616static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
617 unsigned int cmd, unsigned long arg)
618{
619 int ret = -EINVAL;
620 if (cmd == MMC_IOC_CMD)
621 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
622 return ret;
623}
624
625#ifdef CONFIG_COMPAT
626static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
627 unsigned int cmd, unsigned long arg)
628{
629 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
630}
631#endif
632
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700633static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500634 .open = mmc_blk_open,
635 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800636 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400638 .ioctl = mmc_blk_ioctl,
639#ifdef CONFIG_COMPAT
640 .compat_ioctl = mmc_blk_compat_ioctl,
641#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642};
643
Andrei Warkentin371a6892011-04-11 18:10:25 -0500644static inline int mmc_blk_part_switch(struct mmc_card *card,
645 struct mmc_blk_data *md)
646{
647 int ret;
Ulf Hanssonfc95e302014-10-06 14:34:09 +0200648 struct mmc_blk_data *main_md = dev_get_drvdata(&card->dev);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300649
Andrei Warkentin371a6892011-04-11 18:10:25 -0500650 if (main_md->part_curr == md->part_type)
651 return 0;
652
653 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300654 u8 part_config = card->ext_csd.part_config;
655
656 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
657 part_config |= md->part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500658
659 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300660 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500661 card->ext_csd.part_time);
662 if (ret)
663 return ret;
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300664
665 card->ext_csd.part_config = part_config;
Adrian Hunter67716322011-08-29 16:42:15 +0300666 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500667
668 main_md->part_curr = md->part_type;
669 return 0;
670}
671
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700672static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
673{
674 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100675 u32 result;
676 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700677
Venkatraman Sad5fd972011-08-25 00:30:50 +0530678 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400679 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400680 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700681
682 struct scatterlist sg;
683
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700684 cmd.opcode = MMC_APP_CMD;
685 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700686 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700687
688 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700689 if (err)
690 return (u32)-1;
691 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700692 return (u32)-1;
693
694 memset(&cmd, 0, sizeof(struct mmc_command));
695
696 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
697 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700698 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700699
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700700 data.blksz = 4;
701 data.blocks = 1;
702 data.flags = MMC_DATA_READ;
703 data.sg = &sg;
704 data.sg_len = 1;
Subhash Jadavanid3804432012-06-13 17:10:43 +0530705 mmc_set_data_timeout(&data, card);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700706
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700707 mrq.cmd = &cmd;
708 mrq.data = &data;
709
Ben Dooks051913d2009-06-08 23:33:57 +0100710 blocks = kmalloc(4, GFP_KERNEL);
711 if (!blocks)
712 return (u32)-1;
713
714 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700715
716 mmc_wait_for_req(card->host, &mrq);
717
Ben Dooks051913d2009-06-08 23:33:57 +0100718 result = ntohl(*blocks);
719 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700720
Ben Dooks051913d2009-06-08 23:33:57 +0100721 if (cmd.error || data.error)
722 result = (u32)-1;
723
724 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700725}
726
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100727static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300728{
Chris Ball1278dba2011-04-13 23:40:30 -0400729 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300730 int err;
731
Adrian Hunter504f1912008-10-16 12:55:25 +0300732 cmd.opcode = MMC_SEND_STATUS;
733 if (!mmc_host_is_spi(card->host))
734 cmd.arg = card->rca << 16;
735 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100736 err = mmc_wait_for_cmd(card->host, &cmd, retries);
737 if (err == 0)
738 *status = cmd.resp[0];
739 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300740}
741
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100742static int card_busy_detect(struct mmc_card *card, unsigned int timeout_ms,
Ulf Hansson95a91292014-01-29 13:11:27 +0100743 bool hw_busy_detect, struct request *req, int *gen_err)
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100744{
745 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
746 int err = 0;
747 u32 status;
748
749 do {
750 err = get_card_status(card, &status, 5);
751 if (err) {
752 pr_err("%s: error %d requesting status\n",
753 req->rq_disk->disk_name, err);
754 return err;
755 }
756
757 if (status & R1_ERROR) {
758 pr_err("%s: %s: error sending status cmd, status %#x\n",
759 req->rq_disk->disk_name, __func__, status);
760 *gen_err = 1;
761 }
762
Ulf Hansson95a91292014-01-29 13:11:27 +0100763 /* We may rely on the host hw to handle busy detection.*/
764 if ((card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) &&
765 hw_busy_detect)
766 break;
767
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100768 /*
769 * Timeout if the device never becomes ready for data and never
770 * leaves the program state.
771 */
772 if (time_after(jiffies, timeout)) {
773 pr_err("%s: Card stuck in programming state! %s %s\n",
774 mmc_hostname(card->host),
775 req->rq_disk->disk_name, __func__);
776 return -ETIMEDOUT;
777 }
778
779 /*
780 * Some cards mishandle the status bits,
781 * so make sure to check both the busy
782 * indication and the card state.
783 */
784 } while (!(status & R1_READY_FOR_DATA) ||
785 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
786
787 return err;
788}
789
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100790static int send_stop(struct mmc_card *card, unsigned int timeout_ms,
791 struct request *req, int *gen_err, u32 *stop_status)
792{
793 struct mmc_host *host = card->host;
794 struct mmc_command cmd = {0};
795 int err;
796 bool use_r1b_resp = rq_data_dir(req) == WRITE;
797
798 /*
799 * Normally we use R1B responses for WRITE, but in cases where the host
800 * has specified a max_busy_timeout we need to validate it. A failure
801 * means we need to prevent the host from doing hw busy detection, which
802 * is done by converting to a R1 response instead.
803 */
804 if (host->max_busy_timeout && (timeout_ms > host->max_busy_timeout))
805 use_r1b_resp = false;
806
807 cmd.opcode = MMC_STOP_TRANSMISSION;
808 if (use_r1b_resp) {
809 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
810 cmd.busy_timeout = timeout_ms;
811 } else {
812 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
813 }
814
815 err = mmc_wait_for_cmd(host, &cmd, 5);
816 if (err)
817 return err;
818
819 *stop_status = cmd.resp[0];
820
821 /* No need to check card status in case of READ. */
822 if (rq_data_dir(req) == READ)
823 return 0;
824
825 if (!mmc_host_is_spi(host) &&
826 (*stop_status & R1_ERROR)) {
827 pr_err("%s: %s: general error sending stop command, resp %#x\n",
828 req->rq_disk->disk_name, __func__, *stop_status);
829 *gen_err = 1;
830 }
831
832 return card_busy_detect(card, timeout_ms, use_r1b_resp, req, gen_err);
833}
834
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530835#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100836#define ERR_RETRY 2
837#define ERR_ABORT 1
838#define ERR_CONTINUE 0
839
840static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
841 bool status_valid, u32 status)
842{
843 switch (error) {
844 case -EILSEQ:
845 /* response crc error, retry the r/w cmd */
846 pr_err("%s: %s sending %s command, card status %#x\n",
847 req->rq_disk->disk_name, "response CRC error",
848 name, status);
849 return ERR_RETRY;
850
851 case -ETIMEDOUT:
852 pr_err("%s: %s sending %s command, card status %#x\n",
853 req->rq_disk->disk_name, "timed out", name, status);
854
855 /* If the status cmd initially failed, retry the r/w cmd */
856 if (!status_valid)
857 return ERR_RETRY;
858
859 /*
860 * If it was a r/w cmd crc error, or illegal command
861 * (eg, issued in wrong state) then retry - we should
862 * have corrected the state problem above.
863 */
864 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
865 return ERR_RETRY;
866
867 /* Otherwise abort the command */
868 return ERR_ABORT;
869
870 default:
871 /* We don't understand the error code the driver gave us */
872 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
873 req->rq_disk->disk_name, error, status);
874 return ERR_ABORT;
875 }
876}
877
878/*
879 * Initial r/w and stop cmd error recovery.
880 * We don't know whether the card received the r/w cmd or not, so try to
881 * restore things back to a sane state. Essentially, we do this as follows:
882 * - Obtain card status. If the first attempt to obtain card status fails,
883 * the status word will reflect the failed status cmd, not the failed
884 * r/w cmd. If we fail to obtain card status, it suggests we can no
885 * longer communicate with the card.
886 * - Check the card state. If the card received the cmd but there was a
887 * transient problem with the response, it might still be in a data transfer
888 * mode. Try to send it a stop command. If this fails, we can't recover.
889 * - If the r/w cmd failed due to a response CRC error, it was probably
890 * transient, so retry the cmd.
891 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
892 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
893 * illegal cmd, retry.
894 * Otherwise we don't understand what happened, so abort.
895 */
896static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +0900897 struct mmc_blk_request *brq, int *ecc_err, int *gen_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100898{
899 bool prev_cmd_status_valid = true;
900 u32 status, stop_status = 0;
901 int err, retry;
902
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530903 if (mmc_card_removed(card))
904 return ERR_NOMEDIUM;
905
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100906 /*
907 * Try to get card status which indicates both the card state
908 * and why there was no response. If the first attempt fails,
909 * we can't be sure the returned status is for the r/w command.
910 */
911 for (retry = 2; retry >= 0; retry--) {
912 err = get_card_status(card, &status, 0);
913 if (!err)
914 break;
915
Adrian Hunter6f398ad2015-05-07 13:10:23 +0300916 /* Re-tune if needed */
917 mmc_retune_recheck(card->host);
918
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100919 prev_cmd_status_valid = false;
920 pr_err("%s: error %d sending status command, %sing\n",
921 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
922 }
923
924 /* We couldn't get a response from the card. Give up. */
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530925 if (err) {
926 /* Check if the card is removed */
927 if (mmc_detect_card_removed(card->host))
928 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100929 return ERR_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530930 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100931
Adrian Hunter67716322011-08-29 16:42:15 +0300932 /* Flag ECC errors */
933 if ((status & R1_CARD_ECC_FAILED) ||
934 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
935 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
936 *ecc_err = 1;
937
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +0900938 /* Flag General errors */
939 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
940 if ((status & R1_ERROR) ||
941 (brq->stop.resp[0] & R1_ERROR)) {
942 pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n",
943 req->rq_disk->disk_name, __func__,
944 brq->stop.resp[0], status);
945 *gen_err = 1;
946 }
947
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100948 /*
949 * Check the current card state. If it is in some data transfer
950 * mode, tell it to stop (and hopefully transition back to TRAN.)
951 */
952 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
953 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100954 err = send_stop(card,
955 DIV_ROUND_UP(brq->data.timeout_ns, 1000000),
956 req, gen_err, &stop_status);
957 if (err) {
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100958 pr_err("%s: error %d sending stop command\n",
959 req->rq_disk->disk_name, err);
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100960 /*
961 * If the stop cmd also timed out, the card is probably
962 * not present, so abort. Other errors are bad news too.
963 */
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100964 return ERR_ABORT;
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100965 }
966
Adrian Hunter67716322011-08-29 16:42:15 +0300967 if (stop_status & R1_CARD_ECC_FAILED)
968 *ecc_err = 1;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100969 }
970
971 /* Check for set block count errors */
972 if (brq->sbc.error)
973 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
974 prev_cmd_status_valid, status);
975
976 /* Check for r/w command errors */
977 if (brq->cmd.error)
978 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
979 prev_cmd_status_valid, status);
980
Adrian Hunter67716322011-08-29 16:42:15 +0300981 /* Data errors */
982 if (!brq->stop.error)
983 return ERR_CONTINUE;
984
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100985 /* Now for stop errors. These aren't fatal to the transfer. */
Johan Rudholm5e1344e2014-09-17 09:50:42 +0200986 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 +0100987 req->rq_disk->disk_name, brq->stop.error,
988 brq->cmd.resp[0], status);
989
990 /*
991 * Subsitute in our own stop status as this will give the error
992 * state which happened during the execution of the r/w command.
993 */
994 if (stop_status) {
995 brq->stop.resp[0] = stop_status;
996 brq->stop.error = 0;
997 }
998 return ERR_CONTINUE;
999}
1000
Adrian Hunter67716322011-08-29 16:42:15 +03001001static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
1002 int type)
1003{
1004 int err;
1005
1006 if (md->reset_done & type)
1007 return -EEXIST;
1008
1009 md->reset_done |= type;
1010 err = mmc_hw_reset(host);
1011 /* Ensure we switch back to the correct partition */
1012 if (err != -EOPNOTSUPP) {
Ulf Hanssonfc95e302014-10-06 14:34:09 +02001013 struct mmc_blk_data *main_md =
1014 dev_get_drvdata(&host->card->dev);
Adrian Hunter67716322011-08-29 16:42:15 +03001015 int part_err;
1016
1017 main_md->part_curr = main_md->part_type;
1018 part_err = mmc_blk_part_switch(host->card, md);
1019 if (part_err) {
1020 /*
1021 * We have failed to get back into the correct
1022 * partition, so we need to abort the whole request.
1023 */
1024 return -ENODEV;
1025 }
1026 }
1027 return err;
1028}
1029
1030static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
1031{
1032 md->reset_done &= ~type;
1033}
1034
Chuanxiao Dong4e93b9a2014-08-12 12:01:30 +08001035int mmc_access_rpmb(struct mmc_queue *mq)
1036{
1037 struct mmc_blk_data *md = mq->data;
1038 /*
1039 * If this is a RPMB partition access, return ture
1040 */
1041 if (md && md->part_type == EXT_CSD_PART_CONFIG_ACC_RPMB)
1042 return true;
1043
1044 return false;
1045}
1046
Adrian Hunterbd788c92010-08-11 14:17:47 -07001047static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
1048{
1049 struct mmc_blk_data *md = mq->data;
1050 struct mmc_card *card = md->queue.card;
1051 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001052 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001053
Adrian Hunterbd788c92010-08-11 14:17:47 -07001054 if (!mmc_can_erase(card)) {
1055 err = -EOPNOTSUPP;
1056 goto out;
1057 }
1058
1059 from = blk_rq_pos(req);
1060 nr = blk_rq_sectors(req);
1061
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001062 if (mmc_can_discard(card))
1063 arg = MMC_DISCARD_ARG;
1064 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -07001065 arg = MMC_TRIM_ARG;
1066 else
1067 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +03001068retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001069 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1070 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1071 INAND_CMD38_ARG_EXT_CSD,
1072 arg == MMC_TRIM_ARG ?
1073 INAND_CMD38_ARG_TRIM :
1074 INAND_CMD38_ARG_ERASE,
1075 0);
1076 if (err)
1077 goto out;
1078 }
Adrian Hunterbd788c92010-08-11 14:17:47 -07001079 err = mmc_erase(card, from, nr, arg);
1080out:
Adrian Hunter67716322011-08-29 16:42:15 +03001081 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
1082 goto retry;
1083 if (!err)
1084 mmc_blk_reset_success(md, type);
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301085 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunterbd788c92010-08-11 14:17:47 -07001086
Adrian Hunterbd788c92010-08-11 14:17:47 -07001087 return err ? 0 : 1;
1088}
1089
Adrian Hunter49804542010-08-11 14:17:50 -07001090static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
1091 struct request *req)
1092{
1093 struct mmc_blk_data *md = mq->data;
1094 struct mmc_card *card = md->queue.card;
Maya Erez775a9362013-04-18 15:41:55 +03001095 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001096 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -07001097
Maya Erez775a9362013-04-18 15:41:55 +03001098 if (!(mmc_can_secure_erase_trim(card))) {
Adrian Hunter49804542010-08-11 14:17:50 -07001099 err = -EOPNOTSUPP;
1100 goto out;
1101 }
1102
1103 from = blk_rq_pos(req);
1104 nr = blk_rq_sectors(req);
1105
Maya Erez775a9362013-04-18 15:41:55 +03001106 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
1107 arg = MMC_SECURE_TRIM1_ARG;
1108 else
1109 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter28302812012-04-05 14:45:48 +03001110
Adrian Hunter67716322011-08-29 16:42:15 +03001111retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001112 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1113 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1114 INAND_CMD38_ARG_EXT_CSD,
1115 arg == MMC_SECURE_TRIM1_ARG ?
1116 INAND_CMD38_ARG_SECTRIM1 :
1117 INAND_CMD38_ARG_SECERASE,
1118 0);
1119 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001120 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001121 }
Adrian Hunter28302812012-04-05 14:45:48 +03001122
Adrian Hunter49804542010-08-11 14:17:50 -07001123 err = mmc_erase(card, from, nr, arg);
Adrian Hunter28302812012-04-05 14:45:48 +03001124 if (err == -EIO)
1125 goto out_retry;
1126 if (err)
1127 goto out;
1128
1129 if (arg == MMC_SECURE_TRIM1_ARG) {
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001130 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1131 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1132 INAND_CMD38_ARG_EXT_CSD,
1133 INAND_CMD38_ARG_SECTRIM2,
1134 0);
1135 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001136 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001137 }
Adrian Hunter28302812012-04-05 14:45:48 +03001138
Adrian Hunter49804542010-08-11 14:17:50 -07001139 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Adrian Hunter28302812012-04-05 14:45:48 +03001140 if (err == -EIO)
1141 goto out_retry;
1142 if (err)
1143 goto out;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001144 }
Adrian Hunter28302812012-04-05 14:45:48 +03001145
Adrian Hunter28302812012-04-05 14:45:48 +03001146out_retry:
1147 if (err && !mmc_blk_reset(md, card->host, type))
Adrian Hunter67716322011-08-29 16:42:15 +03001148 goto retry;
1149 if (!err)
1150 mmc_blk_reset_success(md, type);
Adrian Hunter28302812012-04-05 14:45:48 +03001151out:
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301152 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunter49804542010-08-11 14:17:50 -07001153
Adrian Hunter49804542010-08-11 14:17:50 -07001154 return err ? 0 : 1;
1155}
1156
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001157static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
1158{
1159 struct mmc_blk_data *md = mq->data;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001160 struct mmc_card *card = md->queue.card;
1161 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001162
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001163 ret = mmc_flush_cache(card);
1164 if (ret)
1165 ret = -EIO;
1166
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301167 blk_end_request_all(req, ret);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001168
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001169 return ret ? 0 : 1;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001170}
1171
1172/*
1173 * Reformat current write as a reliable write, supporting
1174 * both legacy and the enhanced reliable write MMC cards.
1175 * In each transfer we'll handle only as much as a single
1176 * reliable write can handle, thus finish the request in
1177 * partial completions.
1178 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001179static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
1180 struct mmc_card *card,
1181 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001182{
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001183 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
1184 /* Legacy mode imposes restrictions on transfers. */
1185 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
1186 brq->data.blocks = 1;
1187
1188 if (brq->data.blocks > card->ext_csd.rel_sectors)
1189 brq->data.blocks = card->ext_csd.rel_sectors;
1190 else if (brq->data.blocks < card->ext_csd.rel_sectors)
1191 brq->data.blocks = 1;
1192 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001193}
1194
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001195#define CMD_ERRORS \
1196 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
1197 R1_ADDRESS_ERROR | /* Misaligned address */ \
1198 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1199 R1_WP_VIOLATION | /* Tried to write to protected block */ \
1200 R1_CC_ERROR | /* Card controller error */ \
1201 R1_ERROR) /* General/unknown error */
1202
Per Forlinee8a43a2011-07-01 18:55:33 +02001203static int mmc_blk_err_check(struct mmc_card *card,
1204 struct mmc_async_req *areq)
Per Forlind78d4a82011-07-01 18:55:30 +02001205{
Per Forlinee8a43a2011-07-01 18:55:33 +02001206 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1207 mmc_active);
1208 struct mmc_blk_request *brq = &mq_mrq->brq;
1209 struct request *req = mq_mrq->req;
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001210 int ecc_err = 0, gen_err = 0;
Per Forlind78d4a82011-07-01 18:55:30 +02001211
1212 /*
1213 * sbc.error indicates a problem with the set block count
1214 * command. No data will have been transferred.
1215 *
1216 * cmd.error indicates a problem with the r/w command. No
1217 * data will have been transferred.
1218 *
1219 * stop.error indicates a problem with the stop command. Data
1220 * may have been transferred, or may still be transferring.
1221 */
Adrian Hunter67716322011-08-29 16:42:15 +03001222 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
1223 brq->data.error) {
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001224 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) {
Per Forlind78d4a82011-07-01 18:55:30 +02001225 case ERR_RETRY:
1226 return MMC_BLK_RETRY;
1227 case ERR_ABORT:
1228 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301229 case ERR_NOMEDIUM:
1230 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a82011-07-01 18:55:30 +02001231 case ERR_CONTINUE:
1232 break;
1233 }
1234 }
1235
1236 /*
1237 * Check for errors relating to the execution of the
1238 * initial command - such as address errors. No data
1239 * has been transferred.
1240 */
1241 if (brq->cmd.resp[0] & CMD_ERRORS) {
1242 pr_err("%s: r/w command failed, status = %#x\n",
1243 req->rq_disk->disk_name, brq->cmd.resp[0]);
1244 return MMC_BLK_ABORT;
1245 }
1246
1247 /*
1248 * Everything else is either success, or a data error of some
1249 * kind. If it was a write, we may have transitioned to
1250 * program mode, which we have to wait for it to complete.
1251 */
1252 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001253 int err;
Trey Ramsay8fee4762012-11-16 09:31:41 -06001254
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001255 /* Check stop command response */
1256 if (brq->stop.resp[0] & R1_ERROR) {
1257 pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
1258 req->rq_disk->disk_name, __func__,
1259 brq->stop.resp[0]);
1260 gen_err = 1;
1261 }
1262
Ulf Hansson95a91292014-01-29 13:11:27 +01001263 err = card_busy_detect(card, MMC_BLK_TIMEOUT_MS, false, req,
1264 &gen_err);
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001265 if (err)
1266 return MMC_BLK_CMD_ERR;
Per Forlind78d4a82011-07-01 18:55:30 +02001267 }
1268
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001269 /* if general error occurs, retry the write operation. */
1270 if (gen_err) {
1271 pr_warn("%s: retrying write for general error\n",
1272 req->rq_disk->disk_name);
1273 return MMC_BLK_RETRY;
1274 }
1275
Per Forlind78d4a82011-07-01 18:55:30 +02001276 if (brq->data.error) {
1277 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1278 req->rq_disk->disk_name, brq->data.error,
1279 (unsigned)blk_rq_pos(req),
1280 (unsigned)blk_rq_sectors(req),
1281 brq->cmd.resp[0], brq->stop.resp[0]);
1282
1283 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001284 if (ecc_err)
1285 return MMC_BLK_ECC_ERR;
Per Forlind78d4a82011-07-01 18:55:30 +02001286 return MMC_BLK_DATA_ERR;
1287 } else {
1288 return MMC_BLK_CMD_ERR;
1289 }
1290 }
1291
Adrian Hunter67716322011-08-29 16:42:15 +03001292 if (!brq->data.bytes_xfered)
1293 return MMC_BLK_RETRY;
Per Forlind78d4a82011-07-01 18:55:30 +02001294
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001295 if (mmc_packed_cmd(mq_mrq->cmd_type)) {
1296 if (unlikely(brq->data.blocks << 9 != brq->data.bytes_xfered))
1297 return MMC_BLK_PARTIAL;
1298 else
1299 return MMC_BLK_SUCCESS;
1300 }
1301
Adrian Hunter67716322011-08-29 16:42:15 +03001302 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1303 return MMC_BLK_PARTIAL;
1304
1305 return MMC_BLK_SUCCESS;
Per Forlind78d4a82011-07-01 18:55:30 +02001306}
1307
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001308static int mmc_blk_packed_err_check(struct mmc_card *card,
1309 struct mmc_async_req *areq)
1310{
1311 struct mmc_queue_req *mq_rq = container_of(areq, struct mmc_queue_req,
1312 mmc_active);
1313 struct request *req = mq_rq->req;
1314 struct mmc_packed *packed = mq_rq->packed;
1315 int err, check, status;
1316 u8 *ext_csd;
1317
1318 BUG_ON(!packed);
1319
1320 packed->retries--;
1321 check = mmc_blk_err_check(card, areq);
1322 err = get_card_status(card, &status, 0);
1323 if (err) {
1324 pr_err("%s: error %d sending status command\n",
1325 req->rq_disk->disk_name, err);
1326 return MMC_BLK_ABORT;
1327 }
1328
1329 if (status & R1_EXCEPTION_EVENT) {
Ulf Hansson86817ff2014-10-17 11:39:05 +02001330 err = mmc_get_ext_csd(card, &ext_csd);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001331 if (err) {
1332 pr_err("%s: error %d sending ext_csd\n",
1333 req->rq_disk->disk_name, err);
Ulf Hansson86817ff2014-10-17 11:39:05 +02001334 return MMC_BLK_ABORT;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001335 }
1336
1337 if ((ext_csd[EXT_CSD_EXP_EVENTS_STATUS] &
1338 EXT_CSD_PACKED_FAILURE) &&
1339 (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1340 EXT_CSD_PACKED_GENERIC_ERROR)) {
1341 if (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1342 EXT_CSD_PACKED_INDEXED_ERROR) {
1343 packed->idx_failure =
1344 ext_csd[EXT_CSD_PACKED_FAILURE_INDEX] - 1;
1345 check = MMC_BLK_PARTIAL;
1346 }
1347 pr_err("%s: packed cmd failed, nr %u, sectors %u, "
1348 "failure index: %d\n",
1349 req->rq_disk->disk_name, packed->nr_entries,
1350 packed->blocks, packed->idx_failure);
1351 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001352 kfree(ext_csd);
1353 }
1354
1355 return check;
1356}
1357
Per Forlin54d49d72011-07-01 18:55:29 +02001358static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1359 struct mmc_card *card,
1360 int disable_multi,
1361 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Per Forlin54d49d72011-07-01 18:55:29 +02001363 u32 readcmd, writecmd;
1364 struct mmc_blk_request *brq = &mqrq->brq;
1365 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 struct mmc_blk_data *md = mq->data;
Saugata Das42659002011-12-21 13:09:17 +05301367 bool do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001369 /*
1370 * Reliable writes are used to implement Forced Unit Access and
1371 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +02001372 *
1373 * XXX: this really needs a good explanation of why REQ_META
1374 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001375 */
1376 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1377 (req->cmd_flags & REQ_META)) &&
1378 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001379 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001380
Per Forlin54d49d72011-07-01 18:55:29 +02001381 memset(brq, 0, sizeof(struct mmc_blk_request));
1382 brq->mrq.cmd = &brq->cmd;
1383 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Per Forlin54d49d72011-07-01 18:55:29 +02001385 brq->cmd.arg = blk_rq_pos(req);
1386 if (!mmc_card_blockaddr(card))
1387 brq->cmd.arg <<= 9;
1388 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1389 brq->data.blksz = 512;
1390 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1391 brq->stop.arg = 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001392 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Per Forlin54d49d72011-07-01 18:55:29 +02001394 /*
1395 * The block layer doesn't support all sector count
1396 * restrictions, so we need to be prepared for too big
1397 * requests.
1398 */
1399 if (brq->data.blocks > card->host->max_blk_count)
1400 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001402 if (brq->data.blocks > 1) {
1403 /*
1404 * After a read error, we redo the request one sector
1405 * at a time in order to accurately determine which
1406 * sectors can be read successfully.
1407 */
1408 if (disable_multi)
1409 brq->data.blocks = 1;
1410
Kuninori Morimoto2e47e842014-09-02 19:08:53 -07001411 /*
1412 * Some controllers have HW issues while operating
1413 * in multiple I/O mode
1414 */
1415 if (card->host->ops->multi_io_quirk)
1416 brq->data.blocks = card->host->ops->multi_io_quirk(card,
1417 (rq_data_dir(req) == READ) ?
1418 MMC_DATA_READ : MMC_DATA_WRITE,
1419 brq->data.blocks);
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001420 }
Per Forlin54d49d72011-07-01 18:55:29 +02001421
1422 if (brq->data.blocks > 1 || do_rel_wr) {
1423 /* SPI multiblock writes terminate using a special
1424 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001425 */
Per Forlin54d49d72011-07-01 18:55:29 +02001426 if (!mmc_host_is_spi(card->host) ||
1427 rq_data_dir(req) == READ)
1428 brq->mrq.stop = &brq->stop;
1429 readcmd = MMC_READ_MULTIPLE_BLOCK;
1430 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1431 } else {
1432 brq->mrq.stop = NULL;
1433 readcmd = MMC_READ_SINGLE_BLOCK;
1434 writecmd = MMC_WRITE_BLOCK;
1435 }
1436 if (rq_data_dir(req) == READ) {
1437 brq->cmd.opcode = readcmd;
1438 brq->data.flags |= MMC_DATA_READ;
Ulf Hanssonbcc3e172014-01-14 21:24:21 +01001439 if (brq->mrq.stop)
1440 brq->stop.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 |
1441 MMC_CMD_AC;
Per Forlin54d49d72011-07-01 18:55:29 +02001442 } else {
1443 brq->cmd.opcode = writecmd;
1444 brq->data.flags |= MMC_DATA_WRITE;
Ulf Hanssonbcc3e172014-01-14 21:24:21 +01001445 if (brq->mrq.stop)
1446 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B |
1447 MMC_CMD_AC;
Per Forlin54d49d72011-07-01 18:55:29 +02001448 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001449
Per Forlin54d49d72011-07-01 18:55:29 +02001450 if (do_rel_wr)
1451 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001452
Per Forlin54d49d72011-07-01 18:55:29 +02001453 /*
Saugata Das42659002011-12-21 13:09:17 +05301454 * Data tag is used only during writing meta data to speed
1455 * up write and any subsequent read of this meta data
1456 */
1457 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1458 (req->cmd_flags & REQ_META) &&
1459 (rq_data_dir(req) == WRITE) &&
1460 ((brq->data.blocks * brq->data.blksz) >=
1461 card->ext_csd.data_tag_unit_size);
1462
1463 /*
Per Forlin54d49d72011-07-01 18:55:29 +02001464 * Pre-defined multi-block transfers are preferable to
1465 * open ended-ones (and necessary for reliable writes).
1466 * However, it is not sufficient to just send CMD23,
1467 * and avoid the final CMD12, as on an error condition
1468 * CMD12 (stop) needs to be sent anyway. This, coupled
1469 * with Auto-CMD23 enhancements provided by some
1470 * hosts, means that the complexity of dealing
1471 * with this is best left to the host. If CMD23 is
1472 * supported by card and host, we'll fill sbc in and let
1473 * the host deal with handling it correctly. This means
1474 * that for hosts that don't expose MMC_CAP_CMD23, no
1475 * change of behavior will be observed.
1476 *
1477 * N.B: Some MMC cards experience perf degradation.
1478 * We'll avoid using CMD23-bounded multiblock writes for
1479 * these, while retaining features like reliable writes.
1480 */
Saugata Das42659002011-12-21 13:09:17 +05301481 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1482 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1483 do_data_tag)) {
Per Forlin54d49d72011-07-01 18:55:29 +02001484 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1485 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301486 (do_rel_wr ? (1 << 31) : 0) |
1487 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d72011-07-01 18:55:29 +02001488 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1489 brq->mrq.sbc = &brq->sbc;
1490 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001491
Per Forlin54d49d72011-07-01 18:55:29 +02001492 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001493
Per Forlin54d49d72011-07-01 18:55:29 +02001494 brq->data.sg = mqrq->sg;
1495 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001496
Per Forlin54d49d72011-07-01 18:55:29 +02001497 /*
1498 * Adjust the sg list so it is the same size as the
1499 * request.
1500 */
1501 if (brq->data.blocks != blk_rq_sectors(req)) {
1502 int i, data_size = brq->data.blocks << 9;
1503 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001504
Per Forlin54d49d72011-07-01 18:55:29 +02001505 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1506 data_size -= sg->length;
1507 if (data_size <= 0) {
1508 sg->length += data_size;
1509 i++;
1510 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001511 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001512 }
Per Forlin54d49d72011-07-01 18:55:29 +02001513 brq->data.sg_len = i;
1514 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001515
Per Forlinee8a43a2011-07-01 18:55:33 +02001516 mqrq->mmc_active.mrq = &brq->mrq;
1517 mqrq->mmc_active.err_check = mmc_blk_err_check;
1518
Per Forlin54d49d72011-07-01 18:55:29 +02001519 mmc_queue_bounce_pre(mqrq);
1520}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001522static inline u8 mmc_calc_packed_hdr_segs(struct request_queue *q,
1523 struct mmc_card *card)
1524{
1525 unsigned int hdr_sz = mmc_large_sector(card) ? 4096 : 512;
1526 unsigned int max_seg_sz = queue_max_segment_size(q);
1527 unsigned int len, nr_segs = 0;
1528
1529 do {
1530 len = min(hdr_sz, max_seg_sz);
1531 hdr_sz -= len;
1532 nr_segs++;
1533 } while (hdr_sz);
1534
1535 return nr_segs;
1536}
1537
1538static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
1539{
1540 struct request_queue *q = mq->queue;
1541 struct mmc_card *card = mq->card;
1542 struct request *cur = req, *next = NULL;
1543 struct mmc_blk_data *md = mq->data;
1544 struct mmc_queue_req *mqrq = mq->mqrq_cur;
1545 bool en_rel_wr = card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN;
1546 unsigned int req_sectors = 0, phys_segments = 0;
1547 unsigned int max_blk_count, max_phys_segs;
1548 bool put_back = true;
1549 u8 max_packed_rw = 0;
1550 u8 reqs = 0;
1551
1552 if (!(md->flags & MMC_BLK_PACKED_CMD))
1553 goto no_packed;
1554
1555 if ((rq_data_dir(cur) == WRITE) &&
1556 mmc_host_packed_wr(card->host))
1557 max_packed_rw = card->ext_csd.max_packed_writes;
1558
1559 if (max_packed_rw == 0)
1560 goto no_packed;
1561
1562 if (mmc_req_rel_wr(cur) &&
1563 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1564 goto no_packed;
1565
1566 if (mmc_large_sector(card) &&
1567 !IS_ALIGNED(blk_rq_sectors(cur), 8))
1568 goto no_packed;
1569
1570 mmc_blk_clear_packed(mqrq);
1571
1572 max_blk_count = min(card->host->max_blk_count,
1573 card->host->max_req_size >> 9);
1574 if (unlikely(max_blk_count > 0xffff))
1575 max_blk_count = 0xffff;
1576
1577 max_phys_segs = queue_max_segments(q);
1578 req_sectors += blk_rq_sectors(cur);
1579 phys_segments += cur->nr_phys_segments;
1580
1581 if (rq_data_dir(cur) == WRITE) {
1582 req_sectors += mmc_large_sector(card) ? 8 : 1;
1583 phys_segments += mmc_calc_packed_hdr_segs(q, card);
1584 }
1585
1586 do {
1587 if (reqs >= max_packed_rw - 1) {
1588 put_back = false;
1589 break;
1590 }
1591
1592 spin_lock_irq(q->queue_lock);
1593 next = blk_fetch_request(q);
1594 spin_unlock_irq(q->queue_lock);
1595 if (!next) {
1596 put_back = false;
1597 break;
1598 }
1599
1600 if (mmc_large_sector(card) &&
1601 !IS_ALIGNED(blk_rq_sectors(next), 8))
1602 break;
1603
1604 if (next->cmd_flags & REQ_DISCARD ||
1605 next->cmd_flags & REQ_FLUSH)
1606 break;
1607
1608 if (rq_data_dir(cur) != rq_data_dir(next))
1609 break;
1610
1611 if (mmc_req_rel_wr(next) &&
1612 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1613 break;
1614
1615 req_sectors += blk_rq_sectors(next);
1616 if (req_sectors > max_blk_count)
1617 break;
1618
1619 phys_segments += next->nr_phys_segments;
1620 if (phys_segments > max_phys_segs)
1621 break;
1622
1623 list_add_tail(&next->queuelist, &mqrq->packed->list);
1624 cur = next;
1625 reqs++;
1626 } while (1);
1627
1628 if (put_back) {
1629 spin_lock_irq(q->queue_lock);
1630 blk_requeue_request(q, next);
1631 spin_unlock_irq(q->queue_lock);
1632 }
1633
1634 if (reqs > 0) {
1635 list_add(&req->queuelist, &mqrq->packed->list);
1636 mqrq->packed->nr_entries = ++reqs;
1637 mqrq->packed->retries = reqs;
1638 return reqs;
1639 }
1640
1641no_packed:
1642 mqrq->cmd_type = MMC_PACKED_NONE;
1643 return 0;
1644}
1645
1646static void mmc_blk_packed_hdr_wrq_prep(struct mmc_queue_req *mqrq,
1647 struct mmc_card *card,
1648 struct mmc_queue *mq)
1649{
1650 struct mmc_blk_request *brq = &mqrq->brq;
1651 struct request *req = mqrq->req;
1652 struct request *prq;
1653 struct mmc_blk_data *md = mq->data;
1654 struct mmc_packed *packed = mqrq->packed;
1655 bool do_rel_wr, do_data_tag;
1656 u32 *packed_cmd_hdr;
1657 u8 hdr_blocks;
1658 u8 i = 1;
1659
1660 BUG_ON(!packed);
1661
1662 mqrq->cmd_type = MMC_PACKED_WRITE;
1663 packed->blocks = 0;
1664 packed->idx_failure = MMC_PACKED_NR_IDX;
1665
1666 packed_cmd_hdr = packed->cmd_hdr;
1667 memset(packed_cmd_hdr, 0, sizeof(packed->cmd_hdr));
1668 packed_cmd_hdr[0] = (packed->nr_entries << 16) |
1669 (PACKED_CMD_WR << 8) | PACKED_CMD_VER;
1670 hdr_blocks = mmc_large_sector(card) ? 8 : 1;
1671
1672 /*
1673 * Argument for each entry of packed group
1674 */
1675 list_for_each_entry(prq, &packed->list, queuelist) {
1676 do_rel_wr = mmc_req_rel_wr(prq) && (md->flags & MMC_BLK_REL_WR);
1677 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1678 (prq->cmd_flags & REQ_META) &&
1679 (rq_data_dir(prq) == WRITE) &&
1680 ((brq->data.blocks * brq->data.blksz) >=
1681 card->ext_csd.data_tag_unit_size);
1682 /* Argument of CMD23 */
1683 packed_cmd_hdr[(i * 2)] =
1684 (do_rel_wr ? MMC_CMD23_ARG_REL_WR : 0) |
1685 (do_data_tag ? MMC_CMD23_ARG_TAG_REQ : 0) |
1686 blk_rq_sectors(prq);
1687 /* Argument of CMD18 or CMD25 */
1688 packed_cmd_hdr[((i * 2)) + 1] =
1689 mmc_card_blockaddr(card) ?
1690 blk_rq_pos(prq) : blk_rq_pos(prq) << 9;
1691 packed->blocks += blk_rq_sectors(prq);
1692 i++;
1693 }
1694
1695 memset(brq, 0, sizeof(struct mmc_blk_request));
1696 brq->mrq.cmd = &brq->cmd;
1697 brq->mrq.data = &brq->data;
1698 brq->mrq.sbc = &brq->sbc;
1699 brq->mrq.stop = &brq->stop;
1700
1701 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1702 brq->sbc.arg = MMC_CMD23_ARG_PACKED | (packed->blocks + hdr_blocks);
1703 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1704
1705 brq->cmd.opcode = MMC_WRITE_MULTIPLE_BLOCK;
1706 brq->cmd.arg = blk_rq_pos(req);
1707 if (!mmc_card_blockaddr(card))
1708 brq->cmd.arg <<= 9;
1709 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1710
1711 brq->data.blksz = 512;
1712 brq->data.blocks = packed->blocks + hdr_blocks;
1713 brq->data.flags |= MMC_DATA_WRITE;
1714
1715 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1716 brq->stop.arg = 0;
1717 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1718
1719 mmc_set_data_timeout(&brq->data, card);
1720
1721 brq->data.sg = mqrq->sg;
1722 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1723
1724 mqrq->mmc_active.mrq = &brq->mrq;
1725 mqrq->mmc_active.err_check = mmc_blk_packed_err_check;
1726
1727 mmc_queue_bounce_pre(mqrq);
1728}
1729
Adrian Hunter67716322011-08-29 16:42:15 +03001730static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1731 struct mmc_blk_request *brq, struct request *req,
1732 int ret)
1733{
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001734 struct mmc_queue_req *mq_rq;
1735 mq_rq = container_of(brq, struct mmc_queue_req, brq);
1736
Adrian Hunter67716322011-08-29 16:42:15 +03001737 /*
1738 * If this is an SD card and we're writing, we can first
1739 * mark the known good sectors as ok.
1740 *
1741 * If the card is not SD, we can still ok written sectors
1742 * as reported by the controller (which might be less than
1743 * the real number of written sectors, but never more).
1744 */
1745 if (mmc_card_sd(card)) {
1746 u32 blocks;
1747
1748 blocks = mmc_sd_num_wr_blocks(card);
1749 if (blocks != (u32)-1) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301750 ret = blk_end_request(req, 0, blocks << 9);
Adrian Hunter67716322011-08-29 16:42:15 +03001751 }
1752 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001753 if (!mmc_packed_cmd(mq_rq->cmd_type))
1754 ret = blk_end_request(req, 0, brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03001755 }
1756 return ret;
1757}
1758
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001759static int mmc_blk_end_packed_req(struct mmc_queue_req *mq_rq)
1760{
1761 struct request *prq;
1762 struct mmc_packed *packed = mq_rq->packed;
1763 int idx = packed->idx_failure, i = 0;
1764 int ret = 0;
1765
1766 BUG_ON(!packed);
1767
1768 while (!list_empty(&packed->list)) {
1769 prq = list_entry_rq(packed->list.next);
1770 if (idx == i) {
1771 /* retry from error index */
1772 packed->nr_entries -= idx;
1773 mq_rq->req = prq;
1774 ret = 1;
1775
1776 if (packed->nr_entries == MMC_PACKED_NR_SINGLE) {
1777 list_del_init(&prq->queuelist);
1778 mmc_blk_clear_packed(mq_rq);
1779 }
1780 return ret;
1781 }
1782 list_del_init(&prq->queuelist);
1783 blk_end_request(prq, 0, blk_rq_bytes(prq));
1784 i++;
1785 }
1786
1787 mmc_blk_clear_packed(mq_rq);
1788 return ret;
1789}
1790
1791static void mmc_blk_abort_packed_req(struct mmc_queue_req *mq_rq)
1792{
1793 struct request *prq;
1794 struct mmc_packed *packed = mq_rq->packed;
1795
1796 BUG_ON(!packed);
1797
1798 while (!list_empty(&packed->list)) {
1799 prq = list_entry_rq(packed->list.next);
1800 list_del_init(&prq->queuelist);
1801 blk_end_request(prq, -EIO, blk_rq_bytes(prq));
1802 }
1803
1804 mmc_blk_clear_packed(mq_rq);
1805}
1806
1807static void mmc_blk_revert_packed_req(struct mmc_queue *mq,
1808 struct mmc_queue_req *mq_rq)
1809{
1810 struct request *prq;
1811 struct request_queue *q = mq->queue;
1812 struct mmc_packed *packed = mq_rq->packed;
1813
1814 BUG_ON(!packed);
1815
1816 while (!list_empty(&packed->list)) {
1817 prq = list_entry_rq(packed->list.prev);
1818 if (prq->queuelist.prev != &packed->list) {
1819 list_del_init(&prq->queuelist);
1820 spin_lock_irq(q->queue_lock);
1821 blk_requeue_request(mq->queue, prq);
1822 spin_unlock_irq(q->queue_lock);
1823 } else {
1824 list_del_init(&prq->queuelist);
1825 }
1826 }
1827
1828 mmc_blk_clear_packed(mq_rq);
1829}
1830
Per Forlinee8a43a2011-07-01 18:55:33 +02001831static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001832{
1833 struct mmc_blk_data *md = mq->data;
1834 struct mmc_card *card = md->queue.card;
1835 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunter67716322011-08-29 16:42:15 +03001836 int ret = 1, disable_multi = 0, retry = 0, type;
Per Forlind78d4a82011-07-01 18:55:30 +02001837 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001838 struct mmc_queue_req *mq_rq;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301839 struct request *req = rqc;
Per Forlinee8a43a2011-07-01 18:55:33 +02001840 struct mmc_async_req *areq;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001841 const u8 packed_nr = 2;
1842 u8 reqs = 0;
Per Forlinee8a43a2011-07-01 18:55:33 +02001843
1844 if (!rqc && !mq->mqrq_prev->req)
1845 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001846
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001847 if (rqc)
1848 reqs = mmc_blk_prep_packed_list(mq, rqc);
1849
Per Forlin54d49d72011-07-01 18:55:29 +02001850 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001851 if (rqc) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05301852 /*
1853 * When 4KB native sector is enabled, only 8 blocks
1854 * multiple read or write is allowed
1855 */
1856 if ((brq->data.blocks & 0x07) &&
1857 (card->ext_csd.data_sector_size == 4096)) {
1858 pr_err("%s: Transfer size is not 4KB sector size aligned\n",
1859 req->rq_disk->disk_name);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001860 mq_rq = mq->mqrq_cur;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301861 goto cmd_abort;
1862 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001863
1864 if (reqs >= packed_nr)
1865 mmc_blk_packed_hdr_wrq_prep(mq->mqrq_cur,
1866 card, mq);
1867 else
1868 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
Per Forlinee8a43a2011-07-01 18:55:33 +02001869 areq = &mq->mqrq_cur->mmc_active;
1870 } else
1871 areq = NULL;
1872 areq = mmc_start_req(card->host, areq, (int *) &status);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001873 if (!areq) {
1874 if (status == MMC_BLK_NEW_REQUEST)
1875 mq->flags |= MMC_QUEUE_NEW_REQUEST;
Per Forlinee8a43a2011-07-01 18:55:33 +02001876 return 0;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001877 }
Pierre Ossman98ccf142007-05-12 00:26:16 +02001878
Per Forlinee8a43a2011-07-01 18:55:33 +02001879 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1880 brq = &mq_rq->brq;
1881 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001882 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001883 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001884
Per Forlind78d4a82011-07-01 18:55:30 +02001885 switch (status) {
1886 case MMC_BLK_SUCCESS:
1887 case MMC_BLK_PARTIAL:
1888 /*
1889 * A block was successfully transferred.
1890 */
Adrian Hunter67716322011-08-29 16:42:15 +03001891 mmc_blk_reset_success(md, type);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001892
1893 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1894 ret = mmc_blk_end_packed_req(mq_rq);
1895 break;
1896 } else {
1897 ret = blk_end_request(req, 0,
Per Forlind78d4a82011-07-01 18:55:30 +02001898 brq->data.bytes_xfered);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001899 }
1900
Adrian Hunter67716322011-08-29 16:42:15 +03001901 /*
1902 * If the blk_end_request function returns non-zero even
1903 * though all data has been transferred and no errors
1904 * were returned by the host controller, it's a bug.
1905 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001906 if (status == MMC_BLK_SUCCESS && ret) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301907 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Per Forlinee8a43a2011-07-01 18:55:33 +02001908 __func__, blk_rq_bytes(req),
1909 brq->data.bytes_xfered);
1910 rqc = NULL;
1911 goto cmd_abort;
1912 }
Per Forlind78d4a82011-07-01 18:55:30 +02001913 break;
1914 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001915 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1916 if (!mmc_blk_reset(md, card->host, type))
1917 break;
1918 goto cmd_abort;
Per Forlind78d4a82011-07-01 18:55:30 +02001919 case MMC_BLK_RETRY:
1920 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001921 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001922 /* Fall through */
Per Forlind78d4a82011-07-01 18:55:30 +02001923 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001924 if (!mmc_blk_reset(md, card->host, type))
1925 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001926 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001927 case MMC_BLK_DATA_ERR: {
1928 int err;
1929
1930 err = mmc_blk_reset(md, card->host, type);
1931 if (!err)
1932 break;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001933 if (err == -ENODEV ||
1934 mmc_packed_cmd(mq_rq->cmd_type))
Adrian Hunter67716322011-08-29 16:42:15 +03001935 goto cmd_abort;
1936 /* Fall through */
1937 }
1938 case MMC_BLK_ECC_ERR:
1939 if (brq->data.blocks > 1) {
1940 /* Redo read one sector at a time */
Joe Perches66061102014-09-12 14:56:56 -07001941 pr_warn("%s: retrying using single block read\n",
1942 req->rq_disk->disk_name);
Adrian Hunter67716322011-08-29 16:42:15 +03001943 disable_multi = 1;
1944 break;
1945 }
Per Forlind78d4a82011-07-01 18:55:30 +02001946 /*
1947 * After an error, we redo I/O one sector at a
1948 * time, so we only reach here after trying to
1949 * read a single sector.
1950 */
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301951 ret = blk_end_request(req, -EIO,
Per Forlind78d4a82011-07-01 18:55:30 +02001952 brq->data.blksz);
Per Forlinee8a43a2011-07-01 18:55:33 +02001953 if (!ret)
1954 goto start_new_req;
Per Forlind78d4a82011-07-01 18:55:30 +02001955 break;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301956 case MMC_BLK_NOMEDIUM:
1957 goto cmd_abort;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001958 default:
1959 pr_err("%s: Unhandled return value (%d)",
1960 req->rq_disk->disk_name, status);
1961 goto cmd_abort;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001962 }
1963
Per Forlinee8a43a2011-07-01 18:55:33 +02001964 if (ret) {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001965 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1966 if (!mq_rq->packed->retries)
1967 goto cmd_abort;
1968 mmc_blk_packed_hdr_wrq_prep(mq_rq, card, mq);
1969 mmc_start_req(card->host,
1970 &mq_rq->mmc_active, NULL);
1971 } else {
1972
1973 /*
1974 * In case of a incomplete request
1975 * prepare it again and resend.
1976 */
1977 mmc_blk_rw_rq_prep(mq_rq, card,
1978 disable_multi, mq);
1979 mmc_start_req(card->host,
1980 &mq_rq->mmc_active, NULL);
1981 }
Per Forlinee8a43a2011-07-01 18:55:33 +02001982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 } while (ret);
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 return 1;
1986
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001987 cmd_abort:
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001988 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1989 mmc_blk_abort_packed_req(mq_rq);
1990 } else {
1991 if (mmc_card_removed(card))
1992 req->cmd_flags |= REQ_QUIET;
1993 while (ret)
1994 ret = blk_end_request(req, -EIO,
1995 blk_rq_cur_bytes(req));
1996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Per Forlinee8a43a2011-07-01 18:55:33 +02001998 start_new_req:
1999 if (rqc) {
Seungwon Jeon7a819022013-01-22 19:48:07 +09002000 if (mmc_card_removed(card)) {
2001 rqc->cmd_flags |= REQ_QUIET;
2002 blk_end_request_all(rqc, -EIO);
2003 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002004 /*
2005 * If current request is packed, it needs to put back.
2006 */
2007 if (mmc_packed_cmd(mq->mqrq_cur->cmd_type))
2008 mmc_blk_revert_packed_req(mq, mq->mqrq_cur);
2009
Seungwon Jeon7a819022013-01-22 19:48:07 +09002010 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
2011 mmc_start_req(card->host,
2012 &mq->mqrq_cur->mmc_active, NULL);
2013 }
Per Forlinee8a43a2011-07-01 18:55:33 +02002014 }
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 return 0;
2017}
2018
Adrian Hunterbd788c92010-08-11 14:17:47 -07002019static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
2020{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002021 int ret;
2022 struct mmc_blk_data *md = mq->data;
2023 struct mmc_card *card = md->queue.card;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002024 struct mmc_host *host = card->host;
2025 unsigned long flags;
Ray Juif662ae42013-10-26 11:03:44 -07002026 unsigned int cmd_flags = req ? req->cmd_flags : 0;
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002027
Per Forlinee8a43a2011-07-01 18:55:33 +02002028 if (req && !mq->mqrq_prev->req)
2029 /* claim host only for the first request */
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002030 mmc_get_card(card);
Per Forlinee8a43a2011-07-01 18:55:33 +02002031
Andrei Warkentin371a6892011-04-11 18:10:25 -05002032 ret = mmc_blk_part_switch(card, md);
2033 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002034 if (req) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05302035 blk_end_request_all(req, -EIO);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002036 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002037 ret = 0;
2038 goto out;
2039 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002040
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002041 mq->flags &= ~MMC_QUEUE_NEW_REQUEST;
Ray Juif662ae42013-10-26 11:03:44 -07002042 if (cmd_flags & REQ_DISCARD) {
Per Forlinee8a43a2011-07-01 18:55:33 +02002043 /* complete ongoing async transfer before issuing discard */
2044 if (card->host->areq)
2045 mmc_blk_issue_rw_rq(mq, NULL);
Lukas Czerner5204d002014-06-18 13:18:07 +02002046 if (req->cmd_flags & REQ_SECURE)
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002047 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07002048 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002049 ret = mmc_blk_issue_discard_rq(mq, req);
Ray Juif662ae42013-10-26 11:03:44 -07002050 } else if (cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09002051 /* complete ongoing async transfer before issuing flush */
2052 if (card->host->areq)
2053 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002054 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07002055 } else {
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002056 if (!req && host->areq) {
2057 spin_lock_irqsave(&host->context_info.lock, flags);
2058 host->context_info.is_waiting_last_req = true;
2059 spin_unlock_irqrestore(&host->context_info.lock, flags);
2060 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002061 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07002062 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002063
Andrei Warkentin371a6892011-04-11 18:10:25 -05002064out:
Seungwon Jeonef3a69c72013-03-14 15:17:13 +09002065 if ((!req && !(mq->flags & MMC_QUEUE_NEW_REQUEST)) ||
Ray Juif662ae42013-10-26 11:03:44 -07002066 (cmd_flags & MMC_REQ_SPECIAL_MASK))
Seungwon Jeonef3a69c72013-03-14 15:17:13 +09002067 /*
2068 * Release host when there are no more requests
2069 * and after special request(discard, flush) is done.
2070 * In case sepecial request, there is no reentry to
2071 * the 'mmc_blk_issue_rq' with 'mqrq_prev->req'.
2072 */
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002073 mmc_put_card(card);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002074 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07002075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Russell Kinga6f6c962006-01-03 22:38:44 +00002077static inline int mmc_blk_readonly(struct mmc_card *card)
2078{
2079 return mmc_card_readonly(card) ||
2080 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
2081}
2082
Andrei Warkentin371a6892011-04-11 18:10:25 -05002083static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
2084 struct device *parent,
2085 sector_t size,
2086 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002087 const char *subname,
2088 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
2090 struct mmc_blk_data *md;
2091 int devidx, ret;
2092
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002093 devidx = find_first_zero_bit(dev_use, max_devices);
2094 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 return ERR_PTR(-ENOSPC);
2096 __set_bit(devidx, dev_use);
2097
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002098 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00002099 if (!md) {
2100 ret = -ENOMEM;
2101 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
Russell Kinga6f6c962006-01-03 22:38:44 +00002103
Russell Kinga6f6c962006-01-03 22:38:44 +00002104 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002105 * !subname implies we are creating main mmc_blk_data that will be
Ulf Hanssonfc95e302014-10-06 14:34:09 +02002106 * associated with mmc_card with dev_set_drvdata. Due to device
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002107 * partitions, devidx will not coincide with a per-physical card
2108 * index anymore so we keep track of a name index.
2109 */
2110 if (!subname) {
2111 md->name_idx = find_first_zero_bit(name_use, max_devices);
2112 __set_bit(md->name_idx, name_use);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002113 } else
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002114 md->name_idx = ((struct mmc_blk_data *)
2115 dev_to_disk(parent)->private_data)->name_idx;
2116
Johan Rudholmadd710e2011-12-02 08:51:06 +01002117 md->area_type = area_type;
2118
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002119 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00002120 * Set the read-only status based on the supported commands
2121 * and the write protect switch.
2122 */
2123 md->read_only = mmc_blk_readonly(card);
2124
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002125 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00002126 if (md->disk == NULL) {
2127 ret = -ENOMEM;
2128 goto err_kfree;
2129 }
2130
2131 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002132 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00002133 md->usage = 1;
2134
Adrian Hunterd09408a2011-06-23 13:40:28 +03002135 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00002136 if (ret)
2137 goto err_putdisk;
2138
Russell Kinga6f6c962006-01-03 22:38:44 +00002139 md->queue.issue_fn = mmc_blk_issue_rq;
2140 md->queue.data = md;
2141
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002142 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002143 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00002144 md->disk->fops = &mmc_bdops;
2145 md->disk->private_data = md;
2146 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002147 md->disk->driverfs_dev = parent;
2148 set_disk_ro(md->disk, md->read_only || default_ro);
Ulf Hanssonf5b4d712014-09-03 11:02:23 +02002149 if (area_type & (MMC_BLK_DATA_AREA_RPMB | MMC_BLK_DATA_AREA_BOOT))
Loic Pallardy53d8f972012-08-06 17:12:28 +02002150 md->disk->flags |= GENHD_FL_NO_PART_SCAN;
Russell Kinga6f6c962006-01-03 22:38:44 +00002151
2152 /*
2153 * As discussed on lkml, GENHD_FL_REMOVABLE should:
2154 *
2155 * - be set for removable media with permanent block devices
2156 * - be unset for removable block devices with permanent media
2157 *
2158 * Since MMC block devices clearly fall under the second
2159 * case, we do not set GENHD_FL_REMOVABLE. Userspace
2160 * should use the block device creation/destruction hotplug
2161 * messages to tell when the card is present.
2162 */
2163
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002164 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
Asaf Vertzfe821912015-01-20 18:33:35 +02002165 "mmcblk%u%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00002166
Saugata Dasa5075eb2012-05-17 16:32:21 +05302167 if (mmc_card_mmc(card))
2168 blk_queue_logical_block_size(md->queue.queue,
2169 card->ext_csd.data_sector_size);
2170 else
2171 blk_queue_logical_block_size(md->queue.queue, 512);
2172
Andrei Warkentin371a6892011-04-11 18:10:25 -05002173 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002174
Andrei Warkentinf0d89972011-05-23 15:06:38 -05002175 if (mmc_host_cmd23(card->host)) {
2176 if (mmc_card_mmc(card) ||
2177 (mmc_card_sd(card) &&
2178 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
2179 md->flags |= MMC_BLK_CMD23;
2180 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002181
2182 if (mmc_card_mmc(card) &&
2183 md->flags & MMC_BLK_CMD23 &&
2184 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
2185 card->ext_csd.rel_sectors)) {
2186 md->flags |= MMC_BLK_REL_WR;
2187 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
2188 }
2189
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002190 if (mmc_card_mmc(card) &&
2191 (area_type == MMC_BLK_DATA_AREA_MAIN) &&
2192 (md->flags & MMC_BLK_CMD23) &&
2193 card->ext_csd.packed_event_en) {
2194 if (!mmc_packed_init(&md->queue, card))
2195 md->flags |= MMC_BLK_PACKED_CMD;
2196 }
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00002199
2200 err_putdisk:
2201 put_disk(md->disk);
2202 err_kfree:
2203 kfree(md);
2204 out:
2205 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
Andrei Warkentin371a6892011-04-11 18:10:25 -05002208static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
2209{
2210 sector_t size;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002211
2212 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
2213 /*
2214 * The EXT_CSD sector count is in number or 512 byte
2215 * sectors.
2216 */
2217 size = card->ext_csd.sectors;
2218 } else {
2219 /*
2220 * The CSD capacity field is in units of read_blkbits.
2221 * set_capacity takes units of 512 bytes.
2222 */
2223 size = card->csd.capacity << (card->csd.read_blkbits - 9);
2224 }
2225
Tobias Klauser7a30f2a2015-01-21 15:56:44 +01002226 return mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002227 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002228}
2229
2230static int mmc_blk_alloc_part(struct mmc_card *card,
2231 struct mmc_blk_data *md,
2232 unsigned int part_type,
2233 sector_t size,
2234 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002235 const char *subname,
2236 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05002237{
2238 char cap_str[10];
2239 struct mmc_blk_data *part_md;
2240
2241 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002242 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002243 if (IS_ERR(part_md))
2244 return PTR_ERR(part_md);
2245 part_md->part_type = part_type;
2246 list_add(&part_md->part, &md->part);
2247
James Bottomleyb9f28d82015-03-05 18:47:01 -08002248 string_get_size((u64)get_capacity(part_md->disk), 512, STRING_UNITS_2,
Andrei Warkentin371a6892011-04-11 18:10:25 -05002249 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302250 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05002251 part_md->disk->disk_name, mmc_card_id(card),
2252 mmc_card_name(card), part_md->part_type, cap_str);
2253 return 0;
2254}
2255
Namjae Jeone0c368d2011-10-06 23:41:38 +09002256/* MMC Physical partitions consist of two boot partitions and
2257 * up to four general purpose partitions.
2258 * For each partition enabled in EXT_CSD a block device will be allocatedi
2259 * to provide access to the partition.
2260 */
2261
Andrei Warkentin371a6892011-04-11 18:10:25 -05002262static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
2263{
Namjae Jeone0c368d2011-10-06 23:41:38 +09002264 int idx, ret = 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002265
2266 if (!mmc_card_mmc(card))
2267 return 0;
2268
Namjae Jeone0c368d2011-10-06 23:41:38 +09002269 for (idx = 0; idx < card->nr_parts; idx++) {
2270 if (card->part[idx].size) {
2271 ret = mmc_blk_alloc_part(card, md,
2272 card->part[idx].part_cfg,
2273 card->part[idx].size >> 9,
2274 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002275 card->part[idx].name,
2276 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09002277 if (ret)
2278 return ret;
2279 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002280 }
2281
2282 return ret;
2283}
2284
Andrei Warkentin371a6892011-04-11 18:10:25 -05002285static void mmc_blk_remove_req(struct mmc_blk_data *md)
2286{
Johan Rudholmadd710e2011-12-02 08:51:06 +01002287 struct mmc_card *card;
2288
Andrei Warkentin371a6892011-04-11 18:10:25 -05002289 if (md) {
Paul Taysomfdfa20c2013-06-04 14:42:40 -07002290 /*
2291 * Flush remaining requests and free queues. It
2292 * is freeing the queue that stops new requests
2293 * from being accepted.
2294 */
Franck Jullien8efb83a2013-07-24 15:17:48 +02002295 card = md->queue.card;
Paul Taysomfdfa20c2013-06-04 14:42:40 -07002296 mmc_cleanup_queue(&md->queue);
2297 if (md->flags & MMC_BLK_PACKED_CMD)
2298 mmc_packed_clean(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002299 if (md->disk->flags & GENHD_FL_UP) {
2300 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002301 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2302 card->ext_csd.boot_ro_lockable)
2303 device_remove_file(disk_to_dev(md->disk),
2304 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002305
Andrei Warkentin371a6892011-04-11 18:10:25 -05002306 del_gendisk(md->disk);
2307 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002308 mmc_blk_put(md);
2309 }
2310}
2311
2312static void mmc_blk_remove_parts(struct mmc_card *card,
2313 struct mmc_blk_data *md)
2314{
2315 struct list_head *pos, *q;
2316 struct mmc_blk_data *part_md;
2317
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002318 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002319 list_for_each_safe(pos, q, &md->part) {
2320 part_md = list_entry(pos, struct mmc_blk_data, part);
2321 list_del(pos);
2322 mmc_blk_remove_req(part_md);
2323 }
2324}
2325
2326static int mmc_add_disk(struct mmc_blk_data *md)
2327{
2328 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002329 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002330
2331 add_disk(md->disk);
2332 md->force_ro.show = force_ro_show;
2333 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05302334 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002335 md->force_ro.attr.name = "force_ro";
2336 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
2337 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
2338 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01002339 goto force_ro_fail;
2340
2341 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2342 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04002343 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002344
2345 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
2346 mode = S_IRUGO;
2347 else
2348 mode = S_IRUGO | S_IWUSR;
2349
2350 md->power_ro_lock.show = power_ro_lock_show;
2351 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01002352 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002353 md->power_ro_lock.attr.mode = mode;
2354 md->power_ro_lock.attr.name =
2355 "ro_lock_until_next_power_on";
2356 ret = device_create_file(disk_to_dev(md->disk),
2357 &md->power_ro_lock);
2358 if (ret)
2359 goto power_ro_lock_fail;
2360 }
2361 return ret;
2362
2363power_ro_lock_fail:
2364 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
2365force_ro_fail:
2366 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002367
2368 return ret;
2369}
2370
Chris Ballc59d4472011-11-11 22:01:43 -05002371#define CID_MANFID_SANDISK 0x2
2372#define CID_MANFID_TOSHIBA 0x11
2373#define CID_MANFID_MICRON 0x13
Ian Chen3550ccd2012-08-29 15:05:36 +09002374#define CID_MANFID_SAMSUNG 0x15
Chris Ballc59d4472011-11-11 22:01:43 -05002375
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002376static const struct mmc_fixup blk_fixups[] =
2377{
Chris Ballc59d4472011-11-11 22:01:43 -05002378 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
2379 MMC_QUIRK_INAND_CMD38),
2380 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
2381 MMC_QUIRK_INAND_CMD38),
2382 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
2383 MMC_QUIRK_INAND_CMD38),
2384 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
2385 MMC_QUIRK_INAND_CMD38),
2386 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
2387 MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002388
2389 /*
2390 * Some MMC cards experience performance degradation with CMD23
2391 * instead of CMD12-bounded multiblock transfers. For now we'll
2392 * black list what's bad...
2393 * - Certain Toshiba cards.
2394 *
2395 * N.B. This doesn't affect SD cards.
2396 */
Chris Ballc59d4472011-11-11 22:01:43 -05002397 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002398 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002399 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002400 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002401 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002402 MMC_QUIRK_BLK_NO_CMD23),
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002403
2404 /*
2405 * Some Micron MMC cards needs longer data read timeout than
2406 * indicated in CSD.
2407 */
Chris Ballc59d4472011-11-11 22:01:43 -05002408 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002409 MMC_QUIRK_LONG_READ_TIME),
2410
Ian Chen3550ccd2012-08-29 15:05:36 +09002411 /*
2412 * On these Samsung MoviNAND parts, performing secure erase or
2413 * secure trim can result in unrecoverable corruption due to a
2414 * firmware bug.
2415 */
2416 MMC_FIXUP("M8G2FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2417 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2418 MMC_FIXUP("MAG4FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2419 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2420 MMC_FIXUP("MBG8FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2421 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2422 MMC_FIXUP("MCGAFA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2423 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2424 MMC_FIXUP("VAL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2425 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2426 MMC_FIXUP("VYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2427 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2428 MMC_FIXUP("KYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2429 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2430 MMC_FIXUP("VZL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2431 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2432
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002433 END_FIXUP
2434};
2435
Ulf Hansson96541ba2015-04-14 13:06:12 +02002436static int mmc_blk_probe(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002438 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002439 char cap_str[10];
2440
Pierre Ossman912490d2005-05-21 10:27:02 +01002441 /*
2442 * Check that the card supports the command class(es) we need.
2443 */
2444 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 return -ENODEV;
2446
Lukas Czerner5204d002014-06-18 13:18:07 +02002447 mmc_fixup_device(card, blk_fixups);
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 md = mmc_blk_alloc(card);
2450 if (IS_ERR(md))
2451 return PTR_ERR(md);
2452
James Bottomleyb9f28d82015-03-05 18:47:01 -08002453 string_get_size((u64)get_capacity(md->disk), 512, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002454 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302455 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002457 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Andrei Warkentin371a6892011-04-11 18:10:25 -05002459 if (mmc_blk_alloc_parts(card, md))
2460 goto out;
2461
Ulf Hansson96541ba2015-04-14 13:06:12 +02002462 dev_set_drvdata(&card->dev, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002463
Andrei Warkentin371a6892011-04-11 18:10:25 -05002464 if (mmc_add_disk(md))
2465 goto out;
2466
2467 list_for_each_entry(part_md, &md->part, part) {
2468 if (mmc_add_disk(part_md))
2469 goto out;
2470 }
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002471
2472 pm_runtime_set_autosuspend_delay(&card->dev, 3000);
2473 pm_runtime_use_autosuspend(&card->dev);
2474
2475 /*
2476 * Don't enable runtime PM for SD-combo cards here. Leave that
2477 * decision to be taken during the SDIO init sequence instead.
2478 */
2479 if (card->type != MMC_TYPE_SD_COMBO) {
2480 pm_runtime_set_active(&card->dev);
2481 pm_runtime_enable(&card->dev);
2482 }
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 return 0;
2485
2486 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05002487 mmc_blk_remove_parts(card, md);
2488 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01002489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490}
2491
Ulf Hansson96541ba2015-04-14 13:06:12 +02002492static void mmc_blk_remove(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
Ulf Hansson96541ba2015-04-14 13:06:12 +02002494 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Andrei Warkentin371a6892011-04-11 18:10:25 -05002496 mmc_blk_remove_parts(card, md);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002497 pm_runtime_get_sync(&card->dev);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03002498 mmc_claim_host(card->host);
2499 mmc_blk_part_switch(card, md);
2500 mmc_release_host(card->host);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002501 if (card->type != MMC_TYPE_SD_COMBO)
2502 pm_runtime_disable(&card->dev);
2503 pm_runtime_put_noidle(&card->dev);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002504 mmc_blk_remove_req(md);
Ulf Hansson96541ba2015-04-14 13:06:12 +02002505 dev_set_drvdata(&card->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
Ulf Hansson96541ba2015-04-14 13:06:12 +02002508static int _mmc_blk_suspend(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002510 struct mmc_blk_data *part_md;
Ulf Hansson96541ba2015-04-14 13:06:12 +02002511 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 if (md) {
2514 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002515 list_for_each_entry(part_md, &md->part, part) {
2516 mmc_queue_suspend(&part_md->queue);
2517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
2519 return 0;
2520}
2521
Ulf Hansson96541ba2015-04-14 13:06:12 +02002522static void mmc_blk_shutdown(struct mmc_card *card)
Ulf Hansson76287742013-06-10 17:03:40 +02002523{
Ulf Hansson96541ba2015-04-14 13:06:12 +02002524 _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02002525}
2526
Ulf Hansson0967edc2014-10-06 11:29:42 +02002527#ifdef CONFIG_PM_SLEEP
2528static int mmc_blk_suspend(struct device *dev)
Ulf Hansson76287742013-06-10 17:03:40 +02002529{
Ulf Hansson96541ba2015-04-14 13:06:12 +02002530 struct mmc_card *card = mmc_dev_to_card(dev);
2531
2532 return _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02002533}
2534
Ulf Hansson0967edc2014-10-06 11:29:42 +02002535static int mmc_blk_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002537 struct mmc_blk_data *part_md;
Ulf Hanssonfc95e302014-10-06 14:34:09 +02002538 struct mmc_blk_data *md = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05002541 /*
2542 * Resume involves the card going into idle state,
2543 * so current partition is always the main one.
2544 */
2545 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002547 list_for_each_entry(part_md, &md->part, part) {
2548 mmc_queue_resume(&part_md->queue);
2549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
2551 return 0;
2552}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553#endif
2554
Ulf Hansson0967edc2014-10-06 11:29:42 +02002555static SIMPLE_DEV_PM_OPS(mmc_blk_pm_ops, mmc_blk_suspend, mmc_blk_resume);
2556
Ulf Hansson96541ba2015-04-14 13:06:12 +02002557static struct mmc_driver mmc_driver = {
2558 .drv = {
2559 .name = "mmcblk",
2560 .pm = &mmc_blk_pm_ops,
2561 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 .probe = mmc_blk_probe,
2563 .remove = mmc_blk_remove,
Ulf Hansson76287742013-06-10 17:03:40 +02002564 .shutdown = mmc_blk_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565};
2566
2567static int __init mmc_blk_init(void)
2568{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002569 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002571 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
2572 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
2573
Ben Hutchingsa26eba62014-11-06 03:35:09 +00002574 max_devices = min(MAX_DEVICES, (1 << MINORBITS) / perdev_minors);
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002575
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002576 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
2577 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002580 res = mmc_register_driver(&mmc_driver);
2581 if (res)
2582 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002584 return 0;
2585 out2:
2586 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 out:
2588 return res;
2589}
2590
2591static void __exit mmc_blk_exit(void)
2592{
2593 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002594 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595}
2596
2597module_init(mmc_blk_init);
2598module_exit(mmc_blk_exit);
2599
2600MODULE_LICENSE("GPL");
2601MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
2602