blob: 91cda7551a607ed8592327ec99e51642cd18eddc [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
60
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020061static DEFINE_MUTEX(block_mutex);
Olof Johansson5e71b7a2010-09-17 21:19:57 -040062
63/*
64 * The defaults come from config options but can be overriden by module
65 * or bootarg options.
66 */
67static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
68
69/*
70 * We've only got one major, so number of mmcblk devices is
71 * limited to 256 / number of minors per device.
72 */
73static int max_devices;
74
75/* 256 minors, so at most 256 separate devices */
76static DECLARE_BITMAP(dev_use, 256);
Andrei Warkentinf06c9152011-04-21 22:46:13 -050077static DECLARE_BITMAP(name_use, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * There is one mmc_blk_data per slot.
81 */
82struct mmc_blk_data {
83 spinlock_t lock;
84 struct gendisk *disk;
85 struct mmc_queue queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -050086 struct list_head part;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Andrei Warkentind0c97cf2011-05-23 15:06:36 -050088 unsigned int flags;
89#define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */
90#define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 unsigned int usage;
Russell Kinga6f6c962006-01-03 22:38:44 +000093 unsigned int read_only;
Andrei Warkentin371a6892011-04-11 18:10:25 -050094 unsigned int part_type;
Andrei Warkentinf06c9152011-04-21 22:46:13 -050095 unsigned int name_idx;
Adrian Hunter67716322011-08-29 16:42:15 +030096 unsigned int reset_done;
97#define MMC_BLK_READ BIT(0)
98#define MMC_BLK_WRITE BIT(1)
99#define MMC_BLK_DISCARD BIT(2)
100#define MMC_BLK_SECDISCARD BIT(3)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500101
102 /*
103 * Only set in main mmc_blk_data associated
104 * with mmc_card with mmc_set_drvdata, and keeps
105 * track of the current selected device partition.
106 */
107 unsigned int part_curr;
108 struct device_attribute force_ro;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100109 struct device_attribute power_ro_lock;
110 int area_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
Arjan van de Vena621aae2006-01-12 18:43:35 +0000113static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Per Forlind78d4a82011-07-01 18:55:30 +0200115enum mmc_blk_status {
116 MMC_BLK_SUCCESS = 0,
117 MMC_BLK_PARTIAL,
Per Forlind78d4a82011-07-01 18:55:30 +0200118 MMC_BLK_CMD_ERR,
Adrian Hunter67716322011-08-29 16:42:15 +0300119 MMC_BLK_RETRY,
Per Forlind78d4a82011-07-01 18:55:30 +0200120 MMC_BLK_ABORT,
Adrian Hunter67716322011-08-29 16:42:15 +0300121 MMC_BLK_DATA_ERR,
122 MMC_BLK_ECC_ERR,
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530123 MMC_BLK_NOMEDIUM,
Per Forlind78d4a82011-07-01 18:55:30 +0200124};
125
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400126module_param(perdev_minors, int, 0444);
127MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
130{
131 struct mmc_blk_data *md;
132
Arjan van de Vena621aae2006-01-12 18:43:35 +0000133 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 md = disk->private_data;
135 if (md && md->usage == 0)
136 md = NULL;
137 if (md)
138 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000139 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 return md;
142}
143
Andrei Warkentin371a6892011-04-11 18:10:25 -0500144static inline int mmc_get_devidx(struct gendisk *disk)
145{
146 int devmaj = MAJOR(disk_devt(disk));
147 int devidx = MINOR(disk_devt(disk)) / perdev_minors;
148
149 if (!devmaj)
150 devidx = disk->first_minor / perdev_minors;
151 return devidx;
152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static void mmc_blk_put(struct mmc_blk_data *md)
155{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000156 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 md->usage--;
158 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500159 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800160 blk_cleanup_queue(md->queue.queue);
161
David Woodhouse1dff3142007-11-21 18:45:12 +0100162 __clear_bit(devidx, dev_use);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 kfree(md);
166 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000167 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Johan Rudholmadd710e2011-12-02 08:51:06 +0100170static ssize_t power_ro_lock_show(struct device *dev,
171 struct device_attribute *attr, char *buf)
172{
173 int ret;
174 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
175 struct mmc_card *card = md->queue.card;
176 int locked = 0;
177
178 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
179 locked = 2;
180 else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
181 locked = 1;
182
183 ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
184
185 return ret;
186}
187
188static ssize_t power_ro_lock_store(struct device *dev,
189 struct device_attribute *attr, const char *buf, size_t count)
190{
191 int ret;
192 struct mmc_blk_data *md, *part_md;
193 struct mmc_card *card;
194 unsigned long set;
195
196 if (kstrtoul(buf, 0, &set))
197 return -EINVAL;
198
199 if (set != 1)
200 return count;
201
202 md = mmc_blk_get(dev_to_disk(dev));
203 card = md->queue.card;
204
205 mmc_claim_host(card->host);
206
207 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
208 card->ext_csd.boot_ro_lock |
209 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
210 card->ext_csd.part_time);
211 if (ret)
212 pr_err("%s: Locking boot partition ro until next power on failed: %d\n", md->disk->disk_name, ret);
213 else
214 card->ext_csd.boot_ro_lock |= EXT_CSD_BOOT_WP_B_PWR_WP_EN;
215
216 mmc_release_host(card->host);
217
218 if (!ret) {
219 pr_info("%s: Locking boot partition ro until next power on\n",
220 md->disk->disk_name);
221 set_disk_ro(md->disk, 1);
222
223 list_for_each_entry(part_md, &md->part, part)
224 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
225 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
226 set_disk_ro(part_md->disk, 1);
227 }
228 }
229
230 mmc_blk_put(md);
231 return count;
232}
233
Andrei Warkentin371a6892011-04-11 18:10:25 -0500234static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
235 char *buf)
236{
237 int ret;
238 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
239
240 ret = snprintf(buf, PAGE_SIZE, "%d",
241 get_disk_ro(dev_to_disk(dev)) ^
242 md->read_only);
243 mmc_blk_put(md);
244 return ret;
245}
246
247static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
248 const char *buf, size_t count)
249{
250 int ret;
251 char *end;
252 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
253 unsigned long set = simple_strtoul(buf, &end, 0);
254 if (end == buf) {
255 ret = -EINVAL;
256 goto out;
257 }
258
259 set_disk_ro(dev_to_disk(dev), set || md->read_only);
260 ret = count;
261out:
262 mmc_blk_put(md);
263 return ret;
264}
265
Al Viroa5a15612008-03-02 10:33:30 -0500266static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Al Viroa5a15612008-03-02 10:33:30 -0500268 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int ret = -ENXIO;
270
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200271 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (md) {
273 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500274 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700276
Al Viroa5a15612008-03-02 10:33:30 -0500277 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700278 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700279 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200282 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 return ret;
285}
286
Al Viroa5a15612008-03-02 10:33:30 -0500287static int mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Al Viroa5a15612008-03-02 10:33:30 -0500289 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200291 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200293 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return 0;
295}
296
297static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800298mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800300 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
301 geo->heads = 4;
302 geo->sectors = 16;
303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
John Calixtocb87ea22011-04-26 18:56:29 -0400306struct mmc_blk_ioc_data {
307 struct mmc_ioc_cmd ic;
308 unsigned char *buf;
309 u64 buf_bytes;
310};
311
312static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
313 struct mmc_ioc_cmd __user *user)
314{
315 struct mmc_blk_ioc_data *idata;
316 int err;
317
318 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
319 if (!idata) {
320 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400321 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400322 }
323
324 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
325 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400326 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400327 }
328
329 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
330 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
331 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400332 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400333 }
334
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100335 if (!idata->buf_bytes)
336 return idata;
337
John Calixtocb87ea22011-04-26 18:56:29 -0400338 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
339 if (!idata->buf) {
340 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400341 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400342 }
343
344 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
345 idata->ic.data_ptr, idata->buf_bytes)) {
346 err = -EFAULT;
347 goto copy_err;
348 }
349
350 return idata;
351
352copy_err:
353 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400354idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400355 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400356out:
John Calixtocb87ea22011-04-26 18:56:29 -0400357 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400358}
359
360static int mmc_blk_ioctl_cmd(struct block_device *bdev,
361 struct mmc_ioc_cmd __user *ic_ptr)
362{
363 struct mmc_blk_ioc_data *idata;
364 struct mmc_blk_data *md;
365 struct mmc_card *card;
366 struct mmc_command cmd = {0};
367 struct mmc_data data = {0};
Venkatraman Sad5fd972011-08-25 00:30:50 +0530368 struct mmc_request mrq = {NULL};
John Calixtocb87ea22011-04-26 18:56:29 -0400369 struct scatterlist sg;
370 int err;
371
372 /*
373 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
374 * whole block device, not on a partition. This prevents overspray
375 * between sibling partitions.
376 */
377 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
378 return -EPERM;
379
380 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
381 if (IS_ERR(idata))
382 return PTR_ERR(idata);
383
John Calixtocb87ea22011-04-26 18:56:29 -0400384 md = mmc_blk_get(bdev->bd_disk);
385 if (!md) {
386 err = -EINVAL;
Philippe De Swert1c02f002012-04-11 23:31:45 +0300387 goto cmd_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400388 }
389
390 card = md->queue.card;
391 if (IS_ERR(card)) {
392 err = PTR_ERR(card);
393 goto cmd_done;
394 }
395
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100396 cmd.opcode = idata->ic.opcode;
397 cmd.arg = idata->ic.arg;
398 cmd.flags = idata->ic.flags;
399
400 if (idata->buf_bytes) {
401 data.sg = &sg;
402 data.sg_len = 1;
403 data.blksz = idata->ic.blksz;
404 data.blocks = idata->ic.blocks;
405
406 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
407
408 if (idata->ic.write_flag)
409 data.flags = MMC_DATA_WRITE;
410 else
411 data.flags = MMC_DATA_READ;
412
413 /* data.flags must already be set before doing this. */
414 mmc_set_data_timeout(&data, card);
415
416 /* Allow overriding the timeout_ns for empirical tuning. */
417 if (idata->ic.data_timeout_ns)
418 data.timeout_ns = idata->ic.data_timeout_ns;
419
420 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
421 /*
422 * Pretend this is a data transfer and rely on the
423 * host driver to compute timeout. When all host
424 * drivers support cmd.cmd_timeout for R1B, this
425 * can be changed to:
426 *
427 * mrq.data = NULL;
428 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
429 */
430 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
431 }
432
433 mrq.data = &data;
434 }
435
436 mrq.cmd = &cmd;
437
John Calixtocb87ea22011-04-26 18:56:29 -0400438 mmc_claim_host(card->host);
439
440 if (idata->ic.is_acmd) {
441 err = mmc_app_cmd(card->host, card);
442 if (err)
443 goto cmd_rel_host;
444 }
445
John Calixtocb87ea22011-04-26 18:56:29 -0400446 mmc_wait_for_req(card->host, &mrq);
447
448 if (cmd.error) {
449 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
450 __func__, cmd.error);
451 err = cmd.error;
452 goto cmd_rel_host;
453 }
454 if (data.error) {
455 dev_err(mmc_dev(card->host), "%s: data error %d\n",
456 __func__, data.error);
457 err = data.error;
458 goto cmd_rel_host;
459 }
460
461 /*
462 * According to the SD specs, some commands require a delay after
463 * issuing the command.
464 */
465 if (idata->ic.postsleep_min_us)
466 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
467
468 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
469 err = -EFAULT;
470 goto cmd_rel_host;
471 }
472
473 if (!idata->ic.write_flag) {
474 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
475 idata->buf, idata->buf_bytes)) {
476 err = -EFAULT;
477 goto cmd_rel_host;
478 }
479 }
480
481cmd_rel_host:
482 mmc_release_host(card->host);
483
484cmd_done:
485 mmc_blk_put(md);
Philippe De Swert1c02f002012-04-11 23:31:45 +0300486cmd_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400487 kfree(idata->buf);
488 kfree(idata);
489 return err;
490}
491
492static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
493 unsigned int cmd, unsigned long arg)
494{
495 int ret = -EINVAL;
496 if (cmd == MMC_IOC_CMD)
497 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
498 return ret;
499}
500
501#ifdef CONFIG_COMPAT
502static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
503 unsigned int cmd, unsigned long arg)
504{
505 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
506}
507#endif
508
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700509static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500510 .open = mmc_blk_open,
511 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800512 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400514 .ioctl = mmc_blk_ioctl,
515#ifdef CONFIG_COMPAT
516 .compat_ioctl = mmc_blk_compat_ioctl,
517#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518};
519
Andrei Warkentin371a6892011-04-11 18:10:25 -0500520static inline int mmc_blk_part_switch(struct mmc_card *card,
521 struct mmc_blk_data *md)
522{
523 int ret;
524 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300525
Andrei Warkentin371a6892011-04-11 18:10:25 -0500526 if (main_md->part_curr == md->part_type)
527 return 0;
528
529 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300530 u8 part_config = card->ext_csd.part_config;
531
532 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
533 part_config |= md->part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500534
535 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300536 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500537 card->ext_csd.part_time);
538 if (ret)
539 return ret;
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300540
541 card->ext_csd.part_config = part_config;
Adrian Hunter67716322011-08-29 16:42:15 +0300542 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500543
544 main_md->part_curr = md->part_type;
545 return 0;
546}
547
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700548static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
549{
550 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100551 u32 result;
552 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700553
Venkatraman Sad5fd972011-08-25 00:30:50 +0530554 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400555 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400556 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700557 unsigned int timeout_us;
558
559 struct scatterlist sg;
560
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700561 cmd.opcode = MMC_APP_CMD;
562 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700563 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700564
565 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700566 if (err)
567 return (u32)-1;
568 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700569 return (u32)-1;
570
571 memset(&cmd, 0, sizeof(struct mmc_command));
572
573 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
574 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700575 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700576
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700577 data.timeout_ns = card->csd.tacc_ns * 100;
578 data.timeout_clks = card->csd.tacc_clks * 100;
579
580 timeout_us = data.timeout_ns / 1000;
581 timeout_us += data.timeout_clks * 1000 /
582 (card->host->ios.clock / 1000);
583
584 if (timeout_us > 100000) {
585 data.timeout_ns = 100000000;
586 data.timeout_clks = 0;
587 }
588
589 data.blksz = 4;
590 data.blocks = 1;
591 data.flags = MMC_DATA_READ;
592 data.sg = &sg;
593 data.sg_len = 1;
594
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700595 mrq.cmd = &cmd;
596 mrq.data = &data;
597
Ben Dooks051913d2009-06-08 23:33:57 +0100598 blocks = kmalloc(4, GFP_KERNEL);
599 if (!blocks)
600 return (u32)-1;
601
602 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700603
604 mmc_wait_for_req(card->host, &mrq);
605
Ben Dooks051913d2009-06-08 23:33:57 +0100606 result = ntohl(*blocks);
607 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700608
Ben Dooks051913d2009-06-08 23:33:57 +0100609 if (cmd.error || data.error)
610 result = (u32)-1;
611
612 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700613}
614
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100615static int send_stop(struct mmc_card *card, u32 *status)
616{
617 struct mmc_command cmd = {0};
618 int err;
619
620 cmd.opcode = MMC_STOP_TRANSMISSION;
621 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
622 err = mmc_wait_for_cmd(card->host, &cmd, 5);
623 if (err == 0)
624 *status = cmd.resp[0];
625 return err;
626}
627
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100628static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300629{
Chris Ball1278dba2011-04-13 23:40:30 -0400630 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300631 int err;
632
Adrian Hunter504f1912008-10-16 12:55:25 +0300633 cmd.opcode = MMC_SEND_STATUS;
634 if (!mmc_host_is_spi(card->host))
635 cmd.arg = card->rca << 16;
636 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100637 err = mmc_wait_for_cmd(card->host, &cmd, retries);
638 if (err == 0)
639 *status = cmd.resp[0];
640 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300641}
642
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530643#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100644#define ERR_RETRY 2
645#define ERR_ABORT 1
646#define ERR_CONTINUE 0
647
648static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
649 bool status_valid, u32 status)
650{
651 switch (error) {
652 case -EILSEQ:
653 /* response crc error, retry the r/w cmd */
654 pr_err("%s: %s sending %s command, card status %#x\n",
655 req->rq_disk->disk_name, "response CRC error",
656 name, status);
657 return ERR_RETRY;
658
659 case -ETIMEDOUT:
660 pr_err("%s: %s sending %s command, card status %#x\n",
661 req->rq_disk->disk_name, "timed out", name, status);
662
663 /* If the status cmd initially failed, retry the r/w cmd */
664 if (!status_valid)
665 return ERR_RETRY;
666
667 /*
668 * If it was a r/w cmd crc error, or illegal command
669 * (eg, issued in wrong state) then retry - we should
670 * have corrected the state problem above.
671 */
672 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
673 return ERR_RETRY;
674
675 /* Otherwise abort the command */
676 return ERR_ABORT;
677
678 default:
679 /* We don't understand the error code the driver gave us */
680 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
681 req->rq_disk->disk_name, error, status);
682 return ERR_ABORT;
683 }
684}
685
686/*
687 * Initial r/w and stop cmd error recovery.
688 * We don't know whether the card received the r/w cmd or not, so try to
689 * restore things back to a sane state. Essentially, we do this as follows:
690 * - Obtain card status. If the first attempt to obtain card status fails,
691 * the status word will reflect the failed status cmd, not the failed
692 * r/w cmd. If we fail to obtain card status, it suggests we can no
693 * longer communicate with the card.
694 * - Check the card state. If the card received the cmd but there was a
695 * transient problem with the response, it might still be in a data transfer
696 * mode. Try to send it a stop command. If this fails, we can't recover.
697 * - If the r/w cmd failed due to a response CRC error, it was probably
698 * transient, so retry the cmd.
699 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
700 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
701 * illegal cmd, retry.
702 * Otherwise we don't understand what happened, so abort.
703 */
704static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
Adrian Hunter67716322011-08-29 16:42:15 +0300705 struct mmc_blk_request *brq, int *ecc_err)
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100706{
707 bool prev_cmd_status_valid = true;
708 u32 status, stop_status = 0;
709 int err, retry;
710
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530711 if (mmc_card_removed(card))
712 return ERR_NOMEDIUM;
713
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100714 /*
715 * Try to get card status which indicates both the card state
716 * and why there was no response. If the first attempt fails,
717 * we can't be sure the returned status is for the r/w command.
718 */
719 for (retry = 2; retry >= 0; retry--) {
720 err = get_card_status(card, &status, 0);
721 if (!err)
722 break;
723
724 prev_cmd_status_valid = false;
725 pr_err("%s: error %d sending status command, %sing\n",
726 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
727 }
728
729 /* We couldn't get a response from the card. Give up. */
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530730 if (err) {
731 /* Check if the card is removed */
732 if (mmc_detect_card_removed(card->host))
733 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100734 return ERR_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +0530735 }
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100736
Adrian Hunter67716322011-08-29 16:42:15 +0300737 /* Flag ECC errors */
738 if ((status & R1_CARD_ECC_FAILED) ||
739 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
740 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
741 *ecc_err = 1;
742
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100743 /*
744 * Check the current card state. If it is in some data transfer
745 * mode, tell it to stop (and hopefully transition back to TRAN.)
746 */
747 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
748 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
749 err = send_stop(card, &stop_status);
750 if (err)
751 pr_err("%s: error %d sending stop command\n",
752 req->rq_disk->disk_name, err);
753
754 /*
755 * If the stop cmd also timed out, the card is probably
756 * not present, so abort. Other errors are bad news too.
757 */
758 if (err)
759 return ERR_ABORT;
Adrian Hunter67716322011-08-29 16:42:15 +0300760 if (stop_status & R1_CARD_ECC_FAILED)
761 *ecc_err = 1;
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100762 }
763
764 /* Check for set block count errors */
765 if (brq->sbc.error)
766 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
767 prev_cmd_status_valid, status);
768
769 /* Check for r/w command errors */
770 if (brq->cmd.error)
771 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
772 prev_cmd_status_valid, status);
773
Adrian Hunter67716322011-08-29 16:42:15 +0300774 /* Data errors */
775 if (!brq->stop.error)
776 return ERR_CONTINUE;
777
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100778 /* Now for stop errors. These aren't fatal to the transfer. */
779 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
780 req->rq_disk->disk_name, brq->stop.error,
781 brq->cmd.resp[0], status);
782
783 /*
784 * Subsitute in our own stop status as this will give the error
785 * state which happened during the execution of the r/w command.
786 */
787 if (stop_status) {
788 brq->stop.resp[0] = stop_status;
789 brq->stop.error = 0;
790 }
791 return ERR_CONTINUE;
792}
793
Adrian Hunter67716322011-08-29 16:42:15 +0300794static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
795 int type)
796{
797 int err;
798
799 if (md->reset_done & type)
800 return -EEXIST;
801
802 md->reset_done |= type;
803 err = mmc_hw_reset(host);
804 /* Ensure we switch back to the correct partition */
805 if (err != -EOPNOTSUPP) {
806 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
807 int part_err;
808
809 main_md->part_curr = main_md->part_type;
810 part_err = mmc_blk_part_switch(host->card, md);
811 if (part_err) {
812 /*
813 * We have failed to get back into the correct
814 * partition, so we need to abort the whole request.
815 */
816 return -ENODEV;
817 }
818 }
819 return err;
820}
821
822static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
823{
824 md->reset_done &= ~type;
825}
826
Adrian Hunterbd788c92010-08-11 14:17:47 -0700827static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
828{
829 struct mmc_blk_data *md = mq->data;
830 struct mmc_card *card = md->queue.card;
831 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300832 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -0700833
Adrian Hunterbd788c92010-08-11 14:17:47 -0700834 if (!mmc_can_erase(card)) {
835 err = -EOPNOTSUPP;
836 goto out;
837 }
838
839 from = blk_rq_pos(req);
840 nr = blk_rq_sectors(req);
841
Kyungmin Parkb3bf9152011-10-18 09:34:04 +0900842 if (mmc_can_discard(card))
843 arg = MMC_DISCARD_ARG;
844 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -0700845 arg = MMC_TRIM_ARG;
846 else
847 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300848retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500849 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
850 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
851 INAND_CMD38_ARG_EXT_CSD,
852 arg == MMC_TRIM_ARG ?
853 INAND_CMD38_ARG_TRIM :
854 INAND_CMD38_ARG_ERASE,
855 0);
856 if (err)
857 goto out;
858 }
Adrian Hunterbd788c92010-08-11 14:17:47 -0700859 err = mmc_erase(card, from, nr, arg);
860out:
Adrian Hunter67716322011-08-29 16:42:15 +0300861 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
862 goto retry;
863 if (!err)
864 mmc_blk_reset_success(md, type);
Adrian Hunterbd788c92010-08-11 14:17:47 -0700865 spin_lock_irq(&md->lock);
866 __blk_end_request(req, err, blk_rq_bytes(req));
867 spin_unlock_irq(&md->lock);
868
Adrian Hunterbd788c92010-08-11 14:17:47 -0700869 return err ? 0 : 1;
870}
871
Adrian Hunter49804542010-08-11 14:17:50 -0700872static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
873 struct request *req)
874{
875 struct mmc_blk_data *md = mq->data;
876 struct mmc_card *card = md->queue.card;
Adrian Hunter28302812012-04-05 14:45:48 +0300877 unsigned int from, nr, arg, trim_arg, erase_arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300878 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -0700879
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900880 if (!(mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))) {
Adrian Hunter49804542010-08-11 14:17:50 -0700881 err = -EOPNOTSUPP;
882 goto out;
883 }
884
885 from = blk_rq_pos(req);
886 nr = blk_rq_sectors(req);
887
Adrian Hunter28302812012-04-05 14:45:48 +0300888 /* The sanitize operation is supported at v4.5 only */
889 if (mmc_can_sanitize(card)) {
890 erase_arg = MMC_ERASE_ARG;
891 trim_arg = MMC_TRIM_ARG;
892 } else {
893 erase_arg = MMC_SECURE_ERASE_ARG;
894 trim_arg = MMC_SECURE_TRIM1_ARG;
895 }
896
897 if (mmc_erase_group_aligned(card, from, nr))
898 arg = erase_arg;
899 else if (mmc_can_trim(card))
900 arg = trim_arg;
901 else {
902 err = -EINVAL;
903 goto out;
904 }
Adrian Hunter67716322011-08-29 16:42:15 +0300905retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500906 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
907 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
908 INAND_CMD38_ARG_EXT_CSD,
909 arg == MMC_SECURE_TRIM1_ARG ?
910 INAND_CMD38_ARG_SECTRIM1 :
911 INAND_CMD38_ARG_SECERASE,
912 0);
913 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +0300914 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500915 }
Adrian Hunter28302812012-04-05 14:45:48 +0300916
Adrian Hunter49804542010-08-11 14:17:50 -0700917 err = mmc_erase(card, from, nr, arg);
Adrian Hunter28302812012-04-05 14:45:48 +0300918 if (err == -EIO)
919 goto out_retry;
920 if (err)
921 goto out;
922
923 if (arg == MMC_SECURE_TRIM1_ARG) {
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500924 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
925 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
926 INAND_CMD38_ARG_EXT_CSD,
927 INAND_CMD38_ARG_SECTRIM2,
928 0);
929 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +0300930 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500931 }
Adrian Hunter28302812012-04-05 14:45:48 +0300932
Adrian Hunter49804542010-08-11 14:17:50 -0700933 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Adrian Hunter28302812012-04-05 14:45:48 +0300934 if (err == -EIO)
935 goto out_retry;
936 if (err)
937 goto out;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500938 }
Adrian Hunter28302812012-04-05 14:45:48 +0300939
940 if (mmc_can_sanitize(card))
941 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
942 EXT_CSD_SANITIZE_START, 1, 0);
943out_retry:
944 if (err && !mmc_blk_reset(md, card->host, type))
Adrian Hunter67716322011-08-29 16:42:15 +0300945 goto retry;
946 if (!err)
947 mmc_blk_reset_success(md, type);
Adrian Hunter28302812012-04-05 14:45:48 +0300948out:
Adrian Hunter49804542010-08-11 14:17:50 -0700949 spin_lock_irq(&md->lock);
950 __blk_end_request(req, err, blk_rq_bytes(req));
951 spin_unlock_irq(&md->lock);
952
Adrian Hunter49804542010-08-11 14:17:50 -0700953 return err ? 0 : 1;
954}
955
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500956static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
957{
958 struct mmc_blk_data *md = mq->data;
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900959 struct mmc_card *card = md->queue.card;
960 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500961
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900962 ret = mmc_flush_cache(card);
963 if (ret)
964 ret = -EIO;
965
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500966 spin_lock_irq(&md->lock);
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900967 __blk_end_request_all(req, ret);
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500968 spin_unlock_irq(&md->lock);
969
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900970 return ret ? 0 : 1;
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500971}
972
973/*
974 * Reformat current write as a reliable write, supporting
975 * both legacy and the enhanced reliable write MMC cards.
976 * In each transfer we'll handle only as much as a single
977 * reliable write can handle, thus finish the request in
978 * partial completions.
979 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500980static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
981 struct mmc_card *card,
982 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500983{
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500984 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
985 /* Legacy mode imposes restrictions on transfers. */
986 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
987 brq->data.blocks = 1;
988
989 if (brq->data.blocks > card->ext_csd.rel_sectors)
990 brq->data.blocks = card->ext_csd.rel_sectors;
991 else if (brq->data.blocks < card->ext_csd.rel_sectors)
992 brq->data.blocks = 1;
993 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500994}
995
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +0100996#define CMD_ERRORS \
997 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
998 R1_ADDRESS_ERROR | /* Misaligned address */ \
999 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1000 R1_WP_VIOLATION | /* Tried to write to protected block */ \
1001 R1_CC_ERROR | /* Card controller error */ \
1002 R1_ERROR) /* General/unknown error */
1003
Per Forlinee8a43a2011-07-01 18:55:33 +02001004static int mmc_blk_err_check(struct mmc_card *card,
1005 struct mmc_async_req *areq)
Per Forlind78d4a82011-07-01 18:55:30 +02001006{
Per Forlinee8a43a2011-07-01 18:55:33 +02001007 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1008 mmc_active);
1009 struct mmc_blk_request *brq = &mq_mrq->brq;
1010 struct request *req = mq_mrq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001011 int ecc_err = 0;
Per Forlind78d4a82011-07-01 18:55:30 +02001012
1013 /*
1014 * sbc.error indicates a problem with the set block count
1015 * command. No data will have been transferred.
1016 *
1017 * cmd.error indicates a problem with the r/w command. No
1018 * data will have been transferred.
1019 *
1020 * stop.error indicates a problem with the stop command. Data
1021 * may have been transferred, or may still be transferring.
1022 */
Adrian Hunter67716322011-08-29 16:42:15 +03001023 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
1024 brq->data.error) {
1025 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err)) {
Per Forlind78d4a82011-07-01 18:55:30 +02001026 case ERR_RETRY:
1027 return MMC_BLK_RETRY;
1028 case ERR_ABORT:
1029 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301030 case ERR_NOMEDIUM:
1031 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a82011-07-01 18:55:30 +02001032 case ERR_CONTINUE:
1033 break;
1034 }
1035 }
1036
1037 /*
1038 * Check for errors relating to the execution of the
1039 * initial command - such as address errors. No data
1040 * has been transferred.
1041 */
1042 if (brq->cmd.resp[0] & CMD_ERRORS) {
1043 pr_err("%s: r/w command failed, status = %#x\n",
1044 req->rq_disk->disk_name, brq->cmd.resp[0]);
1045 return MMC_BLK_ABORT;
1046 }
1047
1048 /*
1049 * Everything else is either success, or a data error of some
1050 * kind. If it was a write, we may have transitioned to
1051 * program mode, which we have to wait for it to complete.
1052 */
1053 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1054 u32 status;
1055 do {
1056 int err = get_card_status(card, &status, 5);
1057 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301058 pr_err("%s: error %d requesting status\n",
Per Forlind78d4a82011-07-01 18:55:30 +02001059 req->rq_disk->disk_name, err);
1060 return MMC_BLK_CMD_ERR;
1061 }
1062 /*
1063 * Some cards mishandle the status bits,
1064 * so make sure to check both the busy
1065 * indication and the card state.
1066 */
1067 } while (!(status & R1_READY_FOR_DATA) ||
1068 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1069 }
1070
1071 if (brq->data.error) {
1072 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1073 req->rq_disk->disk_name, brq->data.error,
1074 (unsigned)blk_rq_pos(req),
1075 (unsigned)blk_rq_sectors(req),
1076 brq->cmd.resp[0], brq->stop.resp[0]);
1077
1078 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001079 if (ecc_err)
1080 return MMC_BLK_ECC_ERR;
Per Forlind78d4a82011-07-01 18:55:30 +02001081 return MMC_BLK_DATA_ERR;
1082 } else {
1083 return MMC_BLK_CMD_ERR;
1084 }
1085 }
1086
Adrian Hunter67716322011-08-29 16:42:15 +03001087 if (!brq->data.bytes_xfered)
1088 return MMC_BLK_RETRY;
Per Forlind78d4a82011-07-01 18:55:30 +02001089
Adrian Hunter67716322011-08-29 16:42:15 +03001090 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1091 return MMC_BLK_PARTIAL;
1092
1093 return MMC_BLK_SUCCESS;
Per Forlind78d4a82011-07-01 18:55:30 +02001094}
1095
Per Forlin54d49d72011-07-01 18:55:29 +02001096static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1097 struct mmc_card *card,
1098 int disable_multi,
1099 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Per Forlin54d49d72011-07-01 18:55:29 +02001101 u32 readcmd, writecmd;
1102 struct mmc_blk_request *brq = &mqrq->brq;
1103 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 struct mmc_blk_data *md = mq->data;
Saugata Das42659002011-12-21 13:09:17 +05301105 bool do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001107 /*
1108 * Reliable writes are used to implement Forced Unit Access and
1109 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +02001110 *
1111 * XXX: this really needs a good explanation of why REQ_META
1112 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001113 */
1114 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1115 (req->cmd_flags & REQ_META)) &&
1116 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001117 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001118
Per Forlin54d49d72011-07-01 18:55:29 +02001119 memset(brq, 0, sizeof(struct mmc_blk_request));
1120 brq->mrq.cmd = &brq->cmd;
1121 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Per Forlin54d49d72011-07-01 18:55:29 +02001123 brq->cmd.arg = blk_rq_pos(req);
1124 if (!mmc_card_blockaddr(card))
1125 brq->cmd.arg <<= 9;
1126 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1127 brq->data.blksz = 512;
1128 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1129 brq->stop.arg = 0;
1130 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1131 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Per Forlin54d49d72011-07-01 18:55:29 +02001133 /*
1134 * The block layer doesn't support all sector count
1135 * restrictions, so we need to be prepared for too big
1136 * requests.
1137 */
1138 if (brq->data.blocks > card->host->max_blk_count)
1139 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001141 if (brq->data.blocks > 1) {
1142 /*
1143 * After a read error, we redo the request one sector
1144 * at a time in order to accurately determine which
1145 * sectors can be read successfully.
1146 */
1147 if (disable_multi)
1148 brq->data.blocks = 1;
1149
1150 /* Some controllers can't do multiblock reads due to hw bugs */
1151 if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1152 rq_data_dir(req) == READ)
1153 brq->data.blocks = 1;
1154 }
Per Forlin54d49d72011-07-01 18:55:29 +02001155
1156 if (brq->data.blocks > 1 || do_rel_wr) {
1157 /* SPI multiblock writes terminate using a special
1158 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001159 */
Per Forlin54d49d72011-07-01 18:55:29 +02001160 if (!mmc_host_is_spi(card->host) ||
1161 rq_data_dir(req) == READ)
1162 brq->mrq.stop = &brq->stop;
1163 readcmd = MMC_READ_MULTIPLE_BLOCK;
1164 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1165 } else {
1166 brq->mrq.stop = NULL;
1167 readcmd = MMC_READ_SINGLE_BLOCK;
1168 writecmd = MMC_WRITE_BLOCK;
1169 }
1170 if (rq_data_dir(req) == READ) {
1171 brq->cmd.opcode = readcmd;
1172 brq->data.flags |= MMC_DATA_READ;
1173 } else {
1174 brq->cmd.opcode = writecmd;
1175 brq->data.flags |= MMC_DATA_WRITE;
1176 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001177
Per Forlin54d49d72011-07-01 18:55:29 +02001178 if (do_rel_wr)
1179 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001180
Per Forlin54d49d72011-07-01 18:55:29 +02001181 /*
Saugata Das42659002011-12-21 13:09:17 +05301182 * Data tag is used only during writing meta data to speed
1183 * up write and any subsequent read of this meta data
1184 */
1185 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1186 (req->cmd_flags & REQ_META) &&
1187 (rq_data_dir(req) == WRITE) &&
1188 ((brq->data.blocks * brq->data.blksz) >=
1189 card->ext_csd.data_tag_unit_size);
1190
1191 /*
Per Forlin54d49d72011-07-01 18:55:29 +02001192 * Pre-defined multi-block transfers are preferable to
1193 * open ended-ones (and necessary for reliable writes).
1194 * However, it is not sufficient to just send CMD23,
1195 * and avoid the final CMD12, as on an error condition
1196 * CMD12 (stop) needs to be sent anyway. This, coupled
1197 * with Auto-CMD23 enhancements provided by some
1198 * hosts, means that the complexity of dealing
1199 * with this is best left to the host. If CMD23 is
1200 * supported by card and host, we'll fill sbc in and let
1201 * the host deal with handling it correctly. This means
1202 * that for hosts that don't expose MMC_CAP_CMD23, no
1203 * change of behavior will be observed.
1204 *
1205 * N.B: Some MMC cards experience perf degradation.
1206 * We'll avoid using CMD23-bounded multiblock writes for
1207 * these, while retaining features like reliable writes.
1208 */
Saugata Das42659002011-12-21 13:09:17 +05301209 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1210 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1211 do_data_tag)) {
Per Forlin54d49d72011-07-01 18:55:29 +02001212 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1213 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301214 (do_rel_wr ? (1 << 31) : 0) |
1215 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d72011-07-01 18:55:29 +02001216 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1217 brq->mrq.sbc = &brq->sbc;
1218 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001219
Per Forlin54d49d72011-07-01 18:55:29 +02001220 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001221
Per Forlin54d49d72011-07-01 18:55:29 +02001222 brq->data.sg = mqrq->sg;
1223 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001224
Per Forlin54d49d72011-07-01 18:55:29 +02001225 /*
1226 * Adjust the sg list so it is the same size as the
1227 * request.
1228 */
1229 if (brq->data.blocks != blk_rq_sectors(req)) {
1230 int i, data_size = brq->data.blocks << 9;
1231 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001232
Per Forlin54d49d72011-07-01 18:55:29 +02001233 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1234 data_size -= sg->length;
1235 if (data_size <= 0) {
1236 sg->length += data_size;
1237 i++;
1238 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001239 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001240 }
Per Forlin54d49d72011-07-01 18:55:29 +02001241 brq->data.sg_len = i;
1242 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001243
Per Forlinee8a43a2011-07-01 18:55:33 +02001244 mqrq->mmc_active.mrq = &brq->mrq;
1245 mqrq->mmc_active.err_check = mmc_blk_err_check;
1246
Per Forlin54d49d72011-07-01 18:55:29 +02001247 mmc_queue_bounce_pre(mqrq);
1248}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Adrian Hunter67716322011-08-29 16:42:15 +03001250static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1251 struct mmc_blk_request *brq, struct request *req,
1252 int ret)
1253{
1254 /*
1255 * If this is an SD card and we're writing, we can first
1256 * mark the known good sectors as ok.
1257 *
1258 * If the card is not SD, we can still ok written sectors
1259 * as reported by the controller (which might be less than
1260 * the real number of written sectors, but never more).
1261 */
1262 if (mmc_card_sd(card)) {
1263 u32 blocks;
1264
1265 blocks = mmc_sd_num_wr_blocks(card);
1266 if (blocks != (u32)-1) {
1267 spin_lock_irq(&md->lock);
1268 ret = __blk_end_request(req, 0, blocks << 9);
1269 spin_unlock_irq(&md->lock);
1270 }
1271 } else {
1272 spin_lock_irq(&md->lock);
1273 ret = __blk_end_request(req, 0, brq->data.bytes_xfered);
1274 spin_unlock_irq(&md->lock);
1275 }
1276 return ret;
1277}
1278
Per Forlinee8a43a2011-07-01 18:55:33 +02001279static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001280{
1281 struct mmc_blk_data *md = mq->data;
1282 struct mmc_card *card = md->queue.card;
1283 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunter67716322011-08-29 16:42:15 +03001284 int ret = 1, disable_multi = 0, retry = 0, type;
Per Forlind78d4a82011-07-01 18:55:30 +02001285 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001286 struct mmc_queue_req *mq_rq;
1287 struct request *req;
1288 struct mmc_async_req *areq;
1289
1290 if (!rqc && !mq->mqrq_prev->req)
1291 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001292
1293 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001294 if (rqc) {
1295 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1296 areq = &mq->mqrq_cur->mmc_active;
1297 } else
1298 areq = NULL;
1299 areq = mmc_start_req(card->host, areq, (int *) &status);
1300 if (!areq)
1301 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +02001302
Per Forlinee8a43a2011-07-01 18:55:33 +02001303 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1304 brq = &mq_rq->brq;
1305 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001306 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001307 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001308
Per Forlind78d4a82011-07-01 18:55:30 +02001309 switch (status) {
1310 case MMC_BLK_SUCCESS:
1311 case MMC_BLK_PARTIAL:
1312 /*
1313 * A block was successfully transferred.
1314 */
Adrian Hunter67716322011-08-29 16:42:15 +03001315 mmc_blk_reset_success(md, type);
Per Forlind78d4a82011-07-01 18:55:30 +02001316 spin_lock_irq(&md->lock);
1317 ret = __blk_end_request(req, 0,
1318 brq->data.bytes_xfered);
1319 spin_unlock_irq(&md->lock);
Adrian Hunter67716322011-08-29 16:42:15 +03001320 /*
1321 * If the blk_end_request function returns non-zero even
1322 * though all data has been transferred and no errors
1323 * were returned by the host controller, it's a bug.
1324 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001325 if (status == MMC_BLK_SUCCESS && ret) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301326 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Per Forlinee8a43a2011-07-01 18:55:33 +02001327 __func__, blk_rq_bytes(req),
1328 brq->data.bytes_xfered);
1329 rqc = NULL;
1330 goto cmd_abort;
1331 }
Per Forlind78d4a82011-07-01 18:55:30 +02001332 break;
1333 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001334 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1335 if (!mmc_blk_reset(md, card->host, type))
1336 break;
1337 goto cmd_abort;
Per Forlind78d4a82011-07-01 18:55:30 +02001338 case MMC_BLK_RETRY:
1339 if (retry++ < 5)
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +01001340 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001341 /* Fall through */
Per Forlind78d4a82011-07-01 18:55:30 +02001342 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001343 if (!mmc_blk_reset(md, card->host, type))
1344 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001345 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001346 case MMC_BLK_DATA_ERR: {
1347 int err;
1348
1349 err = mmc_blk_reset(md, card->host, type);
1350 if (!err)
1351 break;
1352 if (err == -ENODEV)
1353 goto cmd_abort;
1354 /* Fall through */
1355 }
1356 case MMC_BLK_ECC_ERR:
1357 if (brq->data.blocks > 1) {
1358 /* Redo read one sector at a time */
1359 pr_warning("%s: retrying using single block read\n",
1360 req->rq_disk->disk_name);
1361 disable_multi = 1;
1362 break;
1363 }
Per Forlind78d4a82011-07-01 18:55:30 +02001364 /*
1365 * After an error, we redo I/O one sector at a
1366 * time, so we only reach here after trying to
1367 * read a single sector.
1368 */
1369 spin_lock_irq(&md->lock);
1370 ret = __blk_end_request(req, -EIO,
1371 brq->data.blksz);
1372 spin_unlock_irq(&md->lock);
Per Forlinee8a43a2011-07-01 18:55:33 +02001373 if (!ret)
1374 goto start_new_req;
Per Forlind78d4a82011-07-01 18:55:30 +02001375 break;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301376 case MMC_BLK_NOMEDIUM:
1377 goto cmd_abort;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001378 }
1379
Per Forlinee8a43a2011-07-01 18:55:33 +02001380 if (ret) {
1381 /*
Adrian Hunter67716322011-08-29 16:42:15 +03001382 * In case of a incomplete request
Per Forlinee8a43a2011-07-01 18:55:33 +02001383 * prepare it again and resend.
1384 */
1385 mmc_blk_rw_rq_prep(mq_rq, card, disable_multi, mq);
1386 mmc_start_req(card->host, &mq_rq->mmc_active, NULL);
1387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 } while (ret);
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 return 1;
1391
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +01001392 cmd_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 spin_lock_irq(&md->lock);
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301394 if (mmc_card_removed(card))
1395 req->cmd_flags |= REQ_QUIET;
Kiyoshi Uedafd539832007-12-11 17:48:29 -05001396 while (ret)
1397 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 spin_unlock_irq(&md->lock);
1399
Per Forlinee8a43a2011-07-01 18:55:33 +02001400 start_new_req:
1401 if (rqc) {
1402 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1403 mmc_start_req(card->host, &mq->mqrq_cur->mmc_active, NULL);
1404 }
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return 0;
1407}
1408
Adrian Hunterbd788c92010-08-11 14:17:47 -07001409static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1410{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001411 int ret;
1412 struct mmc_blk_data *md = mq->data;
1413 struct mmc_card *card = md->queue.card;
1414
Per Forlinee8a43a2011-07-01 18:55:33 +02001415 if (req && !mq->mqrq_prev->req)
1416 /* claim host only for the first request */
1417 mmc_claim_host(card->host);
1418
Andrei Warkentin371a6892011-04-11 18:10:25 -05001419 ret = mmc_blk_part_switch(card, md);
1420 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03001421 if (req) {
1422 spin_lock_irq(&md->lock);
1423 __blk_end_request_all(req, -EIO);
1424 spin_unlock_irq(&md->lock);
1425 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001426 ret = 0;
1427 goto out;
1428 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001429
Per Forlinee8a43a2011-07-01 18:55:33 +02001430 if (req && req->cmd_flags & REQ_DISCARD) {
1431 /* complete ongoing async transfer before issuing discard */
1432 if (card->host->areq)
1433 mmc_blk_issue_rw_rq(mq, NULL);
Adrian Hunter49804542010-08-11 14:17:50 -07001434 if (req->cmd_flags & REQ_SECURE)
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001435 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001436 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001437 ret = mmc_blk_issue_discard_rq(mq, req);
Per Forlinee8a43a2011-07-01 18:55:33 +02001438 } else if (req && req->cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09001439 /* complete ongoing async transfer before issuing flush */
1440 if (card->host->areq)
1441 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001442 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001443 } else {
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001444 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001445 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001446
Andrei Warkentin371a6892011-04-11 18:10:25 -05001447out:
Per Forlinee8a43a2011-07-01 18:55:33 +02001448 if (!req)
1449 /* release host only when there are no more requests */
1450 mmc_release_host(card->host);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001451 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001452}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Russell Kinga6f6c962006-01-03 22:38:44 +00001454static inline int mmc_blk_readonly(struct mmc_card *card)
1455{
1456 return mmc_card_readonly(card) ||
1457 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1458}
1459
Andrei Warkentin371a6892011-04-11 18:10:25 -05001460static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1461 struct device *parent,
1462 sector_t size,
1463 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001464 const char *subname,
1465 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
1467 struct mmc_blk_data *md;
1468 int devidx, ret;
1469
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001470 devidx = find_first_zero_bit(dev_use, max_devices);
1471 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return ERR_PTR(-ENOSPC);
1473 __set_bit(devidx, dev_use);
1474
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001475 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00001476 if (!md) {
1477 ret = -ENOMEM;
1478 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
Russell Kinga6f6c962006-01-03 22:38:44 +00001480
Russell Kinga6f6c962006-01-03 22:38:44 +00001481 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001482 * !subname implies we are creating main mmc_blk_data that will be
1483 * associated with mmc_card with mmc_set_drvdata. Due to device
1484 * partitions, devidx will not coincide with a per-physical card
1485 * index anymore so we keep track of a name index.
1486 */
1487 if (!subname) {
1488 md->name_idx = find_first_zero_bit(name_use, max_devices);
1489 __set_bit(md->name_idx, name_use);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001490 } else
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001491 md->name_idx = ((struct mmc_blk_data *)
1492 dev_to_disk(parent)->private_data)->name_idx;
1493
Johan Rudholmadd710e2011-12-02 08:51:06 +01001494 md->area_type = area_type;
1495
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001496 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00001497 * Set the read-only status based on the supported commands
1498 * and the write protect switch.
1499 */
1500 md->read_only = mmc_blk_readonly(card);
1501
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001502 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00001503 if (md->disk == NULL) {
1504 ret = -ENOMEM;
1505 goto err_kfree;
1506 }
1507
1508 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001509 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00001510 md->usage = 1;
1511
Adrian Hunterd09408a2011-06-23 13:40:28 +03001512 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00001513 if (ret)
1514 goto err_putdisk;
1515
Russell Kinga6f6c962006-01-03 22:38:44 +00001516 md->queue.issue_fn = mmc_blk_issue_rq;
1517 md->queue.data = md;
1518
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001519 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001520 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00001521 md->disk->fops = &mmc_bdops;
1522 md->disk->private_data = md;
1523 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001524 md->disk->driverfs_dev = parent;
1525 set_disk_ro(md->disk, md->read_only || default_ro);
Russell Kinga6f6c962006-01-03 22:38:44 +00001526
1527 /*
1528 * As discussed on lkml, GENHD_FL_REMOVABLE should:
1529 *
1530 * - be set for removable media with permanent block devices
1531 * - be unset for removable block devices with permanent media
1532 *
1533 * Since MMC block devices clearly fall under the second
1534 * case, we do not set GENHD_FL_REMOVABLE. Userspace
1535 * should use the block device creation/destruction hotplug
1536 * messages to tell when the card is present.
1537 */
1538
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001539 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1540 "mmcblk%d%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00001541
Martin K. Petersene1defc42009-05-22 17:17:49 -04001542 blk_queue_logical_block_size(md->queue.queue, 512);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001543 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001544
Andrei Warkentinf0d89972011-05-23 15:06:38 -05001545 if (mmc_host_cmd23(card->host)) {
1546 if (mmc_card_mmc(card) ||
1547 (mmc_card_sd(card) &&
1548 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1549 md->flags |= MMC_BLK_CMD23;
1550 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001551
1552 if (mmc_card_mmc(card) &&
1553 md->flags & MMC_BLK_CMD23 &&
1554 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1555 card->ext_csd.rel_sectors)) {
1556 md->flags |= MMC_BLK_REL_WR;
1557 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1558 }
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00001561
1562 err_putdisk:
1563 put_disk(md->disk);
1564 err_kfree:
1565 kfree(md);
1566 out:
1567 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
Andrei Warkentin371a6892011-04-11 18:10:25 -05001570static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1571{
1572 sector_t size;
1573 struct mmc_blk_data *md;
1574
1575 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1576 /*
1577 * The EXT_CSD sector count is in number or 512 byte
1578 * sectors.
1579 */
1580 size = card->ext_csd.sectors;
1581 } else {
1582 /*
1583 * The CSD capacity field is in units of read_blkbits.
1584 * set_capacity takes units of 512 bytes.
1585 */
1586 size = card->csd.capacity << (card->csd.read_blkbits - 9);
1587 }
1588
Johan Rudholmadd710e2011-12-02 08:51:06 +01001589 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
1590 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001591 return md;
1592}
1593
1594static int mmc_blk_alloc_part(struct mmc_card *card,
1595 struct mmc_blk_data *md,
1596 unsigned int part_type,
1597 sector_t size,
1598 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001599 const char *subname,
1600 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05001601{
1602 char cap_str[10];
1603 struct mmc_blk_data *part_md;
1604
1605 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001606 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001607 if (IS_ERR(part_md))
1608 return PTR_ERR(part_md);
1609 part_md->part_type = part_type;
1610 list_add(&part_md->part, &md->part);
1611
1612 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1613 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05301614 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05001615 part_md->disk->disk_name, mmc_card_id(card),
1616 mmc_card_name(card), part_md->part_type, cap_str);
1617 return 0;
1618}
1619
Namjae Jeone0c368d2011-10-06 23:41:38 +09001620/* MMC Physical partitions consist of two boot partitions and
1621 * up to four general purpose partitions.
1622 * For each partition enabled in EXT_CSD a block device will be allocatedi
1623 * to provide access to the partition.
1624 */
1625
Andrei Warkentin371a6892011-04-11 18:10:25 -05001626static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1627{
Namjae Jeone0c368d2011-10-06 23:41:38 +09001628 int idx, ret = 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001629
1630 if (!mmc_card_mmc(card))
1631 return 0;
1632
Namjae Jeone0c368d2011-10-06 23:41:38 +09001633 for (idx = 0; idx < card->nr_parts; idx++) {
1634 if (card->part[idx].size) {
1635 ret = mmc_blk_alloc_part(card, md,
1636 card->part[idx].part_cfg,
1637 card->part[idx].size >> 9,
1638 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001639 card->part[idx].name,
1640 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09001641 if (ret)
1642 return ret;
1643 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001644 }
1645
1646 return ret;
1647}
1648
Andrei Warkentin371a6892011-04-11 18:10:25 -05001649static void mmc_blk_remove_req(struct mmc_blk_data *md)
1650{
Johan Rudholmadd710e2011-12-02 08:51:06 +01001651 struct mmc_card *card;
1652
Andrei Warkentin371a6892011-04-11 18:10:25 -05001653 if (md) {
Johan Rudholmadd710e2011-12-02 08:51:06 +01001654 card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001655 if (md->disk->flags & GENHD_FL_UP) {
1656 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001657 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1658 card->ext_csd.boot_ro_lockable)
1659 device_remove_file(disk_to_dev(md->disk),
1660 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001661
1662 /* Stop new requests from getting into the queue */
1663 del_gendisk(md->disk);
1664 }
1665
1666 /* Then flush out any already in there */
1667 mmc_cleanup_queue(&md->queue);
1668 mmc_blk_put(md);
1669 }
1670}
1671
1672static void mmc_blk_remove_parts(struct mmc_card *card,
1673 struct mmc_blk_data *md)
1674{
1675 struct list_head *pos, *q;
1676 struct mmc_blk_data *part_md;
1677
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001678 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001679 list_for_each_safe(pos, q, &md->part) {
1680 part_md = list_entry(pos, struct mmc_blk_data, part);
1681 list_del(pos);
1682 mmc_blk_remove_req(part_md);
1683 }
1684}
1685
1686static int mmc_add_disk(struct mmc_blk_data *md)
1687{
1688 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01001689 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001690
1691 add_disk(md->disk);
1692 md->force_ro.show = force_ro_show;
1693 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05301694 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001695 md->force_ro.attr.name = "force_ro";
1696 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1697 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1698 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01001699 goto force_ro_fail;
1700
1701 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1702 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04001703 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01001704
1705 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
1706 mode = S_IRUGO;
1707 else
1708 mode = S_IRUGO | S_IWUSR;
1709
1710 md->power_ro_lock.show = power_ro_lock_show;
1711 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01001712 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001713 md->power_ro_lock.attr.mode = mode;
1714 md->power_ro_lock.attr.name =
1715 "ro_lock_until_next_power_on";
1716 ret = device_create_file(disk_to_dev(md->disk),
1717 &md->power_ro_lock);
1718 if (ret)
1719 goto power_ro_lock_fail;
1720 }
1721 return ret;
1722
1723power_ro_lock_fail:
1724 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1725force_ro_fail:
1726 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001727
1728 return ret;
1729}
1730
Chris Ballc59d4472011-11-11 22:01:43 -05001731#define CID_MANFID_SANDISK 0x2
1732#define CID_MANFID_TOSHIBA 0x11
1733#define CID_MANFID_MICRON 0x13
1734
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001735static const struct mmc_fixup blk_fixups[] =
1736{
Chris Ballc59d4472011-11-11 22:01:43 -05001737 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
1738 MMC_QUIRK_INAND_CMD38),
1739 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
1740 MMC_QUIRK_INAND_CMD38),
1741 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
1742 MMC_QUIRK_INAND_CMD38),
1743 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
1744 MMC_QUIRK_INAND_CMD38),
1745 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
1746 MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001747
1748 /*
1749 * Some MMC cards experience performance degradation with CMD23
1750 * instead of CMD12-bounded multiblock transfers. For now we'll
1751 * black list what's bad...
1752 * - Certain Toshiba cards.
1753 *
1754 * N.B. This doesn't affect SD cards.
1755 */
Chris Ballc59d4472011-11-11 22:01:43 -05001756 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001757 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05001758 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001759 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05001760 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001761 MMC_QUIRK_BLK_NO_CMD23),
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01001762
1763 /*
1764 * Some Micron MMC cards needs longer data read timeout than
1765 * indicated in CSD.
1766 */
Chris Ballc59d4472011-11-11 22:01:43 -05001767 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01001768 MMC_QUIRK_LONG_READ_TIME),
1769
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001770 END_FIXUP
1771};
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773static int mmc_blk_probe(struct mmc_card *card)
1774{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001775 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001776 char cap_str[10];
1777
Pierre Ossman912490d2005-05-21 10:27:02 +01001778 /*
1779 * Check that the card supports the command class(es) we need.
1780 */
1781 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return -ENODEV;
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 md = mmc_blk_alloc(card);
1785 if (IS_ERR(md))
1786 return PTR_ERR(md);
1787
Yi Li444122f2009-02-05 15:31:57 +08001788 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001789 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05301790 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001792 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Andrei Warkentin371a6892011-04-11 18:10:25 -05001794 if (mmc_blk_alloc_parts(card, md))
1795 goto out;
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 mmc_set_drvdata(card, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001798 mmc_fixup_device(card, blk_fixups);
1799
Andrei Warkentin371a6892011-04-11 18:10:25 -05001800 if (mmc_add_disk(md))
1801 goto out;
1802
1803 list_for_each_entry(part_md, &md->part, part) {
1804 if (mmc_add_disk(part_md))
1805 goto out;
1806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return 0;
1808
1809 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05001810 mmc_blk_remove_parts(card, md);
1811 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01001812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
1815static void mmc_blk_remove(struct mmc_card *card)
1816{
1817 struct mmc_blk_data *md = mmc_get_drvdata(card);
1818
Andrei Warkentin371a6892011-04-11 18:10:25 -05001819 mmc_blk_remove_parts(card, md);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03001820 mmc_claim_host(card->host);
1821 mmc_blk_part_switch(card, md);
1822 mmc_release_host(card->host);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001823 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 mmc_set_drvdata(card, NULL);
1825}
1826
1827#ifdef CONFIG_PM
Chuanxiao Dong32d317c2012-04-11 19:54:38 +08001828static int mmc_blk_suspend(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001830 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 struct mmc_blk_data *md = mmc_get_drvdata(card);
1832
1833 if (md) {
1834 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001835 list_for_each_entry(part_md, &md->part, part) {
1836 mmc_queue_suspend(&part_md->queue);
1837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
1839 return 0;
1840}
1841
1842static int mmc_blk_resume(struct mmc_card *card)
1843{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001844 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 struct mmc_blk_data *md = mmc_get_drvdata(card);
1846
1847 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05001848 /*
1849 * Resume involves the card going into idle state,
1850 * so current partition is always the main one.
1851 */
1852 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001854 list_for_each_entry(part_md, &md->part, part) {
1855 mmc_queue_resume(&part_md->queue);
1856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858 return 0;
1859}
1860#else
1861#define mmc_blk_suspend NULL
1862#define mmc_blk_resume NULL
1863#endif
1864
1865static struct mmc_driver mmc_driver = {
1866 .drv = {
1867 .name = "mmcblk",
1868 },
1869 .probe = mmc_blk_probe,
1870 .remove = mmc_blk_remove,
1871 .suspend = mmc_blk_suspend,
1872 .resume = mmc_blk_resume,
1873};
1874
1875static int __init mmc_blk_init(void)
1876{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001877 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001879 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1880 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1881
1882 max_devices = 256 / perdev_minors;
1883
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001884 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1885 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001888 res = mmc_register_driver(&mmc_driver);
1889 if (res)
1890 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001892 return 0;
1893 out2:
1894 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 out:
1896 return res;
1897}
1898
1899static void __exit mmc_blk_exit(void)
1900{
1901 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001902 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
1904
1905module_init(mmc_blk_init);
1906module_exit(mmc_blk_exit);
1907
1908MODULE_LICENSE("GPL");
1909MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1910