blob: 59a13fce774e5eb29e30db496c862dc958f9c063 [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
81 * limited to 256 / number of minors per device.
82 */
83static int max_devices;
84
85/* 256 minors, so at most 256 separate devices */
86static DECLARE_BITMAP(dev_use, 256);
Andrei Warkentinf06c9152011-04-21 22:46:13 -050087static DECLARE_BITMAP(name_use, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * There is one mmc_blk_data per slot.
91 */
92struct mmc_blk_data {
93 spinlock_t lock;
94 struct gendisk *disk;
95 struct mmc_queue queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -050096 struct list_head part;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Andrei Warkentind0c97cf2011-05-23 15:06:36 -050098 unsigned int flags;
99#define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */
100#define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900101#define MMC_BLK_PACKED_CMD (1 << 2) /* MMC packed command support */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 unsigned int usage;
Russell Kinga6f6c962006-01-03 22:38:44 +0000104 unsigned int read_only;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500105 unsigned int part_type;
Andrei Warkentinf06c9152011-04-21 22:46:13 -0500106 unsigned int name_idx;
Adrian Hunter67716322011-08-29 16:42:15 +0300107 unsigned int reset_done;
108#define MMC_BLK_READ BIT(0)
109#define MMC_BLK_WRITE BIT(1)
110#define MMC_BLK_DISCARD BIT(2)
111#define MMC_BLK_SECDISCARD BIT(3)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500112
113 /*
114 * Only set in main mmc_blk_data associated
115 * with mmc_card with mmc_set_drvdata, and keeps
116 * track of the current selected device partition.
117 */
118 unsigned int part_curr;
119 struct device_attribute force_ro;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100120 struct device_attribute power_ro_lock;
121 int area_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
Arjan van de Vena621aae2006-01-12 18:43:35 +0000124static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900126enum {
127 MMC_PACKED_NR_IDX = -1,
128 MMC_PACKED_NR_ZERO,
129 MMC_PACKED_NR_SINGLE,
130};
131
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400132module_param(perdev_minors, int, 0444);
133MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
134
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200135static inline int mmc_blk_part_switch(struct mmc_card *card,
136 struct mmc_blk_data *md);
137static int get_card_status(struct mmc_card *card, u32 *status, int retries);
138
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900139static inline void mmc_blk_clear_packed(struct mmc_queue_req *mqrq)
140{
141 struct mmc_packed *packed = mqrq->packed;
142
143 BUG_ON(!packed);
144
145 mqrq->cmd_type = MMC_PACKED_NONE;
146 packed->nr_entries = MMC_PACKED_NR_ZERO;
147 packed->idx_failure = MMC_PACKED_NR_IDX;
148 packed->retries = 0;
149 packed->blocks = 0;
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
153{
154 struct mmc_blk_data *md;
155
Arjan van de Vena621aae2006-01-12 18:43:35 +0000156 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 md = disk->private_data;
158 if (md && md->usage == 0)
159 md = NULL;
160 if (md)
161 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000162 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 return md;
165}
166
Andrei Warkentin371a6892011-04-11 18:10:25 -0500167static inline int mmc_get_devidx(struct gendisk *disk)
168{
169 int devmaj = MAJOR(disk_devt(disk));
170 int devidx = MINOR(disk_devt(disk)) / perdev_minors;
171
172 if (!devmaj)
173 devidx = disk->first_minor / perdev_minors;
174 return devidx;
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static void mmc_blk_put(struct mmc_blk_data *md)
178{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000179 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 md->usage--;
181 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500182 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800183 blk_cleanup_queue(md->queue.queue);
184
David Woodhouse1dff3142007-11-21 18:45:12 +0100185 __clear_bit(devidx, dev_use);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 kfree(md);
189 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000190 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Johan Rudholmadd710e2011-12-02 08:51:06 +0100193static ssize_t power_ro_lock_show(struct device *dev,
194 struct device_attribute *attr, char *buf)
195{
196 int ret;
197 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
198 struct mmc_card *card = md->queue.card;
199 int locked = 0;
200
201 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
202 locked = 2;
203 else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
204 locked = 1;
205
206 ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
207
208 return ret;
209}
210
211static ssize_t power_ro_lock_store(struct device *dev,
212 struct device_attribute *attr, const char *buf, size_t count)
213{
214 int ret;
215 struct mmc_blk_data *md, *part_md;
216 struct mmc_card *card;
217 unsigned long set;
218
219 if (kstrtoul(buf, 0, &set))
220 return -EINVAL;
221
222 if (set != 1)
223 return count;
224
225 md = mmc_blk_get(dev_to_disk(dev));
226 card = md->queue.card;
227
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200228 mmc_get_card(card);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100229
230 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
231 card->ext_csd.boot_ro_lock |
232 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
233 card->ext_csd.part_time);
234 if (ret)
235 pr_err("%s: Locking boot partition ro until next power on failed: %d\n", md->disk->disk_name, ret);
236 else
237 card->ext_csd.boot_ro_lock |= EXT_CSD_BOOT_WP_B_PWR_WP_EN;
238
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200239 mmc_put_card(card);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100240
241 if (!ret) {
242 pr_info("%s: Locking boot partition ro until next power on\n",
243 md->disk->disk_name);
244 set_disk_ro(md->disk, 1);
245
246 list_for_each_entry(part_md, &md->part, part)
247 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
248 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
249 set_disk_ro(part_md->disk, 1);
250 }
251 }
252
253 mmc_blk_put(md);
254 return count;
255}
256
Andrei Warkentin371a6892011-04-11 18:10:25 -0500257static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
258 char *buf)
259{
260 int ret;
261 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
262
263 ret = snprintf(buf, PAGE_SIZE, "%d",
264 get_disk_ro(dev_to_disk(dev)) ^
265 md->read_only);
266 mmc_blk_put(md);
267 return ret;
268}
269
270static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
271 const char *buf, size_t count)
272{
273 int ret;
274 char *end;
275 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
276 unsigned long set = simple_strtoul(buf, &end, 0);
277 if (end == buf) {
278 ret = -EINVAL;
279 goto out;
280 }
281
282 set_disk_ro(dev_to_disk(dev), set || md->read_only);
283 ret = count;
284out:
285 mmc_blk_put(md);
286 return ret;
287}
288
Al Viroa5a15612008-03-02 10:33:30 -0500289static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Al Viroa5a15612008-03-02 10:33:30 -0500291 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int ret = -ENXIO;
293
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200294 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (md) {
296 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500297 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700299
Al Viroa5a15612008-03-02 10:33:30 -0500300 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700301 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700302 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200305 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 return ret;
308}
309
Al Virodb2a1442013-05-05 21:52:57 -0400310static void mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Al Viroa5a15612008-03-02 10:33:30 -0500312 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200314 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200316 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800320mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800322 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
323 geo->heads = 4;
324 geo->sectors = 16;
325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
John Calixtocb87ea22011-04-26 18:56:29 -0400328struct mmc_blk_ioc_data {
329 struct mmc_ioc_cmd ic;
330 unsigned char *buf;
331 u64 buf_bytes;
332};
333
334static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
335 struct mmc_ioc_cmd __user *user)
336{
337 struct mmc_blk_ioc_data *idata;
338 int err;
339
340 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
341 if (!idata) {
342 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400343 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400344 }
345
346 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
347 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400348 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400349 }
350
351 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
352 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
353 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400354 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400355 }
356
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100357 if (!idata->buf_bytes)
358 return idata;
359
John Calixtocb87ea22011-04-26 18:56:29 -0400360 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
361 if (!idata->buf) {
362 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400363 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400364 }
365
366 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
367 idata->ic.data_ptr, idata->buf_bytes)) {
368 err = -EFAULT;
369 goto copy_err;
370 }
371
372 return idata;
373
374copy_err:
375 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400376idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400377 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400378out:
John Calixtocb87ea22011-04-26 18:56:29 -0400379 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400380}
381
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200382static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status,
383 u32 retries_max)
384{
385 int err;
386 u32 retry_count = 0;
387
388 if (!status || !retries_max)
389 return -EINVAL;
390
391 do {
392 err = get_card_status(card, status, 5);
393 if (err)
394 break;
395
396 if (!R1_STATUS(*status) &&
397 (R1_CURRENT_STATE(*status) != R1_STATE_PRG))
398 break; /* RPMB programming operation complete */
399
400 /*
401 * Rechedule to give the MMC device a chance to continue
402 * processing the previous command without being polled too
403 * frequently.
404 */
405 usleep_range(1000, 5000);
406 } while (++retry_count < retries_max);
407
408 if (retry_count == retries_max)
409 err = -EPERM;
410
411 return err;
412}
413
Maya Erez775a9362013-04-18 15:41:55 +0300414static int ioctl_do_sanitize(struct mmc_card *card)
415{
416 int err;
417
418 if (!(mmc_can_sanitize(card) &&
419 (card->host->caps2 & MMC_CAP2_SANITIZE))) {
420 pr_warn("%s: %s - SANITIZE is not supported\n",
421 mmc_hostname(card->host), __func__);
422 err = -EOPNOTSUPP;
423 goto out;
424 }
425
426 pr_debug("%s: %s - SANITIZE IN PROGRESS...\n",
427 mmc_hostname(card->host), __func__);
428
429 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
430 EXT_CSD_SANITIZE_START, 1,
431 MMC_SANITIZE_REQ_TIMEOUT);
432
433 if (err)
434 pr_err("%s: %s - EXT_CSD_SANITIZE_START failed. err=%d\n",
435 mmc_hostname(card->host), __func__, err);
436
437 pr_debug("%s: %s - SANITIZE COMPLETED\n", mmc_hostname(card->host),
438 __func__);
439out:
440 return err;
441}
442
John Calixtocb87ea22011-04-26 18:56:29 -0400443static int mmc_blk_ioctl_cmd(struct block_device *bdev,
444 struct mmc_ioc_cmd __user *ic_ptr)
445{
446 struct mmc_blk_ioc_data *idata;
447 struct mmc_blk_data *md;
448 struct mmc_card *card;
449 struct mmc_command cmd = {0};
450 struct mmc_data data = {0};
Venkatraman Sad5fd972011-08-25 00:30:50 +0530451 struct mmc_request mrq = {NULL};
John Calixtocb87ea22011-04-26 18:56:29 -0400452 struct scatterlist sg;
453 int err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200454 int is_rpmb = false;
455 u32 status = 0;
John Calixtocb87ea22011-04-26 18:56:29 -0400456
457 /*
458 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
459 * whole block device, not on a partition. This prevents overspray
460 * between sibling partitions.
461 */
462 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
463 return -EPERM;
464
465 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
466 if (IS_ERR(idata))
467 return PTR_ERR(idata);
468
John Calixtocb87ea22011-04-26 18:56:29 -0400469 md = mmc_blk_get(bdev->bd_disk);
470 if (!md) {
471 err = -EINVAL;
Philippe De Swert1c02f002012-04-11 23:31:45 +0300472 goto cmd_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400473 }
474
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200475 if (md->area_type & MMC_BLK_DATA_AREA_RPMB)
476 is_rpmb = true;
477
John Calixtocb87ea22011-04-26 18:56:29 -0400478 card = md->queue.card;
479 if (IS_ERR(card)) {
480 err = PTR_ERR(card);
481 goto cmd_done;
482 }
483
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100484 cmd.opcode = idata->ic.opcode;
485 cmd.arg = idata->ic.arg;
486 cmd.flags = idata->ic.flags;
487
488 if (idata->buf_bytes) {
489 data.sg = &sg;
490 data.sg_len = 1;
491 data.blksz = idata->ic.blksz;
492 data.blocks = idata->ic.blocks;
493
494 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
495
496 if (idata->ic.write_flag)
497 data.flags = MMC_DATA_WRITE;
498 else
499 data.flags = MMC_DATA_READ;
500
501 /* data.flags must already be set before doing this. */
502 mmc_set_data_timeout(&data, card);
503
504 /* Allow overriding the timeout_ns for empirical tuning. */
505 if (idata->ic.data_timeout_ns)
506 data.timeout_ns = idata->ic.data_timeout_ns;
507
508 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
509 /*
510 * Pretend this is a data transfer and rely on the
511 * host driver to compute timeout. When all host
512 * drivers support cmd.cmd_timeout for R1B, this
513 * can be changed to:
514 *
515 * mrq.data = NULL;
516 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
517 */
518 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
519 }
520
521 mrq.data = &data;
522 }
523
524 mrq.cmd = &cmd;
525
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200526 mmc_get_card(card);
John Calixtocb87ea22011-04-26 18:56:29 -0400527
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200528 err = mmc_blk_part_switch(card, md);
529 if (err)
530 goto cmd_rel_host;
531
John Calixtocb87ea22011-04-26 18:56:29 -0400532 if (idata->ic.is_acmd) {
533 err = mmc_app_cmd(card->host, card);
534 if (err)
535 goto cmd_rel_host;
536 }
537
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200538 if (is_rpmb) {
539 err = mmc_set_blockcount(card, data.blocks,
540 idata->ic.write_flag & (1 << 31));
541 if (err)
542 goto cmd_rel_host;
543 }
544
Maya Erez775a9362013-04-18 15:41:55 +0300545 if (MMC_EXTRACT_INDEX_FROM_ARG(cmd.arg) == EXT_CSD_SANITIZE_START) {
546 err = ioctl_do_sanitize(card);
547
548 if (err)
549 pr_err("%s: ioctl_do_sanitize() failed. err = %d",
550 __func__, err);
551
552 goto cmd_rel_host;
553 }
554
John Calixtocb87ea22011-04-26 18:56:29 -0400555 mmc_wait_for_req(card->host, &mrq);
556
557 if (cmd.error) {
558 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
559 __func__, cmd.error);
560 err = cmd.error;
561 goto cmd_rel_host;
562 }
563 if (data.error) {
564 dev_err(mmc_dev(card->host), "%s: data error %d\n",
565 __func__, data.error);
566 err = data.error;
567 goto cmd_rel_host;
568 }
569
570 /*
571 * According to the SD specs, some commands require a delay after
572 * issuing the command.
573 */
574 if (idata->ic.postsleep_min_us)
575 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
576
577 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
578 err = -EFAULT;
579 goto cmd_rel_host;
580 }
581
582 if (!idata->ic.write_flag) {
583 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
584 idata->buf, idata->buf_bytes)) {
585 err = -EFAULT;
586 goto cmd_rel_host;
587 }
588 }
589
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200590 if (is_rpmb) {
591 /*
592 * Ensure RPMB command has completed by polling CMD13
593 * "Send Status".
594 */
595 err = ioctl_rpmb_card_status_poll(card, &status, 5);
596 if (err)
597 dev_err(mmc_dev(card->host),
598 "%s: Card Status=0x%08X, error %d\n",
599 __func__, status, err);
600 }
601
John Calixtocb87ea22011-04-26 18:56:29 -0400602cmd_rel_host:
Ulf Hanssone94cfef2013-05-02 14:02:38 +0200603 mmc_put_card(card);
John Calixtocb87ea22011-04-26 18:56:29 -0400604
605cmd_done:
606 mmc_blk_put(md);
Philippe De Swert1c02f002012-04-11 23:31:45 +0300607cmd_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400608 kfree(idata->buf);
609 kfree(idata);
610 return err;
611}
612
613static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
614 unsigned int cmd, unsigned long arg)
615{
616 int ret = -EINVAL;
617 if (cmd == MMC_IOC_CMD)
618 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
619 return ret;
620}
621
622#ifdef CONFIG_COMPAT
623static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
624 unsigned int cmd, unsigned long arg)
625{
626 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
627}
628#endif
629
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700630static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500631 .open = mmc_blk_open,
632 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800633 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400635 .ioctl = mmc_blk_ioctl,
636#ifdef CONFIG_COMPAT
637 .compat_ioctl = mmc_blk_compat_ioctl,
638#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639};
640
Andrei Warkentin371a6892011-04-11 18:10:25 -0500641static inline int mmc_blk_part_switch(struct mmc_card *card,
642 struct mmc_blk_data *md)
643{
644 int ret;
645 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300646
Andrei Warkentin371a6892011-04-11 18:10:25 -0500647 if (main_md->part_curr == md->part_type)
648 return 0;
649
650 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300651 u8 part_config = card->ext_csd.part_config;
652
653 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
654 part_config |= md->part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500655
656 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300657 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500658 card->ext_csd.part_time);
659 if (ret)
660 return ret;
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300661
662 card->ext_csd.part_config = part_config;
Adrian Hunter67716322011-08-29 16:42:15 +0300663 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500664
665 main_md->part_curr = md->part_type;
666 return 0;
667}
668
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700669static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
670{
671 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100672 u32 result;
673 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700674
Venkatraman Sad5fd972011-08-25 00:30:50 +0530675 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400676 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400677 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700678
679 struct scatterlist sg;
680
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700681 cmd.opcode = MMC_APP_CMD;
682 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700683 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700684
685 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700686 if (err)
687 return (u32)-1;
688 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700689 return (u32)-1;
690
691 memset(&cmd, 0, sizeof(struct mmc_command));
692
693 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
694 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700695 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700696
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700697 data.blksz = 4;
698 data.blocks = 1;
699 data.flags = MMC_DATA_READ;
700 data.sg = &sg;
701 data.sg_len = 1;
Subhash Jadavanid3804432012-06-13 17:10:43 +0530702 mmc_set_data_timeout(&data, card);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700703
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700704 mrq.cmd = &cmd;
705 mrq.data = &data;
706
Ben Dooks051913d2009-06-08 23:33:57 +0100707 blocks = kmalloc(4, GFP_KERNEL);
708 if (!blocks)
709 return (u32)-1;
710
711 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700712
713 mmc_wait_for_req(card->host, &mrq);
714
Ben Dooks051913d2009-06-08 23:33:57 +0100715 result = ntohl(*blocks);
716 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700717
Ben Dooks051913d2009-06-08 23:33:57 +0100718 if (cmd.error || data.error)
719 result = (u32)-1;
720
721 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700722}
723
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100724static int send_stop(struct mmc_card *card, u32 *status)
725{
726 struct mmc_command cmd = {0};
727 int err;
728
729 cmd.opcode = MMC_STOP_TRANSMISSION;
730 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
731 err = mmc_wait_for_cmd(card->host, &cmd, 5);
732 if (err == 0)
733 *status = cmd.resp[0];
734 return err;
735}
736
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100737static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300738{
Chris Ball1278dba2011-04-13 23:40:30 -0400739 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300740 int err;
741
Adrian Hunter504f1912008-10-16 12:55:25 +0300742 cmd.opcode = MMC_SEND_STATUS;
743 if (!mmc_host_is_spi(card->host))
744 cmd.arg = card->rca << 16;
745 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100746 err = mmc_wait_for_cmd(card->host, &cmd, retries);
747 if (err == 0)
748 *status = cmd.resp[0];
749 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300750}
751
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530752#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100753#define ERR_RETRY 2
754#define ERR_ABORT 1
755#define ERR_CONTINUE 0
756
757static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
758 bool status_valid, u32 status)
759{
760 switch (error) {
761 case -EILSEQ:
762 /* response crc error, retry the r/w cmd */
763 pr_err("%s: %s sending %s command, card status %#x\n",
764 req->rq_disk->disk_name, "response CRC error",
765 name, status);
766 return ERR_RETRY;
767
768 case -ETIMEDOUT:
769 pr_err("%s: %s sending %s command, card status %#x\n",
770 req->rq_disk->disk_name, "timed out", name, status);
771
772 /* If the status cmd initially failed, retry the r/w cmd */
773 if (!status_valid)
774 return ERR_RETRY;
775
776 /*
777 * If it was a r/w cmd crc error, or illegal command
778 * (eg, issued in wrong state) then retry - we should
779 * have corrected the state problem above.
780 */
781 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
782 return ERR_RETRY;
783
784 /* Otherwise abort the command */
785 return ERR_ABORT;
786
787 default:
788 /* We don't understand the error code the driver gave us */
789 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
790 req->rq_disk->disk_name, error, status);
791 return ERR_ABORT;
792 }
793}
794
795/*
796 * Initial r/w and stop cmd error recovery.
797 * We don't know whether the card received the r/w cmd or not, so try to
798 * restore things back to a sane state. Essentially, we do this as follows:
799 * - Obtain card status. If the first attempt to obtain card status fails,
800 * the status word will reflect the failed status cmd, not the failed
801 * r/w cmd. If we fail to obtain card status, it suggests we can no
802 * longer communicate with the card.
803 * - Check the card state. If the card received the cmd but there was a
804 * transient problem with the response, it might still be in a data transfer
805 * mode. Try to send it a stop command. If this fails, we can't recover.
806 * - If the r/w cmd failed due to a response CRC error, it was probably
807 * transient, so retry the cmd.
808 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
809 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
810 * illegal cmd, retry.
811 * Otherwise we don't understand what happened, so abort.
812 */
813static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
Adrian Hunter67716322011-08-29 16:42:15 +0300814 struct mmc_blk_request *brq, int *ecc_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100815{
816 bool prev_cmd_status_valid = true;
817 u32 status, stop_status = 0;
818 int err, retry;
819
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530820 if (mmc_card_removed(card))
821 return ERR_NOMEDIUM;
822
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100823 /*
824 * Try to get card status which indicates both the card state
825 * and why there was no response. If the first attempt fails,
826 * we can't be sure the returned status is for the r/w command.
827 */
828 for (retry = 2; retry >= 0; retry--) {
829 err = get_card_status(card, &status, 0);
830 if (!err)
831 break;
832
833 prev_cmd_status_valid = false;
834 pr_err("%s: error %d sending status command, %sing\n",
835 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
836 }
837
838 /* We couldn't get a response from the card. Give up. */
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530839 if (err) {
840 /* Check if the card is removed */
841 if (mmc_detect_card_removed(card->host))
842 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100843 return ERR_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530844 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100845
Adrian Hunter67716322011-08-29 16:42:15 +0300846 /* Flag ECC errors */
847 if ((status & R1_CARD_ECC_FAILED) ||
848 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
849 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
850 *ecc_err = 1;
851
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100852 /*
853 * Check the current card state. If it is in some data transfer
854 * mode, tell it to stop (and hopefully transition back to TRAN.)
855 */
856 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
857 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
858 err = send_stop(card, &stop_status);
859 if (err)
860 pr_err("%s: error %d sending stop command\n",
861 req->rq_disk->disk_name, err);
862
863 /*
864 * If the stop cmd also timed out, the card is probably
865 * not present, so abort. Other errors are bad news too.
866 */
867 if (err)
868 return ERR_ABORT;
Adrian Hunter67716322011-08-29 16:42:15 +0300869 if (stop_status & R1_CARD_ECC_FAILED)
870 *ecc_err = 1;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100871 }
872
873 /* Check for set block count errors */
874 if (brq->sbc.error)
875 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
876 prev_cmd_status_valid, status);
877
878 /* Check for r/w command errors */
879 if (brq->cmd.error)
880 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
881 prev_cmd_status_valid, status);
882
Adrian Hunter67716322011-08-29 16:42:15 +0300883 /* Data errors */
884 if (!brq->stop.error)
885 return ERR_CONTINUE;
886
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100887 /* Now for stop errors. These aren't fatal to the transfer. */
888 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
889 req->rq_disk->disk_name, brq->stop.error,
890 brq->cmd.resp[0], status);
891
892 /*
893 * Subsitute in our own stop status as this will give the error
894 * state which happened during the execution of the r/w command.
895 */
896 if (stop_status) {
897 brq->stop.resp[0] = stop_status;
898 brq->stop.error = 0;
899 }
900 return ERR_CONTINUE;
901}
902
Adrian Hunter67716322011-08-29 16:42:15 +0300903static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
904 int type)
905{
906 int err;
907
908 if (md->reset_done & type)
909 return -EEXIST;
910
911 md->reset_done |= type;
912 err = mmc_hw_reset(host);
913 /* Ensure we switch back to the correct partition */
914 if (err != -EOPNOTSUPP) {
915 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
916 int part_err;
917
918 main_md->part_curr = main_md->part_type;
919 part_err = mmc_blk_part_switch(host->card, md);
920 if (part_err) {
921 /*
922 * We have failed to get back into the correct
923 * partition, so we need to abort the whole request.
924 */
925 return -ENODEV;
926 }
927 }
928 return err;
929}
930
931static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
932{
933 md->reset_done &= ~type;
934}
935
Adrian Hunterbd788c92010-08-11 14:17:47 -0700936static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
937{
938 struct mmc_blk_data *md = mq->data;
939 struct mmc_card *card = md->queue.card;
940 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300941 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -0700942
Adrian Hunterbd788c92010-08-11 14:17:47 -0700943 if (!mmc_can_erase(card)) {
944 err = -EOPNOTSUPP;
945 goto out;
946 }
947
948 from = blk_rq_pos(req);
949 nr = blk_rq_sectors(req);
950
Kyungmin Parkb3bf9152011-10-18 09:34:04 +0900951 if (mmc_can_discard(card))
952 arg = MMC_DISCARD_ARG;
953 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -0700954 arg = MMC_TRIM_ARG;
955 else
956 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300957retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500958 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
959 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
960 INAND_CMD38_ARG_EXT_CSD,
961 arg == MMC_TRIM_ARG ?
962 INAND_CMD38_ARG_TRIM :
963 INAND_CMD38_ARG_ERASE,
964 0);
965 if (err)
966 goto out;
967 }
Adrian Hunterbd788c92010-08-11 14:17:47 -0700968 err = mmc_erase(card, from, nr, arg);
969out:
Adrian Hunter67716322011-08-29 16:42:15 +0300970 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
971 goto retry;
972 if (!err)
973 mmc_blk_reset_success(md, type);
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +0530974 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunterbd788c92010-08-11 14:17:47 -0700975
Adrian Hunterbd788c92010-08-11 14:17:47 -0700976 return err ? 0 : 1;
977}
978
Adrian Hunter49804542010-08-11 14:17:50 -0700979static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
980 struct request *req)
981{
982 struct mmc_blk_data *md = mq->data;
983 struct mmc_card *card = md->queue.card;
Maya Erez775a9362013-04-18 15:41:55 +0300984 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300985 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -0700986
Maya Erez775a9362013-04-18 15:41:55 +0300987 if (!(mmc_can_secure_erase_trim(card))) {
Adrian Hunter49804542010-08-11 14:17:50 -0700988 err = -EOPNOTSUPP;
989 goto out;
990 }
991
992 from = blk_rq_pos(req);
993 nr = blk_rq_sectors(req);
994
Maya Erez775a9362013-04-18 15:41:55 +0300995 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
996 arg = MMC_SECURE_TRIM1_ARG;
997 else
998 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter28302812012-04-05 14:45:48 +0300999
Adrian Hunter67716322011-08-29 16:42:15 +03001000retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001001 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1002 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1003 INAND_CMD38_ARG_EXT_CSD,
1004 arg == MMC_SECURE_TRIM1_ARG ?
1005 INAND_CMD38_ARG_SECTRIM1 :
1006 INAND_CMD38_ARG_SECERASE,
1007 0);
1008 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001009 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001010 }
Adrian Hunter28302812012-04-05 14:45:48 +03001011
Adrian Hunter49804542010-08-11 14:17:50 -07001012 err = mmc_erase(card, from, nr, arg);
Adrian Hunter28302812012-04-05 14:45:48 +03001013 if (err == -EIO)
1014 goto out_retry;
1015 if (err)
1016 goto out;
1017
1018 if (arg == MMC_SECURE_TRIM1_ARG) {
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001019 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1020 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1021 INAND_CMD38_ARG_EXT_CSD,
1022 INAND_CMD38_ARG_SECTRIM2,
1023 0);
1024 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001025 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001026 }
Adrian Hunter28302812012-04-05 14:45:48 +03001027
Adrian Hunter49804542010-08-11 14:17:50 -07001028 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Adrian Hunter28302812012-04-05 14:45:48 +03001029 if (err == -EIO)
1030 goto out_retry;
1031 if (err)
1032 goto out;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001033 }
Adrian Hunter28302812012-04-05 14:45:48 +03001034
Adrian Hunter28302812012-04-05 14:45:48 +03001035out_retry:
1036 if (err && !mmc_blk_reset(md, card->host, type))
Adrian Hunter67716322011-08-29 16:42:15 +03001037 goto retry;
1038 if (!err)
1039 mmc_blk_reset_success(md, type);
Adrian Hunter28302812012-04-05 14:45:48 +03001040out:
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301041 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunter49804542010-08-11 14:17:50 -07001042
Adrian Hunter49804542010-08-11 14:17:50 -07001043 return err ? 0 : 1;
1044}
1045
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001046static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
1047{
1048 struct mmc_blk_data *md = mq->data;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001049 struct mmc_card *card = md->queue.card;
1050 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001051
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001052 ret = mmc_flush_cache(card);
1053 if (ret)
1054 ret = -EIO;
1055
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301056 blk_end_request_all(req, ret);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001057
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001058 return ret ? 0 : 1;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001059}
1060
1061/*
1062 * Reformat current write as a reliable write, supporting
1063 * both legacy and the enhanced reliable write MMC cards.
1064 * In each transfer we'll handle only as much as a single
1065 * reliable write can handle, thus finish the request in
1066 * partial completions.
1067 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001068static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
1069 struct mmc_card *card,
1070 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001071{
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001072 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
1073 /* Legacy mode imposes restrictions on transfers. */
1074 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
1075 brq->data.blocks = 1;
1076
1077 if (brq->data.blocks > card->ext_csd.rel_sectors)
1078 brq->data.blocks = card->ext_csd.rel_sectors;
1079 else if (brq->data.blocks < card->ext_csd.rel_sectors)
1080 brq->data.blocks = 1;
1081 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001082}
1083
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001084#define CMD_ERRORS \
1085 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
1086 R1_ADDRESS_ERROR | /* Misaligned address */ \
1087 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1088 R1_WP_VIOLATION | /* Tried to write to protected block */ \
1089 R1_CC_ERROR | /* Card controller error */ \
1090 R1_ERROR) /* General/unknown error */
1091
Per Forlinee8a43a2011-07-01 18:55:33 +02001092static int mmc_blk_err_check(struct mmc_card *card,
1093 struct mmc_async_req *areq)
Per Forlind78d4a82011-07-01 18:55:30 +02001094{
Per Forlinee8a43a2011-07-01 18:55:33 +02001095 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1096 mmc_active);
1097 struct mmc_blk_request *brq = &mq_mrq->brq;
1098 struct request *req = mq_mrq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001099 int ecc_err = 0;
Per Forlind78d4a82011-07-01 18:55:30 +02001100
1101 /*
1102 * sbc.error indicates a problem with the set block count
1103 * command. No data will have been transferred.
1104 *
1105 * cmd.error indicates a problem with the r/w command. No
1106 * data will have been transferred.
1107 *
1108 * stop.error indicates a problem with the stop command. Data
1109 * may have been transferred, or may still be transferring.
1110 */
Adrian Hunter67716322011-08-29 16:42:15 +03001111 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
1112 brq->data.error) {
1113 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err)) {
Per Forlind78d4a82011-07-01 18:55:30 +02001114 case ERR_RETRY:
1115 return MMC_BLK_RETRY;
1116 case ERR_ABORT:
1117 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301118 case ERR_NOMEDIUM:
1119 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a82011-07-01 18:55:30 +02001120 case ERR_CONTINUE:
1121 break;
1122 }
1123 }
1124
1125 /*
1126 * Check for errors relating to the execution of the
1127 * initial command - such as address errors. No data
1128 * has been transferred.
1129 */
1130 if (brq->cmd.resp[0] & CMD_ERRORS) {
1131 pr_err("%s: r/w command failed, status = %#x\n",
1132 req->rq_disk->disk_name, brq->cmd.resp[0]);
1133 return MMC_BLK_ABORT;
1134 }
1135
1136 /*
1137 * Everything else is either success, or a data error of some
1138 * kind. If it was a write, we may have transitioned to
1139 * program mode, which we have to wait for it to complete.
1140 */
1141 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1142 u32 status;
Trey Ramsay8fee4762012-11-16 09:31:41 -06001143 unsigned long timeout;
1144
1145 timeout = jiffies + msecs_to_jiffies(MMC_BLK_TIMEOUT_MS);
Per Forlind78d4a82011-07-01 18:55:30 +02001146 do {
1147 int err = get_card_status(card, &status, 5);
1148 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301149 pr_err("%s: error %d requesting status\n",
Per Forlind78d4a82011-07-01 18:55:30 +02001150 req->rq_disk->disk_name, err);
1151 return MMC_BLK_CMD_ERR;
1152 }
Trey Ramsay8fee4762012-11-16 09:31:41 -06001153
1154 /* Timeout if the device never becomes ready for data
1155 * and never leaves the program state.
1156 */
1157 if (time_after(jiffies, timeout)) {
1158 pr_err("%s: Card stuck in programming state!"\
1159 " %s %s\n", mmc_hostname(card->host),
1160 req->rq_disk->disk_name, __func__);
1161
1162 return MMC_BLK_CMD_ERR;
1163 }
Per Forlind78d4a82011-07-01 18:55:30 +02001164 /*
1165 * Some cards mishandle the status bits,
1166 * so make sure to check both the busy
1167 * indication and the card state.
1168 */
1169 } while (!(status & R1_READY_FOR_DATA) ||
1170 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1171 }
1172
1173 if (brq->data.error) {
1174 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1175 req->rq_disk->disk_name, brq->data.error,
1176 (unsigned)blk_rq_pos(req),
1177 (unsigned)blk_rq_sectors(req),
1178 brq->cmd.resp[0], brq->stop.resp[0]);
1179
1180 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001181 if (ecc_err)
1182 return MMC_BLK_ECC_ERR;
Per Forlind78d4a82011-07-01 18:55:30 +02001183 return MMC_BLK_DATA_ERR;
1184 } else {
1185 return MMC_BLK_CMD_ERR;
1186 }
1187 }
1188
Adrian Hunter67716322011-08-29 16:42:15 +03001189 if (!brq->data.bytes_xfered)
1190 return MMC_BLK_RETRY;
Per Forlind78d4a82011-07-01 18:55:30 +02001191
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001192 if (mmc_packed_cmd(mq_mrq->cmd_type)) {
1193 if (unlikely(brq->data.blocks << 9 != brq->data.bytes_xfered))
1194 return MMC_BLK_PARTIAL;
1195 else
1196 return MMC_BLK_SUCCESS;
1197 }
1198
Adrian Hunter67716322011-08-29 16:42:15 +03001199 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1200 return MMC_BLK_PARTIAL;
1201
1202 return MMC_BLK_SUCCESS;
Per Forlind78d4a82011-07-01 18:55:30 +02001203}
1204
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001205static int mmc_blk_packed_err_check(struct mmc_card *card,
1206 struct mmc_async_req *areq)
1207{
1208 struct mmc_queue_req *mq_rq = container_of(areq, struct mmc_queue_req,
1209 mmc_active);
1210 struct request *req = mq_rq->req;
1211 struct mmc_packed *packed = mq_rq->packed;
1212 int err, check, status;
1213 u8 *ext_csd;
1214
1215 BUG_ON(!packed);
1216
1217 packed->retries--;
1218 check = mmc_blk_err_check(card, areq);
1219 err = get_card_status(card, &status, 0);
1220 if (err) {
1221 pr_err("%s: error %d sending status command\n",
1222 req->rq_disk->disk_name, err);
1223 return MMC_BLK_ABORT;
1224 }
1225
1226 if (status & R1_EXCEPTION_EVENT) {
1227 ext_csd = kzalloc(512, GFP_KERNEL);
1228 if (!ext_csd) {
1229 pr_err("%s: unable to allocate buffer for ext_csd\n",
1230 req->rq_disk->disk_name);
1231 return -ENOMEM;
1232 }
1233
1234 err = mmc_send_ext_csd(card, ext_csd);
1235 if (err) {
1236 pr_err("%s: error %d sending ext_csd\n",
1237 req->rq_disk->disk_name, err);
1238 check = MMC_BLK_ABORT;
1239 goto free;
1240 }
1241
1242 if ((ext_csd[EXT_CSD_EXP_EVENTS_STATUS] &
1243 EXT_CSD_PACKED_FAILURE) &&
1244 (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1245 EXT_CSD_PACKED_GENERIC_ERROR)) {
1246 if (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1247 EXT_CSD_PACKED_INDEXED_ERROR) {
1248 packed->idx_failure =
1249 ext_csd[EXT_CSD_PACKED_FAILURE_INDEX] - 1;
1250 check = MMC_BLK_PARTIAL;
1251 }
1252 pr_err("%s: packed cmd failed, nr %u, sectors %u, "
1253 "failure index: %d\n",
1254 req->rq_disk->disk_name, packed->nr_entries,
1255 packed->blocks, packed->idx_failure);
1256 }
1257free:
1258 kfree(ext_csd);
1259 }
1260
1261 return check;
1262}
1263
Per Forlin54d49d72011-07-01 18:55:29 +02001264static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1265 struct mmc_card *card,
1266 int disable_multi,
1267 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Per Forlin54d49d72011-07-01 18:55:29 +02001269 u32 readcmd, writecmd;
1270 struct mmc_blk_request *brq = &mqrq->brq;
1271 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 struct mmc_blk_data *md = mq->data;
Saugata Das42659002011-12-21 13:09:17 +05301273 bool do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001275 /*
1276 * Reliable writes are used to implement Forced Unit Access and
1277 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +02001278 *
1279 * XXX: this really needs a good explanation of why REQ_META
1280 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001281 */
1282 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1283 (req->cmd_flags & REQ_META)) &&
1284 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001285 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001286
Per Forlin54d49d72011-07-01 18:55:29 +02001287 memset(brq, 0, sizeof(struct mmc_blk_request));
1288 brq->mrq.cmd = &brq->cmd;
1289 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Per Forlin54d49d72011-07-01 18:55:29 +02001291 brq->cmd.arg = blk_rq_pos(req);
1292 if (!mmc_card_blockaddr(card))
1293 brq->cmd.arg <<= 9;
1294 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1295 brq->data.blksz = 512;
1296 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1297 brq->stop.arg = 0;
1298 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1299 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Per Forlin54d49d72011-07-01 18:55:29 +02001301 /*
1302 * The block layer doesn't support all sector count
1303 * restrictions, so we need to be prepared for too big
1304 * requests.
1305 */
1306 if (brq->data.blocks > card->host->max_blk_count)
1307 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001309 if (brq->data.blocks > 1) {
1310 /*
1311 * After a read error, we redo the request one sector
1312 * at a time in order to accurately determine which
1313 * sectors can be read successfully.
1314 */
1315 if (disable_multi)
1316 brq->data.blocks = 1;
1317
1318 /* Some controllers can't do multiblock reads due to hw bugs */
1319 if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1320 rq_data_dir(req) == READ)
1321 brq->data.blocks = 1;
1322 }
Per Forlin54d49d72011-07-01 18:55:29 +02001323
1324 if (brq->data.blocks > 1 || do_rel_wr) {
1325 /* SPI multiblock writes terminate using a special
1326 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001327 */
Per Forlin54d49d72011-07-01 18:55:29 +02001328 if (!mmc_host_is_spi(card->host) ||
1329 rq_data_dir(req) == READ)
1330 brq->mrq.stop = &brq->stop;
1331 readcmd = MMC_READ_MULTIPLE_BLOCK;
1332 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1333 } else {
1334 brq->mrq.stop = NULL;
1335 readcmd = MMC_READ_SINGLE_BLOCK;
1336 writecmd = MMC_WRITE_BLOCK;
1337 }
1338 if (rq_data_dir(req) == READ) {
1339 brq->cmd.opcode = readcmd;
1340 brq->data.flags |= MMC_DATA_READ;
1341 } else {
1342 brq->cmd.opcode = writecmd;
1343 brq->data.flags |= MMC_DATA_WRITE;
1344 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001345
Per Forlin54d49d72011-07-01 18:55:29 +02001346 if (do_rel_wr)
1347 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001348
Per Forlin54d49d72011-07-01 18:55:29 +02001349 /*
Saugata Das42659002011-12-21 13:09:17 +05301350 * Data tag is used only during writing meta data to speed
1351 * up write and any subsequent read of this meta data
1352 */
1353 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1354 (req->cmd_flags & REQ_META) &&
1355 (rq_data_dir(req) == WRITE) &&
1356 ((brq->data.blocks * brq->data.blksz) >=
1357 card->ext_csd.data_tag_unit_size);
1358
1359 /*
Per Forlin54d49d72011-07-01 18:55:29 +02001360 * Pre-defined multi-block transfers are preferable to
1361 * open ended-ones (and necessary for reliable writes).
1362 * However, it is not sufficient to just send CMD23,
1363 * and avoid the final CMD12, as on an error condition
1364 * CMD12 (stop) needs to be sent anyway. This, coupled
1365 * with Auto-CMD23 enhancements provided by some
1366 * hosts, means that the complexity of dealing
1367 * with this is best left to the host. If CMD23 is
1368 * supported by card and host, we'll fill sbc in and let
1369 * the host deal with handling it correctly. This means
1370 * that for hosts that don't expose MMC_CAP_CMD23, no
1371 * change of behavior will be observed.
1372 *
1373 * N.B: Some MMC cards experience perf degradation.
1374 * We'll avoid using CMD23-bounded multiblock writes for
1375 * these, while retaining features like reliable writes.
1376 */
Saugata Das42659002011-12-21 13:09:17 +05301377 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1378 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1379 do_data_tag)) {
Per Forlin54d49d72011-07-01 18:55:29 +02001380 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1381 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301382 (do_rel_wr ? (1 << 31) : 0) |
1383 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d72011-07-01 18:55:29 +02001384 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1385 brq->mrq.sbc = &brq->sbc;
1386 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001387
Per Forlin54d49d72011-07-01 18:55:29 +02001388 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001389
Per Forlin54d49d72011-07-01 18:55:29 +02001390 brq->data.sg = mqrq->sg;
1391 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001392
Per Forlin54d49d72011-07-01 18:55:29 +02001393 /*
1394 * Adjust the sg list so it is the same size as the
1395 * request.
1396 */
1397 if (brq->data.blocks != blk_rq_sectors(req)) {
1398 int i, data_size = brq->data.blocks << 9;
1399 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001400
Per Forlin54d49d72011-07-01 18:55:29 +02001401 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1402 data_size -= sg->length;
1403 if (data_size <= 0) {
1404 sg->length += data_size;
1405 i++;
1406 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001407 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001408 }
Per Forlin54d49d72011-07-01 18:55:29 +02001409 brq->data.sg_len = i;
1410 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001411
Per Forlinee8a43a2011-07-01 18:55:33 +02001412 mqrq->mmc_active.mrq = &brq->mrq;
1413 mqrq->mmc_active.err_check = mmc_blk_err_check;
1414
Per Forlin54d49d72011-07-01 18:55:29 +02001415 mmc_queue_bounce_pre(mqrq);
1416}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001418static inline u8 mmc_calc_packed_hdr_segs(struct request_queue *q,
1419 struct mmc_card *card)
1420{
1421 unsigned int hdr_sz = mmc_large_sector(card) ? 4096 : 512;
1422 unsigned int max_seg_sz = queue_max_segment_size(q);
1423 unsigned int len, nr_segs = 0;
1424
1425 do {
1426 len = min(hdr_sz, max_seg_sz);
1427 hdr_sz -= len;
1428 nr_segs++;
1429 } while (hdr_sz);
1430
1431 return nr_segs;
1432}
1433
1434static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
1435{
1436 struct request_queue *q = mq->queue;
1437 struct mmc_card *card = mq->card;
1438 struct request *cur = req, *next = NULL;
1439 struct mmc_blk_data *md = mq->data;
1440 struct mmc_queue_req *mqrq = mq->mqrq_cur;
1441 bool en_rel_wr = card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN;
1442 unsigned int req_sectors = 0, phys_segments = 0;
1443 unsigned int max_blk_count, max_phys_segs;
1444 bool put_back = true;
1445 u8 max_packed_rw = 0;
1446 u8 reqs = 0;
1447
1448 if (!(md->flags & MMC_BLK_PACKED_CMD))
1449 goto no_packed;
1450
1451 if ((rq_data_dir(cur) == WRITE) &&
1452 mmc_host_packed_wr(card->host))
1453 max_packed_rw = card->ext_csd.max_packed_writes;
1454
1455 if (max_packed_rw == 0)
1456 goto no_packed;
1457
1458 if (mmc_req_rel_wr(cur) &&
1459 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1460 goto no_packed;
1461
1462 if (mmc_large_sector(card) &&
1463 !IS_ALIGNED(blk_rq_sectors(cur), 8))
1464 goto no_packed;
1465
1466 mmc_blk_clear_packed(mqrq);
1467
1468 max_blk_count = min(card->host->max_blk_count,
1469 card->host->max_req_size >> 9);
1470 if (unlikely(max_blk_count > 0xffff))
1471 max_blk_count = 0xffff;
1472
1473 max_phys_segs = queue_max_segments(q);
1474 req_sectors += blk_rq_sectors(cur);
1475 phys_segments += cur->nr_phys_segments;
1476
1477 if (rq_data_dir(cur) == WRITE) {
1478 req_sectors += mmc_large_sector(card) ? 8 : 1;
1479 phys_segments += mmc_calc_packed_hdr_segs(q, card);
1480 }
1481
1482 do {
1483 if (reqs >= max_packed_rw - 1) {
1484 put_back = false;
1485 break;
1486 }
1487
1488 spin_lock_irq(q->queue_lock);
1489 next = blk_fetch_request(q);
1490 spin_unlock_irq(q->queue_lock);
1491 if (!next) {
1492 put_back = false;
1493 break;
1494 }
1495
1496 if (mmc_large_sector(card) &&
1497 !IS_ALIGNED(blk_rq_sectors(next), 8))
1498 break;
1499
1500 if (next->cmd_flags & REQ_DISCARD ||
1501 next->cmd_flags & REQ_FLUSH)
1502 break;
1503
1504 if (rq_data_dir(cur) != rq_data_dir(next))
1505 break;
1506
1507 if (mmc_req_rel_wr(next) &&
1508 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1509 break;
1510
1511 req_sectors += blk_rq_sectors(next);
1512 if (req_sectors > max_blk_count)
1513 break;
1514
1515 phys_segments += next->nr_phys_segments;
1516 if (phys_segments > max_phys_segs)
1517 break;
1518
1519 list_add_tail(&next->queuelist, &mqrq->packed->list);
1520 cur = next;
1521 reqs++;
1522 } while (1);
1523
1524 if (put_back) {
1525 spin_lock_irq(q->queue_lock);
1526 blk_requeue_request(q, next);
1527 spin_unlock_irq(q->queue_lock);
1528 }
1529
1530 if (reqs > 0) {
1531 list_add(&req->queuelist, &mqrq->packed->list);
1532 mqrq->packed->nr_entries = ++reqs;
1533 mqrq->packed->retries = reqs;
1534 return reqs;
1535 }
1536
1537no_packed:
1538 mqrq->cmd_type = MMC_PACKED_NONE;
1539 return 0;
1540}
1541
1542static void mmc_blk_packed_hdr_wrq_prep(struct mmc_queue_req *mqrq,
1543 struct mmc_card *card,
1544 struct mmc_queue *mq)
1545{
1546 struct mmc_blk_request *brq = &mqrq->brq;
1547 struct request *req = mqrq->req;
1548 struct request *prq;
1549 struct mmc_blk_data *md = mq->data;
1550 struct mmc_packed *packed = mqrq->packed;
1551 bool do_rel_wr, do_data_tag;
1552 u32 *packed_cmd_hdr;
1553 u8 hdr_blocks;
1554 u8 i = 1;
1555
1556 BUG_ON(!packed);
1557
1558 mqrq->cmd_type = MMC_PACKED_WRITE;
1559 packed->blocks = 0;
1560 packed->idx_failure = MMC_PACKED_NR_IDX;
1561
1562 packed_cmd_hdr = packed->cmd_hdr;
1563 memset(packed_cmd_hdr, 0, sizeof(packed->cmd_hdr));
1564 packed_cmd_hdr[0] = (packed->nr_entries << 16) |
1565 (PACKED_CMD_WR << 8) | PACKED_CMD_VER;
1566 hdr_blocks = mmc_large_sector(card) ? 8 : 1;
1567
1568 /*
1569 * Argument for each entry of packed group
1570 */
1571 list_for_each_entry(prq, &packed->list, queuelist) {
1572 do_rel_wr = mmc_req_rel_wr(prq) && (md->flags & MMC_BLK_REL_WR);
1573 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1574 (prq->cmd_flags & REQ_META) &&
1575 (rq_data_dir(prq) == WRITE) &&
1576 ((brq->data.blocks * brq->data.blksz) >=
1577 card->ext_csd.data_tag_unit_size);
1578 /* Argument of CMD23 */
1579 packed_cmd_hdr[(i * 2)] =
1580 (do_rel_wr ? MMC_CMD23_ARG_REL_WR : 0) |
1581 (do_data_tag ? MMC_CMD23_ARG_TAG_REQ : 0) |
1582 blk_rq_sectors(prq);
1583 /* Argument of CMD18 or CMD25 */
1584 packed_cmd_hdr[((i * 2)) + 1] =
1585 mmc_card_blockaddr(card) ?
1586 blk_rq_pos(prq) : blk_rq_pos(prq) << 9;
1587 packed->blocks += blk_rq_sectors(prq);
1588 i++;
1589 }
1590
1591 memset(brq, 0, sizeof(struct mmc_blk_request));
1592 brq->mrq.cmd = &brq->cmd;
1593 brq->mrq.data = &brq->data;
1594 brq->mrq.sbc = &brq->sbc;
1595 brq->mrq.stop = &brq->stop;
1596
1597 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1598 brq->sbc.arg = MMC_CMD23_ARG_PACKED | (packed->blocks + hdr_blocks);
1599 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1600
1601 brq->cmd.opcode = MMC_WRITE_MULTIPLE_BLOCK;
1602 brq->cmd.arg = blk_rq_pos(req);
1603 if (!mmc_card_blockaddr(card))
1604 brq->cmd.arg <<= 9;
1605 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1606
1607 brq->data.blksz = 512;
1608 brq->data.blocks = packed->blocks + hdr_blocks;
1609 brq->data.flags |= MMC_DATA_WRITE;
1610
1611 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1612 brq->stop.arg = 0;
1613 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1614
1615 mmc_set_data_timeout(&brq->data, card);
1616
1617 brq->data.sg = mqrq->sg;
1618 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1619
1620 mqrq->mmc_active.mrq = &brq->mrq;
1621 mqrq->mmc_active.err_check = mmc_blk_packed_err_check;
1622
1623 mmc_queue_bounce_pre(mqrq);
1624}
1625
Adrian Hunter67716322011-08-29 16:42:15 +03001626static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1627 struct mmc_blk_request *brq, struct request *req,
1628 int ret)
1629{
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001630 struct mmc_queue_req *mq_rq;
1631 mq_rq = container_of(brq, struct mmc_queue_req, brq);
1632
Adrian Hunter67716322011-08-29 16:42:15 +03001633 /*
1634 * If this is an SD card and we're writing, we can first
1635 * mark the known good sectors as ok.
1636 *
1637 * If the card is not SD, we can still ok written sectors
1638 * as reported by the controller (which might be less than
1639 * the real number of written sectors, but never more).
1640 */
1641 if (mmc_card_sd(card)) {
1642 u32 blocks;
1643
1644 blocks = mmc_sd_num_wr_blocks(card);
1645 if (blocks != (u32)-1) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301646 ret = blk_end_request(req, 0, blocks << 9);
Adrian Hunter67716322011-08-29 16:42:15 +03001647 }
1648 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001649 if (!mmc_packed_cmd(mq_rq->cmd_type))
1650 ret = blk_end_request(req, 0, brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03001651 }
1652 return ret;
1653}
1654
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001655static int mmc_blk_end_packed_req(struct mmc_queue_req *mq_rq)
1656{
1657 struct request *prq;
1658 struct mmc_packed *packed = mq_rq->packed;
1659 int idx = packed->idx_failure, i = 0;
1660 int ret = 0;
1661
1662 BUG_ON(!packed);
1663
1664 while (!list_empty(&packed->list)) {
1665 prq = list_entry_rq(packed->list.next);
1666 if (idx == i) {
1667 /* retry from error index */
1668 packed->nr_entries -= idx;
1669 mq_rq->req = prq;
1670 ret = 1;
1671
1672 if (packed->nr_entries == MMC_PACKED_NR_SINGLE) {
1673 list_del_init(&prq->queuelist);
1674 mmc_blk_clear_packed(mq_rq);
1675 }
1676 return ret;
1677 }
1678 list_del_init(&prq->queuelist);
1679 blk_end_request(prq, 0, blk_rq_bytes(prq));
1680 i++;
1681 }
1682
1683 mmc_blk_clear_packed(mq_rq);
1684 return ret;
1685}
1686
1687static void mmc_blk_abort_packed_req(struct mmc_queue_req *mq_rq)
1688{
1689 struct request *prq;
1690 struct mmc_packed *packed = mq_rq->packed;
1691
1692 BUG_ON(!packed);
1693
1694 while (!list_empty(&packed->list)) {
1695 prq = list_entry_rq(packed->list.next);
1696 list_del_init(&prq->queuelist);
1697 blk_end_request(prq, -EIO, blk_rq_bytes(prq));
1698 }
1699
1700 mmc_blk_clear_packed(mq_rq);
1701}
1702
1703static void mmc_blk_revert_packed_req(struct mmc_queue *mq,
1704 struct mmc_queue_req *mq_rq)
1705{
1706 struct request *prq;
1707 struct request_queue *q = mq->queue;
1708 struct mmc_packed *packed = mq_rq->packed;
1709
1710 BUG_ON(!packed);
1711
1712 while (!list_empty(&packed->list)) {
1713 prq = list_entry_rq(packed->list.prev);
1714 if (prq->queuelist.prev != &packed->list) {
1715 list_del_init(&prq->queuelist);
1716 spin_lock_irq(q->queue_lock);
1717 blk_requeue_request(mq->queue, prq);
1718 spin_unlock_irq(q->queue_lock);
1719 } else {
1720 list_del_init(&prq->queuelist);
1721 }
1722 }
1723
1724 mmc_blk_clear_packed(mq_rq);
1725}
1726
Per Forlinee8a43a2011-07-01 18:55:33 +02001727static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001728{
1729 struct mmc_blk_data *md = mq->data;
1730 struct mmc_card *card = md->queue.card;
1731 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunter67716322011-08-29 16:42:15 +03001732 int ret = 1, disable_multi = 0, retry = 0, type;
Per Forlind78d4a82011-07-01 18:55:30 +02001733 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001734 struct mmc_queue_req *mq_rq;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301735 struct request *req = rqc;
Per Forlinee8a43a2011-07-01 18:55:33 +02001736 struct mmc_async_req *areq;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001737 const u8 packed_nr = 2;
1738 u8 reqs = 0;
Per Forlinee8a43a2011-07-01 18:55:33 +02001739
1740 if (!rqc && !mq->mqrq_prev->req)
1741 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001742
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001743 if (rqc)
1744 reqs = mmc_blk_prep_packed_list(mq, rqc);
1745
Per Forlin54d49d72011-07-01 18:55:29 +02001746 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001747 if (rqc) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05301748 /*
1749 * When 4KB native sector is enabled, only 8 blocks
1750 * multiple read or write is allowed
1751 */
1752 if ((brq->data.blocks & 0x07) &&
1753 (card->ext_csd.data_sector_size == 4096)) {
1754 pr_err("%s: Transfer size is not 4KB sector size aligned\n",
1755 req->rq_disk->disk_name);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001756 mq_rq = mq->mqrq_cur;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301757 goto cmd_abort;
1758 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001759
1760 if (reqs >= packed_nr)
1761 mmc_blk_packed_hdr_wrq_prep(mq->mqrq_cur,
1762 card, mq);
1763 else
1764 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
Per Forlinee8a43a2011-07-01 18:55:33 +02001765 areq = &mq->mqrq_cur->mmc_active;
1766 } else
1767 areq = NULL;
1768 areq = mmc_start_req(card->host, areq, (int *) &status);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001769 if (!areq) {
1770 if (status == MMC_BLK_NEW_REQUEST)
1771 mq->flags |= MMC_QUEUE_NEW_REQUEST;
Per Forlinee8a43a2011-07-01 18:55:33 +02001772 return 0;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001773 }
Pierre Ossman98ccf142007-05-12 00:26:16 +02001774
Per Forlinee8a43a2011-07-01 18:55:33 +02001775 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1776 brq = &mq_rq->brq;
1777 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001778 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001779 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001780
Per Forlind78d4a82011-07-01 18:55:30 +02001781 switch (status) {
1782 case MMC_BLK_SUCCESS:
1783 case MMC_BLK_PARTIAL:
1784 /*
1785 * A block was successfully transferred.
1786 */
Adrian Hunter67716322011-08-29 16:42:15 +03001787 mmc_blk_reset_success(md, type);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001788
1789 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1790 ret = mmc_blk_end_packed_req(mq_rq);
1791 break;
1792 } else {
1793 ret = blk_end_request(req, 0,
Per Forlind78d4a82011-07-01 18:55:30 +02001794 brq->data.bytes_xfered);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001795 }
1796
Adrian Hunter67716322011-08-29 16:42:15 +03001797 /*
1798 * If the blk_end_request function returns non-zero even
1799 * though all data has been transferred and no errors
1800 * were returned by the host controller, it's a bug.
1801 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001802 if (status == MMC_BLK_SUCCESS && ret) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301803 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Per Forlinee8a43a2011-07-01 18:55:33 +02001804 __func__, blk_rq_bytes(req),
1805 brq->data.bytes_xfered);
1806 rqc = NULL;
1807 goto cmd_abort;
1808 }
Per Forlind78d4a82011-07-01 18:55:30 +02001809 break;
1810 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001811 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1812 if (!mmc_blk_reset(md, card->host, type))
1813 break;
1814 goto cmd_abort;
Per Forlind78d4a82011-07-01 18:55:30 +02001815 case MMC_BLK_RETRY:
1816 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001817 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001818 /* Fall through */
Per Forlind78d4a82011-07-01 18:55:30 +02001819 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001820 if (!mmc_blk_reset(md, card->host, type))
1821 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001822 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001823 case MMC_BLK_DATA_ERR: {
1824 int err;
1825
1826 err = mmc_blk_reset(md, card->host, type);
1827 if (!err)
1828 break;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001829 if (err == -ENODEV ||
1830 mmc_packed_cmd(mq_rq->cmd_type))
Adrian Hunter67716322011-08-29 16:42:15 +03001831 goto cmd_abort;
1832 /* Fall through */
1833 }
1834 case MMC_BLK_ECC_ERR:
1835 if (brq->data.blocks > 1) {
1836 /* Redo read one sector at a time */
1837 pr_warning("%s: retrying using single block read\n",
1838 req->rq_disk->disk_name);
1839 disable_multi = 1;
1840 break;
1841 }
Per Forlind78d4a82011-07-01 18:55:30 +02001842 /*
1843 * After an error, we redo I/O one sector at a
1844 * time, so we only reach here after trying to
1845 * read a single sector.
1846 */
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301847 ret = blk_end_request(req, -EIO,
Per Forlind78d4a82011-07-01 18:55:30 +02001848 brq->data.blksz);
Per Forlinee8a43a2011-07-01 18:55:33 +02001849 if (!ret)
1850 goto start_new_req;
Per Forlind78d4a82011-07-01 18:55:30 +02001851 break;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301852 case MMC_BLK_NOMEDIUM:
1853 goto cmd_abort;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001854 default:
1855 pr_err("%s: Unhandled return value (%d)",
1856 req->rq_disk->disk_name, status);
1857 goto cmd_abort;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001858 }
1859
Per Forlinee8a43a2011-07-01 18:55:33 +02001860 if (ret) {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001861 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1862 if (!mq_rq->packed->retries)
1863 goto cmd_abort;
1864 mmc_blk_packed_hdr_wrq_prep(mq_rq, card, mq);
1865 mmc_start_req(card->host,
1866 &mq_rq->mmc_active, NULL);
1867 } else {
1868
1869 /*
1870 * In case of a incomplete request
1871 * prepare it again and resend.
1872 */
1873 mmc_blk_rw_rq_prep(mq_rq, card,
1874 disable_multi, mq);
1875 mmc_start_req(card->host,
1876 &mq_rq->mmc_active, NULL);
1877 }
Per Forlinee8a43a2011-07-01 18:55:33 +02001878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 } while (ret);
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 return 1;
1882
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001883 cmd_abort:
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001884 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1885 mmc_blk_abort_packed_req(mq_rq);
1886 } else {
1887 if (mmc_card_removed(card))
1888 req->cmd_flags |= REQ_QUIET;
1889 while (ret)
1890 ret = blk_end_request(req, -EIO,
1891 blk_rq_cur_bytes(req));
1892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Per Forlinee8a43a2011-07-01 18:55:33 +02001894 start_new_req:
1895 if (rqc) {
Seungwon Jeon7a819022013-01-22 19:48:07 +09001896 if (mmc_card_removed(card)) {
1897 rqc->cmd_flags |= REQ_QUIET;
1898 blk_end_request_all(rqc, -EIO);
1899 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001900 /*
1901 * If current request is packed, it needs to put back.
1902 */
1903 if (mmc_packed_cmd(mq->mqrq_cur->cmd_type))
1904 mmc_blk_revert_packed_req(mq, mq->mqrq_cur);
1905
Seungwon Jeon7a819022013-01-22 19:48:07 +09001906 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1907 mmc_start_req(card->host,
1908 &mq->mqrq_cur->mmc_active, NULL);
1909 }
Per Forlinee8a43a2011-07-01 18:55:33 +02001910 }
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return 0;
1913}
1914
Adrian Hunterbd788c92010-08-11 14:17:47 -07001915static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1916{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001917 int ret;
1918 struct mmc_blk_data *md = mq->data;
1919 struct mmc_card *card = md->queue.card;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001920 struct mmc_host *host = card->host;
1921 unsigned long flags;
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001922
Per Forlinee8a43a2011-07-01 18:55:33 +02001923 if (req && !mq->mqrq_prev->req)
1924 /* claim host only for the first request */
Ulf Hanssone94cfef2013-05-02 14:02:38 +02001925 mmc_get_card(card);
Per Forlinee8a43a2011-07-01 18:55:33 +02001926
Andrei Warkentin371a6892011-04-11 18:10:25 -05001927 ret = mmc_blk_part_switch(card, md);
1928 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03001929 if (req) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301930 blk_end_request_all(req, -EIO);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03001931 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001932 ret = 0;
1933 goto out;
1934 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001935
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001936 mq->flags &= ~MMC_QUEUE_NEW_REQUEST;
Per Forlinee8a43a2011-07-01 18:55:33 +02001937 if (req && req->cmd_flags & REQ_DISCARD) {
1938 /* complete ongoing async transfer before issuing discard */
1939 if (card->host->areq)
1940 mmc_blk_issue_rw_rq(mq, NULL);
Ian Chen3550ccd2012-08-29 15:05:36 +09001941 if (req->cmd_flags & REQ_SECURE &&
1942 !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001943 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001944 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001945 ret = mmc_blk_issue_discard_rq(mq, req);
Per Forlinee8a43a2011-07-01 18:55:33 +02001946 } else if (req && req->cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09001947 /* complete ongoing async transfer before issuing flush */
1948 if (card->host->areq)
1949 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001950 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001951 } else {
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001952 if (!req && host->areq) {
1953 spin_lock_irqsave(&host->context_info.lock, flags);
1954 host->context_info.is_waiting_last_req = true;
1955 spin_unlock_irqrestore(&host->context_info.lock, flags);
1956 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001957 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001958 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001959
Andrei Warkentin371a6892011-04-11 18:10:25 -05001960out:
Seungwon Jeonef3a69c72013-03-14 15:17:13 +09001961 if ((!req && !(mq->flags & MMC_QUEUE_NEW_REQUEST)) ||
1962 (req && (req->cmd_flags & MMC_REQ_SPECIAL_MASK)))
1963 /*
1964 * Release host when there are no more requests
1965 * and after special request(discard, flush) is done.
1966 * In case sepecial request, there is no reentry to
1967 * the 'mmc_blk_issue_rq' with 'mqrq_prev->req'.
1968 */
Ulf Hanssone94cfef2013-05-02 14:02:38 +02001969 mmc_put_card(card);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001970 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001971}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Russell Kinga6f6c962006-01-03 22:38:44 +00001973static inline int mmc_blk_readonly(struct mmc_card *card)
1974{
1975 return mmc_card_readonly(card) ||
1976 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1977}
1978
Andrei Warkentin371a6892011-04-11 18:10:25 -05001979static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1980 struct device *parent,
1981 sector_t size,
1982 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001983 const char *subname,
1984 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 struct mmc_blk_data *md;
1987 int devidx, ret;
1988
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001989 devidx = find_first_zero_bit(dev_use, max_devices);
1990 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 return ERR_PTR(-ENOSPC);
1992 __set_bit(devidx, dev_use);
1993
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001994 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00001995 if (!md) {
1996 ret = -ENOMEM;
1997 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
Russell Kinga6f6c962006-01-03 22:38:44 +00001999
Russell Kinga6f6c962006-01-03 22:38:44 +00002000 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002001 * !subname implies we are creating main mmc_blk_data that will be
2002 * associated with mmc_card with mmc_set_drvdata. Due to device
2003 * partitions, devidx will not coincide with a per-physical card
2004 * index anymore so we keep track of a name index.
2005 */
2006 if (!subname) {
2007 md->name_idx = find_first_zero_bit(name_use, max_devices);
2008 __set_bit(md->name_idx, name_use);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002009 } else
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002010 md->name_idx = ((struct mmc_blk_data *)
2011 dev_to_disk(parent)->private_data)->name_idx;
2012
Johan Rudholmadd710e2011-12-02 08:51:06 +01002013 md->area_type = area_type;
2014
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002015 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00002016 * Set the read-only status based on the supported commands
2017 * and the write protect switch.
2018 */
2019 md->read_only = mmc_blk_readonly(card);
2020
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002021 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00002022 if (md->disk == NULL) {
2023 ret = -ENOMEM;
2024 goto err_kfree;
2025 }
2026
2027 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002028 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00002029 md->usage = 1;
2030
Adrian Hunterd09408a2011-06-23 13:40:28 +03002031 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00002032 if (ret)
2033 goto err_putdisk;
2034
Russell Kinga6f6c962006-01-03 22:38:44 +00002035 md->queue.issue_fn = mmc_blk_issue_rq;
2036 md->queue.data = md;
2037
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002038 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002039 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00002040 md->disk->fops = &mmc_bdops;
2041 md->disk->private_data = md;
2042 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002043 md->disk->driverfs_dev = parent;
2044 set_disk_ro(md->disk, md->read_only || default_ro);
Loic Pallardy53d8f972012-08-06 17:12:28 +02002045 if (area_type & MMC_BLK_DATA_AREA_RPMB)
2046 md->disk->flags |= GENHD_FL_NO_PART_SCAN;
Russell Kinga6f6c962006-01-03 22:38:44 +00002047
2048 /*
2049 * As discussed on lkml, GENHD_FL_REMOVABLE should:
2050 *
2051 * - be set for removable media with permanent block devices
2052 * - be unset for removable block devices with permanent media
2053 *
2054 * Since MMC block devices clearly fall under the second
2055 * case, we do not set GENHD_FL_REMOVABLE. Userspace
2056 * should use the block device creation/destruction hotplug
2057 * messages to tell when the card is present.
2058 */
2059
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002060 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
2061 "mmcblk%d%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00002062
Saugata Dasa5075eb2012-05-17 16:32:21 +05302063 if (mmc_card_mmc(card))
2064 blk_queue_logical_block_size(md->queue.queue,
2065 card->ext_csd.data_sector_size);
2066 else
2067 blk_queue_logical_block_size(md->queue.queue, 512);
2068
Andrei Warkentin371a6892011-04-11 18:10:25 -05002069 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002070
Andrei Warkentinf0d89972011-05-23 15:06:38 -05002071 if (mmc_host_cmd23(card->host)) {
2072 if (mmc_card_mmc(card) ||
2073 (mmc_card_sd(card) &&
2074 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
2075 md->flags |= MMC_BLK_CMD23;
2076 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002077
2078 if (mmc_card_mmc(card) &&
2079 md->flags & MMC_BLK_CMD23 &&
2080 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
2081 card->ext_csd.rel_sectors)) {
2082 md->flags |= MMC_BLK_REL_WR;
2083 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
2084 }
2085
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002086 if (mmc_card_mmc(card) &&
2087 (area_type == MMC_BLK_DATA_AREA_MAIN) &&
2088 (md->flags & MMC_BLK_CMD23) &&
2089 card->ext_csd.packed_event_en) {
2090 if (!mmc_packed_init(&md->queue, card))
2091 md->flags |= MMC_BLK_PACKED_CMD;
2092 }
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00002095
2096 err_putdisk:
2097 put_disk(md->disk);
2098 err_kfree:
2099 kfree(md);
2100 out:
2101 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
2103
Andrei Warkentin371a6892011-04-11 18:10:25 -05002104static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
2105{
2106 sector_t size;
2107 struct mmc_blk_data *md;
2108
2109 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
2110 /*
2111 * The EXT_CSD sector count is in number or 512 byte
2112 * sectors.
2113 */
2114 size = card->ext_csd.sectors;
2115 } else {
2116 /*
2117 * The CSD capacity field is in units of read_blkbits.
2118 * set_capacity takes units of 512 bytes.
2119 */
2120 size = card->csd.capacity << (card->csd.read_blkbits - 9);
2121 }
2122
Johan Rudholmadd710e2011-12-02 08:51:06 +01002123 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
2124 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002125 return md;
2126}
2127
2128static int mmc_blk_alloc_part(struct mmc_card *card,
2129 struct mmc_blk_data *md,
2130 unsigned int part_type,
2131 sector_t size,
2132 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002133 const char *subname,
2134 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05002135{
2136 char cap_str[10];
2137 struct mmc_blk_data *part_md;
2138
2139 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002140 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002141 if (IS_ERR(part_md))
2142 return PTR_ERR(part_md);
2143 part_md->part_type = part_type;
2144 list_add(&part_md->part, &md->part);
2145
2146 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
2147 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302148 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05002149 part_md->disk->disk_name, mmc_card_id(card),
2150 mmc_card_name(card), part_md->part_type, cap_str);
2151 return 0;
2152}
2153
Namjae Jeone0c368d2011-10-06 23:41:38 +09002154/* MMC Physical partitions consist of two boot partitions and
2155 * up to four general purpose partitions.
2156 * For each partition enabled in EXT_CSD a block device will be allocatedi
2157 * to provide access to the partition.
2158 */
2159
Andrei Warkentin371a6892011-04-11 18:10:25 -05002160static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
2161{
Namjae Jeone0c368d2011-10-06 23:41:38 +09002162 int idx, ret = 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002163
2164 if (!mmc_card_mmc(card))
2165 return 0;
2166
Namjae Jeone0c368d2011-10-06 23:41:38 +09002167 for (idx = 0; idx < card->nr_parts; idx++) {
2168 if (card->part[idx].size) {
2169 ret = mmc_blk_alloc_part(card, md,
2170 card->part[idx].part_cfg,
2171 card->part[idx].size >> 9,
2172 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002173 card->part[idx].name,
2174 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09002175 if (ret)
2176 return ret;
2177 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002178 }
2179
2180 return ret;
2181}
2182
Andrei Warkentin371a6892011-04-11 18:10:25 -05002183static void mmc_blk_remove_req(struct mmc_blk_data *md)
2184{
Johan Rudholmadd710e2011-12-02 08:51:06 +01002185 struct mmc_card *card;
2186
Andrei Warkentin371a6892011-04-11 18:10:25 -05002187 if (md) {
Paul Taysomfdfa20c2013-06-04 14:42:40 -07002188 /*
2189 * Flush remaining requests and free queues. It
2190 * is freeing the queue that stops new requests
2191 * from being accepted.
2192 */
2193 mmc_cleanup_queue(&md->queue);
2194 if (md->flags & MMC_BLK_PACKED_CMD)
2195 mmc_packed_clean(&md->queue);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002196 card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002197 if (md->disk->flags & GENHD_FL_UP) {
2198 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002199 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2200 card->ext_csd.boot_ro_lockable)
2201 device_remove_file(disk_to_dev(md->disk),
2202 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002203
Andrei Warkentin371a6892011-04-11 18:10:25 -05002204 del_gendisk(md->disk);
2205 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002206 mmc_blk_put(md);
2207 }
2208}
2209
2210static void mmc_blk_remove_parts(struct mmc_card *card,
2211 struct mmc_blk_data *md)
2212{
2213 struct list_head *pos, *q;
2214 struct mmc_blk_data *part_md;
2215
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002216 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002217 list_for_each_safe(pos, q, &md->part) {
2218 part_md = list_entry(pos, struct mmc_blk_data, part);
2219 list_del(pos);
2220 mmc_blk_remove_req(part_md);
2221 }
2222}
2223
2224static int mmc_add_disk(struct mmc_blk_data *md)
2225{
2226 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002227 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002228
2229 add_disk(md->disk);
2230 md->force_ro.show = force_ro_show;
2231 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05302232 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002233 md->force_ro.attr.name = "force_ro";
2234 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
2235 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
2236 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01002237 goto force_ro_fail;
2238
2239 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2240 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04002241 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002242
2243 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
2244 mode = S_IRUGO;
2245 else
2246 mode = S_IRUGO | S_IWUSR;
2247
2248 md->power_ro_lock.show = power_ro_lock_show;
2249 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01002250 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002251 md->power_ro_lock.attr.mode = mode;
2252 md->power_ro_lock.attr.name =
2253 "ro_lock_until_next_power_on";
2254 ret = device_create_file(disk_to_dev(md->disk),
2255 &md->power_ro_lock);
2256 if (ret)
2257 goto power_ro_lock_fail;
2258 }
2259 return ret;
2260
2261power_ro_lock_fail:
2262 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
2263force_ro_fail:
2264 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002265
2266 return ret;
2267}
2268
Chris Ballc59d4472011-11-11 22:01:43 -05002269#define CID_MANFID_SANDISK 0x2
2270#define CID_MANFID_TOSHIBA 0x11
2271#define CID_MANFID_MICRON 0x13
Ian Chen3550ccd2012-08-29 15:05:36 +09002272#define CID_MANFID_SAMSUNG 0x15
Chris Ballc59d4472011-11-11 22:01:43 -05002273
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002274static const struct mmc_fixup blk_fixups[] =
2275{
Chris Ballc59d4472011-11-11 22:01:43 -05002276 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
2277 MMC_QUIRK_INAND_CMD38),
2278 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
2279 MMC_QUIRK_INAND_CMD38),
2280 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
2281 MMC_QUIRK_INAND_CMD38),
2282 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
2283 MMC_QUIRK_INAND_CMD38),
2284 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
2285 MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002286
2287 /*
2288 * Some MMC cards experience performance degradation with CMD23
2289 * instead of CMD12-bounded multiblock transfers. For now we'll
2290 * black list what's bad...
2291 * - Certain Toshiba cards.
2292 *
2293 * N.B. This doesn't affect SD cards.
2294 */
Chris Ballc59d4472011-11-11 22:01:43 -05002295 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002296 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002297 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002298 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002299 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002300 MMC_QUIRK_BLK_NO_CMD23),
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002301
2302 /*
2303 * Some Micron MMC cards needs longer data read timeout than
2304 * indicated in CSD.
2305 */
Chris Ballc59d4472011-11-11 22:01:43 -05002306 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002307 MMC_QUIRK_LONG_READ_TIME),
2308
Ian Chen3550ccd2012-08-29 15:05:36 +09002309 /*
2310 * On these Samsung MoviNAND parts, performing secure erase or
2311 * secure trim can result in unrecoverable corruption due to a
2312 * firmware bug.
2313 */
2314 MMC_FIXUP("M8G2FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2315 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2316 MMC_FIXUP("MAG4FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2317 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2318 MMC_FIXUP("MBG8FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2319 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2320 MMC_FIXUP("MCGAFA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2321 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2322 MMC_FIXUP("VAL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2323 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2324 MMC_FIXUP("VYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2325 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2326 MMC_FIXUP("KYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2327 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2328 MMC_FIXUP("VZL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2329 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2330
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002331 END_FIXUP
2332};
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334static int mmc_blk_probe(struct mmc_card *card)
2335{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002336 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002337 char cap_str[10];
2338
Pierre Ossman912490d2005-05-21 10:27:02 +01002339 /*
2340 * Check that the card supports the command class(es) we need.
2341 */
2342 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return -ENODEV;
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 md = mmc_blk_alloc(card);
2346 if (IS_ERR(md))
2347 return PTR_ERR(md);
2348
Yi Li444122f2009-02-05 15:31:57 +08002349 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002350 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302351 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002353 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Andrei Warkentin371a6892011-04-11 18:10:25 -05002355 if (mmc_blk_alloc_parts(card, md))
2356 goto out;
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 mmc_set_drvdata(card, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002359 mmc_fixup_device(card, blk_fixups);
2360
Andrei Warkentin371a6892011-04-11 18:10:25 -05002361 if (mmc_add_disk(md))
2362 goto out;
2363
2364 list_for_each_entry(part_md, &md->part, part) {
2365 if (mmc_add_disk(part_md))
2366 goto out;
2367 }
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002368
2369 pm_runtime_set_autosuspend_delay(&card->dev, 3000);
2370 pm_runtime_use_autosuspend(&card->dev);
2371
2372 /*
2373 * Don't enable runtime PM for SD-combo cards here. Leave that
2374 * decision to be taken during the SDIO init sequence instead.
2375 */
2376 if (card->type != MMC_TYPE_SD_COMBO) {
2377 pm_runtime_set_active(&card->dev);
2378 pm_runtime_enable(&card->dev);
2379 }
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 return 0;
2382
2383 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05002384 mmc_blk_remove_parts(card, md);
2385 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01002386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387}
2388
2389static void mmc_blk_remove(struct mmc_card *card)
2390{
2391 struct mmc_blk_data *md = mmc_get_drvdata(card);
2392
Andrei Warkentin371a6892011-04-11 18:10:25 -05002393 mmc_blk_remove_parts(card, md);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002394 pm_runtime_get_sync(&card->dev);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03002395 mmc_claim_host(card->host);
2396 mmc_blk_part_switch(card, md);
2397 mmc_release_host(card->host);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002398 if (card->type != MMC_TYPE_SD_COMBO)
2399 pm_runtime_disable(&card->dev);
2400 pm_runtime_put_noidle(&card->dev);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002401 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 mmc_set_drvdata(card, NULL);
2403}
2404
2405#ifdef CONFIG_PM
Chuanxiao Dong32d317c2012-04-11 19:54:38 +08002406static int mmc_blk_suspend(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002408 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 struct mmc_blk_data *md = mmc_get_drvdata(card);
2410
2411 if (md) {
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002412 pm_runtime_get_sync(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002414 list_for_each_entry(part_md, &md->part, part) {
2415 mmc_queue_suspend(&part_md->queue);
2416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
2418 return 0;
2419}
2420
2421static int mmc_blk_resume(struct mmc_card *card)
2422{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002423 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 struct mmc_blk_data *md = mmc_get_drvdata(card);
2425
2426 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05002427 /*
2428 * Resume involves the card going into idle state,
2429 * so current partition is always the main one.
2430 */
2431 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002433 list_for_each_entry(part_md, &md->part, part) {
2434 mmc_queue_resume(&part_md->queue);
2435 }
Ulf Hanssone94cfef2013-05-02 14:02:38 +02002436 pm_runtime_put(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
2438 return 0;
2439}
2440#else
2441#define mmc_blk_suspend NULL
2442#define mmc_blk_resume NULL
2443#endif
2444
2445static struct mmc_driver mmc_driver = {
2446 .drv = {
2447 .name = "mmcblk",
2448 },
2449 .probe = mmc_blk_probe,
2450 .remove = mmc_blk_remove,
2451 .suspend = mmc_blk_suspend,
2452 .resume = mmc_blk_resume,
2453};
2454
2455static int __init mmc_blk_init(void)
2456{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002457 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002459 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
2460 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
2461
2462 max_devices = 256 / perdev_minors;
2463
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002464 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
2465 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002468 res = mmc_register_driver(&mmc_driver);
2469 if (res)
2470 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002472 return 0;
2473 out2:
2474 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 out:
2476 return res;
2477}
2478
2479static void __exit mmc_blk_exit(void)
2480{
2481 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002482 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
2484
2485module_init(mmc_blk_init);
2486module_exit(mmc_blk_exit);
2487
2488MODULE_LICENSE("GPL");
2489MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
2490