blob: 0c959c96005eaf6f08b167e52fd410b38ee36458 [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
44#include <asm/system.h>
45#include <asm/uaccess.h>
46
Pierre Ossman98ac2162006-12-23 20:03:02 +010047#include "queue.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Andy Whitcroft6b0b6282009-02-23 12:38:41 +000049MODULE_ALIAS("mmc:block");
Olof Johansson5e71b7a2010-09-17 21:19:57 -040050#ifdef MODULE_PARAM_PREFIX
51#undef MODULE_PARAM_PREFIX
52#endif
53#define MODULE_PARAM_PREFIX "mmcblk."
David Woodhouse1dff3142007-11-21 18:45:12 +010054
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -050055#define INAND_CMD38_ARG_EXT_CSD 113
56#define INAND_CMD38_ARG_ERASE 0x00
57#define INAND_CMD38_ARG_TRIM 0x01
58#define INAND_CMD38_ARG_SECERASE 0x80
59#define INAND_CMD38_ARG_SECTRIM1 0x81
60#define INAND_CMD38_ARG_SECTRIM2 0x88
61
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020062static DEFINE_MUTEX(block_mutex);
Olof Johansson5e71b7a2010-09-17 21:19:57 -040063
64/*
65 * The defaults come from config options but can be overriden by module
66 * or bootarg options.
67 */
68static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
69
70/*
71 * We've only got one major, so number of mmcblk devices is
72 * limited to 256 / number of minors per device.
73 */
74static int max_devices;
75
76/* 256 minors, so at most 256 separate devices */
77static DECLARE_BITMAP(dev_use, 256);
Andrei Warkentinf06c9152011-04-21 22:46:13 -050078static DECLARE_BITMAP(name_use, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
81 * There is one mmc_blk_data per slot.
82 */
83struct mmc_blk_data {
84 spinlock_t lock;
85 struct gendisk *disk;
86 struct mmc_queue queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -050087 struct list_head part;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Andrei Warkentind0c97cf2011-05-23 15:06:36 -050089 unsigned int flags;
90#define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */
91#define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned int usage;
Russell Kinga6f6c962006-01-03 22:38:44 +000094 unsigned int read_only;
Andrei Warkentin371a6892011-04-11 18:10:25 -050095 unsigned int part_type;
Andrei Warkentinf06c9152011-04-21 22:46:13 -050096 unsigned int name_idx;
Adrian Hunter67716322011-08-29 16:42:15 +030097 unsigned int reset_done;
98#define MMC_BLK_READ BIT(0)
99#define MMC_BLK_WRITE BIT(1)
100#define MMC_BLK_DISCARD BIT(2)
101#define MMC_BLK_SECDISCARD BIT(3)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500102
103 /*
104 * Only set in main mmc_blk_data associated
105 * with mmc_card with mmc_set_drvdata, and keeps
106 * track of the current selected device partition.
107 */
108 unsigned int part_curr;
109 struct device_attribute force_ro;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100110 struct device_attribute power_ro_lock;
111 int area_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
Arjan van de Vena621aae2006-01-12 18:43:35 +0000114static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Per Forlind78d4a8a2011-07-01 18:55:30 +0200116enum mmc_blk_status {
117 MMC_BLK_SUCCESS = 0,
118 MMC_BLK_PARTIAL,
Per Forlind78d4a8a2011-07-01 18:55:30 +0200119 MMC_BLK_CMD_ERR,
Adrian Hunter67716322011-08-29 16:42:15 +0300120 MMC_BLK_RETRY,
Per Forlind78d4a8a2011-07-01 18:55:30 +0200121 MMC_BLK_ABORT,
Adrian Hunter67716322011-08-29 16:42:15 +0300122 MMC_BLK_DATA_ERR,
123 MMC_BLK_ECC_ERR,
Per Forlind78d4a8a2011-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;
387 goto cmd_done;
388 }
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);
486 kfree(idata->buf);
487 kfree(idata);
488 return err;
489}
490
491static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
492 unsigned int cmd, unsigned long arg)
493{
494 int ret = -EINVAL;
495 if (cmd == MMC_IOC_CMD)
496 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
497 return ret;
498}
499
500#ifdef CONFIG_COMPAT
501static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
502 unsigned int cmd, unsigned long arg)
503{
504 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
505}
506#endif
507
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700508static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500509 .open = mmc_blk_open,
510 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800511 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400513 .ioctl = mmc_blk_ioctl,
514#ifdef CONFIG_COMPAT
515 .compat_ioctl = mmc_blk_compat_ioctl,
516#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517};
518
Andrei Warkentin371a6892011-04-11 18:10:25 -0500519static inline int mmc_blk_part_switch(struct mmc_card *card,
520 struct mmc_blk_data *md)
521{
522 int ret;
523 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300524
Andrei Warkentin371a6892011-04-11 18:10:25 -0500525 if (main_md->part_curr == md->part_type)
526 return 0;
527
528 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300529 u8 part_config = card->ext_csd.part_config;
530
531 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
532 part_config |= md->part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500533
534 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300535 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500536 card->ext_csd.part_time);
537 if (ret)
538 return ret;
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300539
540 card->ext_csd.part_config = part_config;
Adrian Hunter67716322011-08-29 16:42:15 +0300541 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500542
543 main_md->part_curr = md->part_type;
544 return 0;
545}
546
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700547static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
548{
549 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100550 u32 result;
551 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700552
Venkatraman Sad5fd972011-08-25 00:30:50 +0530553 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400554 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400555 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700556 unsigned int timeout_us;
557
558 struct scatterlist sg;
559
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700560 cmd.opcode = MMC_APP_CMD;
561 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700562 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700563
564 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700565 if (err)
566 return (u32)-1;
567 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700568 return (u32)-1;
569
570 memset(&cmd, 0, sizeof(struct mmc_command));
571
572 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
573 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700574 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700575
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700576 data.timeout_ns = card->csd.tacc_ns * 100;
577 data.timeout_clks = card->csd.tacc_clks * 100;
578
579 timeout_us = data.timeout_ns / 1000;
580 timeout_us += data.timeout_clks * 1000 /
581 (card->host->ios.clock / 1000);
582
583 if (timeout_us > 100000) {
584 data.timeout_ns = 100000000;
585 data.timeout_clks = 0;
586 }
587
588 data.blksz = 4;
589 data.blocks = 1;
590 data.flags = MMC_DATA_READ;
591 data.sg = &sg;
592 data.sg_len = 1;
593
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700594 mrq.cmd = &cmd;
595 mrq.data = &data;
596
Ben Dooks051913d2009-06-08 23:33:57 +0100597 blocks = kmalloc(4, GFP_KERNEL);
598 if (!blocks)
599 return (u32)-1;
600
601 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700602
603 mmc_wait_for_req(card->host, &mrq);
604
Ben Dooks051913d2009-06-08 23:33:57 +0100605 result = ntohl(*blocks);
606 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700607
Ben Dooks051913d2009-06-08 23:33:57 +0100608 if (cmd.error || data.error)
609 result = (u32)-1;
610
611 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700612}
613
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100614static int send_stop(struct mmc_card *card, u32 *status)
615{
616 struct mmc_command cmd = {0};
617 int err;
618
619 cmd.opcode = MMC_STOP_TRANSMISSION;
620 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
621 err = mmc_wait_for_cmd(card->host, &cmd, 5);
622 if (err == 0)
623 *status = cmd.resp[0];
624 return err;
625}
626
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100627static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300628{
Chris Ball1278dba2011-04-13 23:40:30 -0400629 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300630 int err;
631
Adrian Hunter504f1912008-10-16 12:55:25 +0300632 cmd.opcode = MMC_SEND_STATUS;
633 if (!mmc_host_is_spi(card->host))
634 cmd.arg = card->rca << 16;
635 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100636 err = mmc_wait_for_cmd(card->host, &cmd, retries);
637 if (err == 0)
638 *status = cmd.resp[0];
639 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300640}
641
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100642#define ERR_RETRY 2
643#define ERR_ABORT 1
644#define ERR_CONTINUE 0
645
646static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
647 bool status_valid, u32 status)
648{
649 switch (error) {
650 case -EILSEQ:
651 /* response crc error, retry the r/w cmd */
652 pr_err("%s: %s sending %s command, card status %#x\n",
653 req->rq_disk->disk_name, "response CRC error",
654 name, status);
655 return ERR_RETRY;
656
657 case -ETIMEDOUT:
658 pr_err("%s: %s sending %s command, card status %#x\n",
659 req->rq_disk->disk_name, "timed out", name, status);
660
661 /* If the status cmd initially failed, retry the r/w cmd */
662 if (!status_valid)
663 return ERR_RETRY;
664
665 /*
666 * If it was a r/w cmd crc error, or illegal command
667 * (eg, issued in wrong state) then retry - we should
668 * have corrected the state problem above.
669 */
670 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
671 return ERR_RETRY;
672
673 /* Otherwise abort the command */
674 return ERR_ABORT;
675
676 default:
677 /* We don't understand the error code the driver gave us */
678 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
679 req->rq_disk->disk_name, error, status);
680 return ERR_ABORT;
681 }
682}
683
684/*
685 * Initial r/w and stop cmd error recovery.
686 * We don't know whether the card received the r/w cmd or not, so try to
687 * restore things back to a sane state. Essentially, we do this as follows:
688 * - Obtain card status. If the first attempt to obtain card status fails,
689 * the status word will reflect the failed status cmd, not the failed
690 * r/w cmd. If we fail to obtain card status, it suggests we can no
691 * longer communicate with the card.
692 * - Check the card state. If the card received the cmd but there was a
693 * transient problem with the response, it might still be in a data transfer
694 * mode. Try to send it a stop command. If this fails, we can't recover.
695 * - If the r/w cmd failed due to a response CRC error, it was probably
696 * transient, so retry the cmd.
697 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
698 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
699 * illegal cmd, retry.
700 * Otherwise we don't understand what happened, so abort.
701 */
702static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
Adrian Hunter67716322011-08-29 16:42:15 +0300703 struct mmc_blk_request *brq, int *ecc_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100704{
705 bool prev_cmd_status_valid = true;
706 u32 status, stop_status = 0;
707 int err, retry;
708
709 /*
710 * Try to get card status which indicates both the card state
711 * and why there was no response. If the first attempt fails,
712 * we can't be sure the returned status is for the r/w command.
713 */
714 for (retry = 2; retry >= 0; retry--) {
715 err = get_card_status(card, &status, 0);
716 if (!err)
717 break;
718
719 prev_cmd_status_valid = false;
720 pr_err("%s: error %d sending status command, %sing\n",
721 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
722 }
723
724 /* We couldn't get a response from the card. Give up. */
725 if (err)
726 return ERR_ABORT;
727
Adrian Hunter67716322011-08-29 16:42:15 +0300728 /* Flag ECC errors */
729 if ((status & R1_CARD_ECC_FAILED) ||
730 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
731 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
732 *ecc_err = 1;
733
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100734 /*
735 * Check the current card state. If it is in some data transfer
736 * mode, tell it to stop (and hopefully transition back to TRAN.)
737 */
738 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
739 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
740 err = send_stop(card, &stop_status);
741 if (err)
742 pr_err("%s: error %d sending stop command\n",
743 req->rq_disk->disk_name, err);
744
745 /*
746 * If the stop cmd also timed out, the card is probably
747 * not present, so abort. Other errors are bad news too.
748 */
749 if (err)
750 return ERR_ABORT;
Adrian Hunter67716322011-08-29 16:42:15 +0300751 if (stop_status & R1_CARD_ECC_FAILED)
752 *ecc_err = 1;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100753 }
754
755 /* Check for set block count errors */
756 if (brq->sbc.error)
757 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
758 prev_cmd_status_valid, status);
759
760 /* Check for r/w command errors */
761 if (brq->cmd.error)
762 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
763 prev_cmd_status_valid, status);
764
Adrian Hunter67716322011-08-29 16:42:15 +0300765 /* Data errors */
766 if (!brq->stop.error)
767 return ERR_CONTINUE;
768
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100769 /* Now for stop errors. These aren't fatal to the transfer. */
770 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
771 req->rq_disk->disk_name, brq->stop.error,
772 brq->cmd.resp[0], status);
773
774 /*
775 * Subsitute in our own stop status as this will give the error
776 * state which happened during the execution of the r/w command.
777 */
778 if (stop_status) {
779 brq->stop.resp[0] = stop_status;
780 brq->stop.error = 0;
781 }
782 return ERR_CONTINUE;
783}
784
Adrian Hunter67716322011-08-29 16:42:15 +0300785static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
786 int type)
787{
788 int err;
789
790 if (md->reset_done & type)
791 return -EEXIST;
792
793 md->reset_done |= type;
794 err = mmc_hw_reset(host);
795 /* Ensure we switch back to the correct partition */
796 if (err != -EOPNOTSUPP) {
797 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
798 int part_err;
799
800 main_md->part_curr = main_md->part_type;
801 part_err = mmc_blk_part_switch(host->card, md);
802 if (part_err) {
803 /*
804 * We have failed to get back into the correct
805 * partition, so we need to abort the whole request.
806 */
807 return -ENODEV;
808 }
809 }
810 return err;
811}
812
813static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
814{
815 md->reset_done &= ~type;
816}
817
Adrian Hunterbd788c92010-08-11 14:17:47 -0700818static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
819{
820 struct mmc_blk_data *md = mq->data;
821 struct mmc_card *card = md->queue.card;
822 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300823 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -0700824
Adrian Hunterbd788c92010-08-11 14:17:47 -0700825 if (!mmc_can_erase(card)) {
826 err = -EOPNOTSUPP;
827 goto out;
828 }
829
830 from = blk_rq_pos(req);
831 nr = blk_rq_sectors(req);
832
Kyungmin Parkb3bf9152011-10-18 09:34:04 +0900833 if (mmc_can_discard(card))
834 arg = MMC_DISCARD_ARG;
835 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -0700836 arg = MMC_TRIM_ARG;
837 else
838 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300839retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500840 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
841 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
842 INAND_CMD38_ARG_EXT_CSD,
843 arg == MMC_TRIM_ARG ?
844 INAND_CMD38_ARG_TRIM :
845 INAND_CMD38_ARG_ERASE,
846 0);
847 if (err)
848 goto out;
849 }
Adrian Hunterbd788c92010-08-11 14:17:47 -0700850 err = mmc_erase(card, from, nr, arg);
851out:
Adrian Hunter67716322011-08-29 16:42:15 +0300852 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
853 goto retry;
854 if (!err)
855 mmc_blk_reset_success(md, type);
Adrian Hunterbd788c92010-08-11 14:17:47 -0700856 spin_lock_irq(&md->lock);
857 __blk_end_request(req, err, blk_rq_bytes(req));
858 spin_unlock_irq(&md->lock);
859
Adrian Hunterbd788c92010-08-11 14:17:47 -0700860 return err ? 0 : 1;
861}
862
Adrian Hunter49804542010-08-11 14:17:50 -0700863static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
864 struct request *req)
865{
866 struct mmc_blk_data *md = mq->data;
867 struct mmc_card *card = md->queue.card;
868 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300869 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -0700870
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900871 if (!(mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))) {
Adrian Hunter49804542010-08-11 14:17:50 -0700872 err = -EOPNOTSUPP;
873 goto out;
874 }
875
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900876 /* The sanitize operation is supported at v4.5 only */
877 if (mmc_can_sanitize(card)) {
878 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
879 EXT_CSD_SANITIZE_START, 1, 0);
880 goto out;
881 }
882
Adrian Hunter49804542010-08-11 14:17:50 -0700883 from = blk_rq_pos(req);
884 nr = blk_rq_sectors(req);
885
886 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
887 arg = MMC_SECURE_TRIM1_ARG;
888 else
889 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300890retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500891 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
892 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
893 INAND_CMD38_ARG_EXT_CSD,
894 arg == MMC_SECURE_TRIM1_ARG ?
895 INAND_CMD38_ARG_SECTRIM1 :
896 INAND_CMD38_ARG_SECERASE,
897 0);
898 if (err)
899 goto out;
900 }
Adrian Hunter49804542010-08-11 14:17:50 -0700901 err = mmc_erase(card, from, nr, arg);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500902 if (!err && arg == MMC_SECURE_TRIM1_ARG) {
903 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
904 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
905 INAND_CMD38_ARG_EXT_CSD,
906 INAND_CMD38_ARG_SECTRIM2,
907 0);
908 if (err)
909 goto out;
910 }
Adrian Hunter49804542010-08-11 14:17:50 -0700911 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500912 }
Adrian Hunter49804542010-08-11 14:17:50 -0700913out:
Adrian Hunter67716322011-08-29 16:42:15 +0300914 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
915 goto retry;
916 if (!err)
917 mmc_blk_reset_success(md, type);
Adrian Hunter49804542010-08-11 14:17:50 -0700918 spin_lock_irq(&md->lock);
919 __blk_end_request(req, err, blk_rq_bytes(req));
920 spin_unlock_irq(&md->lock);
921
Adrian Hunter49804542010-08-11 14:17:50 -0700922 return err ? 0 : 1;
923}
924
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500925static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
926{
927 struct mmc_blk_data *md = mq->data;
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900928 struct mmc_card *card = md->queue.card;
929 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500930
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900931 ret = mmc_flush_cache(card);
932 if (ret)
933 ret = -EIO;
934
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500935 spin_lock_irq(&md->lock);
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900936 __blk_end_request_all(req, ret);
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500937 spin_unlock_irq(&md->lock);
938
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900939 return ret ? 0 : 1;
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500940}
941
942/*
943 * Reformat current write as a reliable write, supporting
944 * both legacy and the enhanced reliable write MMC cards.
945 * In each transfer we'll handle only as much as a single
946 * reliable write can handle, thus finish the request in
947 * partial completions.
948 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500949static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
950 struct mmc_card *card,
951 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500952{
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500953 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
954 /* Legacy mode imposes restrictions on transfers. */
955 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
956 brq->data.blocks = 1;
957
958 if (brq->data.blocks > card->ext_csd.rel_sectors)
959 brq->data.blocks = card->ext_csd.rel_sectors;
960 else if (brq->data.blocks < card->ext_csd.rel_sectors)
961 brq->data.blocks = 1;
962 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500963}
964
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +0100965#define CMD_ERRORS \
966 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
967 R1_ADDRESS_ERROR | /* Misaligned address */ \
968 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
969 R1_WP_VIOLATION | /* Tried to write to protected block */ \
970 R1_CC_ERROR | /* Card controller error */ \
971 R1_ERROR) /* General/unknown error */
972
Per Forlinee8a43a2011-07-01 18:55:33 +0200973static int mmc_blk_err_check(struct mmc_card *card,
974 struct mmc_async_req *areq)
Per Forlind78d4a8a2011-07-01 18:55:30 +0200975{
Per Forlinee8a43a2011-07-01 18:55:33 +0200976 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
977 mmc_active);
978 struct mmc_blk_request *brq = &mq_mrq->brq;
979 struct request *req = mq_mrq->req;
Adrian Hunter67716322011-08-29 16:42:15 +0300980 int ecc_err = 0;
Per Forlind78d4a8a2011-07-01 18:55:30 +0200981
982 /*
983 * sbc.error indicates a problem with the set block count
984 * command. No data will have been transferred.
985 *
986 * cmd.error indicates a problem with the r/w command. No
987 * data will have been transferred.
988 *
989 * stop.error indicates a problem with the stop command. Data
990 * may have been transferred, or may still be transferring.
991 */
Adrian Hunter67716322011-08-29 16:42:15 +0300992 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
993 brq->data.error) {
994 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err)) {
Per Forlind78d4a8a2011-07-01 18:55:30 +0200995 case ERR_RETRY:
996 return MMC_BLK_RETRY;
997 case ERR_ABORT:
998 return MMC_BLK_ABORT;
999 case ERR_CONTINUE:
1000 break;
1001 }
1002 }
1003
1004 /*
1005 * Check for errors relating to the execution of the
1006 * initial command - such as address errors. No data
1007 * has been transferred.
1008 */
1009 if (brq->cmd.resp[0] & CMD_ERRORS) {
1010 pr_err("%s: r/w command failed, status = %#x\n",
1011 req->rq_disk->disk_name, brq->cmd.resp[0]);
1012 return MMC_BLK_ABORT;
1013 }
1014
1015 /*
1016 * Everything else is either success, or a data error of some
1017 * kind. If it was a write, we may have transitioned to
1018 * program mode, which we have to wait for it to complete.
1019 */
1020 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1021 u32 status;
1022 do {
1023 int err = get_card_status(card, &status, 5);
1024 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301025 pr_err("%s: error %d requesting status\n",
Per Forlind78d4a8a2011-07-01 18:55:30 +02001026 req->rq_disk->disk_name, err);
1027 return MMC_BLK_CMD_ERR;
1028 }
1029 /*
1030 * Some cards mishandle the status bits,
1031 * so make sure to check both the busy
1032 * indication and the card state.
1033 */
1034 } while (!(status & R1_READY_FOR_DATA) ||
1035 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1036 }
1037
1038 if (brq->data.error) {
1039 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1040 req->rq_disk->disk_name, brq->data.error,
1041 (unsigned)blk_rq_pos(req),
1042 (unsigned)blk_rq_sectors(req),
1043 brq->cmd.resp[0], brq->stop.resp[0]);
1044
1045 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001046 if (ecc_err)
1047 return MMC_BLK_ECC_ERR;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001048 return MMC_BLK_DATA_ERR;
1049 } else {
1050 return MMC_BLK_CMD_ERR;
1051 }
1052 }
1053
Adrian Hunter67716322011-08-29 16:42:15 +03001054 if (!brq->data.bytes_xfered)
1055 return MMC_BLK_RETRY;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001056
Adrian Hunter67716322011-08-29 16:42:15 +03001057 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1058 return MMC_BLK_PARTIAL;
1059
1060 return MMC_BLK_SUCCESS;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001061}
1062
Per Forlin54d49d72011-07-01 18:55:29 +02001063static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1064 struct mmc_card *card,
1065 int disable_multi,
1066 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Per Forlin54d49d72011-07-01 18:55:29 +02001068 u32 readcmd, writecmd;
1069 struct mmc_blk_request *brq = &mqrq->brq;
1070 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 struct mmc_blk_data *md = mq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001073 /*
1074 * Reliable writes are used to implement Forced Unit Access and
1075 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +02001076 *
1077 * XXX: this really needs a good explanation of why REQ_META
1078 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001079 */
1080 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1081 (req->cmd_flags & REQ_META)) &&
1082 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001083 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001084
Per Forlin54d49d72011-07-01 18:55:29 +02001085 memset(brq, 0, sizeof(struct mmc_blk_request));
1086 brq->mrq.cmd = &brq->cmd;
1087 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Per Forlin54d49d72011-07-01 18:55:29 +02001089 brq->cmd.arg = blk_rq_pos(req);
1090 if (!mmc_card_blockaddr(card))
1091 brq->cmd.arg <<= 9;
1092 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1093 brq->data.blksz = 512;
1094 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1095 brq->stop.arg = 0;
1096 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1097 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Per Forlin54d49d72011-07-01 18:55:29 +02001099 /*
1100 * The block layer doesn't support all sector count
1101 * restrictions, so we need to be prepared for too big
1102 * requests.
1103 */
1104 if (brq->data.blocks > card->host->max_blk_count)
1105 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001107 if (brq->data.blocks > 1) {
1108 /*
1109 * After a read error, we redo the request one sector
1110 * at a time in order to accurately determine which
1111 * sectors can be read successfully.
1112 */
1113 if (disable_multi)
1114 brq->data.blocks = 1;
1115
1116 /* Some controllers can't do multiblock reads due to hw bugs */
1117 if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1118 rq_data_dir(req) == READ)
1119 brq->data.blocks = 1;
1120 }
Per Forlin54d49d72011-07-01 18:55:29 +02001121
1122 if (brq->data.blocks > 1 || do_rel_wr) {
1123 /* SPI multiblock writes terminate using a special
1124 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001125 */
Per Forlin54d49d72011-07-01 18:55:29 +02001126 if (!mmc_host_is_spi(card->host) ||
1127 rq_data_dir(req) == READ)
1128 brq->mrq.stop = &brq->stop;
1129 readcmd = MMC_READ_MULTIPLE_BLOCK;
1130 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1131 } else {
1132 brq->mrq.stop = NULL;
1133 readcmd = MMC_READ_SINGLE_BLOCK;
1134 writecmd = MMC_WRITE_BLOCK;
1135 }
1136 if (rq_data_dir(req) == READ) {
1137 brq->cmd.opcode = readcmd;
1138 brq->data.flags |= MMC_DATA_READ;
1139 } else {
1140 brq->cmd.opcode = writecmd;
1141 brq->data.flags |= MMC_DATA_WRITE;
1142 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001143
Per Forlin54d49d72011-07-01 18:55:29 +02001144 if (do_rel_wr)
1145 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001146
Per Forlin54d49d72011-07-01 18:55:29 +02001147 /*
1148 * Pre-defined multi-block transfers are preferable to
1149 * open ended-ones (and necessary for reliable writes).
1150 * However, it is not sufficient to just send CMD23,
1151 * and avoid the final CMD12, as on an error condition
1152 * CMD12 (stop) needs to be sent anyway. This, coupled
1153 * with Auto-CMD23 enhancements provided by some
1154 * hosts, means that the complexity of dealing
1155 * with this is best left to the host. If CMD23 is
1156 * supported by card and host, we'll fill sbc in and let
1157 * the host deal with handling it correctly. This means
1158 * that for hosts that don't expose MMC_CAP_CMD23, no
1159 * change of behavior will be observed.
1160 *
1161 * N.B: Some MMC cards experience perf degradation.
1162 * We'll avoid using CMD23-bounded multiblock writes for
1163 * these, while retaining features like reliable writes.
1164 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Per Forlin54d49d72011-07-01 18:55:29 +02001166 if ((md->flags & MMC_BLK_CMD23) &&
1167 mmc_op_multi(brq->cmd.opcode) &&
1168 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23))) {
1169 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1170 brq->sbc.arg = brq->data.blocks |
1171 (do_rel_wr ? (1 << 31) : 0);
1172 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1173 brq->mrq.sbc = &brq->sbc;
1174 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001175
Per Forlin54d49d72011-07-01 18:55:29 +02001176 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001177
Per Forlin54d49d72011-07-01 18:55:29 +02001178 brq->data.sg = mqrq->sg;
1179 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001180
Per Forlin54d49d72011-07-01 18:55:29 +02001181 /*
1182 * Adjust the sg list so it is the same size as the
1183 * request.
1184 */
1185 if (brq->data.blocks != blk_rq_sectors(req)) {
1186 int i, data_size = brq->data.blocks << 9;
1187 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001188
Per Forlin54d49d72011-07-01 18:55:29 +02001189 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1190 data_size -= sg->length;
1191 if (data_size <= 0) {
1192 sg->length += data_size;
1193 i++;
1194 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001195 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001196 }
Per Forlin54d49d72011-07-01 18:55:29 +02001197 brq->data.sg_len = i;
1198 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001199
Per Forlinee8a43a2011-07-01 18:55:33 +02001200 mqrq->mmc_active.mrq = &brq->mrq;
1201 mqrq->mmc_active.err_check = mmc_blk_err_check;
1202
Per Forlin54d49d72011-07-01 18:55:29 +02001203 mmc_queue_bounce_pre(mqrq);
1204}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Adrian Hunter67716322011-08-29 16:42:15 +03001206static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1207 struct mmc_blk_request *brq, struct request *req,
1208 int ret)
1209{
1210 /*
1211 * If this is an SD card and we're writing, we can first
1212 * mark the known good sectors as ok.
1213 *
1214 * If the card is not SD, we can still ok written sectors
1215 * as reported by the controller (which might be less than
1216 * the real number of written sectors, but never more).
1217 */
1218 if (mmc_card_sd(card)) {
1219 u32 blocks;
1220
1221 blocks = mmc_sd_num_wr_blocks(card);
1222 if (blocks != (u32)-1) {
1223 spin_lock_irq(&md->lock);
1224 ret = __blk_end_request(req, 0, blocks << 9);
1225 spin_unlock_irq(&md->lock);
1226 }
1227 } else {
1228 spin_lock_irq(&md->lock);
1229 ret = __blk_end_request(req, 0, brq->data.bytes_xfered);
1230 spin_unlock_irq(&md->lock);
1231 }
1232 return ret;
1233}
1234
Per Forlinee8a43a2011-07-01 18:55:33 +02001235static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001236{
1237 struct mmc_blk_data *md = mq->data;
1238 struct mmc_card *card = md->queue.card;
1239 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunter67716322011-08-29 16:42:15 +03001240 int ret = 1, disable_multi = 0, retry = 0, type;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001241 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001242 struct mmc_queue_req *mq_rq;
1243 struct request *req;
1244 struct mmc_async_req *areq;
1245
1246 if (!rqc && !mq->mqrq_prev->req)
1247 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001248
1249 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001250 if (rqc) {
1251 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1252 areq = &mq->mqrq_cur->mmc_active;
1253 } else
1254 areq = NULL;
1255 areq = mmc_start_req(card->host, areq, (int *) &status);
1256 if (!areq)
1257 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +02001258
Per Forlinee8a43a2011-07-01 18:55:33 +02001259 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1260 brq = &mq_rq->brq;
1261 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001262 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001263 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001264
Per Forlind78d4a8a2011-07-01 18:55:30 +02001265 switch (status) {
1266 case MMC_BLK_SUCCESS:
1267 case MMC_BLK_PARTIAL:
1268 /*
1269 * A block was successfully transferred.
1270 */
Adrian Hunter67716322011-08-29 16:42:15 +03001271 mmc_blk_reset_success(md, type);
Per Forlind78d4a8a2011-07-01 18:55:30 +02001272 spin_lock_irq(&md->lock);
1273 ret = __blk_end_request(req, 0,
1274 brq->data.bytes_xfered);
1275 spin_unlock_irq(&md->lock);
Adrian Hunter67716322011-08-29 16:42:15 +03001276 /*
1277 * If the blk_end_request function returns non-zero even
1278 * though all data has been transferred and no errors
1279 * were returned by the host controller, it's a bug.
1280 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001281 if (status == MMC_BLK_SUCCESS && ret) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301282 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Per Forlinee8a43a2011-07-01 18:55:33 +02001283 __func__, blk_rq_bytes(req),
1284 brq->data.bytes_xfered);
1285 rqc = NULL;
1286 goto cmd_abort;
1287 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02001288 break;
1289 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001290 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1291 if (!mmc_blk_reset(md, card->host, type))
1292 break;
1293 goto cmd_abort;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001294 case MMC_BLK_RETRY:
1295 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001296 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001297 /* Fall through */
Per Forlind78d4a8a2011-07-01 18:55:30 +02001298 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001299 if (!mmc_blk_reset(md, card->host, type))
1300 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001301 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001302 case MMC_BLK_DATA_ERR: {
1303 int err;
1304
1305 err = mmc_blk_reset(md, card->host, type);
1306 if (!err)
1307 break;
1308 if (err == -ENODEV)
1309 goto cmd_abort;
1310 /* Fall through */
1311 }
1312 case MMC_BLK_ECC_ERR:
1313 if (brq->data.blocks > 1) {
1314 /* Redo read one sector at a time */
1315 pr_warning("%s: retrying using single block read\n",
1316 req->rq_disk->disk_name);
1317 disable_multi = 1;
1318 break;
1319 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02001320 /*
1321 * After an error, we redo I/O one sector at a
1322 * time, so we only reach here after trying to
1323 * read a single sector.
1324 */
1325 spin_lock_irq(&md->lock);
1326 ret = __blk_end_request(req, -EIO,
1327 brq->data.blksz);
1328 spin_unlock_irq(&md->lock);
Per Forlinee8a43a2011-07-01 18:55:33 +02001329 if (!ret)
1330 goto start_new_req;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001331 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001332 }
1333
Per Forlinee8a43a2011-07-01 18:55:33 +02001334 if (ret) {
1335 /*
Adrian Hunter67716322011-08-29 16:42:15 +03001336 * In case of a incomplete request
Per Forlinee8a43a2011-07-01 18:55:33 +02001337 * prepare it again and resend.
1338 */
1339 mmc_blk_rw_rq_prep(mq_rq, card, disable_multi, mq);
1340 mmc_start_req(card->host, &mq_rq->mmc_active, NULL);
1341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 } while (ret);
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return 1;
1345
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001346 cmd_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 spin_lock_irq(&md->lock);
Kiyoshi Uedafd539832007-12-11 17:48:29 -05001348 while (ret)
1349 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 spin_unlock_irq(&md->lock);
1351
Per Forlinee8a43a2011-07-01 18:55:33 +02001352 start_new_req:
1353 if (rqc) {
1354 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1355 mmc_start_req(card->host, &mq->mqrq_cur->mmc_active, NULL);
1356 }
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return 0;
1359}
1360
Adrian Hunterbd788c92010-08-11 14:17:47 -07001361static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1362{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001363 int ret;
1364 struct mmc_blk_data *md = mq->data;
1365 struct mmc_card *card = md->queue.card;
1366
Per Forlinee8a43a2011-07-01 18:55:33 +02001367 if (req && !mq->mqrq_prev->req)
1368 /* claim host only for the first request */
1369 mmc_claim_host(card->host);
1370
Andrei Warkentin371a6892011-04-11 18:10:25 -05001371 ret = mmc_blk_part_switch(card, md);
1372 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03001373 if (req) {
1374 spin_lock_irq(&md->lock);
1375 __blk_end_request_all(req, -EIO);
1376 spin_unlock_irq(&md->lock);
1377 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001378 ret = 0;
1379 goto out;
1380 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001381
Per Forlinee8a43a2011-07-01 18:55:33 +02001382 if (req && req->cmd_flags & REQ_DISCARD) {
1383 /* complete ongoing async transfer before issuing discard */
1384 if (card->host->areq)
1385 mmc_blk_issue_rw_rq(mq, NULL);
Adrian Hunter49804542010-08-11 14:17:50 -07001386 if (req->cmd_flags & REQ_SECURE)
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001387 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001388 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001389 ret = mmc_blk_issue_discard_rq(mq, req);
Per Forlinee8a43a2011-07-01 18:55:33 +02001390 } else if (req && req->cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09001391 /* complete ongoing async transfer before issuing flush */
1392 if (card->host->areq)
1393 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001394 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001395 } else {
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001396 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001397 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001398
Andrei Warkentin371a6892011-04-11 18:10:25 -05001399out:
Per Forlinee8a43a2011-07-01 18:55:33 +02001400 if (!req)
1401 /* release host only when there are no more requests */
1402 mmc_release_host(card->host);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001403 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001404}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Russell Kinga6f6c962006-01-03 22:38:44 +00001406static inline int mmc_blk_readonly(struct mmc_card *card)
1407{
1408 return mmc_card_readonly(card) ||
1409 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1410}
1411
Andrei Warkentin371a6892011-04-11 18:10:25 -05001412static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1413 struct device *parent,
1414 sector_t size,
1415 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001416 const char *subname,
1417 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 struct mmc_blk_data *md;
1420 int devidx, ret;
1421
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001422 devidx = find_first_zero_bit(dev_use, max_devices);
1423 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return ERR_PTR(-ENOSPC);
1425 __set_bit(devidx, dev_use);
1426
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001427 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00001428 if (!md) {
1429 ret = -ENOMEM;
1430 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
Russell Kinga6f6c962006-01-03 22:38:44 +00001432
Russell Kinga6f6c962006-01-03 22:38:44 +00001433 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001434 * !subname implies we are creating main mmc_blk_data that will be
1435 * associated with mmc_card with mmc_set_drvdata. Due to device
1436 * partitions, devidx will not coincide with a per-physical card
1437 * index anymore so we keep track of a name index.
1438 */
1439 if (!subname) {
1440 md->name_idx = find_first_zero_bit(name_use, max_devices);
1441 __set_bit(md->name_idx, name_use);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001442 } else
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001443 md->name_idx = ((struct mmc_blk_data *)
1444 dev_to_disk(parent)->private_data)->name_idx;
1445
Johan Rudholmadd710e2011-12-02 08:51:06 +01001446 md->area_type = area_type;
1447
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001448 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00001449 * Set the read-only status based on the supported commands
1450 * and the write protect switch.
1451 */
1452 md->read_only = mmc_blk_readonly(card);
1453
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001454 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00001455 if (md->disk == NULL) {
1456 ret = -ENOMEM;
1457 goto err_kfree;
1458 }
1459
1460 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001461 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00001462 md->usage = 1;
1463
Adrian Hunterd09408a2011-06-23 13:40:28 +03001464 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00001465 if (ret)
1466 goto err_putdisk;
1467
Russell Kinga6f6c962006-01-03 22:38:44 +00001468 md->queue.issue_fn = mmc_blk_issue_rq;
1469 md->queue.data = md;
1470
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001471 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001472 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00001473 md->disk->fops = &mmc_bdops;
1474 md->disk->private_data = md;
1475 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001476 md->disk->driverfs_dev = parent;
1477 set_disk_ro(md->disk, md->read_only || default_ro);
Russell Kinga6f6c962006-01-03 22:38:44 +00001478
1479 /*
1480 * As discussed on lkml, GENHD_FL_REMOVABLE should:
1481 *
1482 * - be set for removable media with permanent block devices
1483 * - be unset for removable block devices with permanent media
1484 *
1485 * Since MMC block devices clearly fall under the second
1486 * case, we do not set GENHD_FL_REMOVABLE. Userspace
1487 * should use the block device creation/destruction hotplug
1488 * messages to tell when the card is present.
1489 */
1490
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001491 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1492 "mmcblk%d%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00001493
Martin K. Petersene1defc42009-05-22 17:17:49 -04001494 blk_queue_logical_block_size(md->queue.queue, 512);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001495 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001496
Andrei Warkentinf0d89972011-05-23 15:06:38 -05001497 if (mmc_host_cmd23(card->host)) {
1498 if (mmc_card_mmc(card) ||
1499 (mmc_card_sd(card) &&
1500 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1501 md->flags |= MMC_BLK_CMD23;
1502 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001503
1504 if (mmc_card_mmc(card) &&
1505 md->flags & MMC_BLK_CMD23 &&
1506 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1507 card->ext_csd.rel_sectors)) {
1508 md->flags |= MMC_BLK_REL_WR;
1509 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1510 }
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00001513
1514 err_putdisk:
1515 put_disk(md->disk);
1516 err_kfree:
1517 kfree(md);
1518 out:
1519 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
Andrei Warkentin371a6892011-04-11 18:10:25 -05001522static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1523{
1524 sector_t size;
1525 struct mmc_blk_data *md;
1526
1527 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1528 /*
1529 * The EXT_CSD sector count is in number or 512 byte
1530 * sectors.
1531 */
1532 size = card->ext_csd.sectors;
1533 } else {
1534 /*
1535 * The CSD capacity field is in units of read_blkbits.
1536 * set_capacity takes units of 512 bytes.
1537 */
1538 size = card->csd.capacity << (card->csd.read_blkbits - 9);
1539 }
1540
Johan Rudholmadd710e2011-12-02 08:51:06 +01001541 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
1542 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001543 return md;
1544}
1545
1546static int mmc_blk_alloc_part(struct mmc_card *card,
1547 struct mmc_blk_data *md,
1548 unsigned int part_type,
1549 sector_t size,
1550 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001551 const char *subname,
1552 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05001553{
1554 char cap_str[10];
1555 struct mmc_blk_data *part_md;
1556
1557 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001558 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001559 if (IS_ERR(part_md))
1560 return PTR_ERR(part_md);
1561 part_md->part_type = part_type;
1562 list_add(&part_md->part, &md->part);
1563
1564 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1565 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05301566 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05001567 part_md->disk->disk_name, mmc_card_id(card),
1568 mmc_card_name(card), part_md->part_type, cap_str);
1569 return 0;
1570}
1571
Namjae Jeone0c368d2011-10-06 23:41:38 +09001572/* MMC Physical partitions consist of two boot partitions and
1573 * up to four general purpose partitions.
1574 * For each partition enabled in EXT_CSD a block device will be allocatedi
1575 * to provide access to the partition.
1576 */
1577
Andrei Warkentin371a6892011-04-11 18:10:25 -05001578static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1579{
Namjae Jeone0c368d2011-10-06 23:41:38 +09001580 int idx, ret = 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001581
1582 if (!mmc_card_mmc(card))
1583 return 0;
1584
Namjae Jeone0c368d2011-10-06 23:41:38 +09001585 for (idx = 0; idx < card->nr_parts; idx++) {
1586 if (card->part[idx].size) {
1587 ret = mmc_blk_alloc_part(card, md,
1588 card->part[idx].part_cfg,
1589 card->part[idx].size >> 9,
1590 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001591 card->part[idx].name,
1592 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09001593 if (ret)
1594 return ret;
1595 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001596 }
1597
1598 return ret;
1599}
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601static int
1602mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
1603{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int err;
1605
Pierre Ossmanb8558852007-01-03 19:47:29 +01001606 mmc_claim_host(card->host);
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001607 err = mmc_set_blocklen(card, 512);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001608 mmc_release_host(card->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301611 pr_err("%s: unable to set block size to 512: %d\n",
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001612 md->disk->disk_name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return -EINVAL;
1614 }
1615
1616 return 0;
1617}
1618
Andrei Warkentin371a6892011-04-11 18:10:25 -05001619static void mmc_blk_remove_req(struct mmc_blk_data *md)
1620{
Johan Rudholmadd710e2011-12-02 08:51:06 +01001621 struct mmc_card *card;
1622
Andrei Warkentin371a6892011-04-11 18:10:25 -05001623 if (md) {
Johan Rudholmadd710e2011-12-02 08:51:06 +01001624 card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001625 if (md->disk->flags & GENHD_FL_UP) {
1626 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001627 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1628 card->ext_csd.boot_ro_lockable)
1629 device_remove_file(disk_to_dev(md->disk),
1630 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001631
1632 /* Stop new requests from getting into the queue */
1633 del_gendisk(md->disk);
1634 }
1635
1636 /* Then flush out any already in there */
1637 mmc_cleanup_queue(&md->queue);
1638 mmc_blk_put(md);
1639 }
1640}
1641
1642static void mmc_blk_remove_parts(struct mmc_card *card,
1643 struct mmc_blk_data *md)
1644{
1645 struct list_head *pos, *q;
1646 struct mmc_blk_data *part_md;
1647
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001648 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001649 list_for_each_safe(pos, q, &md->part) {
1650 part_md = list_entry(pos, struct mmc_blk_data, part);
1651 list_del(pos);
1652 mmc_blk_remove_req(part_md);
1653 }
1654}
1655
1656static int mmc_add_disk(struct mmc_blk_data *md)
1657{
1658 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01001659 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001660
1661 add_disk(md->disk);
1662 md->force_ro.show = force_ro_show;
1663 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05301664 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001665 md->force_ro.attr.name = "force_ro";
1666 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1667 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1668 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01001669 goto force_ro_fail;
1670
1671 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1672 card->ext_csd.boot_ro_lockable) {
1673 mode_t mode;
1674
1675 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
1676 mode = S_IRUGO;
1677 else
1678 mode = S_IRUGO | S_IWUSR;
1679
1680 md->power_ro_lock.show = power_ro_lock_show;
1681 md->power_ro_lock.store = power_ro_lock_store;
1682 md->power_ro_lock.attr.mode = mode;
1683 md->power_ro_lock.attr.name =
1684 "ro_lock_until_next_power_on";
1685 ret = device_create_file(disk_to_dev(md->disk),
1686 &md->power_ro_lock);
1687 if (ret)
1688 goto power_ro_lock_fail;
1689 }
1690 return ret;
1691
1692power_ro_lock_fail:
1693 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1694force_ro_fail:
1695 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001696
1697 return ret;
1698}
1699
Chris Ballc59d4472011-11-11 22:01:43 -05001700#define CID_MANFID_SANDISK 0x2
1701#define CID_MANFID_TOSHIBA 0x11
1702#define CID_MANFID_MICRON 0x13
1703
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001704static const struct mmc_fixup blk_fixups[] =
1705{
Chris Ballc59d4472011-11-11 22:01:43 -05001706 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
1707 MMC_QUIRK_INAND_CMD38),
1708 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
1709 MMC_QUIRK_INAND_CMD38),
1710 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
1711 MMC_QUIRK_INAND_CMD38),
1712 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
1713 MMC_QUIRK_INAND_CMD38),
1714 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
1715 MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001716
1717 /*
1718 * Some MMC cards experience performance degradation with CMD23
1719 * instead of CMD12-bounded multiblock transfers. For now we'll
1720 * black list what's bad...
1721 * - Certain Toshiba cards.
1722 *
1723 * N.B. This doesn't affect SD cards.
1724 */
Chris Ballc59d4472011-11-11 22:01:43 -05001725 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001726 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05001727 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001728 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05001729 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001730 MMC_QUIRK_BLK_NO_CMD23),
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01001731
1732 /*
1733 * Some Micron MMC cards needs longer data read timeout than
1734 * indicated in CSD.
1735 */
Chris Ballc59d4472011-11-11 22:01:43 -05001736 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01001737 MMC_QUIRK_LONG_READ_TIME),
1738
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001739 END_FIXUP
1740};
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742static int mmc_blk_probe(struct mmc_card *card)
1743{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001744 struct mmc_blk_data *md, *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 int err;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001746 char cap_str[10];
1747
Pierre Ossman912490d2005-05-21 10:27:02 +01001748 /*
1749 * Check that the card supports the command class(es) we need.
1750 */
1751 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return -ENODEV;
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 md = mmc_blk_alloc(card);
1755 if (IS_ERR(md))
1756 return PTR_ERR(md);
1757
1758 err = mmc_blk_set_blksize(md, card);
1759 if (err)
1760 goto out;
1761
Yi Li444122f2009-02-05 15:31:57 +08001762 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001763 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05301764 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001766 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Andrei Warkentin371a6892011-04-11 18:10:25 -05001768 if (mmc_blk_alloc_parts(card, md))
1769 goto out;
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 mmc_set_drvdata(card, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001772 mmc_fixup_device(card, blk_fixups);
1773
Andrei Warkentin371a6892011-04-11 18:10:25 -05001774 if (mmc_add_disk(md))
1775 goto out;
1776
1777 list_for_each_entry(part_md, &md->part, part) {
1778 if (mmc_add_disk(part_md))
1779 goto out;
1780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 return 0;
1782
1783 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05001784 mmc_blk_remove_parts(card, md);
1785 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return err;
1787}
1788
1789static void mmc_blk_remove(struct mmc_card *card)
1790{
1791 struct mmc_blk_data *md = mmc_get_drvdata(card);
1792
Andrei Warkentin371a6892011-04-11 18:10:25 -05001793 mmc_blk_remove_parts(card, md);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03001794 mmc_claim_host(card->host);
1795 mmc_blk_part_switch(card, md);
1796 mmc_release_host(card->host);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001797 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 mmc_set_drvdata(card, NULL);
1799}
1800
1801#ifdef CONFIG_PM
1802static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
1803{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001804 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 struct mmc_blk_data *md = mmc_get_drvdata(card);
1806
1807 if (md) {
1808 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001809 list_for_each_entry(part_md, &md->part, part) {
1810 mmc_queue_suspend(&part_md->queue);
1811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
1813 return 0;
1814}
1815
1816static int mmc_blk_resume(struct mmc_card *card)
1817{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001818 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 struct mmc_blk_data *md = mmc_get_drvdata(card);
1820
1821 if (md) {
1822 mmc_blk_set_blksize(md, card);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001823
1824 /*
1825 * Resume involves the card going into idle state,
1826 * so current partition is always the main one.
1827 */
1828 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001830 list_for_each_entry(part_md, &md->part, part) {
1831 mmc_queue_resume(&part_md->queue);
1832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834 return 0;
1835}
1836#else
1837#define mmc_blk_suspend NULL
1838#define mmc_blk_resume NULL
1839#endif
1840
1841static struct mmc_driver mmc_driver = {
1842 .drv = {
1843 .name = "mmcblk",
1844 },
1845 .probe = mmc_blk_probe,
1846 .remove = mmc_blk_remove,
1847 .suspend = mmc_blk_suspend,
1848 .resume = mmc_blk_resume,
1849};
1850
1851static int __init mmc_blk_init(void)
1852{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001853 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001855 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1856 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1857
1858 max_devices = 256 / perdev_minors;
1859
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001860 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1861 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001864 res = mmc_register_driver(&mmc_driver);
1865 if (res)
1866 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001868 return 0;
1869 out2:
1870 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 out:
1872 return res;
1873}
1874
1875static void __exit mmc_blk_exit(void)
1876{
1877 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001878 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
1881module_init(mmc_blk_init);
1882module_exit(mmc_blk_exit);
1883
1884MODULE_LICENSE("GPL");
1885MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1886