blob: 7ad66823d022427a1b6a9ca54a31809c53477f8d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
John Calixtocb87ea22011-04-26 18:56:29 -040038#include <linux/mmc/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/mmc/card.h>
Pierre Ossman385e32272006-06-18 14:34:37 +020040#include <linux/mmc/host.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010041#include <linux/mmc/mmc.h>
42#include <linux/mmc/sd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/uaccess.h>
45
Pierre Ossman98ac2162006-12-23 20:03:02 +010046#include "queue.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Andy Whitcroft6b0b6282009-02-23 12:38:41 +000048MODULE_ALIAS("mmc:block");
Olof Johansson5e71b7a2010-09-17 21:19:57 -040049#ifdef MODULE_PARAM_PREFIX
50#undef MODULE_PARAM_PREFIX
51#endif
52#define MODULE_PARAM_PREFIX "mmcblk."
David Woodhouse1dff3142007-11-21 18:45:12 +010053
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -050054#define INAND_CMD38_ARG_EXT_CSD 113
55#define INAND_CMD38_ARG_ERASE 0x00
56#define INAND_CMD38_ARG_TRIM 0x01
57#define INAND_CMD38_ARG_SECERASE 0x80
58#define INAND_CMD38_ARG_SECTRIM1 0x81
59#define INAND_CMD38_ARG_SECTRIM2 0x88
Trey Ramsay8fee4762012-11-16 09:31:41 -060060#define MMC_BLK_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -050061
Seungwon Jeonce39f9d2013-02-06 17:02:46 +090062#define mmc_req_rel_wr(req) (((req->cmd_flags & REQ_FUA) || \
63 (req->cmd_flags & REQ_META)) && \
64 (rq_data_dir(req) == WRITE))
65#define PACKED_CMD_VER 0x01
66#define PACKED_CMD_WR 0x02
67
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020068static DEFINE_MUTEX(block_mutex);
Olof Johansson5e71b7a2010-09-17 21:19:57 -040069
70/*
71 * The defaults come from config options but can be overriden by module
72 * or bootarg options.
73 */
74static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
75
76/*
77 * We've only got one major, so number of mmcblk devices is
78 * limited to 256 / number of minors per device.
79 */
80static int max_devices;
81
82/* 256 minors, so at most 256 separate devices */
83static DECLARE_BITMAP(dev_use, 256);
Andrei Warkentinf06c9152011-04-21 22:46:13 -050084static DECLARE_BITMAP(name_use, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * There is one mmc_blk_data per slot.
88 */
89struct mmc_blk_data {
90 spinlock_t lock;
91 struct gendisk *disk;
92 struct mmc_queue queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -050093 struct list_head part;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Andrei Warkentind0c97cf2011-05-23 15:06:36 -050095 unsigned int flags;
96#define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */
97#define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */
Seungwon Jeonce39f9d2013-02-06 17:02:46 +090098#define MMC_BLK_PACKED_CMD (1 << 2) /* MMC packed command support */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -050099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 unsigned int usage;
Russell Kinga6f6c962006-01-03 22:38:44 +0000101 unsigned int read_only;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500102 unsigned int part_type;
Andrei Warkentinf06c9152011-04-21 22:46:13 -0500103 unsigned int name_idx;
Adrian Hunter67716322011-08-29 16:42:15 +0300104 unsigned int reset_done;
105#define MMC_BLK_READ BIT(0)
106#define MMC_BLK_WRITE BIT(1)
107#define MMC_BLK_DISCARD BIT(2)
108#define MMC_BLK_SECDISCARD BIT(3)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500109
110 /*
111 * Only set in main mmc_blk_data associated
112 * with mmc_card with mmc_set_drvdata, and keeps
113 * track of the current selected device partition.
114 */
115 unsigned int part_curr;
116 struct device_attribute force_ro;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100117 struct device_attribute power_ro_lock;
118 int area_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
Arjan van de Vena621aae2006-01-12 18:43:35 +0000121static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900123enum {
124 MMC_PACKED_NR_IDX = -1,
125 MMC_PACKED_NR_ZERO,
126 MMC_PACKED_NR_SINGLE,
127};
128
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400129module_param(perdev_minors, int, 0444);
130MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
131
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200132static inline int mmc_blk_part_switch(struct mmc_card *card,
133 struct mmc_blk_data *md);
134static int get_card_status(struct mmc_card *card, u32 *status, int retries);
135
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900136static inline void mmc_blk_clear_packed(struct mmc_queue_req *mqrq)
137{
138 struct mmc_packed *packed = mqrq->packed;
139
140 BUG_ON(!packed);
141
142 mqrq->cmd_type = MMC_PACKED_NONE;
143 packed->nr_entries = MMC_PACKED_NR_ZERO;
144 packed->idx_failure = MMC_PACKED_NR_IDX;
145 packed->retries = 0;
146 packed->blocks = 0;
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
150{
151 struct mmc_blk_data *md;
152
Arjan van de Vena621aae2006-01-12 18:43:35 +0000153 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 md = disk->private_data;
155 if (md && md->usage == 0)
156 md = NULL;
157 if (md)
158 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000159 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 return md;
162}
163
Andrei Warkentin371a6892011-04-11 18:10:25 -0500164static inline int mmc_get_devidx(struct gendisk *disk)
165{
166 int devmaj = MAJOR(disk_devt(disk));
167 int devidx = MINOR(disk_devt(disk)) / perdev_minors;
168
169 if (!devmaj)
170 devidx = disk->first_minor / perdev_minors;
171 return devidx;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static void mmc_blk_put(struct mmc_blk_data *md)
175{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000176 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 md->usage--;
178 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500179 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800180 blk_cleanup_queue(md->queue.queue);
181
David Woodhouse1dff3142007-11-21 18:45:12 +0100182 __clear_bit(devidx, dev_use);
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 kfree(md);
186 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000187 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Johan Rudholmadd710e2011-12-02 08:51:06 +0100190static ssize_t power_ro_lock_show(struct device *dev,
191 struct device_attribute *attr, char *buf)
192{
193 int ret;
194 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
195 struct mmc_card *card = md->queue.card;
196 int locked = 0;
197
198 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
199 locked = 2;
200 else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
201 locked = 1;
202
203 ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
204
205 return ret;
206}
207
208static ssize_t power_ro_lock_store(struct device *dev,
209 struct device_attribute *attr, const char *buf, size_t count)
210{
211 int ret;
212 struct mmc_blk_data *md, *part_md;
213 struct mmc_card *card;
214 unsigned long set;
215
216 if (kstrtoul(buf, 0, &set))
217 return -EINVAL;
218
219 if (set != 1)
220 return count;
221
222 md = mmc_blk_get(dev_to_disk(dev));
223 card = md->queue.card;
224
225 mmc_claim_host(card->host);
226
227 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
228 card->ext_csd.boot_ro_lock |
229 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
230 card->ext_csd.part_time);
231 if (ret)
232 pr_err("%s: Locking boot partition ro until next power on failed: %d\n", md->disk->disk_name, ret);
233 else
234 card->ext_csd.boot_ro_lock |= EXT_CSD_BOOT_WP_B_PWR_WP_EN;
235
236 mmc_release_host(card->host);
237
238 if (!ret) {
239 pr_info("%s: Locking boot partition ro until next power on\n",
240 md->disk->disk_name);
241 set_disk_ro(md->disk, 1);
242
243 list_for_each_entry(part_md, &md->part, part)
244 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
245 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
246 set_disk_ro(part_md->disk, 1);
247 }
248 }
249
250 mmc_blk_put(md);
251 return count;
252}
253
Andrei Warkentin371a6892011-04-11 18:10:25 -0500254static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
255 char *buf)
256{
257 int ret;
258 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
259
Baruch Siach5d316a32014-09-22 10:12:51 +0300260 ret = snprintf(buf, PAGE_SIZE, "%d\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -0500261 get_disk_ro(dev_to_disk(dev)) ^
262 md->read_only);
263 mmc_blk_put(md);
264 return ret;
265}
266
267static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
268 const char *buf, size_t count)
269{
270 int ret;
271 char *end;
272 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
273 unsigned long set = simple_strtoul(buf, &end, 0);
274 if (end == buf) {
275 ret = -EINVAL;
276 goto out;
277 }
278
279 set_disk_ro(dev_to_disk(dev), set || md->read_only);
280 ret = count;
281out:
282 mmc_blk_put(md);
283 return ret;
284}
285
Al Viroa5a15612008-03-02 10:33:30 -0500286static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Al Viroa5a15612008-03-02 10:33:30 -0500288 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int ret = -ENXIO;
290
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200291 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (md) {
293 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500294 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700296
Al Viroa5a15612008-03-02 10:33:30 -0500297 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700298 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700299 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200302 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 return ret;
305}
306
Al Virodb2a1442013-05-05 21:52:57 -0400307static void mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Al Viroa5a15612008-03-02 10:33:30 -0500309 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200311 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200313 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800317mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800319 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
320 geo->heads = 4;
321 geo->sectors = 16;
322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
John Calixtocb87ea22011-04-26 18:56:29 -0400325struct mmc_blk_ioc_data {
326 struct mmc_ioc_cmd ic;
327 unsigned char *buf;
328 u64 buf_bytes;
329};
330
331static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
332 struct mmc_ioc_cmd __user *user)
333{
334 struct mmc_blk_ioc_data *idata;
335 int err;
336
337 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
338 if (!idata) {
339 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400340 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400341 }
342
343 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
344 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400345 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400346 }
347
348 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
349 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
350 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400351 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400352 }
353
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100354 if (!idata->buf_bytes)
355 return idata;
356
John Calixtocb87ea22011-04-26 18:56:29 -0400357 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
358 if (!idata->buf) {
359 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400360 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400361 }
362
363 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
364 idata->ic.data_ptr, idata->buf_bytes)) {
365 err = -EFAULT;
366 goto copy_err;
367 }
368
369 return idata;
370
371copy_err:
372 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400373idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400374 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400375out:
John Calixtocb87ea22011-04-26 18:56:29 -0400376 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400377}
378
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200379static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status,
380 u32 retries_max)
381{
382 int err;
383 u32 retry_count = 0;
384
385 if (!status || !retries_max)
386 return -EINVAL;
387
388 do {
389 err = get_card_status(card, status, 5);
390 if (err)
391 break;
392
393 if (!R1_STATUS(*status) &&
394 (R1_CURRENT_STATE(*status) != R1_STATE_PRG))
395 break; /* RPMB programming operation complete */
396
397 /*
398 * Rechedule to give the MMC device a chance to continue
399 * processing the previous command without being polled too
400 * frequently.
401 */
402 usleep_range(1000, 5000);
403 } while (++retry_count < retries_max);
404
405 if (retry_count == retries_max)
406 err = -EPERM;
407
408 return err;
409}
410
John Calixtocb87ea22011-04-26 18:56:29 -0400411static int mmc_blk_ioctl_cmd(struct block_device *bdev,
412 struct mmc_ioc_cmd __user *ic_ptr)
413{
414 struct mmc_blk_ioc_data *idata;
415 struct mmc_blk_data *md;
416 struct mmc_card *card;
417 struct mmc_command cmd = {0};
418 struct mmc_data data = {0};
Venkatraman Sad5fd972011-08-25 00:30:50 +0530419 struct mmc_request mrq = {NULL};
John Calixtocb87ea22011-04-26 18:56:29 -0400420 struct scatterlist sg;
421 int err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200422 int is_rpmb = false;
423 u32 status = 0;
John Calixtocb87ea22011-04-26 18:56:29 -0400424
425 /*
426 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
427 * whole block device, not on a partition. This prevents overspray
428 * between sibling partitions.
429 */
430 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
431 return -EPERM;
432
433 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
434 if (IS_ERR(idata))
435 return PTR_ERR(idata);
436
John Calixtocb87ea22011-04-26 18:56:29 -0400437 md = mmc_blk_get(bdev->bd_disk);
438 if (!md) {
439 err = -EINVAL;
Philippe De Swert1c02f002012-04-11 23:31:45 +0300440 goto cmd_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400441 }
442
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200443 if (md->area_type & MMC_BLK_DATA_AREA_RPMB)
444 is_rpmb = true;
445
John Calixtocb87ea22011-04-26 18:56:29 -0400446 card = md->queue.card;
447 if (IS_ERR(card)) {
448 err = PTR_ERR(card);
449 goto cmd_done;
450 }
451
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100452 cmd.opcode = idata->ic.opcode;
453 cmd.arg = idata->ic.arg;
454 cmd.flags = idata->ic.flags;
455
456 if (idata->buf_bytes) {
457 data.sg = &sg;
458 data.sg_len = 1;
459 data.blksz = idata->ic.blksz;
460 data.blocks = idata->ic.blocks;
461
462 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
463
464 if (idata->ic.write_flag)
465 data.flags = MMC_DATA_WRITE;
466 else
467 data.flags = MMC_DATA_READ;
468
469 /* data.flags must already be set before doing this. */
470 mmc_set_data_timeout(&data, card);
471
472 /* Allow overriding the timeout_ns for empirical tuning. */
473 if (idata->ic.data_timeout_ns)
474 data.timeout_ns = idata->ic.data_timeout_ns;
475
476 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
477 /*
478 * Pretend this is a data transfer and rely on the
479 * host driver to compute timeout. When all host
480 * drivers support cmd.cmd_timeout for R1B, this
481 * can be changed to:
482 *
483 * mrq.data = NULL;
484 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
485 */
486 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
487 }
488
489 mrq.data = &data;
490 }
491
492 mrq.cmd = &cmd;
493
John Calixtocb87ea22011-04-26 18:56:29 -0400494 mmc_claim_host(card->host);
495
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200496 err = mmc_blk_part_switch(card, md);
497 if (err)
498 goto cmd_rel_host;
499
John Calixtocb87ea22011-04-26 18:56:29 -0400500 if (idata->ic.is_acmd) {
501 err = mmc_app_cmd(card->host, card);
502 if (err)
503 goto cmd_rel_host;
504 }
505
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200506 if (is_rpmb) {
507 err = mmc_set_blockcount(card, data.blocks,
508 idata->ic.write_flag & (1 << 31));
509 if (err)
510 goto cmd_rel_host;
511 }
512
John Calixtocb87ea22011-04-26 18:56:29 -0400513 mmc_wait_for_req(card->host, &mrq);
514
515 if (cmd.error) {
516 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
517 __func__, cmd.error);
518 err = cmd.error;
519 goto cmd_rel_host;
520 }
521 if (data.error) {
522 dev_err(mmc_dev(card->host), "%s: data error %d\n",
523 __func__, data.error);
524 err = data.error;
525 goto cmd_rel_host;
526 }
527
528 /*
529 * According to the SD specs, some commands require a delay after
530 * issuing the command.
531 */
532 if (idata->ic.postsleep_min_us)
533 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
534
535 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
536 err = -EFAULT;
537 goto cmd_rel_host;
538 }
539
540 if (!idata->ic.write_flag) {
541 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
542 idata->buf, idata->buf_bytes)) {
543 err = -EFAULT;
544 goto cmd_rel_host;
545 }
546 }
547
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200548 if (is_rpmb) {
549 /*
550 * Ensure RPMB command has completed by polling CMD13
551 * "Send Status".
552 */
553 err = ioctl_rpmb_card_status_poll(card, &status, 5);
554 if (err)
555 dev_err(mmc_dev(card->host),
556 "%s: Card Status=0x%08X, error %d\n",
557 __func__, status, err);
558 }
559
John Calixtocb87ea22011-04-26 18:56:29 -0400560cmd_rel_host:
561 mmc_release_host(card->host);
562
563cmd_done:
564 mmc_blk_put(md);
Philippe De Swert1c02f002012-04-11 23:31:45 +0300565cmd_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400566 kfree(idata->buf);
567 kfree(idata);
568 return err;
569}
570
571static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
572 unsigned int cmd, unsigned long arg)
573{
574 int ret = -EINVAL;
575 if (cmd == MMC_IOC_CMD)
576 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
577 return ret;
578}
579
580#ifdef CONFIG_COMPAT
581static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
582 unsigned int cmd, unsigned long arg)
583{
584 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
585}
586#endif
587
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700588static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500589 .open = mmc_blk_open,
590 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800591 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400593 .ioctl = mmc_blk_ioctl,
594#ifdef CONFIG_COMPAT
595 .compat_ioctl = mmc_blk_compat_ioctl,
596#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597};
598
Andrei Warkentin371a6892011-04-11 18:10:25 -0500599static inline int mmc_blk_part_switch(struct mmc_card *card,
600 struct mmc_blk_data *md)
601{
602 int ret;
603 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300604
Andrei Warkentin371a6892011-04-11 18:10:25 -0500605 if (main_md->part_curr == md->part_type)
606 return 0;
607
608 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300609 u8 part_config = card->ext_csd.part_config;
610
611 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
612 part_config |= md->part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500613
614 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300615 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500616 card->ext_csd.part_time);
617 if (ret)
618 return ret;
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300619
620 card->ext_csd.part_config = part_config;
Adrian Hunter67716322011-08-29 16:42:15 +0300621 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500622
623 main_md->part_curr = md->part_type;
624 return 0;
625}
626
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700627static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
628{
629 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100630 u32 result;
631 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700632
Venkatraman Sad5fd972011-08-25 00:30:50 +0530633 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400634 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400635 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700636
637 struct scatterlist sg;
638
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700639 cmd.opcode = MMC_APP_CMD;
640 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700641 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700642
643 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700644 if (err)
645 return (u32)-1;
646 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700647 return (u32)-1;
648
649 memset(&cmd, 0, sizeof(struct mmc_command));
650
651 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
652 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700653 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700654
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700655 data.blksz = 4;
656 data.blocks = 1;
657 data.flags = MMC_DATA_READ;
658 data.sg = &sg;
659 data.sg_len = 1;
Subhash Jadavanid3804432012-06-13 17:10:43 +0530660 mmc_set_data_timeout(&data, card);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700661
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700662 mrq.cmd = &cmd;
663 mrq.data = &data;
664
Ben Dooks051913d2009-06-08 23:33:57 +0100665 blocks = kmalloc(4, GFP_KERNEL);
666 if (!blocks)
667 return (u32)-1;
668
669 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700670
671 mmc_wait_for_req(card->host, &mrq);
672
Ben Dooks051913d2009-06-08 23:33:57 +0100673 result = ntohl(*blocks);
674 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700675
Ben Dooks051913d2009-06-08 23:33:57 +0100676 if (cmd.error || data.error)
677 result = (u32)-1;
678
679 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700680}
681
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100682static int send_stop(struct mmc_card *card, u32 *status)
683{
684 struct mmc_command cmd = {0};
685 int err;
686
687 cmd.opcode = MMC_STOP_TRANSMISSION;
688 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
689 err = mmc_wait_for_cmd(card->host, &cmd, 5);
690 if (err == 0)
691 *status = cmd.resp[0];
692 return err;
693}
694
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100695static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300696{
Chris Ball1278dba2011-04-13 23:40:30 -0400697 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300698 int err;
699
Adrian Hunter504f1912008-10-16 12:55:25 +0300700 cmd.opcode = MMC_SEND_STATUS;
701 if (!mmc_host_is_spi(card->host))
702 cmd.arg = card->rca << 16;
703 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100704 err = mmc_wait_for_cmd(card->host, &cmd, retries);
705 if (err == 0)
706 *status = cmd.resp[0];
707 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300708}
709
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530710#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100711#define ERR_RETRY 2
712#define ERR_ABORT 1
713#define ERR_CONTINUE 0
714
715static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
716 bool status_valid, u32 status)
717{
718 switch (error) {
719 case -EILSEQ:
720 /* response crc error, retry the r/w cmd */
721 pr_err("%s: %s sending %s command, card status %#x\n",
722 req->rq_disk->disk_name, "response CRC error",
723 name, status);
724 return ERR_RETRY;
725
726 case -ETIMEDOUT:
727 pr_err("%s: %s sending %s command, card status %#x\n",
728 req->rq_disk->disk_name, "timed out", name, status);
729
730 /* If the status cmd initially failed, retry the r/w cmd */
731 if (!status_valid)
732 return ERR_RETRY;
733
734 /*
735 * If it was a r/w cmd crc error, or illegal command
736 * (eg, issued in wrong state) then retry - we should
737 * have corrected the state problem above.
738 */
739 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
740 return ERR_RETRY;
741
742 /* Otherwise abort the command */
743 return ERR_ABORT;
744
745 default:
746 /* We don't understand the error code the driver gave us */
747 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
748 req->rq_disk->disk_name, error, status);
749 return ERR_ABORT;
750 }
751}
752
753/*
754 * Initial r/w and stop cmd error recovery.
755 * We don't know whether the card received the r/w cmd or not, so try to
756 * restore things back to a sane state. Essentially, we do this as follows:
757 * - Obtain card status. If the first attempt to obtain card status fails,
758 * the status word will reflect the failed status cmd, not the failed
759 * r/w cmd. If we fail to obtain card status, it suggests we can no
760 * longer communicate with the card.
761 * - Check the card state. If the card received the cmd but there was a
762 * transient problem with the response, it might still be in a data transfer
763 * mode. Try to send it a stop command. If this fails, we can't recover.
764 * - If the r/w cmd failed due to a response CRC error, it was probably
765 * transient, so retry the cmd.
766 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
767 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
768 * illegal cmd, retry.
769 * Otherwise we don't understand what happened, so abort.
770 */
771static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +0900772 struct mmc_blk_request *brq, int *ecc_err, int *gen_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100773{
774 bool prev_cmd_status_valid = true;
775 u32 status, stop_status = 0;
776 int err, retry;
777
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530778 if (mmc_card_removed(card))
779 return ERR_NOMEDIUM;
780
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100781 /*
782 * Try to get card status which indicates both the card state
783 * and why there was no response. If the first attempt fails,
784 * we can't be sure the returned status is for the r/w command.
785 */
786 for (retry = 2; retry >= 0; retry--) {
787 err = get_card_status(card, &status, 0);
788 if (!err)
789 break;
790
791 prev_cmd_status_valid = false;
792 pr_err("%s: error %d sending status command, %sing\n",
793 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
794 }
795
796 /* We couldn't get a response from the card. Give up. */
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530797 if (err) {
798 /* Check if the card is removed */
799 if (mmc_detect_card_removed(card->host))
800 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100801 return ERR_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530802 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100803
Adrian Hunter67716322011-08-29 16:42:15 +0300804 /* Flag ECC errors */
805 if ((status & R1_CARD_ECC_FAILED) ||
806 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
807 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
808 *ecc_err = 1;
809
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +0900810 /* Flag General errors */
811 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
812 if ((status & R1_ERROR) ||
813 (brq->stop.resp[0] & R1_ERROR)) {
814 pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n",
815 req->rq_disk->disk_name, __func__,
816 brq->stop.resp[0], status);
817 *gen_err = 1;
818 }
819
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100820 /*
821 * Check the current card state. If it is in some data transfer
822 * mode, tell it to stop (and hopefully transition back to TRAN.)
823 */
824 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
825 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
826 err = send_stop(card, &stop_status);
827 if (err)
828 pr_err("%s: error %d sending stop command\n",
829 req->rq_disk->disk_name, err);
830
831 /*
832 * If the stop cmd also timed out, the card is probably
833 * not present, so abort. Other errors are bad news too.
834 */
835 if (err)
836 return ERR_ABORT;
Adrian Hunter67716322011-08-29 16:42:15 +0300837 if (stop_status & R1_CARD_ECC_FAILED)
838 *ecc_err = 1;
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +0900839 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
840 if (stop_status & R1_ERROR) {
841 pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
842 req->rq_disk->disk_name, __func__,
843 stop_status);
844 *gen_err = 1;
845 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100846 }
847
848 /* Check for set block count errors */
849 if (brq->sbc.error)
850 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
851 prev_cmd_status_valid, status);
852
853 /* Check for r/w command errors */
854 if (brq->cmd.error)
855 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
856 prev_cmd_status_valid, status);
857
Adrian Hunter67716322011-08-29 16:42:15 +0300858 /* Data errors */
859 if (!brq->stop.error)
860 return ERR_CONTINUE;
861
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100862 /* Now for stop errors. These aren't fatal to the transfer. */
863 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
864 req->rq_disk->disk_name, brq->stop.error,
865 brq->cmd.resp[0], status);
866
867 /*
868 * Subsitute in our own stop status as this will give the error
869 * state which happened during the execution of the r/w command.
870 */
871 if (stop_status) {
872 brq->stop.resp[0] = stop_status;
873 brq->stop.error = 0;
874 }
875 return ERR_CONTINUE;
876}
877
Adrian Hunter67716322011-08-29 16:42:15 +0300878static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
879 int type)
880{
881 int err;
882
883 if (md->reset_done & type)
884 return -EEXIST;
885
886 md->reset_done |= type;
887 err = mmc_hw_reset(host);
888 /* Ensure we switch back to the correct partition */
889 if (err != -EOPNOTSUPP) {
890 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
891 int part_err;
892
893 main_md->part_curr = main_md->part_type;
894 part_err = mmc_blk_part_switch(host->card, md);
895 if (part_err) {
896 /*
897 * We have failed to get back into the correct
898 * partition, so we need to abort the whole request.
899 */
900 return -ENODEV;
901 }
902 }
903 return err;
904}
905
906static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
907{
908 md->reset_done &= ~type;
909}
910
Adrian Hunterbd788c92010-08-11 14:17:47 -0700911static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
912{
913 struct mmc_blk_data *md = mq->data;
914 struct mmc_card *card = md->queue.card;
915 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300916 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -0700917
Adrian Hunterbd788c92010-08-11 14:17:47 -0700918 if (!mmc_can_erase(card)) {
919 err = -EOPNOTSUPP;
920 goto out;
921 }
922
923 from = blk_rq_pos(req);
924 nr = blk_rq_sectors(req);
925
Kyungmin Parkb3bf9152011-10-18 09:34:04 +0900926 if (mmc_can_discard(card))
927 arg = MMC_DISCARD_ARG;
928 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -0700929 arg = MMC_TRIM_ARG;
930 else
931 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300932retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500933 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
934 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
935 INAND_CMD38_ARG_EXT_CSD,
936 arg == MMC_TRIM_ARG ?
937 INAND_CMD38_ARG_TRIM :
938 INAND_CMD38_ARG_ERASE,
939 0);
940 if (err)
941 goto out;
942 }
Adrian Hunterbd788c92010-08-11 14:17:47 -0700943 err = mmc_erase(card, from, nr, arg);
944out:
Adrian Hunter67716322011-08-29 16:42:15 +0300945 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
946 goto retry;
947 if (!err)
948 mmc_blk_reset_success(md, type);
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +0530949 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunterbd788c92010-08-11 14:17:47 -0700950
Adrian Hunterbd788c92010-08-11 14:17:47 -0700951 return err ? 0 : 1;
952}
953
Adrian Hunter49804542010-08-11 14:17:50 -0700954static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
955 struct request *req)
956{
957 struct mmc_blk_data *md = mq->data;
958 struct mmc_card *card = md->queue.card;
Adrian Hunter28302812012-04-05 14:45:48 +0300959 unsigned int from, nr, arg, trim_arg, erase_arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300960 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -0700961
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900962 if (!(mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))) {
Adrian Hunter49804542010-08-11 14:17:50 -0700963 err = -EOPNOTSUPP;
964 goto out;
965 }
966
967 from = blk_rq_pos(req);
968 nr = blk_rq_sectors(req);
969
Adrian Hunter28302812012-04-05 14:45:48 +0300970 /* The sanitize operation is supported at v4.5 only */
971 if (mmc_can_sanitize(card)) {
972 erase_arg = MMC_ERASE_ARG;
973 trim_arg = MMC_TRIM_ARG;
974 } else {
975 erase_arg = MMC_SECURE_ERASE_ARG;
976 trim_arg = MMC_SECURE_TRIM1_ARG;
977 }
978
979 if (mmc_erase_group_aligned(card, from, nr))
980 arg = erase_arg;
981 else if (mmc_can_trim(card))
982 arg = trim_arg;
983 else {
984 err = -EINVAL;
985 goto out;
986 }
Adrian Hunter67716322011-08-29 16:42:15 +0300987retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500988 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
989 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
990 INAND_CMD38_ARG_EXT_CSD,
991 arg == MMC_SECURE_TRIM1_ARG ?
992 INAND_CMD38_ARG_SECTRIM1 :
993 INAND_CMD38_ARG_SECERASE,
994 0);
995 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +0300996 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500997 }
Adrian Hunter28302812012-04-05 14:45:48 +0300998
Adrian Hunter49804542010-08-11 14:17:50 -0700999 err = mmc_erase(card, from, nr, arg);
Adrian Hunter28302812012-04-05 14:45:48 +03001000 if (err == -EIO)
1001 goto out_retry;
1002 if (err)
1003 goto out;
1004
1005 if (arg == MMC_SECURE_TRIM1_ARG) {
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001006 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1007 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1008 INAND_CMD38_ARG_EXT_CSD,
1009 INAND_CMD38_ARG_SECTRIM2,
1010 0);
1011 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001012 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001013 }
Adrian Hunter28302812012-04-05 14:45:48 +03001014
Adrian Hunter49804542010-08-11 14:17:50 -07001015 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Adrian Hunter28302812012-04-05 14:45:48 +03001016 if (err == -EIO)
1017 goto out_retry;
1018 if (err)
1019 goto out;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001020 }
Adrian Hunter28302812012-04-05 14:45:48 +03001021
1022 if (mmc_can_sanitize(card))
1023 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1024 EXT_CSD_SANITIZE_START, 1, 0);
1025out_retry:
1026 if (err && !mmc_blk_reset(md, card->host, type))
Adrian Hunter67716322011-08-29 16:42:15 +03001027 goto retry;
1028 if (!err)
1029 mmc_blk_reset_success(md, type);
Adrian Hunter28302812012-04-05 14:45:48 +03001030out:
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301031 blk_end_request(req, err, blk_rq_bytes(req));
Adrian Hunter49804542010-08-11 14:17:50 -07001032
Adrian Hunter49804542010-08-11 14:17:50 -07001033 return err ? 0 : 1;
1034}
1035
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001036static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
1037{
1038 struct mmc_blk_data *md = mq->data;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001039 struct mmc_card *card = md->queue.card;
1040 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001041
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001042 ret = mmc_flush_cache(card);
1043 if (ret)
1044 ret = -EIO;
1045
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301046 blk_end_request_all(req, ret);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001047
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001048 return ret ? 0 : 1;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001049}
1050
1051/*
1052 * Reformat current write as a reliable write, supporting
1053 * both legacy and the enhanced reliable write MMC cards.
1054 * In each transfer we'll handle only as much as a single
1055 * reliable write can handle, thus finish the request in
1056 * partial completions.
1057 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001058static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
1059 struct mmc_card *card,
1060 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001061{
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001062 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
1063 /* Legacy mode imposes restrictions on transfers. */
1064 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
1065 brq->data.blocks = 1;
1066
1067 if (brq->data.blocks > card->ext_csd.rel_sectors)
1068 brq->data.blocks = card->ext_csd.rel_sectors;
1069 else if (brq->data.blocks < card->ext_csd.rel_sectors)
1070 brq->data.blocks = 1;
1071 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001072}
1073
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001074#define CMD_ERRORS \
1075 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
1076 R1_ADDRESS_ERROR | /* Misaligned address */ \
1077 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1078 R1_WP_VIOLATION | /* Tried to write to protected block */ \
1079 R1_CC_ERROR | /* Card controller error */ \
1080 R1_ERROR) /* General/unknown error */
1081
Per Forlinee8a43a2011-07-01 18:55:33 +02001082static int mmc_blk_err_check(struct mmc_card *card,
1083 struct mmc_async_req *areq)
Per Forlind78d4a82011-07-01 18:55:30 +02001084{
Per Forlinee8a43a2011-07-01 18:55:33 +02001085 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1086 mmc_active);
1087 struct mmc_blk_request *brq = &mq_mrq->brq;
1088 struct request *req = mq_mrq->req;
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +09001089 int ecc_err = 0, gen_err = 0;
Per Forlind78d4a82011-07-01 18:55:30 +02001090
1091 /*
1092 * sbc.error indicates a problem with the set block count
1093 * command. No data will have been transferred.
1094 *
1095 * cmd.error indicates a problem with the r/w command. No
1096 * data will have been transferred.
1097 *
1098 * stop.error indicates a problem with the stop command. Data
1099 * may have been transferred, or may still be transferring.
1100 */
Adrian Hunter67716322011-08-29 16:42:15 +03001101 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
1102 brq->data.error) {
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +09001103 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) {
Per Forlind78d4a82011-07-01 18:55:30 +02001104 case ERR_RETRY:
1105 return MMC_BLK_RETRY;
1106 case ERR_ABORT:
1107 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301108 case ERR_NOMEDIUM:
1109 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a82011-07-01 18:55:30 +02001110 case ERR_CONTINUE:
1111 break;
1112 }
1113 }
1114
1115 /*
1116 * Check for errors relating to the execution of the
1117 * initial command - such as address errors. No data
1118 * has been transferred.
1119 */
1120 if (brq->cmd.resp[0] & CMD_ERRORS) {
1121 pr_err("%s: r/w command failed, status = %#x\n",
1122 req->rq_disk->disk_name, brq->cmd.resp[0]);
1123 return MMC_BLK_ABORT;
1124 }
1125
1126 /*
1127 * Everything else is either success, or a data error of some
1128 * kind. If it was a write, we may have transitioned to
1129 * program mode, which we have to wait for it to complete.
1130 */
1131 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1132 u32 status;
Trey Ramsay8fee4762012-11-16 09:31:41 -06001133 unsigned long timeout;
1134
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +09001135 /* Check stop command response */
1136 if (brq->stop.resp[0] & R1_ERROR) {
1137 pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
1138 req->rq_disk->disk_name, __func__,
1139 brq->stop.resp[0]);
1140 gen_err = 1;
1141 }
1142
Trey Ramsay8fee4762012-11-16 09:31:41 -06001143 timeout = jiffies + msecs_to_jiffies(MMC_BLK_TIMEOUT_MS);
Per Forlind78d4a82011-07-01 18:55:30 +02001144 do {
1145 int err = get_card_status(card, &status, 5);
1146 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301147 pr_err("%s: error %d requesting status\n",
Per Forlind78d4a82011-07-01 18:55:30 +02001148 req->rq_disk->disk_name, err);
1149 return MMC_BLK_CMD_ERR;
1150 }
Trey Ramsay8fee4762012-11-16 09:31:41 -06001151
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +09001152 if (status & R1_ERROR) {
1153 pr_err("%s: %s: general error sending status command, card status %#x\n",
1154 req->rq_disk->disk_name, __func__,
1155 status);
1156 gen_err = 1;
1157 }
1158
Trey Ramsay8fee4762012-11-16 09:31:41 -06001159 /* Timeout if the device never becomes ready for data
1160 * and never leaves the program state.
1161 */
1162 if (time_after(jiffies, timeout)) {
1163 pr_err("%s: Card stuck in programming state!"\
1164 " %s %s\n", mmc_hostname(card->host),
1165 req->rq_disk->disk_name, __func__);
1166
1167 return MMC_BLK_CMD_ERR;
1168 }
Per Forlind78d4a82011-07-01 18:55:30 +02001169 /*
1170 * Some cards mishandle the status bits,
1171 * so make sure to check both the busy
1172 * indication and the card state.
1173 */
1174 } while (!(status & R1_READY_FOR_DATA) ||
1175 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1176 }
1177
KOBAYASHI Yoshitake604ae792013-07-07 07:35:45 +09001178 /* if general error occurs, retry the write operation. */
1179 if (gen_err) {
1180 pr_warn("%s: retrying write for general error\n",
1181 req->rq_disk->disk_name);
1182 return MMC_BLK_RETRY;
1183 }
1184
Per Forlind78d4a82011-07-01 18:55:30 +02001185 if (brq->data.error) {
1186 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1187 req->rq_disk->disk_name, brq->data.error,
1188 (unsigned)blk_rq_pos(req),
1189 (unsigned)blk_rq_sectors(req),
1190 brq->cmd.resp[0], brq->stop.resp[0]);
1191
1192 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001193 if (ecc_err)
1194 return MMC_BLK_ECC_ERR;
Per Forlind78d4a82011-07-01 18:55:30 +02001195 return MMC_BLK_DATA_ERR;
1196 } else {
1197 return MMC_BLK_CMD_ERR;
1198 }
1199 }
1200
Adrian Hunter67716322011-08-29 16:42:15 +03001201 if (!brq->data.bytes_xfered)
1202 return MMC_BLK_RETRY;
Per Forlind78d4a82011-07-01 18:55:30 +02001203
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001204 if (mmc_packed_cmd(mq_mrq->cmd_type)) {
1205 if (unlikely(brq->data.blocks << 9 != brq->data.bytes_xfered))
1206 return MMC_BLK_PARTIAL;
1207 else
1208 return MMC_BLK_SUCCESS;
1209 }
1210
Adrian Hunter67716322011-08-29 16:42:15 +03001211 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1212 return MMC_BLK_PARTIAL;
1213
1214 return MMC_BLK_SUCCESS;
Per Forlind78d4a82011-07-01 18:55:30 +02001215}
1216
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001217static int mmc_blk_packed_err_check(struct mmc_card *card,
1218 struct mmc_async_req *areq)
1219{
1220 struct mmc_queue_req *mq_rq = container_of(areq, struct mmc_queue_req,
1221 mmc_active);
1222 struct request *req = mq_rq->req;
1223 struct mmc_packed *packed = mq_rq->packed;
1224 int err, check, status;
1225 u8 *ext_csd;
1226
1227 BUG_ON(!packed);
1228
1229 packed->retries--;
1230 check = mmc_blk_err_check(card, areq);
1231 err = get_card_status(card, &status, 0);
1232 if (err) {
1233 pr_err("%s: error %d sending status command\n",
1234 req->rq_disk->disk_name, err);
1235 return MMC_BLK_ABORT;
1236 }
1237
1238 if (status & R1_EXCEPTION_EVENT) {
1239 ext_csd = kzalloc(512, GFP_KERNEL);
1240 if (!ext_csd) {
1241 pr_err("%s: unable to allocate buffer for ext_csd\n",
1242 req->rq_disk->disk_name);
1243 return -ENOMEM;
1244 }
1245
1246 err = mmc_send_ext_csd(card, ext_csd);
1247 if (err) {
1248 pr_err("%s: error %d sending ext_csd\n",
1249 req->rq_disk->disk_name, err);
1250 check = MMC_BLK_ABORT;
1251 goto free;
1252 }
1253
1254 if ((ext_csd[EXT_CSD_EXP_EVENTS_STATUS] &
1255 EXT_CSD_PACKED_FAILURE) &&
1256 (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1257 EXT_CSD_PACKED_GENERIC_ERROR)) {
1258 if (ext_csd[EXT_CSD_PACKED_CMD_STATUS] &
1259 EXT_CSD_PACKED_INDEXED_ERROR) {
1260 packed->idx_failure =
1261 ext_csd[EXT_CSD_PACKED_FAILURE_INDEX] - 1;
1262 check = MMC_BLK_PARTIAL;
1263 }
1264 pr_err("%s: packed cmd failed, nr %u, sectors %u, "
1265 "failure index: %d\n",
1266 req->rq_disk->disk_name, packed->nr_entries,
1267 packed->blocks, packed->idx_failure);
1268 }
1269free:
1270 kfree(ext_csd);
1271 }
1272
1273 return check;
1274}
1275
Per Forlin54d49d72011-07-01 18:55:29 +02001276static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1277 struct mmc_card *card,
1278 int disable_multi,
1279 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Per Forlin54d49d72011-07-01 18:55:29 +02001281 u32 readcmd, writecmd;
1282 struct mmc_blk_request *brq = &mqrq->brq;
1283 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 struct mmc_blk_data *md = mq->data;
Saugata Das42659002011-12-21 13:09:17 +05301285 bool do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001287 /*
1288 * Reliable writes are used to implement Forced Unit Access and
1289 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +02001290 *
1291 * XXX: this really needs a good explanation of why REQ_META
1292 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001293 */
1294 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1295 (req->cmd_flags & REQ_META)) &&
1296 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001297 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001298
Per Forlin54d49d72011-07-01 18:55:29 +02001299 memset(brq, 0, sizeof(struct mmc_blk_request));
1300 brq->mrq.cmd = &brq->cmd;
1301 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Per Forlin54d49d72011-07-01 18:55:29 +02001303 brq->cmd.arg = blk_rq_pos(req);
1304 if (!mmc_card_blockaddr(card))
1305 brq->cmd.arg <<= 9;
1306 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1307 brq->data.blksz = 512;
1308 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1309 brq->stop.arg = 0;
1310 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1311 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Per Forlin54d49d72011-07-01 18:55:29 +02001313 /*
1314 * The block layer doesn't support all sector count
1315 * restrictions, so we need to be prepared for too big
1316 * requests.
1317 */
1318 if (brq->data.blocks > card->host->max_blk_count)
1319 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001321 if (brq->data.blocks > 1) {
1322 /*
1323 * After a read error, we redo the request one sector
1324 * at a time in order to accurately determine which
1325 * sectors can be read successfully.
1326 */
1327 if (disable_multi)
1328 brq->data.blocks = 1;
1329
1330 /* Some controllers can't do multiblock reads due to hw bugs */
1331 if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1332 rq_data_dir(req) == READ)
1333 brq->data.blocks = 1;
1334 }
Per Forlin54d49d72011-07-01 18:55:29 +02001335
1336 if (brq->data.blocks > 1 || do_rel_wr) {
1337 /* SPI multiblock writes terminate using a special
1338 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001339 */
Per Forlin54d49d72011-07-01 18:55:29 +02001340 if (!mmc_host_is_spi(card->host) ||
1341 rq_data_dir(req) == READ)
1342 brq->mrq.stop = &brq->stop;
1343 readcmd = MMC_READ_MULTIPLE_BLOCK;
1344 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1345 } else {
1346 brq->mrq.stop = NULL;
1347 readcmd = MMC_READ_SINGLE_BLOCK;
1348 writecmd = MMC_WRITE_BLOCK;
1349 }
1350 if (rq_data_dir(req) == READ) {
1351 brq->cmd.opcode = readcmd;
1352 brq->data.flags |= MMC_DATA_READ;
1353 } else {
1354 brq->cmd.opcode = writecmd;
1355 brq->data.flags |= MMC_DATA_WRITE;
1356 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001357
Per Forlin54d49d72011-07-01 18:55:29 +02001358 if (do_rel_wr)
1359 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001360
Per Forlin54d49d72011-07-01 18:55:29 +02001361 /*
Saugata Das42659002011-12-21 13:09:17 +05301362 * Data tag is used only during writing meta data to speed
1363 * up write and any subsequent read of this meta data
1364 */
1365 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1366 (req->cmd_flags & REQ_META) &&
1367 (rq_data_dir(req) == WRITE) &&
1368 ((brq->data.blocks * brq->data.blksz) >=
1369 card->ext_csd.data_tag_unit_size);
1370
1371 /*
Per Forlin54d49d72011-07-01 18:55:29 +02001372 * Pre-defined multi-block transfers are preferable to
1373 * open ended-ones (and necessary for reliable writes).
1374 * However, it is not sufficient to just send CMD23,
1375 * and avoid the final CMD12, as on an error condition
1376 * CMD12 (stop) needs to be sent anyway. This, coupled
1377 * with Auto-CMD23 enhancements provided by some
1378 * hosts, means that the complexity of dealing
1379 * with this is best left to the host. If CMD23 is
1380 * supported by card and host, we'll fill sbc in and let
1381 * the host deal with handling it correctly. This means
1382 * that for hosts that don't expose MMC_CAP_CMD23, no
1383 * change of behavior will be observed.
1384 *
1385 * N.B: Some MMC cards experience perf degradation.
1386 * We'll avoid using CMD23-bounded multiblock writes for
1387 * these, while retaining features like reliable writes.
1388 */
Saugata Das42659002011-12-21 13:09:17 +05301389 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1390 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1391 do_data_tag)) {
Per Forlin54d49d72011-07-01 18:55:29 +02001392 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1393 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301394 (do_rel_wr ? (1 << 31) : 0) |
1395 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d72011-07-01 18:55:29 +02001396 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1397 brq->mrq.sbc = &brq->sbc;
1398 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001399
Per Forlin54d49d72011-07-01 18:55:29 +02001400 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001401
Per Forlin54d49d72011-07-01 18:55:29 +02001402 brq->data.sg = mqrq->sg;
1403 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001404
Per Forlin54d49d72011-07-01 18:55:29 +02001405 /*
1406 * Adjust the sg list so it is the same size as the
1407 * request.
1408 */
1409 if (brq->data.blocks != blk_rq_sectors(req)) {
1410 int i, data_size = brq->data.blocks << 9;
1411 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001412
Per Forlin54d49d72011-07-01 18:55:29 +02001413 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1414 data_size -= sg->length;
1415 if (data_size <= 0) {
1416 sg->length += data_size;
1417 i++;
1418 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001419 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001420 }
Per Forlin54d49d72011-07-01 18:55:29 +02001421 brq->data.sg_len = i;
1422 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001423
Per Forlinee8a43a2011-07-01 18:55:33 +02001424 mqrq->mmc_active.mrq = &brq->mrq;
1425 mqrq->mmc_active.err_check = mmc_blk_err_check;
1426
Per Forlin54d49d72011-07-01 18:55:29 +02001427 mmc_queue_bounce_pre(mqrq);
1428}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001430static inline u8 mmc_calc_packed_hdr_segs(struct request_queue *q,
1431 struct mmc_card *card)
1432{
1433 unsigned int hdr_sz = mmc_large_sector(card) ? 4096 : 512;
1434 unsigned int max_seg_sz = queue_max_segment_size(q);
1435 unsigned int len, nr_segs = 0;
1436
1437 do {
1438 len = min(hdr_sz, max_seg_sz);
1439 hdr_sz -= len;
1440 nr_segs++;
1441 } while (hdr_sz);
1442
1443 return nr_segs;
1444}
1445
1446static u8 mmc_blk_prep_packed_list(struct mmc_queue *mq, struct request *req)
1447{
1448 struct request_queue *q = mq->queue;
1449 struct mmc_card *card = mq->card;
1450 struct request *cur = req, *next = NULL;
1451 struct mmc_blk_data *md = mq->data;
1452 struct mmc_queue_req *mqrq = mq->mqrq_cur;
1453 bool en_rel_wr = card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN;
1454 unsigned int req_sectors = 0, phys_segments = 0;
1455 unsigned int max_blk_count, max_phys_segs;
1456 bool put_back = true;
1457 u8 max_packed_rw = 0;
1458 u8 reqs = 0;
1459
1460 if (!(md->flags & MMC_BLK_PACKED_CMD))
1461 goto no_packed;
1462
1463 if ((rq_data_dir(cur) == WRITE) &&
1464 mmc_host_packed_wr(card->host))
1465 max_packed_rw = card->ext_csd.max_packed_writes;
1466
1467 if (max_packed_rw == 0)
1468 goto no_packed;
1469
1470 if (mmc_req_rel_wr(cur) &&
1471 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1472 goto no_packed;
1473
1474 if (mmc_large_sector(card) &&
1475 !IS_ALIGNED(blk_rq_sectors(cur), 8))
1476 goto no_packed;
1477
1478 mmc_blk_clear_packed(mqrq);
1479
1480 max_blk_count = min(card->host->max_blk_count,
1481 card->host->max_req_size >> 9);
1482 if (unlikely(max_blk_count > 0xffff))
1483 max_blk_count = 0xffff;
1484
1485 max_phys_segs = queue_max_segments(q);
1486 req_sectors += blk_rq_sectors(cur);
1487 phys_segments += cur->nr_phys_segments;
1488
1489 if (rq_data_dir(cur) == WRITE) {
1490 req_sectors += mmc_large_sector(card) ? 8 : 1;
1491 phys_segments += mmc_calc_packed_hdr_segs(q, card);
1492 }
1493
1494 do {
1495 if (reqs >= max_packed_rw - 1) {
1496 put_back = false;
1497 break;
1498 }
1499
1500 spin_lock_irq(q->queue_lock);
1501 next = blk_fetch_request(q);
1502 spin_unlock_irq(q->queue_lock);
1503 if (!next) {
1504 put_back = false;
1505 break;
1506 }
1507
1508 if (mmc_large_sector(card) &&
1509 !IS_ALIGNED(blk_rq_sectors(next), 8))
1510 break;
1511
1512 if (next->cmd_flags & REQ_DISCARD ||
1513 next->cmd_flags & REQ_FLUSH)
1514 break;
1515
1516 if (rq_data_dir(cur) != rq_data_dir(next))
1517 break;
1518
1519 if (mmc_req_rel_wr(next) &&
1520 (md->flags & MMC_BLK_REL_WR) && !en_rel_wr)
1521 break;
1522
1523 req_sectors += blk_rq_sectors(next);
1524 if (req_sectors > max_blk_count)
1525 break;
1526
1527 phys_segments += next->nr_phys_segments;
1528 if (phys_segments > max_phys_segs)
1529 break;
1530
1531 list_add_tail(&next->queuelist, &mqrq->packed->list);
1532 cur = next;
1533 reqs++;
1534 } while (1);
1535
1536 if (put_back) {
1537 spin_lock_irq(q->queue_lock);
1538 blk_requeue_request(q, next);
1539 spin_unlock_irq(q->queue_lock);
1540 }
1541
1542 if (reqs > 0) {
1543 list_add(&req->queuelist, &mqrq->packed->list);
1544 mqrq->packed->nr_entries = ++reqs;
1545 mqrq->packed->retries = reqs;
1546 return reqs;
1547 }
1548
1549no_packed:
1550 mqrq->cmd_type = MMC_PACKED_NONE;
1551 return 0;
1552}
1553
1554static void mmc_blk_packed_hdr_wrq_prep(struct mmc_queue_req *mqrq,
1555 struct mmc_card *card,
1556 struct mmc_queue *mq)
1557{
1558 struct mmc_blk_request *brq = &mqrq->brq;
1559 struct request *req = mqrq->req;
1560 struct request *prq;
1561 struct mmc_blk_data *md = mq->data;
1562 struct mmc_packed *packed = mqrq->packed;
1563 bool do_rel_wr, do_data_tag;
1564 u32 *packed_cmd_hdr;
1565 u8 hdr_blocks;
1566 u8 i = 1;
1567
1568 BUG_ON(!packed);
1569
1570 mqrq->cmd_type = MMC_PACKED_WRITE;
1571 packed->blocks = 0;
1572 packed->idx_failure = MMC_PACKED_NR_IDX;
1573
1574 packed_cmd_hdr = packed->cmd_hdr;
1575 memset(packed_cmd_hdr, 0, sizeof(packed->cmd_hdr));
1576 packed_cmd_hdr[0] = (packed->nr_entries << 16) |
1577 (PACKED_CMD_WR << 8) | PACKED_CMD_VER;
1578 hdr_blocks = mmc_large_sector(card) ? 8 : 1;
1579
1580 /*
1581 * Argument for each entry of packed group
1582 */
1583 list_for_each_entry(prq, &packed->list, queuelist) {
1584 do_rel_wr = mmc_req_rel_wr(prq) && (md->flags & MMC_BLK_REL_WR);
1585 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1586 (prq->cmd_flags & REQ_META) &&
1587 (rq_data_dir(prq) == WRITE) &&
1588 ((brq->data.blocks * brq->data.blksz) >=
1589 card->ext_csd.data_tag_unit_size);
1590 /* Argument of CMD23 */
1591 packed_cmd_hdr[(i * 2)] =
1592 (do_rel_wr ? MMC_CMD23_ARG_REL_WR : 0) |
1593 (do_data_tag ? MMC_CMD23_ARG_TAG_REQ : 0) |
1594 blk_rq_sectors(prq);
1595 /* Argument of CMD18 or CMD25 */
1596 packed_cmd_hdr[((i * 2)) + 1] =
1597 mmc_card_blockaddr(card) ?
1598 blk_rq_pos(prq) : blk_rq_pos(prq) << 9;
1599 packed->blocks += blk_rq_sectors(prq);
1600 i++;
1601 }
1602
1603 memset(brq, 0, sizeof(struct mmc_blk_request));
1604 brq->mrq.cmd = &brq->cmd;
1605 brq->mrq.data = &brq->data;
1606 brq->mrq.sbc = &brq->sbc;
1607 brq->mrq.stop = &brq->stop;
1608
1609 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1610 brq->sbc.arg = MMC_CMD23_ARG_PACKED | (packed->blocks + hdr_blocks);
1611 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1612
1613 brq->cmd.opcode = MMC_WRITE_MULTIPLE_BLOCK;
1614 brq->cmd.arg = blk_rq_pos(req);
1615 if (!mmc_card_blockaddr(card))
1616 brq->cmd.arg <<= 9;
1617 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1618
1619 brq->data.blksz = 512;
1620 brq->data.blocks = packed->blocks + hdr_blocks;
1621 brq->data.flags |= MMC_DATA_WRITE;
1622
1623 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1624 brq->stop.arg = 0;
1625 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1626
1627 mmc_set_data_timeout(&brq->data, card);
1628
1629 brq->data.sg = mqrq->sg;
1630 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1631
1632 mqrq->mmc_active.mrq = &brq->mrq;
1633 mqrq->mmc_active.err_check = mmc_blk_packed_err_check;
1634
1635 mmc_queue_bounce_pre(mqrq);
1636}
1637
Adrian Hunter67716322011-08-29 16:42:15 +03001638static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1639 struct mmc_blk_request *brq, struct request *req,
1640 int ret)
1641{
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001642 struct mmc_queue_req *mq_rq;
1643 mq_rq = container_of(brq, struct mmc_queue_req, brq);
1644
Adrian Hunter67716322011-08-29 16:42:15 +03001645 /*
1646 * If this is an SD card and we're writing, we can first
1647 * mark the known good sectors as ok.
1648 *
1649 * If the card is not SD, we can still ok written sectors
1650 * as reported by the controller (which might be less than
1651 * the real number of written sectors, but never more).
1652 */
1653 if (mmc_card_sd(card)) {
1654 u32 blocks;
1655
1656 blocks = mmc_sd_num_wr_blocks(card);
1657 if (blocks != (u32)-1) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301658 ret = blk_end_request(req, 0, blocks << 9);
Adrian Hunter67716322011-08-29 16:42:15 +03001659 }
1660 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001661 if (!mmc_packed_cmd(mq_rq->cmd_type))
1662 ret = blk_end_request(req, 0, brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03001663 }
1664 return ret;
1665}
1666
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001667static int mmc_blk_end_packed_req(struct mmc_queue_req *mq_rq)
1668{
1669 struct request *prq;
1670 struct mmc_packed *packed = mq_rq->packed;
1671 int idx = packed->idx_failure, i = 0;
1672 int ret = 0;
1673
1674 BUG_ON(!packed);
1675
1676 while (!list_empty(&packed->list)) {
1677 prq = list_entry_rq(packed->list.next);
1678 if (idx == i) {
1679 /* retry from error index */
1680 packed->nr_entries -= idx;
1681 mq_rq->req = prq;
1682 ret = 1;
1683
1684 if (packed->nr_entries == MMC_PACKED_NR_SINGLE) {
1685 list_del_init(&prq->queuelist);
1686 mmc_blk_clear_packed(mq_rq);
1687 }
1688 return ret;
1689 }
1690 list_del_init(&prq->queuelist);
1691 blk_end_request(prq, 0, blk_rq_bytes(prq));
1692 i++;
1693 }
1694
1695 mmc_blk_clear_packed(mq_rq);
1696 return ret;
1697}
1698
1699static void mmc_blk_abort_packed_req(struct mmc_queue_req *mq_rq)
1700{
1701 struct request *prq;
1702 struct mmc_packed *packed = mq_rq->packed;
1703
1704 BUG_ON(!packed);
1705
1706 while (!list_empty(&packed->list)) {
1707 prq = list_entry_rq(packed->list.next);
1708 list_del_init(&prq->queuelist);
1709 blk_end_request(prq, -EIO, blk_rq_bytes(prq));
1710 }
1711
1712 mmc_blk_clear_packed(mq_rq);
1713}
1714
1715static void mmc_blk_revert_packed_req(struct mmc_queue *mq,
1716 struct mmc_queue_req *mq_rq)
1717{
1718 struct request *prq;
1719 struct request_queue *q = mq->queue;
1720 struct mmc_packed *packed = mq_rq->packed;
1721
1722 BUG_ON(!packed);
1723
1724 while (!list_empty(&packed->list)) {
1725 prq = list_entry_rq(packed->list.prev);
1726 if (prq->queuelist.prev != &packed->list) {
1727 list_del_init(&prq->queuelist);
1728 spin_lock_irq(q->queue_lock);
1729 blk_requeue_request(mq->queue, prq);
1730 spin_unlock_irq(q->queue_lock);
1731 } else {
1732 list_del_init(&prq->queuelist);
1733 }
1734 }
1735
1736 mmc_blk_clear_packed(mq_rq);
1737}
1738
Per Forlinee8a43a2011-07-01 18:55:33 +02001739static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001740{
1741 struct mmc_blk_data *md = mq->data;
1742 struct mmc_card *card = md->queue.card;
1743 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunter67716322011-08-29 16:42:15 +03001744 int ret = 1, disable_multi = 0, retry = 0, type;
Per Forlind78d4a82011-07-01 18:55:30 +02001745 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001746 struct mmc_queue_req *mq_rq;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301747 struct request *req = rqc;
Per Forlinee8a43a2011-07-01 18:55:33 +02001748 struct mmc_async_req *areq;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001749 const u8 packed_nr = 2;
1750 u8 reqs = 0;
Per Forlinee8a43a2011-07-01 18:55:33 +02001751
1752 if (!rqc && !mq->mqrq_prev->req)
1753 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001754
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001755 if (rqc)
1756 reqs = mmc_blk_prep_packed_list(mq, rqc);
1757
Per Forlin54d49d72011-07-01 18:55:29 +02001758 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001759 if (rqc) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05301760 /*
1761 * When 4KB native sector is enabled, only 8 blocks
1762 * multiple read or write is allowed
1763 */
1764 if ((brq->data.blocks & 0x07) &&
1765 (card->ext_csd.data_sector_size == 4096)) {
1766 pr_err("%s: Transfer size is not 4KB sector size aligned\n",
1767 req->rq_disk->disk_name);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001768 mq_rq = mq->mqrq_cur;
Saugata Dasa5075eb2012-05-17 16:32:21 +05301769 goto cmd_abort;
1770 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001771
1772 if (reqs >= packed_nr)
1773 mmc_blk_packed_hdr_wrq_prep(mq->mqrq_cur,
1774 card, mq);
1775 else
1776 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
Per Forlinee8a43a2011-07-01 18:55:33 +02001777 areq = &mq->mqrq_cur->mmc_active;
1778 } else
1779 areq = NULL;
1780 areq = mmc_start_req(card->host, areq, (int *) &status);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001781 if (!areq) {
1782 if (status == MMC_BLK_NEW_REQUEST)
1783 mq->flags |= MMC_QUEUE_NEW_REQUEST;
Per Forlinee8a43a2011-07-01 18:55:33 +02001784 return 0;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001785 }
Pierre Ossman98ccf142007-05-12 00:26:16 +02001786
Per Forlinee8a43a2011-07-01 18:55:33 +02001787 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1788 brq = &mq_rq->brq;
1789 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001790 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001791 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001792
Per Forlind78d4a82011-07-01 18:55:30 +02001793 switch (status) {
1794 case MMC_BLK_SUCCESS:
1795 case MMC_BLK_PARTIAL:
1796 /*
1797 * A block was successfully transferred.
1798 */
Adrian Hunter67716322011-08-29 16:42:15 +03001799 mmc_blk_reset_success(md, type);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001800
1801 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1802 ret = mmc_blk_end_packed_req(mq_rq);
1803 break;
1804 } else {
1805 ret = blk_end_request(req, 0,
Per Forlind78d4a82011-07-01 18:55:30 +02001806 brq->data.bytes_xfered);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001807 }
1808
Adrian Hunter67716322011-08-29 16:42:15 +03001809 /*
1810 * If the blk_end_request function returns non-zero even
1811 * though all data has been transferred and no errors
1812 * were returned by the host controller, it's a bug.
1813 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001814 if (status == MMC_BLK_SUCCESS && ret) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301815 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Per Forlinee8a43a2011-07-01 18:55:33 +02001816 __func__, blk_rq_bytes(req),
1817 brq->data.bytes_xfered);
1818 rqc = NULL;
1819 goto cmd_abort;
1820 }
Per Forlind78d4a82011-07-01 18:55:30 +02001821 break;
1822 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001823 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1824 if (!mmc_blk_reset(md, card->host, type))
1825 break;
1826 goto cmd_abort;
Per Forlind78d4a82011-07-01 18:55:30 +02001827 case MMC_BLK_RETRY:
1828 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001829 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001830 /* Fall through */
Per Forlind78d4a82011-07-01 18:55:30 +02001831 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001832 if (!mmc_blk_reset(md, card->host, type))
1833 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001834 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001835 case MMC_BLK_DATA_ERR: {
1836 int err;
1837
1838 err = mmc_blk_reset(md, card->host, type);
1839 if (!err)
1840 break;
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001841 if (err == -ENODEV ||
1842 mmc_packed_cmd(mq_rq->cmd_type))
Adrian Hunter67716322011-08-29 16:42:15 +03001843 goto cmd_abort;
1844 /* Fall through */
1845 }
1846 case MMC_BLK_ECC_ERR:
1847 if (brq->data.blocks > 1) {
1848 /* Redo read one sector at a time */
1849 pr_warning("%s: retrying using single block read\n",
1850 req->rq_disk->disk_name);
1851 disable_multi = 1;
1852 break;
1853 }
Per Forlind78d4a82011-07-01 18:55:30 +02001854 /*
1855 * After an error, we redo I/O one sector at a
1856 * time, so we only reach here after trying to
1857 * read a single sector.
1858 */
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301859 ret = blk_end_request(req, -EIO,
Per Forlind78d4a82011-07-01 18:55:30 +02001860 brq->data.blksz);
Per Forlinee8a43a2011-07-01 18:55:33 +02001861 if (!ret)
1862 goto start_new_req;
Per Forlind78d4a82011-07-01 18:55:30 +02001863 break;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301864 case MMC_BLK_NOMEDIUM:
1865 goto cmd_abort;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001866 default:
1867 pr_err("%s: Unhandled return value (%d)",
1868 req->rq_disk->disk_name, status);
1869 goto cmd_abort;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001870 }
1871
Per Forlinee8a43a2011-07-01 18:55:33 +02001872 if (ret) {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001873 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1874 if (!mq_rq->packed->retries)
1875 goto cmd_abort;
1876 mmc_blk_packed_hdr_wrq_prep(mq_rq, card, mq);
1877 mmc_start_req(card->host,
1878 &mq_rq->mmc_active, NULL);
1879 } else {
1880
1881 /*
1882 * In case of a incomplete request
1883 * prepare it again and resend.
1884 */
1885 mmc_blk_rw_rq_prep(mq_rq, card,
1886 disable_multi, mq);
1887 mmc_start_req(card->host,
1888 &mq_rq->mmc_active, NULL);
1889 }
Per Forlinee8a43a2011-07-01 18:55:33 +02001890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 } while (ret);
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return 1;
1894
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001895 cmd_abort:
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001896 if (mmc_packed_cmd(mq_rq->cmd_type)) {
1897 mmc_blk_abort_packed_req(mq_rq);
1898 } else {
1899 if (mmc_card_removed(card))
1900 req->cmd_flags |= REQ_QUIET;
1901 while (ret)
1902 ret = blk_end_request(req, -EIO,
1903 blk_rq_cur_bytes(req));
1904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Per Forlinee8a43a2011-07-01 18:55:33 +02001906 start_new_req:
1907 if (rqc) {
Seungwon Jeon7a819022013-01-22 19:48:07 +09001908 if (mmc_card_removed(card)) {
1909 rqc->cmd_flags |= REQ_QUIET;
1910 blk_end_request_all(rqc, -EIO);
1911 } else {
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09001912 /*
1913 * If current request is packed, it needs to put back.
1914 */
1915 if (mmc_packed_cmd(mq->mqrq_cur->cmd_type))
1916 mmc_blk_revert_packed_req(mq, mq->mqrq_cur);
1917
Seungwon Jeon7a819022013-01-22 19:48:07 +09001918 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1919 mmc_start_req(card->host,
1920 &mq->mqrq_cur->mmc_active, NULL);
1921 }
Per Forlinee8a43a2011-07-01 18:55:33 +02001922 }
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 0;
1925}
1926
Adrian Hunterbd788c92010-08-11 14:17:47 -07001927static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1928{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001929 int ret;
1930 struct mmc_blk_data *md = mq->data;
1931 struct mmc_card *card = md->queue.card;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001932 struct mmc_host *host = card->host;
1933 unsigned long flags;
Ray Jui1e063352013-10-26 11:03:44 -07001934 unsigned int cmd_flags = req ? req->cmd_flags : 0;
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001935
Per Forlinee8a43a2011-07-01 18:55:33 +02001936 if (req && !mq->mqrq_prev->req)
1937 /* claim host only for the first request */
1938 mmc_claim_host(card->host);
1939
Andrei Warkentin371a6892011-04-11 18:10:25 -05001940 ret = mmc_blk_part_switch(card, md);
1941 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03001942 if (req) {
Subhash Jadavaniecf8b5d2012-06-07 15:46:58 +05301943 blk_end_request_all(req, -EIO);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03001944 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001945 ret = 0;
1946 goto out;
1947 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001948
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001949 mq->flags &= ~MMC_QUEUE_NEW_REQUEST;
Ray Jui1e063352013-10-26 11:03:44 -07001950 if (cmd_flags & REQ_DISCARD) {
Per Forlinee8a43a2011-07-01 18:55:33 +02001951 /* complete ongoing async transfer before issuing discard */
1952 if (card->host->areq)
1953 mmc_blk_issue_rw_rq(mq, NULL);
Ian Chen3550ccd2012-08-29 15:05:36 +09001954 if (req->cmd_flags & REQ_SECURE &&
1955 !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001956 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001957 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001958 ret = mmc_blk_issue_discard_rq(mq, req);
Ray Jui1e063352013-10-26 11:03:44 -07001959 } else if (cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09001960 /* complete ongoing async transfer before issuing flush */
1961 if (card->host->areq)
1962 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001963 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001964 } else {
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05001965 if (!req && host->areq) {
1966 spin_lock_irqsave(&host->context_info.lock, flags);
1967 host->context_info.is_waiting_last_req = true;
1968 spin_unlock_irqrestore(&host->context_info.lock, flags);
1969 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001970 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001971 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001972
Andrei Warkentin371a6892011-04-11 18:10:25 -05001973out:
Seungwon Jeonef3a69c72013-03-14 15:17:13 +09001974 if ((!req && !(mq->flags & MMC_QUEUE_NEW_REQUEST)) ||
Ray Jui1e063352013-10-26 11:03:44 -07001975 (cmd_flags & MMC_REQ_SPECIAL_MASK))
Seungwon Jeonef3a69c72013-03-14 15:17:13 +09001976 /*
1977 * Release host when there are no more requests
1978 * and after special request(discard, flush) is done.
1979 * In case sepecial request, there is no reentry to
1980 * the 'mmc_blk_issue_rq' with 'mqrq_prev->req'.
1981 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001982 mmc_release_host(card->host);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001983 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001984}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Russell Kinga6f6c962006-01-03 22:38:44 +00001986static inline int mmc_blk_readonly(struct mmc_card *card)
1987{
1988 return mmc_card_readonly(card) ||
1989 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1990}
1991
Andrei Warkentin371a6892011-04-11 18:10:25 -05001992static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1993 struct device *parent,
1994 sector_t size,
1995 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001996 const char *subname,
1997 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
1999 struct mmc_blk_data *md;
2000 int devidx, ret;
2001
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002002 devidx = find_first_zero_bit(dev_use, max_devices);
2003 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return ERR_PTR(-ENOSPC);
2005 __set_bit(devidx, dev_use);
2006
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002007 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00002008 if (!md) {
2009 ret = -ENOMEM;
2010 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
Russell Kinga6f6c962006-01-03 22:38:44 +00002012
Russell Kinga6f6c962006-01-03 22:38:44 +00002013 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002014 * !subname implies we are creating main mmc_blk_data that will be
2015 * associated with mmc_card with mmc_set_drvdata. Due to device
2016 * partitions, devidx will not coincide with a per-physical card
2017 * index anymore so we keep track of a name index.
2018 */
2019 if (!subname) {
2020 md->name_idx = find_first_zero_bit(name_use, max_devices);
2021 __set_bit(md->name_idx, name_use);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002022 } else
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002023 md->name_idx = ((struct mmc_blk_data *)
2024 dev_to_disk(parent)->private_data)->name_idx;
2025
Johan Rudholmadd710e2011-12-02 08:51:06 +01002026 md->area_type = area_type;
2027
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002028 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00002029 * Set the read-only status based on the supported commands
2030 * and the write protect switch.
2031 */
2032 md->read_only = mmc_blk_readonly(card);
2033
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002034 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00002035 if (md->disk == NULL) {
2036 ret = -ENOMEM;
2037 goto err_kfree;
2038 }
2039
2040 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002041 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00002042 md->usage = 1;
2043
Adrian Hunterd09408a2011-06-23 13:40:28 +03002044 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00002045 if (ret)
2046 goto err_putdisk;
2047
Russell Kinga6f6c962006-01-03 22:38:44 +00002048 md->queue.issue_fn = mmc_blk_issue_rq;
2049 md->queue.data = md;
2050
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002051 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002052 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00002053 md->disk->fops = &mmc_bdops;
2054 md->disk->private_data = md;
2055 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002056 md->disk->driverfs_dev = parent;
2057 set_disk_ro(md->disk, md->read_only || default_ro);
Loic Pallardy53d8f972012-08-06 17:12:28 +02002058 if (area_type & MMC_BLK_DATA_AREA_RPMB)
2059 md->disk->flags |= GENHD_FL_NO_PART_SCAN;
Russell Kinga6f6c962006-01-03 22:38:44 +00002060
2061 /*
2062 * As discussed on lkml, GENHD_FL_REMOVABLE should:
2063 *
2064 * - be set for removable media with permanent block devices
2065 * - be unset for removable block devices with permanent media
2066 *
2067 * Since MMC block devices clearly fall under the second
2068 * case, we do not set GENHD_FL_REMOVABLE. Userspace
2069 * should use the block device creation/destruction hotplug
2070 * messages to tell when the card is present.
2071 */
2072
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002073 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
2074 "mmcblk%d%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00002075
Saugata Dasa5075eb2012-05-17 16:32:21 +05302076 if (mmc_card_mmc(card))
2077 blk_queue_logical_block_size(md->queue.queue,
2078 card->ext_csd.data_sector_size);
2079 else
2080 blk_queue_logical_block_size(md->queue.queue, 512);
2081
Andrei Warkentin371a6892011-04-11 18:10:25 -05002082 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002083
Andrei Warkentinf0d89972011-05-23 15:06:38 -05002084 if (mmc_host_cmd23(card->host)) {
2085 if (mmc_card_mmc(card) ||
2086 (mmc_card_sd(card) &&
2087 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
2088 md->flags |= MMC_BLK_CMD23;
2089 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002090
2091 if (mmc_card_mmc(card) &&
2092 md->flags & MMC_BLK_CMD23 &&
2093 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
2094 card->ext_csd.rel_sectors)) {
2095 md->flags |= MMC_BLK_REL_WR;
2096 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
2097 }
2098
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002099 if (mmc_card_mmc(card) &&
2100 (area_type == MMC_BLK_DATA_AREA_MAIN) &&
2101 (md->flags & MMC_BLK_CMD23) &&
2102 card->ext_csd.packed_event_en) {
2103 if (!mmc_packed_init(&md->queue, card))
2104 md->flags |= MMC_BLK_PACKED_CMD;
2105 }
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00002108
2109 err_putdisk:
2110 put_disk(md->disk);
2111 err_kfree:
2112 kfree(md);
2113 out:
2114 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
Andrei Warkentin371a6892011-04-11 18:10:25 -05002117static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
2118{
2119 sector_t size;
2120 struct mmc_blk_data *md;
2121
2122 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
2123 /*
2124 * The EXT_CSD sector count is in number or 512 byte
2125 * sectors.
2126 */
2127 size = card->ext_csd.sectors;
2128 } else {
2129 /*
2130 * The CSD capacity field is in units of read_blkbits.
2131 * set_capacity takes units of 512 bytes.
2132 */
2133 size = card->csd.capacity << (card->csd.read_blkbits - 9);
2134 }
2135
Johan Rudholmadd710e2011-12-02 08:51:06 +01002136 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
2137 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002138 return md;
2139}
2140
2141static int mmc_blk_alloc_part(struct mmc_card *card,
2142 struct mmc_blk_data *md,
2143 unsigned int part_type,
2144 sector_t size,
2145 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002146 const char *subname,
2147 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05002148{
2149 char cap_str[10];
2150 struct mmc_blk_data *part_md;
2151
2152 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002153 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002154 if (IS_ERR(part_md))
2155 return PTR_ERR(part_md);
2156 part_md->part_type = part_type;
2157 list_add(&part_md->part, &md->part);
2158
2159 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
2160 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302161 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05002162 part_md->disk->disk_name, mmc_card_id(card),
2163 mmc_card_name(card), part_md->part_type, cap_str);
2164 return 0;
2165}
2166
Namjae Jeone0c368d2011-10-06 23:41:38 +09002167/* MMC Physical partitions consist of two boot partitions and
2168 * up to four general purpose partitions.
2169 * For each partition enabled in EXT_CSD a block device will be allocatedi
2170 * to provide access to the partition.
2171 */
2172
Andrei Warkentin371a6892011-04-11 18:10:25 -05002173static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
2174{
Namjae Jeone0c368d2011-10-06 23:41:38 +09002175 int idx, ret = 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002176
2177 if (!mmc_card_mmc(card))
2178 return 0;
2179
Namjae Jeone0c368d2011-10-06 23:41:38 +09002180 for (idx = 0; idx < card->nr_parts; idx++) {
2181 if (card->part[idx].size) {
2182 ret = mmc_blk_alloc_part(card, md,
2183 card->part[idx].part_cfg,
2184 card->part[idx].size >> 9,
2185 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002186 card->part[idx].name,
2187 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09002188 if (ret)
2189 return ret;
2190 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002191 }
2192
2193 return ret;
2194}
2195
Andrei Warkentin371a6892011-04-11 18:10:25 -05002196static void mmc_blk_remove_req(struct mmc_blk_data *md)
2197{
Johan Rudholmadd710e2011-12-02 08:51:06 +01002198 struct mmc_card *card;
2199
Andrei Warkentin371a6892011-04-11 18:10:25 -05002200 if (md) {
Johan Rudholmadd710e2011-12-02 08:51:06 +01002201 card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002202 if (md->disk->flags & GENHD_FL_UP) {
2203 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002204 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2205 card->ext_csd.boot_ro_lockable)
2206 device_remove_file(disk_to_dev(md->disk),
2207 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002208
2209 /* Stop new requests from getting into the queue */
2210 del_gendisk(md->disk);
2211 }
2212
2213 /* Then flush out any already in there */
2214 mmc_cleanup_queue(&md->queue);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002215 if (md->flags & MMC_BLK_PACKED_CMD)
2216 mmc_packed_clean(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002217 mmc_blk_put(md);
2218 }
2219}
2220
2221static void mmc_blk_remove_parts(struct mmc_card *card,
2222 struct mmc_blk_data *md)
2223{
2224 struct list_head *pos, *q;
2225 struct mmc_blk_data *part_md;
2226
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002227 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002228 list_for_each_safe(pos, q, &md->part) {
2229 part_md = list_entry(pos, struct mmc_blk_data, part);
2230 list_del(pos);
2231 mmc_blk_remove_req(part_md);
2232 }
2233}
2234
2235static int mmc_add_disk(struct mmc_blk_data *md)
2236{
2237 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002238 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002239
2240 add_disk(md->disk);
2241 md->force_ro.show = force_ro_show;
2242 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05302243 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002244 md->force_ro.attr.name = "force_ro";
2245 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
2246 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
2247 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01002248 goto force_ro_fail;
2249
2250 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
2251 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04002252 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01002253
2254 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
2255 mode = S_IRUGO;
2256 else
2257 mode = S_IRUGO | S_IWUSR;
2258
2259 md->power_ro_lock.show = power_ro_lock_show;
2260 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01002261 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01002262 md->power_ro_lock.attr.mode = mode;
2263 md->power_ro_lock.attr.name =
2264 "ro_lock_until_next_power_on";
2265 ret = device_create_file(disk_to_dev(md->disk),
2266 &md->power_ro_lock);
2267 if (ret)
2268 goto power_ro_lock_fail;
2269 }
2270 return ret;
2271
2272power_ro_lock_fail:
2273 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
2274force_ro_fail:
2275 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002276
2277 return ret;
2278}
2279
Chris Ballc59d4472011-11-11 22:01:43 -05002280#define CID_MANFID_SANDISK 0x2
2281#define CID_MANFID_TOSHIBA 0x11
2282#define CID_MANFID_MICRON 0x13
Ian Chen3550ccd2012-08-29 15:05:36 +09002283#define CID_MANFID_SAMSUNG 0x15
Chris Ballc59d4472011-11-11 22:01:43 -05002284
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002285static const struct mmc_fixup blk_fixups[] =
2286{
Chris Ballc59d4472011-11-11 22:01:43 -05002287 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
2288 MMC_QUIRK_INAND_CMD38),
2289 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
2290 MMC_QUIRK_INAND_CMD38),
2291 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
2292 MMC_QUIRK_INAND_CMD38),
2293 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
2294 MMC_QUIRK_INAND_CMD38),
2295 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
2296 MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002297
2298 /*
2299 * Some MMC cards experience performance degradation with CMD23
2300 * instead of CMD12-bounded multiblock transfers. For now we'll
2301 * black list what's bad...
2302 * - Certain Toshiba cards.
2303 *
2304 * N.B. This doesn't affect SD cards.
2305 */
Chris Ballc59d4472011-11-11 22:01:43 -05002306 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002307 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002308 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002309 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05002310 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002311 MMC_QUIRK_BLK_NO_CMD23),
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002312
2313 /*
2314 * Some Micron MMC cards needs longer data read timeout than
2315 * indicated in CSD.
2316 */
Chris Ballc59d4472011-11-11 22:01:43 -05002317 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01002318 MMC_QUIRK_LONG_READ_TIME),
2319
Ian Chen3550ccd2012-08-29 15:05:36 +09002320 /*
2321 * On these Samsung MoviNAND parts, performing secure erase or
2322 * secure trim can result in unrecoverable corruption due to a
2323 * firmware bug.
2324 */
2325 MMC_FIXUP("M8G2FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2326 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2327 MMC_FIXUP("MAG4FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2328 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2329 MMC_FIXUP("MBG8FA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2330 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2331 MMC_FIXUP("MCGAFA", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2332 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2333 MMC_FIXUP("VAL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2334 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2335 MMC_FIXUP("VYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2336 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2337 MMC_FIXUP("KYL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2338 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2339 MMC_FIXUP("VZL00M", CID_MANFID_SAMSUNG, CID_OEMID_ANY, add_quirk_mmc,
2340 MMC_QUIRK_SEC_ERASE_TRIM_BROKEN),
2341
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002342 END_FIXUP
2343};
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345static int mmc_blk_probe(struct mmc_card *card)
2346{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002347 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002348 char cap_str[10];
2349
Pierre Ossman912490d2005-05-21 10:27:02 +01002350 /*
2351 * Check that the card supports the command class(es) we need.
2352 */
2353 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 return -ENODEV;
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 md = mmc_blk_alloc(card);
2357 if (IS_ERR(md))
2358 return PTR_ERR(md);
2359
Yi Li444122f2009-02-05 15:31:57 +08002360 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002361 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302362 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02002364 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Andrei Warkentin371a6892011-04-11 18:10:25 -05002366 if (mmc_blk_alloc_parts(card, md))
2367 goto out;
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 mmc_set_drvdata(card, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04002370 mmc_fixup_device(card, blk_fixups);
2371
Andrei Warkentin371a6892011-04-11 18:10:25 -05002372 if (mmc_add_disk(md))
2373 goto out;
2374
2375 list_for_each_entry(part_md, &md->part, part) {
2376 if (mmc_add_disk(part_md))
2377 goto out;
2378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 return 0;
2380
2381 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05002382 mmc_blk_remove_parts(card, md);
2383 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01002384 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386
2387static void mmc_blk_remove(struct mmc_card *card)
2388{
2389 struct mmc_blk_data *md = mmc_get_drvdata(card);
2390
Andrei Warkentin371a6892011-04-11 18:10:25 -05002391 mmc_blk_remove_parts(card, md);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03002392 mmc_claim_host(card->host);
2393 mmc_blk_part_switch(card, md);
2394 mmc_release_host(card->host);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002395 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 mmc_set_drvdata(card, NULL);
2397}
2398
2399#ifdef CONFIG_PM
Chuanxiao Dong32d317c2012-04-11 19:54:38 +08002400static int mmc_blk_suspend(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002402 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 struct mmc_blk_data *md = mmc_get_drvdata(card);
2404
2405 if (md) {
2406 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002407 list_for_each_entry(part_md, &md->part, part) {
2408 mmc_queue_suspend(&part_md->queue);
2409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
2411 return 0;
2412}
2413
2414static int mmc_blk_resume(struct mmc_card *card)
2415{
Andrei Warkentin371a6892011-04-11 18:10:25 -05002416 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 struct mmc_blk_data *md = mmc_get_drvdata(card);
2418
2419 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05002420 /*
2421 * Resume involves the card going into idle state,
2422 * so current partition is always the main one.
2423 */
2424 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002426 list_for_each_entry(part_md, &md->part, part) {
2427 mmc_queue_resume(&part_md->queue);
2428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
2430 return 0;
2431}
2432#else
2433#define mmc_blk_suspend NULL
2434#define mmc_blk_resume NULL
2435#endif
2436
2437static struct mmc_driver mmc_driver = {
2438 .drv = {
2439 .name = "mmcblk",
2440 },
2441 .probe = mmc_blk_probe,
2442 .remove = mmc_blk_remove,
2443 .suspend = mmc_blk_suspend,
2444 .resume = mmc_blk_resume,
2445};
2446
2447static int __init mmc_blk_init(void)
2448{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002449 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002451 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
2452 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
2453
2454 max_devices = 256 / perdev_minors;
2455
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002456 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
2457 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002460 res = mmc_register_driver(&mmc_driver);
2461 if (res)
2462 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09002464 return 0;
2465 out2:
2466 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 out:
2468 return res;
2469}
2470
2471static void __exit mmc_blk_exit(void)
2472{
2473 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002474 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
2477module_init(mmc_blk_init);
2478module_exit(mmc_blk_exit);
2479
2480MODULE_LICENSE("GPL");
2481MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
2482