blob: 697c223355afc7784cae2fcde6dcda4df53a5889 [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 Ossman385e3222006-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 Thummaa8ad82c2011-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{
Colin Cross71b54d42010-09-03 12:41:21 -0700146 int devidx = disk->first_minor / perdev_minors;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500147 return devidx;
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static void mmc_blk_put(struct mmc_blk_data *md)
151{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000152 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 md->usage--;
154 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500155 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800156 blk_cleanup_queue(md->queue.queue);
157
David Woodhouse1dff3142007-11-21 18:45:12 +0100158 __clear_bit(devidx, dev_use);
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 kfree(md);
162 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000163 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Johan Rudholmadd710e2011-12-02 08:51:06 +0100166static ssize_t power_ro_lock_show(struct device *dev,
167 struct device_attribute *attr, char *buf)
168{
169 int ret;
170 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
171 struct mmc_card *card = md->queue.card;
172 int locked = 0;
173
174 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
175 locked = 2;
176 else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
177 locked = 1;
178
179 ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
180
181 return ret;
182}
183
184static ssize_t power_ro_lock_store(struct device *dev,
185 struct device_attribute *attr, const char *buf, size_t count)
186{
187 int ret;
188 struct mmc_blk_data *md, *part_md;
189 struct mmc_card *card;
190 unsigned long set;
191
192 if (kstrtoul(buf, 0, &set))
193 return -EINVAL;
194
195 if (set != 1)
196 return count;
197
198 md = mmc_blk_get(dev_to_disk(dev));
199 card = md->queue.card;
200
201 mmc_claim_host(card->host);
202
203 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
204 card->ext_csd.boot_ro_lock |
205 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
206 card->ext_csd.part_time);
207 if (ret)
208 pr_err("%s: Locking boot partition ro until next power on failed: %d\n", md->disk->disk_name, ret);
209 else
210 card->ext_csd.boot_ro_lock |= EXT_CSD_BOOT_WP_B_PWR_WP_EN;
211
212 mmc_release_host(card->host);
213
214 if (!ret) {
215 pr_info("%s: Locking boot partition ro until next power on\n",
216 md->disk->disk_name);
217 set_disk_ro(md->disk, 1);
218
219 list_for_each_entry(part_md, &md->part, part)
220 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
221 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
222 set_disk_ro(part_md->disk, 1);
223 }
224 }
225
226 mmc_blk_put(md);
227 return count;
228}
229
Andrei Warkentin371a6892011-04-11 18:10:25 -0500230static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
231 char *buf)
232{
233 int ret;
234 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
235
236 ret = snprintf(buf, PAGE_SIZE, "%d",
237 get_disk_ro(dev_to_disk(dev)) ^
238 md->read_only);
239 mmc_blk_put(md);
240 return ret;
241}
242
243static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
244 const char *buf, size_t count)
245{
246 int ret;
247 char *end;
248 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
249 unsigned long set = simple_strtoul(buf, &end, 0);
250 if (end == buf) {
251 ret = -EINVAL;
252 goto out;
253 }
254
255 set_disk_ro(dev_to_disk(dev), set || md->read_only);
256 ret = count;
257out:
258 mmc_blk_put(md);
259 return ret;
260}
261
Al Viroa5a15612008-03-02 10:33:30 -0500262static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Al Viroa5a15612008-03-02 10:33:30 -0500264 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 int ret = -ENXIO;
266
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200267 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (md) {
269 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500270 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700272
Al Viroa5a15612008-03-02 10:33:30 -0500273 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700274 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700275 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200278 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 return ret;
281}
282
Al Viroa5a15612008-03-02 10:33:30 -0500283static int mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Al Viroa5a15612008-03-02 10:33:30 -0500285 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200287 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200289 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return 0;
291}
292
293static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800294mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800296 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
297 geo->heads = 4;
298 geo->sectors = 16;
299 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
John Calixtocb87ea22011-04-26 18:56:29 -0400302struct mmc_blk_ioc_data {
303 struct mmc_ioc_cmd ic;
304 unsigned char *buf;
305 u64 buf_bytes;
306};
307
308static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
309 struct mmc_ioc_cmd __user *user)
310{
311 struct mmc_blk_ioc_data *idata;
312 int err;
313
314 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
315 if (!idata) {
316 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400317 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400318 }
319
320 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
321 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400322 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400323 }
324
325 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
326 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
327 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400328 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400329 }
330
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100331 if (!idata->buf_bytes)
332 return idata;
333
John Calixtocb87ea22011-04-26 18:56:29 -0400334 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
335 if (!idata->buf) {
336 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400337 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400338 }
339
340 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
341 idata->ic.data_ptr, idata->buf_bytes)) {
342 err = -EFAULT;
343 goto copy_err;
344 }
345
346 return idata;
347
348copy_err:
349 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400350idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400351 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400352out:
John Calixtocb87ea22011-04-26 18:56:29 -0400353 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400354}
355
356static int mmc_blk_ioctl_cmd(struct block_device *bdev,
357 struct mmc_ioc_cmd __user *ic_ptr)
358{
359 struct mmc_blk_ioc_data *idata;
360 struct mmc_blk_data *md;
361 struct mmc_card *card;
362 struct mmc_command cmd = {0};
363 struct mmc_data data = {0};
Venkatraman Sad5fd972011-08-25 00:30:50 +0530364 struct mmc_request mrq = {NULL};
John Calixtocb87ea22011-04-26 18:56:29 -0400365 struct scatterlist sg;
366 int err;
367
368 /*
369 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
370 * whole block device, not on a partition. This prevents overspray
371 * between sibling partitions.
372 */
373 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
374 return -EPERM;
375
376 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
377 if (IS_ERR(idata))
378 return PTR_ERR(idata);
379
John Calixtocb87ea22011-04-26 18:56:29 -0400380 md = mmc_blk_get(bdev->bd_disk);
381 if (!md) {
382 err = -EINVAL;
383 goto cmd_done;
384 }
385
386 card = md->queue.card;
387 if (IS_ERR(card)) {
388 err = PTR_ERR(card);
389 goto cmd_done;
390 }
391
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100392 cmd.opcode = idata->ic.opcode;
393 cmd.arg = idata->ic.arg;
394 cmd.flags = idata->ic.flags;
395
396 if (idata->buf_bytes) {
397 data.sg = &sg;
398 data.sg_len = 1;
399 data.blksz = idata->ic.blksz;
400 data.blocks = idata->ic.blocks;
401
402 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
403
404 if (idata->ic.write_flag)
405 data.flags = MMC_DATA_WRITE;
406 else
407 data.flags = MMC_DATA_READ;
408
409 /* data.flags must already be set before doing this. */
410 mmc_set_data_timeout(&data, card);
411
412 /* Allow overriding the timeout_ns for empirical tuning. */
413 if (idata->ic.data_timeout_ns)
414 data.timeout_ns = idata->ic.data_timeout_ns;
415
416 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
417 /*
418 * Pretend this is a data transfer and rely on the
419 * host driver to compute timeout. When all host
420 * drivers support cmd.cmd_timeout for R1B, this
421 * can be changed to:
422 *
423 * mrq.data = NULL;
424 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
425 */
426 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
427 }
428
429 mrq.data = &data;
430 }
431
432 mrq.cmd = &cmd;
433
John Calixtocb87ea22011-04-26 18:56:29 -0400434 mmc_claim_host(card->host);
435
436 if (idata->ic.is_acmd) {
437 err = mmc_app_cmd(card->host, card);
438 if (err)
439 goto cmd_rel_host;
440 }
441
John Calixtocb87ea22011-04-26 18:56:29 -0400442 mmc_wait_for_req(card->host, &mrq);
443
444 if (cmd.error) {
445 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
446 __func__, cmd.error);
447 err = cmd.error;
448 goto cmd_rel_host;
449 }
450 if (data.error) {
451 dev_err(mmc_dev(card->host), "%s: data error %d\n",
452 __func__, data.error);
453 err = data.error;
454 goto cmd_rel_host;
455 }
456
457 /*
458 * According to the SD specs, some commands require a delay after
459 * issuing the command.
460 */
461 if (idata->ic.postsleep_min_us)
462 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
463
464 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
465 err = -EFAULT;
466 goto cmd_rel_host;
467 }
468
469 if (!idata->ic.write_flag) {
470 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
471 idata->buf, idata->buf_bytes)) {
472 err = -EFAULT;
473 goto cmd_rel_host;
474 }
475 }
476
477cmd_rel_host:
478 mmc_release_host(card->host);
479
480cmd_done:
481 mmc_blk_put(md);
482 kfree(idata->buf);
483 kfree(idata);
484 return err;
485}
486
487static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
488 unsigned int cmd, unsigned long arg)
489{
490 int ret = -EINVAL;
491 if (cmd == MMC_IOC_CMD)
492 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
493 return ret;
494}
495
496#ifdef CONFIG_COMPAT
497static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
498 unsigned int cmd, unsigned long arg)
499{
500 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
501}
502#endif
503
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700504static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500505 .open = mmc_blk_open,
506 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800507 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400509 .ioctl = mmc_blk_ioctl,
510#ifdef CONFIG_COMPAT
511 .compat_ioctl = mmc_blk_compat_ioctl,
512#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513};
514
Andrei Warkentin371a6892011-04-11 18:10:25 -0500515static inline int mmc_blk_part_switch(struct mmc_card *card,
516 struct mmc_blk_data *md)
517{
518 int ret;
519 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300520
Andrei Warkentin371a6892011-04-11 18:10:25 -0500521 if (main_md->part_curr == md->part_type)
522 return 0;
523
524 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300525 u8 part_config = card->ext_csd.part_config;
526
527 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
528 part_config |= md->part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500529
530 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300531 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500532 card->ext_csd.part_time);
533 if (ret)
534 return ret;
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300535
536 card->ext_csd.part_config = part_config;
Adrian Hunter67716322011-08-29 16:42:15 +0300537 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500538
539 main_md->part_curr = md->part_type;
540 return 0;
541}
542
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700543static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
544{
545 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100546 u32 result;
547 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700548
Venkatraman Sad5fd972011-08-25 00:30:50 +0530549 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400550 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400551 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700552 unsigned int timeout_us;
553
554 struct scatterlist sg;
555
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700556 cmd.opcode = MMC_APP_CMD;
557 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700558 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700559
560 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700561 if (err)
562 return (u32)-1;
563 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700564 return (u32)-1;
565
566 memset(&cmd, 0, sizeof(struct mmc_command));
567
568 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
569 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700570 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700571
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700572 data.timeout_ns = card->csd.tacc_ns * 100;
573 data.timeout_clks = card->csd.tacc_clks * 100;
574
575 timeout_us = data.timeout_ns / 1000;
576 timeout_us += data.timeout_clks * 1000 /
577 (card->host->ios.clock / 1000);
578
579 if (timeout_us > 100000) {
580 data.timeout_ns = 100000000;
581 data.timeout_clks = 0;
582 }
583
584 data.blksz = 4;
585 data.blocks = 1;
586 data.flags = MMC_DATA_READ;
587 data.sg = &sg;
588 data.sg_len = 1;
589
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700590 mrq.cmd = &cmd;
591 mrq.data = &data;
592
Ben Dooks051913d2009-06-08 23:33:57 +0100593 blocks = kmalloc(4, GFP_KERNEL);
594 if (!blocks)
595 return (u32)-1;
596
597 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700598
599 mmc_wait_for_req(card->host, &mrq);
600
Ben Dooks051913d2009-06-08 23:33:57 +0100601 result = ntohl(*blocks);
602 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700603
Ben Dooks051913d2009-06-08 23:33:57 +0100604 if (cmd.error || data.error)
605 result = (u32)-1;
606
607 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700608}
609
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100610static int send_stop(struct mmc_card *card, u32 *status)
611{
612 struct mmc_command cmd = {0};
613 int err;
614
615 cmd.opcode = MMC_STOP_TRANSMISSION;
616 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
617 err = mmc_wait_for_cmd(card->host, &cmd, 5);
618 if (err == 0)
619 *status = cmd.resp[0];
620 return err;
621}
622
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100623static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300624{
Chris Ball1278dba2011-04-13 23:40:30 -0400625 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300626 int err;
627
Adrian Hunter504f1912008-10-16 12:55:25 +0300628 cmd.opcode = MMC_SEND_STATUS;
629 if (!mmc_host_is_spi(card->host))
630 cmd.arg = card->rca << 16;
631 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100632 err = mmc_wait_for_cmd(card->host, &cmd, retries);
633 if (err == 0)
634 *status = cmd.resp[0];
635 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300636}
637
Sujit Reddy Thummaa8ad82c2011-12-08 14:05:50 +0530638#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100639#define ERR_RETRY 2
640#define ERR_ABORT 1
641#define ERR_CONTINUE 0
642
643static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
644 bool status_valid, u32 status)
645{
646 switch (error) {
647 case -EILSEQ:
648 /* response crc error, retry the r/w cmd */
649 pr_err("%s: %s sending %s command, card status %#x\n",
650 req->rq_disk->disk_name, "response CRC error",
651 name, status);
652 return ERR_RETRY;
653
654 case -ETIMEDOUT:
655 pr_err("%s: %s sending %s command, card status %#x\n",
656 req->rq_disk->disk_name, "timed out", name, status);
657
658 /* If the status cmd initially failed, retry the r/w cmd */
659 if (!status_valid)
660 return ERR_RETRY;
661
662 /*
663 * If it was a r/w cmd crc error, or illegal command
664 * (eg, issued in wrong state) then retry - we should
665 * have corrected the state problem above.
666 */
667 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
668 return ERR_RETRY;
669
670 /* Otherwise abort the command */
671 return ERR_ABORT;
672
673 default:
674 /* We don't understand the error code the driver gave us */
675 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
676 req->rq_disk->disk_name, error, status);
677 return ERR_ABORT;
678 }
679}
680
681/*
682 * Initial r/w and stop cmd error recovery.
683 * We don't know whether the card received the r/w cmd or not, so try to
684 * restore things back to a sane state. Essentially, we do this as follows:
685 * - Obtain card status. If the first attempt to obtain card status fails,
686 * the status word will reflect the failed status cmd, not the failed
687 * r/w cmd. If we fail to obtain card status, it suggests we can no
688 * longer communicate with the card.
689 * - Check the card state. If the card received the cmd but there was a
690 * transient problem with the response, it might still be in a data transfer
691 * mode. Try to send it a stop command. If this fails, we can't recover.
692 * - If the r/w cmd failed due to a response CRC error, it was probably
693 * transient, so retry the cmd.
694 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
695 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
696 * illegal cmd, retry.
697 * Otherwise we don't understand what happened, so abort.
698 */
699static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
Adrian Hunter67716322011-08-29 16:42:15 +0300700 struct mmc_blk_request *brq, int *ecc_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100701{
702 bool prev_cmd_status_valid = true;
703 u32 status, stop_status = 0;
704 int err, retry;
705
Sujit Reddy Thummaa8ad82c2011-12-08 14:05:50 +0530706 if (mmc_card_removed(card))
707 return ERR_NOMEDIUM;
708
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100709 /*
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. */
Sujit Reddy Thummaa8ad82c2011-12-08 14:05:50 +0530725 if (err) {
726 /* Check if the card is removed */
727 if (mmc_detect_card_removed(card->host))
728 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100729 return ERR_ABORT;
Sujit Reddy Thummaa8ad82c2011-12-08 14:05:50 +0530730 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100731
Adrian Hunter67716322011-08-29 16:42:15 +0300732 /* Flag ECC errors */
733 if ((status & R1_CARD_ECC_FAILED) ||
734 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
735 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
736 *ecc_err = 1;
737
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100738 /*
739 * Check the current card state. If it is in some data transfer
740 * mode, tell it to stop (and hopefully transition back to TRAN.)
741 */
742 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
743 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
744 err = send_stop(card, &stop_status);
745 if (err)
746 pr_err("%s: error %d sending stop command\n",
747 req->rq_disk->disk_name, err);
748
749 /*
750 * If the stop cmd also timed out, the card is probably
751 * not present, so abort. Other errors are bad news too.
752 */
753 if (err)
754 return ERR_ABORT;
Adrian Hunter67716322011-08-29 16:42:15 +0300755 if (stop_status & R1_CARD_ECC_FAILED)
756 *ecc_err = 1;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100757 }
758
759 /* Check for set block count errors */
760 if (brq->sbc.error)
761 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
762 prev_cmd_status_valid, status);
763
764 /* Check for r/w command errors */
765 if (brq->cmd.error)
766 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
767 prev_cmd_status_valid, status);
768
Adrian Hunter67716322011-08-29 16:42:15 +0300769 /* Data errors */
770 if (!brq->stop.error)
771 return ERR_CONTINUE;
772
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +0100773 /* Now for stop errors. These aren't fatal to the transfer. */
774 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
775 req->rq_disk->disk_name, brq->stop.error,
776 brq->cmd.resp[0], status);
777
778 /*
779 * Subsitute in our own stop status as this will give the error
780 * state which happened during the execution of the r/w command.
781 */
782 if (stop_status) {
783 brq->stop.resp[0] = stop_status;
784 brq->stop.error = 0;
785 }
786 return ERR_CONTINUE;
787}
788
Adrian Hunter67716322011-08-29 16:42:15 +0300789static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
790 int type)
791{
792 int err;
793
794 if (md->reset_done & type)
795 return -EEXIST;
796
797 md->reset_done |= type;
798 err = mmc_hw_reset(host);
799 /* Ensure we switch back to the correct partition */
800 if (err != -EOPNOTSUPP) {
801 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
802 int part_err;
803
804 main_md->part_curr = main_md->part_type;
805 part_err = mmc_blk_part_switch(host->card, md);
806 if (part_err) {
807 /*
808 * We have failed to get back into the correct
809 * partition, so we need to abort the whole request.
810 */
811 return -ENODEV;
812 }
813 }
814 return err;
815}
816
817static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
818{
819 md->reset_done &= ~type;
820}
821
Adrian Hunterbd788c92010-08-11 14:17:47 -0700822static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
823{
824 struct mmc_blk_data *md = mq->data;
825 struct mmc_card *card = md->queue.card;
826 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300827 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -0700828
Adrian Hunterbd788c92010-08-11 14:17:47 -0700829 if (!mmc_can_erase(card)) {
830 err = -EOPNOTSUPP;
831 goto out;
832 }
833
834 from = blk_rq_pos(req);
835 nr = blk_rq_sectors(req);
836
Kyungmin Parkb3bf9152011-10-18 09:34:04 +0900837 if (mmc_can_discard(card))
838 arg = MMC_DISCARD_ARG;
839 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -0700840 arg = MMC_TRIM_ARG;
841 else
842 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300843retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500844 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
845 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
846 INAND_CMD38_ARG_EXT_CSD,
847 arg == MMC_TRIM_ARG ?
848 INAND_CMD38_ARG_TRIM :
849 INAND_CMD38_ARG_ERASE,
850 0);
851 if (err)
852 goto out;
853 }
Adrian Hunterbd788c92010-08-11 14:17:47 -0700854 err = mmc_erase(card, from, nr, arg);
855out:
Adrian Hunter67716322011-08-29 16:42:15 +0300856 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
857 goto retry;
858 if (!err)
859 mmc_blk_reset_success(md, type);
Adrian Hunterbd788c92010-08-11 14:17:47 -0700860 spin_lock_irq(&md->lock);
861 __blk_end_request(req, err, blk_rq_bytes(req));
862 spin_unlock_irq(&md->lock);
863
Adrian Hunterbd788c92010-08-11 14:17:47 -0700864 return err ? 0 : 1;
865}
866
Adrian Hunter49804542010-08-11 14:17:50 -0700867static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
868 struct request *req)
869{
870 struct mmc_blk_data *md = mq->data;
871 struct mmc_card *card = md->queue.card;
872 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300873 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -0700874
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900875 if (!(mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))) {
Adrian Hunter49804542010-08-11 14:17:50 -0700876 err = -EOPNOTSUPP;
877 goto out;
878 }
879
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900880 /* The sanitize operation is supported at v4.5 only */
881 if (mmc_can_sanitize(card)) {
882 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
883 EXT_CSD_SANITIZE_START, 1, 0);
884 goto out;
885 }
886
Adrian Hunter49804542010-08-11 14:17:50 -0700887 from = blk_rq_pos(req);
888 nr = blk_rq_sectors(req);
889
890 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
891 arg = MMC_SECURE_TRIM1_ARG;
892 else
893 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300894retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500895 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
896 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
897 INAND_CMD38_ARG_EXT_CSD,
898 arg == MMC_SECURE_TRIM1_ARG ?
899 INAND_CMD38_ARG_SECTRIM1 :
900 INAND_CMD38_ARG_SECERASE,
901 0);
902 if (err)
903 goto out;
904 }
Adrian Hunter49804542010-08-11 14:17:50 -0700905 err = mmc_erase(card, from, nr, arg);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500906 if (!err && arg == MMC_SECURE_TRIM1_ARG) {
907 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
908 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
909 INAND_CMD38_ARG_EXT_CSD,
910 INAND_CMD38_ARG_SECTRIM2,
911 0);
912 if (err)
913 goto out;
914 }
Adrian Hunter49804542010-08-11 14:17:50 -0700915 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500916 }
Adrian Hunter49804542010-08-11 14:17:50 -0700917out:
Adrian Hunter67716322011-08-29 16:42:15 +0300918 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
919 goto retry;
920 if (!err)
921 mmc_blk_reset_success(md, type);
Adrian Hunter49804542010-08-11 14:17:50 -0700922 spin_lock_irq(&md->lock);
923 __blk_end_request(req, err, blk_rq_bytes(req));
924 spin_unlock_irq(&md->lock);
925
Adrian Hunter49804542010-08-11 14:17:50 -0700926 return err ? 0 : 1;
927}
928
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500929static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
930{
931 struct mmc_blk_data *md = mq->data;
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900932 struct mmc_card *card = md->queue.card;
933 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500934
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900935 ret = mmc_flush_cache(card);
936 if (ret)
937 ret = -EIO;
938
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500939 spin_lock_irq(&md->lock);
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900940 __blk_end_request_all(req, ret);
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500941 spin_unlock_irq(&md->lock);
942
Seungwon Jeon881d1c22011-10-14 14:03:21 +0900943 return ret ? 0 : 1;
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500944}
945
946/*
947 * Reformat current write as a reliable write, supporting
948 * both legacy and the enhanced reliable write MMC cards.
949 * In each transfer we'll handle only as much as a single
950 * reliable write can handle, thus finish the request in
951 * partial completions.
952 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500953static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
954 struct mmc_card *card,
955 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500956{
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500957 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
958 /* Legacy mode imposes restrictions on transfers. */
959 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
960 brq->data.blocks = 1;
961
962 if (brq->data.blocks > card->ext_csd.rel_sectors)
963 brq->data.blocks = card->ext_csd.rel_sectors;
964 else if (brq->data.blocks < card->ext_csd.rel_sectors)
965 brq->data.blocks = 1;
966 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500967}
968
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +0100969#define CMD_ERRORS \
970 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
971 R1_ADDRESS_ERROR | /* Misaligned address */ \
972 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
973 R1_WP_VIOLATION | /* Tried to write to protected block */ \
974 R1_CC_ERROR | /* Card controller error */ \
975 R1_ERROR) /* General/unknown error */
976
Per Forlinee8a43a2011-07-01 18:55:33 +0200977static int mmc_blk_err_check(struct mmc_card *card,
978 struct mmc_async_req *areq)
Per Forlind78d4a82011-07-01 18:55:30 +0200979{
Per Forlinee8a43a2011-07-01 18:55:33 +0200980 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
981 mmc_active);
982 struct mmc_blk_request *brq = &mq_mrq->brq;
983 struct request *req = mq_mrq->req;
Adrian Hunter67716322011-08-29 16:42:15 +0300984 int ecc_err = 0;
Per Forlind78d4a82011-07-01 18:55:30 +0200985
986 /*
987 * sbc.error indicates a problem with the set block count
988 * command. No data will have been transferred.
989 *
990 * cmd.error indicates a problem with the r/w command. No
991 * data will have been transferred.
992 *
993 * stop.error indicates a problem with the stop command. Data
994 * may have been transferred, or may still be transferring.
995 */
Adrian Hunter67716322011-08-29 16:42:15 +0300996 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
997 brq->data.error) {
998 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err)) {
Per Forlind78d4a82011-07-01 18:55:30 +0200999 case ERR_RETRY:
1000 return MMC_BLK_RETRY;
1001 case ERR_ABORT:
1002 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82c2011-12-08 14:05:50 +05301003 case ERR_NOMEDIUM:
1004 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a82011-07-01 18:55:30 +02001005 case ERR_CONTINUE:
1006 break;
1007 }
1008 }
1009
1010 /*
1011 * Check for errors relating to the execution of the
1012 * initial command - such as address errors. No data
1013 * has been transferred.
1014 */
1015 if (brq->cmd.resp[0] & CMD_ERRORS) {
1016 pr_err("%s: r/w command failed, status = %#x\n",
1017 req->rq_disk->disk_name, brq->cmd.resp[0]);
1018 return MMC_BLK_ABORT;
1019 }
1020
1021 /*
1022 * Everything else is either success, or a data error of some
1023 * kind. If it was a write, we may have transitioned to
1024 * program mode, which we have to wait for it to complete.
1025 */
1026 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
1027 u32 status;
1028 do {
1029 int err = get_card_status(card, &status, 5);
1030 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301031 pr_err("%s: error %d requesting status\n",
Per Forlind78d4a82011-07-01 18:55:30 +02001032 req->rq_disk->disk_name, err);
1033 return MMC_BLK_CMD_ERR;
1034 }
1035 /*
1036 * Some cards mishandle the status bits,
1037 * so make sure to check both the busy
1038 * indication and the card state.
1039 */
1040 } while (!(status & R1_READY_FOR_DATA) ||
1041 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
1042 }
1043
1044 if (brq->data.error) {
1045 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
1046 req->rq_disk->disk_name, brq->data.error,
1047 (unsigned)blk_rq_pos(req),
1048 (unsigned)blk_rq_sectors(req),
1049 brq->cmd.resp[0], brq->stop.resp[0]);
1050
1051 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001052 if (ecc_err)
1053 return MMC_BLK_ECC_ERR;
Per Forlind78d4a82011-07-01 18:55:30 +02001054 return MMC_BLK_DATA_ERR;
1055 } else {
1056 return MMC_BLK_CMD_ERR;
1057 }
1058 }
1059
Adrian Hunter67716322011-08-29 16:42:15 +03001060 if (!brq->data.bytes_xfered)
1061 return MMC_BLK_RETRY;
Per Forlind78d4a82011-07-01 18:55:30 +02001062
Adrian Hunter67716322011-08-29 16:42:15 +03001063 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1064 return MMC_BLK_PARTIAL;
1065
1066 return MMC_BLK_SUCCESS;
Per Forlind78d4a82011-07-01 18:55:30 +02001067}
1068
Per Forlin54d49d772011-07-01 18:55:29 +02001069static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1070 struct mmc_card *card,
1071 int disable_multi,
1072 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Per Forlin54d49d772011-07-01 18:55:29 +02001074 u32 readcmd, writecmd;
1075 struct mmc_blk_request *brq = &mqrq->brq;
1076 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 struct mmc_blk_data *md = mq->data;
Saugata Das42659002011-12-21 13:09:17 +05301078 bool do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001080 /*
1081 * Reliable writes are used to implement Forced Unit Access and
1082 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +02001083 *
1084 * XXX: this really needs a good explanation of why REQ_META
1085 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001086 */
1087 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
1088 (req->cmd_flags & REQ_META)) &&
1089 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001090 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001091
Per Forlin54d49d772011-07-01 18:55:29 +02001092 memset(brq, 0, sizeof(struct mmc_blk_request));
1093 brq->mrq.cmd = &brq->cmd;
1094 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Per Forlin54d49d772011-07-01 18:55:29 +02001096 brq->cmd.arg = blk_rq_pos(req);
1097 if (!mmc_card_blockaddr(card))
1098 brq->cmd.arg <<= 9;
1099 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1100 brq->data.blksz = 512;
1101 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1102 brq->stop.arg = 0;
1103 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1104 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Per Forlin54d49d772011-07-01 18:55:29 +02001106 /*
1107 * The block layer doesn't support all sector count
1108 * restrictions, so we need to be prepared for too big
1109 * requests.
1110 */
1111 if (brq->data.blocks > card->host->max_blk_count)
1112 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001114 if (brq->data.blocks > 1) {
1115 /*
1116 * After a read error, we redo the request one sector
1117 * at a time in order to accurately determine which
1118 * sectors can be read successfully.
1119 */
1120 if (disable_multi)
1121 brq->data.blocks = 1;
1122
1123 /* Some controllers can't do multiblock reads due to hw bugs */
1124 if (card->host->caps2 & MMC_CAP2_NO_MULTI_READ &&
1125 rq_data_dir(req) == READ)
1126 brq->data.blocks = 1;
1127 }
Per Forlin54d49d772011-07-01 18:55:29 +02001128
1129 if (brq->data.blocks > 1 || do_rel_wr) {
1130 /* SPI multiblock writes terminate using a special
1131 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001132 */
Per Forlin54d49d772011-07-01 18:55:29 +02001133 if (!mmc_host_is_spi(card->host) ||
1134 rq_data_dir(req) == READ)
1135 brq->mrq.stop = &brq->stop;
1136 readcmd = MMC_READ_MULTIPLE_BLOCK;
1137 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1138 } else {
1139 brq->mrq.stop = NULL;
1140 readcmd = MMC_READ_SINGLE_BLOCK;
1141 writecmd = MMC_WRITE_BLOCK;
1142 }
1143 if (rq_data_dir(req) == READ) {
1144 brq->cmd.opcode = readcmd;
1145 brq->data.flags |= MMC_DATA_READ;
1146 } else {
1147 brq->cmd.opcode = writecmd;
1148 brq->data.flags |= MMC_DATA_WRITE;
1149 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001150
Per Forlin54d49d772011-07-01 18:55:29 +02001151 if (do_rel_wr)
1152 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001153
Per Forlin54d49d772011-07-01 18:55:29 +02001154 /*
Saugata Das42659002011-12-21 13:09:17 +05301155 * Data tag is used only during writing meta data to speed
1156 * up write and any subsequent read of this meta data
1157 */
1158 do_data_tag = (card->ext_csd.data_tag_unit_size) &&
1159 (req->cmd_flags & REQ_META) &&
1160 (rq_data_dir(req) == WRITE) &&
1161 ((brq->data.blocks * brq->data.blksz) >=
1162 card->ext_csd.data_tag_unit_size);
1163
1164 /*
Per Forlin54d49d772011-07-01 18:55:29 +02001165 * Pre-defined multi-block transfers are preferable to
1166 * open ended-ones (and necessary for reliable writes).
1167 * However, it is not sufficient to just send CMD23,
1168 * and avoid the final CMD12, as on an error condition
1169 * CMD12 (stop) needs to be sent anyway. This, coupled
1170 * with Auto-CMD23 enhancements provided by some
1171 * hosts, means that the complexity of dealing
1172 * with this is best left to the host. If CMD23 is
1173 * supported by card and host, we'll fill sbc in and let
1174 * the host deal with handling it correctly. This means
1175 * that for hosts that don't expose MMC_CAP_CMD23, no
1176 * change of behavior will be observed.
1177 *
1178 * N.B: Some MMC cards experience perf degradation.
1179 * We'll avoid using CMD23-bounded multiblock writes for
1180 * these, while retaining features like reliable writes.
1181 */
Saugata Das42659002011-12-21 13:09:17 +05301182 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1183 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1184 do_data_tag)) {
Per Forlin54d49d772011-07-01 18:55:29 +02001185 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1186 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301187 (do_rel_wr ? (1 << 31) : 0) |
1188 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d772011-07-01 18:55:29 +02001189 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1190 brq->mrq.sbc = &brq->sbc;
1191 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001192
Per Forlin54d49d772011-07-01 18:55:29 +02001193 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001194
Per Forlin54d49d772011-07-01 18:55:29 +02001195 brq->data.sg = mqrq->sg;
1196 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001197
Per Forlin54d49d772011-07-01 18:55:29 +02001198 /*
1199 * Adjust the sg list so it is the same size as the
1200 * request.
1201 */
1202 if (brq->data.blocks != blk_rq_sectors(req)) {
1203 int i, data_size = brq->data.blocks << 9;
1204 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001205
Per Forlin54d49d772011-07-01 18:55:29 +02001206 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1207 data_size -= sg->length;
1208 if (data_size <= 0) {
1209 sg->length += data_size;
1210 i++;
1211 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001212 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001213 }
Per Forlin54d49d772011-07-01 18:55:29 +02001214 brq->data.sg_len = i;
1215 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001216
Per Forlinee8a43a2011-07-01 18:55:33 +02001217 mqrq->mmc_active.mrq = &brq->mrq;
1218 mqrq->mmc_active.err_check = mmc_blk_err_check;
1219
Per Forlin54d49d772011-07-01 18:55:29 +02001220 mmc_queue_bounce_pre(mqrq);
1221}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Adrian Hunter67716322011-08-29 16:42:15 +03001223static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1224 struct mmc_blk_request *brq, struct request *req,
1225 int ret)
1226{
1227 /*
1228 * If this is an SD card and we're writing, we can first
1229 * mark the known good sectors as ok.
1230 *
1231 * If the card is not SD, we can still ok written sectors
1232 * as reported by the controller (which might be less than
1233 * the real number of written sectors, but never more).
1234 */
1235 if (mmc_card_sd(card)) {
1236 u32 blocks;
1237
1238 blocks = mmc_sd_num_wr_blocks(card);
1239 if (blocks != (u32)-1) {
1240 spin_lock_irq(&md->lock);
1241 ret = __blk_end_request(req, 0, blocks << 9);
1242 spin_unlock_irq(&md->lock);
1243 }
1244 } else {
1245 spin_lock_irq(&md->lock);
1246 ret = __blk_end_request(req, 0, brq->data.bytes_xfered);
1247 spin_unlock_irq(&md->lock);
1248 }
1249 return ret;
1250}
1251
Per Forlinee8a43a2011-07-01 18:55:33 +02001252static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d772011-07-01 18:55:29 +02001253{
1254 struct mmc_blk_data *md = mq->data;
1255 struct mmc_card *card = md->queue.card;
1256 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunter67716322011-08-29 16:42:15 +03001257 int ret = 1, disable_multi = 0, retry = 0, type;
Per Forlind78d4a82011-07-01 18:55:30 +02001258 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001259 struct mmc_queue_req *mq_rq;
1260 struct request *req;
1261 struct mmc_async_req *areq;
1262
1263 if (!rqc && !mq->mqrq_prev->req)
1264 return 0;
Per Forlin54d49d772011-07-01 18:55:29 +02001265
1266 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001267 if (rqc) {
1268 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1269 areq = &mq->mqrq_cur->mmc_active;
1270 } else
1271 areq = NULL;
1272 areq = mmc_start_req(card->host, areq, (int *) &status);
1273 if (!areq)
1274 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +02001275
Per Forlinee8a43a2011-07-01 18:55:33 +02001276 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1277 brq = &mq_rq->brq;
1278 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001279 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001280 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001281
Per Forlind78d4a82011-07-01 18:55:30 +02001282 switch (status) {
1283 case MMC_BLK_SUCCESS:
1284 case MMC_BLK_PARTIAL:
1285 /*
1286 * A block was successfully transferred.
1287 */
Adrian Hunter67716322011-08-29 16:42:15 +03001288 mmc_blk_reset_success(md, type);
Per Forlind78d4a82011-07-01 18:55:30 +02001289 spin_lock_irq(&md->lock);
1290 ret = __blk_end_request(req, 0,
1291 brq->data.bytes_xfered);
1292 spin_unlock_irq(&md->lock);
Adrian Hunter67716322011-08-29 16:42:15 +03001293 /*
1294 * If the blk_end_request function returns non-zero even
1295 * though all data has been transferred and no errors
1296 * were returned by the host controller, it's a bug.
1297 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001298 if (status == MMC_BLK_SUCCESS && ret) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301299 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Per Forlinee8a43a2011-07-01 18:55:33 +02001300 __func__, blk_rq_bytes(req),
1301 brq->data.bytes_xfered);
1302 rqc = NULL;
1303 goto cmd_abort;
1304 }
Per Forlind78d4a82011-07-01 18:55:30 +02001305 break;
1306 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001307 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1308 if (!mmc_blk_reset(md, card->host, type))
1309 break;
1310 goto cmd_abort;
Per Forlind78d4a82011-07-01 18:55:30 +02001311 case MMC_BLK_RETRY:
1312 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001313 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001314 /* Fall through */
Per Forlind78d4a82011-07-01 18:55:30 +02001315 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001316 if (!mmc_blk_reset(md, card->host, type))
1317 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001318 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001319 case MMC_BLK_DATA_ERR: {
1320 int err;
1321
1322 err = mmc_blk_reset(md, card->host, type);
1323 if (!err)
1324 break;
1325 if (err == -ENODEV)
1326 goto cmd_abort;
1327 /* Fall through */
1328 }
1329 case MMC_BLK_ECC_ERR:
1330 if (brq->data.blocks > 1) {
1331 /* Redo read one sector at a time */
1332 pr_warning("%s: retrying using single block read\n",
1333 req->rq_disk->disk_name);
1334 disable_multi = 1;
1335 break;
1336 }
Per Forlind78d4a82011-07-01 18:55:30 +02001337 /*
1338 * After an error, we redo I/O one sector at a
1339 * time, so we only reach here after trying to
1340 * read a single sector.
1341 */
1342 spin_lock_irq(&md->lock);
1343 ret = __blk_end_request(req, -EIO,
1344 brq->data.blksz);
1345 spin_unlock_irq(&md->lock);
Per Forlinee8a43a2011-07-01 18:55:33 +02001346 if (!ret)
1347 goto start_new_req;
Per Forlind78d4a82011-07-01 18:55:30 +02001348 break;
Sujit Reddy Thummaa8ad82c2011-12-08 14:05:50 +05301349 case MMC_BLK_NOMEDIUM:
1350 goto cmd_abort;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001351 }
1352
Per Forlinee8a43a2011-07-01 18:55:33 +02001353 if (ret) {
1354 /*
Adrian Hunter67716322011-08-29 16:42:15 +03001355 * In case of a incomplete request
Per Forlinee8a43a2011-07-01 18:55:33 +02001356 * prepare it again and resend.
1357 */
1358 mmc_blk_rw_rq_prep(mq_rq, card, disable_multi, mq);
1359 mmc_start_req(card->host, &mq_rq->mmc_active, NULL);
1360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 } while (ret);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return 1;
1364
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001365 cmd_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 spin_lock_irq(&md->lock);
Sujit Reddy Thummaa8ad82c2011-12-08 14:05:50 +05301367 if (mmc_card_removed(card))
1368 req->cmd_flags |= REQ_QUIET;
Kiyoshi Uedafd539832007-12-11 17:48:29 -05001369 while (ret)
1370 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 spin_unlock_irq(&md->lock);
1372
Per Forlinee8a43a2011-07-01 18:55:33 +02001373 start_new_req:
1374 if (rqc) {
1375 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1376 mmc_start_req(card->host, &mq->mqrq_cur->mmc_active, NULL);
1377 }
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return 0;
1380}
1381
San Mehat148c57a2009-07-30 08:21:19 -07001382static int
1383mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card);
1384
Adrian Hunterbd788c92010-08-11 14:17:47 -07001385static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1386{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001387 int ret;
1388 struct mmc_blk_data *md = mq->data;
1389 struct mmc_card *card = md->queue.card;
1390
San Mehat148c57a2009-07-30 08:21:19 -07001391#ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1392 if (mmc_bus_needs_resume(card->host)) {
1393 mmc_resume_bus(card->host);
1394 mmc_blk_set_blksize(md, card);
1395 }
1396#endif
1397
Per Forlinee8a43a2011-07-01 18:55:33 +02001398 if (req && !mq->mqrq_prev->req)
1399 /* claim host only for the first request */
1400 mmc_claim_host(card->host);
1401
Andrei Warkentin371a6892011-04-11 18:10:25 -05001402 ret = mmc_blk_part_switch(card, md);
1403 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03001404 if (req) {
1405 spin_lock_irq(&md->lock);
1406 __blk_end_request_all(req, -EIO);
1407 spin_unlock_irq(&md->lock);
1408 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001409 ret = 0;
1410 goto out;
1411 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001412
Per Forlinee8a43a2011-07-01 18:55:33 +02001413 if (req && req->cmd_flags & REQ_DISCARD) {
1414 /* complete ongoing async transfer before issuing discard */
1415 if (card->host->areq)
1416 mmc_blk_issue_rw_rq(mq, NULL);
Adrian Hunter49804542010-08-11 14:17:50 -07001417 if (req->cmd_flags & REQ_SECURE)
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001418 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001419 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001420 ret = mmc_blk_issue_discard_rq(mq, req);
Per Forlinee8a43a2011-07-01 18:55:33 +02001421 } else if (req && req->cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09001422 /* complete ongoing async transfer before issuing flush */
1423 if (card->host->areq)
1424 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001425 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001426 } else {
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001427 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001428 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001429
Andrei Warkentin371a6892011-04-11 18:10:25 -05001430out:
Per Forlinee8a43a2011-07-01 18:55:33 +02001431 if (!req)
1432 /* release host only when there are no more requests */
1433 mmc_release_host(card->host);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001434 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001435}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Russell Kinga6f6c962006-01-03 22:38:44 +00001437static inline int mmc_blk_readonly(struct mmc_card *card)
1438{
1439 return mmc_card_readonly(card) ||
1440 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1441}
1442
Andrei Warkentin371a6892011-04-11 18:10:25 -05001443static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1444 struct device *parent,
1445 sector_t size,
1446 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001447 const char *subname,
1448 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 struct mmc_blk_data *md;
1451 int devidx, ret;
1452
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001453 devidx = find_first_zero_bit(dev_use, max_devices);
1454 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return ERR_PTR(-ENOSPC);
1456 __set_bit(devidx, dev_use);
1457
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001458 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00001459 if (!md) {
1460 ret = -ENOMEM;
1461 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
Russell Kinga6f6c962006-01-03 22:38:44 +00001463
Russell Kinga6f6c962006-01-03 22:38:44 +00001464 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001465 * !subname implies we are creating main mmc_blk_data that will be
1466 * associated with mmc_card with mmc_set_drvdata. Due to device
1467 * partitions, devidx will not coincide with a per-physical card
1468 * index anymore so we keep track of a name index.
1469 */
1470 if (!subname) {
1471 md->name_idx = find_first_zero_bit(name_use, max_devices);
1472 __set_bit(md->name_idx, name_use);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001473 } else
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001474 md->name_idx = ((struct mmc_blk_data *)
1475 dev_to_disk(parent)->private_data)->name_idx;
1476
Johan Rudholmadd710e2011-12-02 08:51:06 +01001477 md->area_type = area_type;
1478
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001479 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00001480 * Set the read-only status based on the supported commands
1481 * and the write protect switch.
1482 */
1483 md->read_only = mmc_blk_readonly(card);
1484
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001485 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00001486 if (md->disk == NULL) {
1487 ret = -ENOMEM;
1488 goto err_kfree;
1489 }
1490
1491 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001492 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00001493 md->usage = 1;
1494
Adrian Hunterd09408a2011-06-23 13:40:28 +03001495 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00001496 if (ret)
1497 goto err_putdisk;
1498
Russell Kinga6f6c962006-01-03 22:38:44 +00001499 md->queue.issue_fn = mmc_blk_issue_rq;
1500 md->queue.data = md;
1501
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001502 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001503 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00001504 md->disk->fops = &mmc_bdops;
1505 md->disk->private_data = md;
1506 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001507 md->disk->driverfs_dev = parent;
1508 set_disk_ro(md->disk, md->read_only || default_ro);
Colin Cross71b54d42010-09-03 12:41:21 -07001509 md->disk->flags = GENHD_FL_EXT_DEVT;
Russell Kinga6f6c962006-01-03 22:38:44 +00001510
1511 /*
1512 * As discussed on lkml, GENHD_FL_REMOVABLE should:
1513 *
1514 * - be set for removable media with permanent block devices
1515 * - be unset for removable block devices with permanent media
1516 *
1517 * Since MMC block devices clearly fall under the second
1518 * case, we do not set GENHD_FL_REMOVABLE. Userspace
1519 * should use the block device creation/destruction hotplug
1520 * messages to tell when the card is present.
1521 */
1522
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001523 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1524 "mmcblk%d%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00001525
Martin K. Petersene1defc42009-05-22 17:17:49 -04001526 blk_queue_logical_block_size(md->queue.queue, 512);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001527 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001528
Andrei Warkentinf0d89972011-05-23 15:06:38 -05001529 if (mmc_host_cmd23(card->host)) {
1530 if (mmc_card_mmc(card) ||
1531 (mmc_card_sd(card) &&
1532 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1533 md->flags |= MMC_BLK_CMD23;
1534 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001535
1536 if (mmc_card_mmc(card) &&
1537 md->flags & MMC_BLK_CMD23 &&
1538 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1539 card->ext_csd.rel_sectors)) {
1540 md->flags |= MMC_BLK_REL_WR;
1541 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1542 }
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00001545
1546 err_putdisk:
1547 put_disk(md->disk);
1548 err_kfree:
1549 kfree(md);
1550 out:
1551 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
Andrei Warkentin371a6892011-04-11 18:10:25 -05001554static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1555{
1556 sector_t size;
1557 struct mmc_blk_data *md;
1558
1559 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1560 /*
1561 * The EXT_CSD sector count is in number or 512 byte
1562 * sectors.
1563 */
1564 size = card->ext_csd.sectors;
1565 } else {
1566 /*
1567 * The CSD capacity field is in units of read_blkbits.
1568 * set_capacity takes units of 512 bytes.
1569 */
1570 size = card->csd.capacity << (card->csd.read_blkbits - 9);
1571 }
1572
Johan Rudholmadd710e2011-12-02 08:51:06 +01001573 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
1574 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001575 return md;
1576}
1577
1578static int mmc_blk_alloc_part(struct mmc_card *card,
1579 struct mmc_blk_data *md,
1580 unsigned int part_type,
1581 sector_t size,
1582 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001583 const char *subname,
1584 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05001585{
1586 char cap_str[10];
1587 struct mmc_blk_data *part_md;
1588
1589 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001590 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001591 if (IS_ERR(part_md))
1592 return PTR_ERR(part_md);
1593 part_md->part_type = part_type;
1594 list_add(&part_md->part, &md->part);
1595
1596 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1597 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05301598 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05001599 part_md->disk->disk_name, mmc_card_id(card),
1600 mmc_card_name(card), part_md->part_type, cap_str);
1601 return 0;
1602}
1603
Namjae Jeone0c368d2011-10-06 23:41:38 +09001604/* MMC Physical partitions consist of two boot partitions and
1605 * up to four general purpose partitions.
1606 * For each partition enabled in EXT_CSD a block device will be allocatedi
1607 * to provide access to the partition.
1608 */
1609
Andrei Warkentin371a6892011-04-11 18:10:25 -05001610static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1611{
Namjae Jeone0c368d2011-10-06 23:41:38 +09001612 int idx, ret = 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001613
1614 if (!mmc_card_mmc(card))
1615 return 0;
1616
Namjae Jeone0c368d2011-10-06 23:41:38 +09001617 for (idx = 0; idx < card->nr_parts; idx++) {
1618 if (card->part[idx].size) {
1619 ret = mmc_blk_alloc_part(card, md,
1620 card->part[idx].part_cfg,
1621 card->part[idx].size >> 9,
1622 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01001623 card->part[idx].name,
1624 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09001625 if (ret)
1626 return ret;
1627 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05001628 }
1629
1630 return ret;
1631}
1632
Andrei Warkentin371a6892011-04-11 18:10:25 -05001633static void mmc_blk_remove_req(struct mmc_blk_data *md)
1634{
Johan Rudholmadd710e2011-12-02 08:51:06 +01001635 struct mmc_card *card;
1636
Andrei Warkentin371a6892011-04-11 18:10:25 -05001637 if (md) {
Johan Rudholmadd710e2011-12-02 08:51:06 +01001638 card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001639 if (md->disk->flags & GENHD_FL_UP) {
1640 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001641 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1642 card->ext_csd.boot_ro_lockable)
1643 device_remove_file(disk_to_dev(md->disk),
1644 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001645
1646 /* Stop new requests from getting into the queue */
1647 del_gendisk(md->disk);
1648 }
1649
1650 /* Then flush out any already in there */
1651 mmc_cleanup_queue(&md->queue);
1652 mmc_blk_put(md);
1653 }
1654}
1655
1656static void mmc_blk_remove_parts(struct mmc_card *card,
1657 struct mmc_blk_data *md)
1658{
1659 struct list_head *pos, *q;
1660 struct mmc_blk_data *part_md;
1661
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001662 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001663 list_for_each_safe(pos, q, &md->part) {
1664 part_md = list_entry(pos, struct mmc_blk_data, part);
1665 list_del(pos);
1666 mmc_blk_remove_req(part_md);
1667 }
1668}
1669
1670static int mmc_add_disk(struct mmc_blk_data *md)
1671{
1672 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01001673 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001674
1675 add_disk(md->disk);
1676 md->force_ro.show = force_ro_show;
1677 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05301678 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001679 md->force_ro.attr.name = "force_ro";
1680 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1681 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1682 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01001683 goto force_ro_fail;
1684
1685 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
1686 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04001687 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01001688
1689 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
1690 mode = S_IRUGO;
1691 else
1692 mode = S_IRUGO | S_IWUSR;
1693
1694 md->power_ro_lock.show = power_ro_lock_show;
1695 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01001696 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01001697 md->power_ro_lock.attr.mode = mode;
1698 md->power_ro_lock.attr.name =
1699 "ro_lock_until_next_power_on";
1700 ret = device_create_file(disk_to_dev(md->disk),
1701 &md->power_ro_lock);
1702 if (ret)
1703 goto power_ro_lock_fail;
1704 }
1705 return ret;
1706
1707power_ro_lock_fail:
1708 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1709force_ro_fail:
1710 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001711
1712 return ret;
1713}
1714
Chris Ballc59d4472011-11-11 22:01:43 -05001715#define CID_MANFID_SANDISK 0x2
1716#define CID_MANFID_TOSHIBA 0x11
1717#define CID_MANFID_MICRON 0x13
1718
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001719static const struct mmc_fixup blk_fixups[] =
1720{
Chris Ballc59d4472011-11-11 22:01:43 -05001721 MMC_FIXUP("SEM02G", CID_MANFID_SANDISK, 0x100, add_quirk,
1722 MMC_QUIRK_INAND_CMD38),
1723 MMC_FIXUP("SEM04G", CID_MANFID_SANDISK, 0x100, add_quirk,
1724 MMC_QUIRK_INAND_CMD38),
1725 MMC_FIXUP("SEM08G", CID_MANFID_SANDISK, 0x100, add_quirk,
1726 MMC_QUIRK_INAND_CMD38),
1727 MMC_FIXUP("SEM16G", CID_MANFID_SANDISK, 0x100, add_quirk,
1728 MMC_QUIRK_INAND_CMD38),
1729 MMC_FIXUP("SEM32G", CID_MANFID_SANDISK, 0x100, add_quirk,
1730 MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001731
1732 /*
1733 * Some MMC cards experience performance degradation with CMD23
1734 * instead of CMD12-bounded multiblock transfers. For now we'll
1735 * black list what's bad...
1736 * - Certain Toshiba cards.
1737 *
1738 * N.B. This doesn't affect SD cards.
1739 */
Chris Ballc59d4472011-11-11 22:01:43 -05001740 MMC_FIXUP("MMC08G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001741 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05001742 MMC_FIXUP("MMC16G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001743 MMC_QUIRK_BLK_NO_CMD23),
Chris Ballc59d4472011-11-11 22:01:43 -05001744 MMC_FIXUP("MMC32G", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001745 MMC_QUIRK_BLK_NO_CMD23),
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01001746
1747 /*
1748 * Some Micron MMC cards needs longer data read timeout than
1749 * indicated in CSD.
1750 */
Chris Ballc59d4472011-11-11 22:01:43 -05001751 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +01001752 MMC_QUIRK_LONG_READ_TIME),
1753
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001754 END_FIXUP
1755};
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757static int mmc_blk_probe(struct mmc_card *card)
1758{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001759 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001760 char cap_str[10];
1761
Pierre Ossman912490d2005-05-21 10:27:02 +01001762 /*
1763 * Check that the card supports the command class(es) we need.
1764 */
1765 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 return -ENODEV;
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 md = mmc_blk_alloc(card);
1769 if (IS_ERR(md))
1770 return PTR_ERR(md);
1771
Yi Li444122f2009-02-05 15:31:57 +08001772 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001773 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05301774 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001776 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Andrei Warkentin371a6892011-04-11 18:10:25 -05001778 if (mmc_blk_alloc_parts(card, md))
1779 goto out;
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 mmc_set_drvdata(card, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001782 mmc_fixup_device(card, blk_fixups);
1783
San Mehat148c57a2009-07-30 08:21:19 -07001784#ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1785 mmc_set_bus_resume_policy(card->host, 1);
1786#endif
Andrei Warkentin371a6892011-04-11 18:10:25 -05001787 if (mmc_add_disk(md))
1788 goto out;
1789
1790 list_for_each_entry(part_md, &md->part, part) {
1791 if (mmc_add_disk(part_md))
1792 goto out;
1793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return 0;
1795
1796 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05001797 mmc_blk_remove_parts(card, md);
1798 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01001799 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
1802static void mmc_blk_remove(struct mmc_card *card)
1803{
1804 struct mmc_blk_data *md = mmc_get_drvdata(card);
1805
Andrei Warkentin371a6892011-04-11 18:10:25 -05001806 mmc_blk_remove_parts(card, md);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03001807 mmc_claim_host(card->host);
1808 mmc_blk_part_switch(card, md);
1809 mmc_release_host(card->host);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001810 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 mmc_set_drvdata(card, NULL);
San Mehat148c57a2009-07-30 08:21:19 -07001812#ifdef CONFIG_MMC_BLOCK_DEFERRED_RESUME
1813 mmc_set_bus_resume_policy(card->host, 0);
1814#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817#ifdef CONFIG_PM
1818static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
1819{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001820 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 struct mmc_blk_data *md = mmc_get_drvdata(card);
1822
1823 if (md) {
1824 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001825 list_for_each_entry(part_md, &md->part, part) {
1826 mmc_queue_suspend(&part_md->queue);
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829 return 0;
1830}
1831
1832static int mmc_blk_resume(struct mmc_card *card)
1833{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001834 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 struct mmc_blk_data *md = mmc_get_drvdata(card);
1836
1837 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05001838 /*
1839 * Resume involves the card going into idle state,
1840 * so current partition is always the main one.
1841 */
1842 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001844 list_for_each_entry(part_md, &md->part, part) {
1845 mmc_queue_resume(&part_md->queue);
1846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848 return 0;
1849}
1850#else
1851#define mmc_blk_suspend NULL
1852#define mmc_blk_resume NULL
1853#endif
1854
1855static struct mmc_driver mmc_driver = {
1856 .drv = {
1857 .name = "mmcblk",
1858 },
1859 .probe = mmc_blk_probe,
1860 .remove = mmc_blk_remove,
1861 .suspend = mmc_blk_suspend,
1862 .resume = mmc_blk_resume,
1863};
1864
1865static int __init mmc_blk_init(void)
1866{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001867 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001869 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1870 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1871
1872 max_devices = 256 / perdev_minors;
1873
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001874 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1875 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001878 res = mmc_register_driver(&mmc_driver);
1879 if (res)
1880 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001882 return 0;
1883 out2:
1884 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 out:
1886 return res;
1887}
1888
1889static void __exit mmc_blk_exit(void)
1890{
1891 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001892 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895module_init(mmc_blk_init);
1896module_exit(mmc_blk_exit);
1897
1898MODULE_LICENSE("GPL");
1899MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1900