blob: 66c7596c55468e3836668be39561afed55cab3dc [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
Arjan van de Vena621aae2006-01-12 18:43:35 +0000112static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Per Forlind78d4a82011-07-01 18:55:30 +0200114enum mmc_blk_status {
115 MMC_BLK_SUCCESS = 0,
116 MMC_BLK_PARTIAL,
Per Forlind78d4a82011-07-01 18:55:30 +0200117 MMC_BLK_CMD_ERR,
Adrian Hunter67716322011-08-29 16:42:15 +0300118 MMC_BLK_RETRY,
Per Forlind78d4a82011-07-01 18:55:30 +0200119 MMC_BLK_ABORT,
Adrian Hunter67716322011-08-29 16:42:15 +0300120 MMC_BLK_DATA_ERR,
121 MMC_BLK_ECC_ERR,
Per Forlind78d4a82011-07-01 18:55:30 +0200122};
123
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400124module_param(perdev_minors, int, 0444);
125MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
128{
129 struct mmc_blk_data *md;
130
Arjan van de Vena621aae2006-01-12 18:43:35 +0000131 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 md = disk->private_data;
133 if (md && md->usage == 0)
134 md = NULL;
135 if (md)
136 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000137 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 return md;
140}
141
Andrei Warkentin371a6892011-04-11 18:10:25 -0500142static inline int mmc_get_devidx(struct gendisk *disk)
143{
144 int devmaj = MAJOR(disk_devt(disk));
145 int devidx = MINOR(disk_devt(disk)) / perdev_minors;
146
147 if (!devmaj)
148 devidx = disk->first_minor / perdev_minors;
149 return devidx;
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static void mmc_blk_put(struct mmc_blk_data *md)
153{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000154 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 md->usage--;
156 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500157 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800158 blk_cleanup_queue(md->queue.queue);
159
David Woodhouse1dff3142007-11-21 18:45:12 +0100160 __clear_bit(devidx, dev_use);
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 kfree(md);
164 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000165 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Andrei Warkentin371a6892011-04-11 18:10:25 -0500168static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
169 char *buf)
170{
171 int ret;
172 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
173
174 ret = snprintf(buf, PAGE_SIZE, "%d",
175 get_disk_ro(dev_to_disk(dev)) ^
176 md->read_only);
177 mmc_blk_put(md);
178 return ret;
179}
180
181static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
182 const char *buf, size_t count)
183{
184 int ret;
185 char *end;
186 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
187 unsigned long set = simple_strtoul(buf, &end, 0);
188 if (end == buf) {
189 ret = -EINVAL;
190 goto out;
191 }
192
193 set_disk_ro(dev_to_disk(dev), set || md->read_only);
194 ret = count;
195out:
196 mmc_blk_put(md);
197 return ret;
198}
199
Al Viroa5a15612008-03-02 10:33:30 -0500200static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Al Viroa5a15612008-03-02 10:33:30 -0500202 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int ret = -ENXIO;
204
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200205 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (md) {
207 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500208 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700210
Al Viroa5a15612008-03-02 10:33:30 -0500211 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700212 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700213 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200216 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 return ret;
219}
220
Al Viroa5a15612008-03-02 10:33:30 -0500221static int mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Al Viroa5a15612008-03-02 10:33:30 -0500223 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200225 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200227 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229}
230
231static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800232mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800234 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
235 geo->heads = 4;
236 geo->sectors = 16;
237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
John Calixtocb87ea22011-04-26 18:56:29 -0400240struct mmc_blk_ioc_data {
241 struct mmc_ioc_cmd ic;
242 unsigned char *buf;
243 u64 buf_bytes;
244};
245
246static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
247 struct mmc_ioc_cmd __user *user)
248{
249 struct mmc_blk_ioc_data *idata;
250 int err;
251
252 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
253 if (!idata) {
254 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400255 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400256 }
257
258 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
259 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400260 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400261 }
262
263 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
264 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
265 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400266 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400267 }
268
269 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
270 if (!idata->buf) {
271 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400272 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400273 }
274
275 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
276 idata->ic.data_ptr, idata->buf_bytes)) {
277 err = -EFAULT;
278 goto copy_err;
279 }
280
281 return idata;
282
283copy_err:
284 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400285idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400286 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400287out:
John Calixtocb87ea22011-04-26 18:56:29 -0400288 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400289}
290
291static int mmc_blk_ioctl_cmd(struct block_device *bdev,
292 struct mmc_ioc_cmd __user *ic_ptr)
293{
294 struct mmc_blk_ioc_data *idata;
295 struct mmc_blk_data *md;
296 struct mmc_card *card;
297 struct mmc_command cmd = {0};
298 struct mmc_data data = {0};
Venkatraman Sad5fd972011-08-25 00:30:50 +0530299 struct mmc_request mrq = {NULL};
John Calixtocb87ea22011-04-26 18:56:29 -0400300 struct scatterlist sg;
301 int err;
302
303 /*
304 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
305 * whole block device, not on a partition. This prevents overspray
306 * between sibling partitions.
307 */
308 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
309 return -EPERM;
310
311 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
312 if (IS_ERR(idata))
313 return PTR_ERR(idata);
314
315 cmd.opcode = idata->ic.opcode;
316 cmd.arg = idata->ic.arg;
317 cmd.flags = idata->ic.flags;
318
319 data.sg = &sg;
320 data.sg_len = 1;
321 data.blksz = idata->ic.blksz;
322 data.blocks = idata->ic.blocks;
323
324 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
325
326 if (idata->ic.write_flag)
327 data.flags = MMC_DATA_WRITE;
328 else
329 data.flags = MMC_DATA_READ;
330
331 mrq.cmd = &cmd;
332 mrq.data = &data;
333
334 md = mmc_blk_get(bdev->bd_disk);
335 if (!md) {
336 err = -EINVAL;
337 goto cmd_done;
338 }
339
340 card = md->queue.card;
341 if (IS_ERR(card)) {
342 err = PTR_ERR(card);
343 goto cmd_done;
344 }
345
346 mmc_claim_host(card->host);
347
348 if (idata->ic.is_acmd) {
349 err = mmc_app_cmd(card->host, card);
350 if (err)
351 goto cmd_rel_host;
352 }
353
354 /* data.flags must already be set before doing this. */
355 mmc_set_data_timeout(&data, card);
356 /* Allow overriding the timeout_ns for empirical tuning. */
357 if (idata->ic.data_timeout_ns)
358 data.timeout_ns = idata->ic.data_timeout_ns;
359
360 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
361 /*
362 * Pretend this is a data transfer and rely on the host driver
363 * to compute timeout. When all host drivers support
364 * cmd.cmd_timeout for R1B, this can be changed to:
365 *
366 * mrq.data = NULL;
367 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
368 */
369 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
370 }
371
372 mmc_wait_for_req(card->host, &mrq);
373
374 if (cmd.error) {
375 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
376 __func__, cmd.error);
377 err = cmd.error;
378 goto cmd_rel_host;
379 }
380 if (data.error) {
381 dev_err(mmc_dev(card->host), "%s: data error %d\n",
382 __func__, data.error);
383 err = data.error;
384 goto cmd_rel_host;
385 }
386
387 /*
388 * According to the SD specs, some commands require a delay after
389 * issuing the command.
390 */
391 if (idata->ic.postsleep_min_us)
392 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
393
394 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
395 err = -EFAULT;
396 goto cmd_rel_host;
397 }
398
399 if (!idata->ic.write_flag) {
400 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
401 idata->buf, idata->buf_bytes)) {
402 err = -EFAULT;
403 goto cmd_rel_host;
404 }
405 }
406
407cmd_rel_host:
408 mmc_release_host(card->host);
409
410cmd_done:
411 mmc_blk_put(md);
412 kfree(idata->buf);
413 kfree(idata);
414 return err;
415}
416
417static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
418 unsigned int cmd, unsigned long arg)
419{
420 int ret = -EINVAL;
421 if (cmd == MMC_IOC_CMD)
422 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
423 return ret;
424}
425
426#ifdef CONFIG_COMPAT
427static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
428 unsigned int cmd, unsigned long arg)
429{
430 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
431}
432#endif
433
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700434static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500435 .open = mmc_blk_open,
436 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800437 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400439 .ioctl = mmc_blk_ioctl,
440#ifdef CONFIG_COMPAT
441 .compat_ioctl = mmc_blk_compat_ioctl,
442#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443};
444
Andrei Warkentin371a6892011-04-11 18:10:25 -0500445static inline int mmc_blk_part_switch(struct mmc_card *card,
446 struct mmc_blk_data *md)
447{
448 int ret;
449 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
450 if (main_md->part_curr == md->part_type)
451 return 0;
452
453 if (mmc_card_mmc(card)) {
454 card->ext_csd.part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
455 card->ext_csd.part_config |= md->part_type;
456
457 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
458 EXT_CSD_PART_CONFIG, card->ext_csd.part_config,
459 card->ext_csd.part_time);
460 if (ret)
461 return ret;
Adrian Hunter67716322011-08-29 16:42:15 +0300462 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500463
464 main_md->part_curr = md->part_type;
465 return 0;
466}
467
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700468static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
469{
470 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100471 u32 result;
472 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700473
Venkatraman Sad5fd972011-08-25 00:30:50 +0530474 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400475 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400476 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700477 unsigned int timeout_us;
478
479 struct scatterlist sg;
480
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700481 cmd.opcode = MMC_APP_CMD;
482 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700483 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700484
485 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700486 if (err)
487 return (u32)-1;
488 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700489 return (u32)-1;
490
491 memset(&cmd, 0, sizeof(struct mmc_command));
492
493 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
494 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700495 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700496
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700497 data.timeout_ns = card->csd.tacc_ns * 100;
498 data.timeout_clks = card->csd.tacc_clks * 100;
499
500 timeout_us = data.timeout_ns / 1000;
501 timeout_us += data.timeout_clks * 1000 /
502 (card->host->ios.clock / 1000);
503
504 if (timeout_us > 100000) {
505 data.timeout_ns = 100000000;
506 data.timeout_clks = 0;
507 }
508
509 data.blksz = 4;
510 data.blocks = 1;
511 data.flags = MMC_DATA_READ;
512 data.sg = &sg;
513 data.sg_len = 1;
514
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700515 mrq.cmd = &cmd;
516 mrq.data = &data;
517
Ben Dooks051913d2009-06-08 23:33:57 +0100518 blocks = kmalloc(4, GFP_KERNEL);
519 if (!blocks)
520 return (u32)-1;
521
522 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700523
524 mmc_wait_for_req(card->host, &mrq);
525
Ben Dooks051913d2009-06-08 23:33:57 +0100526 result = ntohl(*blocks);
527 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700528
Ben Dooks051913d2009-06-08 23:33:57 +0100529 if (cmd.error || data.error)
530 result = (u32)-1;
531
532 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700533}
534
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100535static int send_stop(struct mmc_card *card, u32 *status)
536{
537 struct mmc_command cmd = {0};
538 int err;
539
540 cmd.opcode = MMC_STOP_TRANSMISSION;
541 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
542 err = mmc_wait_for_cmd(card->host, &cmd, 5);
543 if (err == 0)
544 *status = cmd.resp[0];
545 return err;
546}
547
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100548static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300549{
Chris Ball1278dba2011-04-13 23:40:30 -0400550 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300551 int err;
552
Adrian Hunter504f1912008-10-16 12:55:25 +0300553 cmd.opcode = MMC_SEND_STATUS;
554 if (!mmc_host_is_spi(card->host))
555 cmd.arg = card->rca << 16;
556 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100557 err = mmc_wait_for_cmd(card->host, &cmd, retries);
558 if (err == 0)
559 *status = cmd.resp[0];
560 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300561}
562
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100563#define ERR_RETRY 2
564#define ERR_ABORT 1
565#define ERR_CONTINUE 0
566
567static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
568 bool status_valid, u32 status)
569{
570 switch (error) {
571 case -EILSEQ:
572 /* response crc error, retry the r/w cmd */
573 pr_err("%s: %s sending %s command, card status %#x\n",
574 req->rq_disk->disk_name, "response CRC error",
575 name, status);
576 return ERR_RETRY;
577
578 case -ETIMEDOUT:
579 pr_err("%s: %s sending %s command, card status %#x\n",
580 req->rq_disk->disk_name, "timed out", name, status);
581
582 /* If the status cmd initially failed, retry the r/w cmd */
583 if (!status_valid)
584 return ERR_RETRY;
585
586 /*
587 * If it was a r/w cmd crc error, or illegal command
588 * (eg, issued in wrong state) then retry - we should
589 * have corrected the state problem above.
590 */
591 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
592 return ERR_RETRY;
593
594 /* Otherwise abort the command */
595 return ERR_ABORT;
596
597 default:
598 /* We don't understand the error code the driver gave us */
599 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
600 req->rq_disk->disk_name, error, status);
601 return ERR_ABORT;
602 }
603}
604
605/*
606 * Initial r/w and stop cmd error recovery.
607 * We don't know whether the card received the r/w cmd or not, so try to
608 * restore things back to a sane state. Essentially, we do this as follows:
609 * - Obtain card status. If the first attempt to obtain card status fails,
610 * the status word will reflect the failed status cmd, not the failed
611 * r/w cmd. If we fail to obtain card status, it suggests we can no
612 * longer communicate with the card.
613 * - Check the card state. If the card received the cmd but there was a
614 * transient problem with the response, it might still be in a data transfer
615 * mode. Try to send it a stop command. If this fails, we can't recover.
616 * - If the r/w cmd failed due to a response CRC error, it was probably
617 * transient, so retry the cmd.
618 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
619 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
620 * illegal cmd, retry.
621 * Otherwise we don't understand what happened, so abort.
622 */
623static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
Adrian Hunter67716322011-08-29 16:42:15 +0300624 struct mmc_blk_request *brq, int *ecc_err)
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100625{
626 bool prev_cmd_status_valid = true;
627 u32 status, stop_status = 0;
628 int err, retry;
629
630 /*
631 * Try to get card status which indicates both the card state
632 * and why there was no response. If the first attempt fails,
633 * we can't be sure the returned status is for the r/w command.
634 */
635 for (retry = 2; retry >= 0; retry--) {
636 err = get_card_status(card, &status, 0);
637 if (!err)
638 break;
639
640 prev_cmd_status_valid = false;
641 pr_err("%s: error %d sending status command, %sing\n",
642 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
643 }
644
645 /* We couldn't get a response from the card. Give up. */
646 if (err)
647 return ERR_ABORT;
648
Adrian Hunter67716322011-08-29 16:42:15 +0300649 /* Flag ECC errors */
650 if ((status & R1_CARD_ECC_FAILED) ||
651 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
652 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
653 *ecc_err = 1;
654
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100655 /*
656 * Check the current card state. If it is in some data transfer
657 * mode, tell it to stop (and hopefully transition back to TRAN.)
658 */
659 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
660 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
661 err = send_stop(card, &stop_status);
662 if (err)
663 pr_err("%s: error %d sending stop command\n",
664 req->rq_disk->disk_name, err);
665
666 /*
667 * If the stop cmd also timed out, the card is probably
668 * not present, so abort. Other errors are bad news too.
669 */
670 if (err)
671 return ERR_ABORT;
Adrian Hunter67716322011-08-29 16:42:15 +0300672 if (stop_status & R1_CARD_ECC_FAILED)
673 *ecc_err = 1;
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100674 }
675
676 /* Check for set block count errors */
677 if (brq->sbc.error)
678 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
679 prev_cmd_status_valid, status);
680
681 /* Check for r/w command errors */
682 if (brq->cmd.error)
683 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
684 prev_cmd_status_valid, status);
685
Adrian Hunter67716322011-08-29 16:42:15 +0300686 /* Data errors */
687 if (!brq->stop.error)
688 return ERR_CONTINUE;
689
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100690 /* Now for stop errors. These aren't fatal to the transfer. */
691 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
692 req->rq_disk->disk_name, brq->stop.error,
693 brq->cmd.resp[0], status);
694
695 /*
696 * Subsitute in our own stop status as this will give the error
697 * state which happened during the execution of the r/w command.
698 */
699 if (stop_status) {
700 brq->stop.resp[0] = stop_status;
701 brq->stop.error = 0;
702 }
703 return ERR_CONTINUE;
704}
705
Adrian Hunter67716322011-08-29 16:42:15 +0300706static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
707 int type)
708{
709 int err;
710
711 if (md->reset_done & type)
712 return -EEXIST;
713
714 md->reset_done |= type;
715 err = mmc_hw_reset(host);
716 /* Ensure we switch back to the correct partition */
717 if (err != -EOPNOTSUPP) {
718 struct mmc_blk_data *main_md = mmc_get_drvdata(host->card);
719 int part_err;
720
721 main_md->part_curr = main_md->part_type;
722 part_err = mmc_blk_part_switch(host->card, md);
723 if (part_err) {
724 /*
725 * We have failed to get back into the correct
726 * partition, so we need to abort the whole request.
727 */
728 return -ENODEV;
729 }
730 }
731 return err;
732}
733
734static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
735{
736 md->reset_done &= ~type;
737}
738
Adrian Hunterbd788c92010-08-11 14:17:47 -0700739static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
740{
741 struct mmc_blk_data *md = mq->data;
742 struct mmc_card *card = md->queue.card;
743 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300744 int err = 0, type = MMC_BLK_DISCARD;
Adrian Hunterbd788c92010-08-11 14:17:47 -0700745
Adrian Hunterbd788c92010-08-11 14:17:47 -0700746 if (!mmc_can_erase(card)) {
747 err = -EOPNOTSUPP;
748 goto out;
749 }
750
751 from = blk_rq_pos(req);
752 nr = blk_rq_sectors(req);
753
754 if (mmc_can_trim(card))
755 arg = MMC_TRIM_ARG;
756 else
757 arg = MMC_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300758retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500759 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
760 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
761 INAND_CMD38_ARG_EXT_CSD,
762 arg == MMC_TRIM_ARG ?
763 INAND_CMD38_ARG_TRIM :
764 INAND_CMD38_ARG_ERASE,
765 0);
766 if (err)
767 goto out;
768 }
Adrian Hunterbd788c92010-08-11 14:17:47 -0700769 err = mmc_erase(card, from, nr, arg);
770out:
Adrian Hunter67716322011-08-29 16:42:15 +0300771 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
772 goto retry;
773 if (!err)
774 mmc_blk_reset_success(md, type);
Adrian Hunterbd788c92010-08-11 14:17:47 -0700775 spin_lock_irq(&md->lock);
776 __blk_end_request(req, err, blk_rq_bytes(req));
777 spin_unlock_irq(&md->lock);
778
Adrian Hunterbd788c92010-08-11 14:17:47 -0700779 return err ? 0 : 1;
780}
781
Adrian Hunter49804542010-08-11 14:17:50 -0700782static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
783 struct request *req)
784{
785 struct mmc_blk_data *md = mq->data;
786 struct mmc_card *card = md->queue.card;
787 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +0300788 int err = 0, type = MMC_BLK_SECDISCARD;
Adrian Hunter49804542010-08-11 14:17:50 -0700789
Adrian Hunter49804542010-08-11 14:17:50 -0700790 if (!mmc_can_secure_erase_trim(card)) {
791 err = -EOPNOTSUPP;
792 goto out;
793 }
794
795 from = blk_rq_pos(req);
796 nr = blk_rq_sectors(req);
797
798 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
799 arg = MMC_SECURE_TRIM1_ARG;
800 else
801 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter67716322011-08-29 16:42:15 +0300802retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500803 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
804 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
805 INAND_CMD38_ARG_EXT_CSD,
806 arg == MMC_SECURE_TRIM1_ARG ?
807 INAND_CMD38_ARG_SECTRIM1 :
808 INAND_CMD38_ARG_SECERASE,
809 0);
810 if (err)
811 goto out;
812 }
Adrian Hunter49804542010-08-11 14:17:50 -0700813 err = mmc_erase(card, from, nr, arg);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500814 if (!err && arg == MMC_SECURE_TRIM1_ARG) {
815 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
816 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
817 INAND_CMD38_ARG_EXT_CSD,
818 INAND_CMD38_ARG_SECTRIM2,
819 0);
820 if (err)
821 goto out;
822 }
Adrian Hunter49804542010-08-11 14:17:50 -0700823 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500824 }
Adrian Hunter49804542010-08-11 14:17:50 -0700825out:
Adrian Hunter67716322011-08-29 16:42:15 +0300826 if (err == -EIO && !mmc_blk_reset(md, card->host, type))
827 goto retry;
828 if (!err)
829 mmc_blk_reset_success(md, type);
Adrian Hunter49804542010-08-11 14:17:50 -0700830 spin_lock_irq(&md->lock);
831 __blk_end_request(req, err, blk_rq_bytes(req));
832 spin_unlock_irq(&md->lock);
833
Adrian Hunter49804542010-08-11 14:17:50 -0700834 return err ? 0 : 1;
835}
836
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500837static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
838{
839 struct mmc_blk_data *md = mq->data;
840
841 /*
842 * No-op, only service this because we need REQ_FUA for reliable
843 * writes.
844 */
845 spin_lock_irq(&md->lock);
846 __blk_end_request_all(req, 0);
847 spin_unlock_irq(&md->lock);
848
849 return 1;
850}
851
852/*
853 * Reformat current write as a reliable write, supporting
854 * both legacy and the enhanced reliable write MMC cards.
855 * In each transfer we'll handle only as much as a single
856 * reliable write can handle, thus finish the request in
857 * partial completions.
858 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500859static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
860 struct mmc_card *card,
861 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500862{
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500863 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
864 /* Legacy mode imposes restrictions on transfers. */
865 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
866 brq->data.blocks = 1;
867
868 if (brq->data.blocks > card->ext_csd.rel_sectors)
869 brq->data.blocks = card->ext_csd.rel_sectors;
870 else if (brq->data.blocks < card->ext_csd.rel_sectors)
871 brq->data.blocks = 1;
872 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500873}
874
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +0100875#define CMD_ERRORS \
876 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
877 R1_ADDRESS_ERROR | /* Misaligned address */ \
878 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
879 R1_WP_VIOLATION | /* Tried to write to protected block */ \
880 R1_CC_ERROR | /* Card controller error */ \
881 R1_ERROR) /* General/unknown error */
882
Per Forlinee8a43a2011-07-01 18:55:33 +0200883static int mmc_blk_err_check(struct mmc_card *card,
884 struct mmc_async_req *areq)
Per Forlind78d4a82011-07-01 18:55:30 +0200885{
Per Forlinee8a43a2011-07-01 18:55:33 +0200886 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
887 mmc_active);
888 struct mmc_blk_request *brq = &mq_mrq->brq;
889 struct request *req = mq_mrq->req;
Adrian Hunter67716322011-08-29 16:42:15 +0300890 int ecc_err = 0;
Per Forlind78d4a82011-07-01 18:55:30 +0200891
892 /*
893 * sbc.error indicates a problem with the set block count
894 * command. No data will have been transferred.
895 *
896 * cmd.error indicates a problem with the r/w command. No
897 * data will have been transferred.
898 *
899 * stop.error indicates a problem with the stop command. Data
900 * may have been transferred, or may still be transferring.
901 */
Adrian Hunter67716322011-08-29 16:42:15 +0300902 if (brq->sbc.error || brq->cmd.error || brq->stop.error ||
903 brq->data.error) {
904 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err)) {
Per Forlind78d4a82011-07-01 18:55:30 +0200905 case ERR_RETRY:
906 return MMC_BLK_RETRY;
907 case ERR_ABORT:
908 return MMC_BLK_ABORT;
909 case ERR_CONTINUE:
910 break;
911 }
912 }
913
914 /*
915 * Check for errors relating to the execution of the
916 * initial command - such as address errors. No data
917 * has been transferred.
918 */
919 if (brq->cmd.resp[0] & CMD_ERRORS) {
920 pr_err("%s: r/w command failed, status = %#x\n",
921 req->rq_disk->disk_name, brq->cmd.resp[0]);
922 return MMC_BLK_ABORT;
923 }
924
925 /*
926 * Everything else is either success, or a data error of some
927 * kind. If it was a write, we may have transitioned to
928 * program mode, which we have to wait for it to complete.
929 */
930 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
931 u32 status;
932 do {
933 int err = get_card_status(card, &status, 5);
934 if (err) {
935 printk(KERN_ERR "%s: error %d requesting status\n",
936 req->rq_disk->disk_name, err);
937 return MMC_BLK_CMD_ERR;
938 }
939 /*
940 * Some cards mishandle the status bits,
941 * so make sure to check both the busy
942 * indication and the card state.
943 */
944 } while (!(status & R1_READY_FOR_DATA) ||
945 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
946 }
947
948 if (brq->data.error) {
949 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
950 req->rq_disk->disk_name, brq->data.error,
951 (unsigned)blk_rq_pos(req),
952 (unsigned)blk_rq_sectors(req),
953 brq->cmd.resp[0], brq->stop.resp[0]);
954
955 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +0300956 if (ecc_err)
957 return MMC_BLK_ECC_ERR;
Per Forlind78d4a82011-07-01 18:55:30 +0200958 return MMC_BLK_DATA_ERR;
959 } else {
960 return MMC_BLK_CMD_ERR;
961 }
962 }
963
Adrian Hunter67716322011-08-29 16:42:15 +0300964 if (!brq->data.bytes_xfered)
965 return MMC_BLK_RETRY;
Per Forlind78d4a82011-07-01 18:55:30 +0200966
Adrian Hunter67716322011-08-29 16:42:15 +0300967 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
968 return MMC_BLK_PARTIAL;
969
970 return MMC_BLK_SUCCESS;
Per Forlind78d4a82011-07-01 18:55:30 +0200971}
972
Per Forlin54d49d72011-07-01 18:55:29 +0200973static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
974 struct mmc_card *card,
975 int disable_multi,
976 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Per Forlin54d49d72011-07-01 18:55:29 +0200978 u32 readcmd, writecmd;
979 struct mmc_blk_request *brq = &mqrq->brq;
980 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct mmc_blk_data *md = mq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500983 /*
984 * Reliable writes are used to implement Forced Unit Access and
985 * REQ_META accesses, and are supported only on MMCs.
Christoph Hellwig65299a32011-08-23 14:50:29 +0200986 *
987 * XXX: this really needs a good explanation of why REQ_META
988 * is treated special.
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500989 */
990 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
991 (req->cmd_flags & REQ_META)) &&
992 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500993 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500994
Per Forlin54d49d72011-07-01 18:55:29 +0200995 memset(brq, 0, sizeof(struct mmc_blk_request));
996 brq->mrq.cmd = &brq->cmd;
997 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Per Forlin54d49d72011-07-01 18:55:29 +0200999 brq->cmd.arg = blk_rq_pos(req);
1000 if (!mmc_card_blockaddr(card))
1001 brq->cmd.arg <<= 9;
1002 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1003 brq->data.blksz = 512;
1004 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1005 brq->stop.arg = 0;
1006 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1007 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Per Forlin54d49d72011-07-01 18:55:29 +02001009 /*
1010 * The block layer doesn't support all sector count
1011 * restrictions, so we need to be prepared for too big
1012 * requests.
1013 */
1014 if (brq->data.blocks > card->host->max_blk_count)
1015 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Per Forlin54d49d72011-07-01 18:55:29 +02001017 /*
1018 * After a read error, we redo the request one sector at a time
1019 * in order to accurately determine which sectors can be read
1020 * successfully.
1021 */
1022 if (disable_multi && brq->data.blocks > 1)
1023 brq->data.blocks = 1;
1024
1025 if (brq->data.blocks > 1 || do_rel_wr) {
1026 /* SPI multiblock writes terminate using a special
1027 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001028 */
Per Forlin54d49d72011-07-01 18:55:29 +02001029 if (!mmc_host_is_spi(card->host) ||
1030 rq_data_dir(req) == READ)
1031 brq->mrq.stop = &brq->stop;
1032 readcmd = MMC_READ_MULTIPLE_BLOCK;
1033 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1034 } else {
1035 brq->mrq.stop = NULL;
1036 readcmd = MMC_READ_SINGLE_BLOCK;
1037 writecmd = MMC_WRITE_BLOCK;
1038 }
1039 if (rq_data_dir(req) == READ) {
1040 brq->cmd.opcode = readcmd;
1041 brq->data.flags |= MMC_DATA_READ;
1042 } else {
1043 brq->cmd.opcode = writecmd;
1044 brq->data.flags |= MMC_DATA_WRITE;
1045 }
Pierre Ossman548d2de2009-04-10 17:52:57 +02001046
Per Forlin54d49d72011-07-01 18:55:29 +02001047 if (do_rel_wr)
1048 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001049
Per Forlin54d49d72011-07-01 18:55:29 +02001050 /*
1051 * Pre-defined multi-block transfers are preferable to
1052 * open ended-ones (and necessary for reliable writes).
1053 * However, it is not sufficient to just send CMD23,
1054 * and avoid the final CMD12, as on an error condition
1055 * CMD12 (stop) needs to be sent anyway. This, coupled
1056 * with Auto-CMD23 enhancements provided by some
1057 * hosts, means that the complexity of dealing
1058 * with this is best left to the host. If CMD23 is
1059 * supported by card and host, we'll fill sbc in and let
1060 * the host deal with handling it correctly. This means
1061 * that for hosts that don't expose MMC_CAP_CMD23, no
1062 * change of behavior will be observed.
1063 *
1064 * N.B: Some MMC cards experience perf degradation.
1065 * We'll avoid using CMD23-bounded multiblock writes for
1066 * these, while retaining features like reliable writes.
1067 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Per Forlin54d49d72011-07-01 18:55:29 +02001069 if ((md->flags & MMC_BLK_CMD23) &&
1070 mmc_op_multi(brq->cmd.opcode) &&
1071 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23))) {
1072 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1073 brq->sbc.arg = brq->data.blocks |
1074 (do_rel_wr ? (1 << 31) : 0);
1075 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1076 brq->mrq.sbc = &brq->sbc;
1077 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001078
Per Forlin54d49d72011-07-01 18:55:29 +02001079 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001080
Per Forlin54d49d72011-07-01 18:55:29 +02001081 brq->data.sg = mqrq->sg;
1082 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001083
Per Forlin54d49d72011-07-01 18:55:29 +02001084 /*
1085 * Adjust the sg list so it is the same size as the
1086 * request.
1087 */
1088 if (brq->data.blocks != blk_rq_sectors(req)) {
1089 int i, data_size = brq->data.blocks << 9;
1090 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001091
Per Forlin54d49d72011-07-01 18:55:29 +02001092 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1093 data_size -= sg->length;
1094 if (data_size <= 0) {
1095 sg->length += data_size;
1096 i++;
1097 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001098 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001099 }
Per Forlin54d49d72011-07-01 18:55:29 +02001100 brq->data.sg_len = i;
1101 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001102
Per Forlinee8a43a2011-07-01 18:55:33 +02001103 mqrq->mmc_active.mrq = &brq->mrq;
1104 mqrq->mmc_active.err_check = mmc_blk_err_check;
1105
Per Forlin54d49d72011-07-01 18:55:29 +02001106 mmc_queue_bounce_pre(mqrq);
1107}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Adrian Hunter67716322011-08-29 16:42:15 +03001109static int mmc_blk_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
1110 struct mmc_blk_request *brq, struct request *req,
1111 int ret)
1112{
1113 /*
1114 * If this is an SD card and we're writing, we can first
1115 * mark the known good sectors as ok.
1116 *
1117 * If the card is not SD, we can still ok written sectors
1118 * as reported by the controller (which might be less than
1119 * the real number of written sectors, but never more).
1120 */
1121 if (mmc_card_sd(card)) {
1122 u32 blocks;
1123
1124 blocks = mmc_sd_num_wr_blocks(card);
1125 if (blocks != (u32)-1) {
1126 spin_lock_irq(&md->lock);
1127 ret = __blk_end_request(req, 0, blocks << 9);
1128 spin_unlock_irq(&md->lock);
1129 }
1130 } else {
1131 spin_lock_irq(&md->lock);
1132 ret = __blk_end_request(req, 0, brq->data.bytes_xfered);
1133 spin_unlock_irq(&md->lock);
1134 }
1135 return ret;
1136}
1137
Per Forlinee8a43a2011-07-01 18:55:33 +02001138static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001139{
1140 struct mmc_blk_data *md = mq->data;
1141 struct mmc_card *card = md->queue.card;
1142 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
Adrian Hunter67716322011-08-29 16:42:15 +03001143 int ret = 1, disable_multi = 0, retry = 0, type;
Per Forlind78d4a82011-07-01 18:55:30 +02001144 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001145 struct mmc_queue_req *mq_rq;
1146 struct request *req;
1147 struct mmc_async_req *areq;
1148
1149 if (!rqc && !mq->mqrq_prev->req)
1150 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001151
1152 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001153 if (rqc) {
1154 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1155 areq = &mq->mqrq_cur->mmc_active;
1156 } else
1157 areq = NULL;
1158 areq = mmc_start_req(card->host, areq, (int *) &status);
1159 if (!areq)
1160 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +02001161
Per Forlinee8a43a2011-07-01 18:55:33 +02001162 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1163 brq = &mq_rq->brq;
1164 req = mq_rq->req;
Adrian Hunter67716322011-08-29 16:42:15 +03001165 type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Per Forlinee8a43a2011-07-01 18:55:33 +02001166 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001167
Per Forlind78d4a82011-07-01 18:55:30 +02001168 switch (status) {
1169 case MMC_BLK_SUCCESS:
1170 case MMC_BLK_PARTIAL:
1171 /*
1172 * A block was successfully transferred.
1173 */
Adrian Hunter67716322011-08-29 16:42:15 +03001174 mmc_blk_reset_success(md, type);
Per Forlind78d4a82011-07-01 18:55:30 +02001175 spin_lock_irq(&md->lock);
1176 ret = __blk_end_request(req, 0,
1177 brq->data.bytes_xfered);
1178 spin_unlock_irq(&md->lock);
Adrian Hunter67716322011-08-29 16:42:15 +03001179 /*
1180 * If the blk_end_request function returns non-zero even
1181 * though all data has been transferred and no errors
1182 * were returned by the host controller, it's a bug.
1183 */
Per Forlinee8a43a2011-07-01 18:55:33 +02001184 if (status == MMC_BLK_SUCCESS && ret) {
Per Forlinee8a43a2011-07-01 18:55:33 +02001185 printk(KERN_ERR "%s BUG rq_tot %d d_xfer %d\n",
1186 __func__, blk_rq_bytes(req),
1187 brq->data.bytes_xfered);
1188 rqc = NULL;
1189 goto cmd_abort;
1190 }
Per Forlind78d4a82011-07-01 18:55:30 +02001191 break;
1192 case MMC_BLK_CMD_ERR:
Adrian Hunter67716322011-08-29 16:42:15 +03001193 ret = mmc_blk_cmd_err(md, card, brq, req, ret);
1194 if (!mmc_blk_reset(md, card->host, type))
1195 break;
1196 goto cmd_abort;
Per Forlind78d4a82011-07-01 18:55:30 +02001197 case MMC_BLK_RETRY:
1198 if (retry++ < 5)
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +01001199 break;
Adrian Hunter67716322011-08-29 16:42:15 +03001200 /* Fall through */
Per Forlind78d4a82011-07-01 18:55:30 +02001201 case MMC_BLK_ABORT:
Adrian Hunter67716322011-08-29 16:42:15 +03001202 if (!mmc_blk_reset(md, card->host, type))
1203 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001204 goto cmd_abort;
Adrian Hunter67716322011-08-29 16:42:15 +03001205 case MMC_BLK_DATA_ERR: {
1206 int err;
1207
1208 err = mmc_blk_reset(md, card->host, type);
1209 if (!err)
1210 break;
1211 if (err == -ENODEV)
1212 goto cmd_abort;
1213 /* Fall through */
1214 }
1215 case MMC_BLK_ECC_ERR:
1216 if (brq->data.blocks > 1) {
1217 /* Redo read one sector at a time */
1218 pr_warning("%s: retrying using single block read\n",
1219 req->rq_disk->disk_name);
1220 disable_multi = 1;
1221 break;
1222 }
Per Forlind78d4a82011-07-01 18:55:30 +02001223 /*
1224 * After an error, we redo I/O one sector at a
1225 * time, so we only reach here after trying to
1226 * read a single sector.
1227 */
1228 spin_lock_irq(&md->lock);
1229 ret = __blk_end_request(req, -EIO,
1230 brq->data.blksz);
1231 spin_unlock_irq(&md->lock);
Per Forlinee8a43a2011-07-01 18:55:33 +02001232 if (!ret)
1233 goto start_new_req;
Per Forlind78d4a82011-07-01 18:55:30 +02001234 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001235 }
1236
Per Forlinee8a43a2011-07-01 18:55:33 +02001237 if (ret) {
1238 /*
Adrian Hunter67716322011-08-29 16:42:15 +03001239 * In case of a incomplete request
Per Forlinee8a43a2011-07-01 18:55:33 +02001240 * prepare it again and resend.
1241 */
1242 mmc_blk_rw_rq_prep(mq_rq, card, disable_multi, mq);
1243 mmc_start_req(card->host, &mq_rq->mmc_active, NULL);
1244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 } while (ret);
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return 1;
1248
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +01001249 cmd_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 spin_lock_irq(&md->lock);
Kiyoshi Uedafd539832007-12-11 17:48:29 -05001251 while (ret)
1252 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 spin_unlock_irq(&md->lock);
1254
Per Forlinee8a43a2011-07-01 18:55:33 +02001255 start_new_req:
1256 if (rqc) {
1257 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1258 mmc_start_req(card->host, &mq->mqrq_cur->mmc_active, NULL);
1259 }
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return 0;
1262}
1263
Adrian Hunterbd788c92010-08-11 14:17:47 -07001264static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1265{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001266 int ret;
1267 struct mmc_blk_data *md = mq->data;
1268 struct mmc_card *card = md->queue.card;
1269
Per Forlinee8a43a2011-07-01 18:55:33 +02001270 if (req && !mq->mqrq_prev->req)
1271 /* claim host only for the first request */
1272 mmc_claim_host(card->host);
1273
Andrei Warkentin371a6892011-04-11 18:10:25 -05001274 ret = mmc_blk_part_switch(card, md);
1275 if (ret) {
1276 ret = 0;
1277 goto out;
1278 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001279
Per Forlinee8a43a2011-07-01 18:55:33 +02001280 if (req && req->cmd_flags & REQ_DISCARD) {
1281 /* complete ongoing async transfer before issuing discard */
1282 if (card->host->areq)
1283 mmc_blk_issue_rw_rq(mq, NULL);
Adrian Hunter49804542010-08-11 14:17:50 -07001284 if (req->cmd_flags & REQ_SECURE)
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001285 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001286 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001287 ret = mmc_blk_issue_discard_rq(mq, req);
Per Forlinee8a43a2011-07-01 18:55:33 +02001288 } else if (req && req->cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09001289 /* complete ongoing async transfer before issuing flush */
1290 if (card->host->areq)
1291 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001292 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001293 } else {
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001294 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001295 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001296
Andrei Warkentin371a6892011-04-11 18:10:25 -05001297out:
Per Forlinee8a43a2011-07-01 18:55:33 +02001298 if (!req)
1299 /* release host only when there are no more requests */
1300 mmc_release_host(card->host);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001301 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001302}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Russell Kinga6f6c962006-01-03 22:38:44 +00001304static inline int mmc_blk_readonly(struct mmc_card *card)
1305{
1306 return mmc_card_readonly(card) ||
1307 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1308}
1309
Andrei Warkentin371a6892011-04-11 18:10:25 -05001310static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1311 struct device *parent,
1312 sector_t size,
1313 bool default_ro,
1314 const char *subname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 struct mmc_blk_data *md;
1317 int devidx, ret;
1318
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001319 devidx = find_first_zero_bit(dev_use, max_devices);
1320 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return ERR_PTR(-ENOSPC);
1322 __set_bit(devidx, dev_use);
1323
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001324 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00001325 if (!md) {
1326 ret = -ENOMEM;
1327 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
Russell Kinga6f6c962006-01-03 22:38:44 +00001329
Russell Kinga6f6c962006-01-03 22:38:44 +00001330 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001331 * !subname implies we are creating main mmc_blk_data that will be
1332 * associated with mmc_card with mmc_set_drvdata. Due to device
1333 * partitions, devidx will not coincide with a per-physical card
1334 * index anymore so we keep track of a name index.
1335 */
1336 if (!subname) {
1337 md->name_idx = find_first_zero_bit(name_use, max_devices);
1338 __set_bit(md->name_idx, name_use);
1339 }
1340 else
1341 md->name_idx = ((struct mmc_blk_data *)
1342 dev_to_disk(parent)->private_data)->name_idx;
1343
1344 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00001345 * Set the read-only status based on the supported commands
1346 * and the write protect switch.
1347 */
1348 md->read_only = mmc_blk_readonly(card);
1349
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001350 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00001351 if (md->disk == NULL) {
1352 ret = -ENOMEM;
1353 goto err_kfree;
1354 }
1355
1356 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001357 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00001358 md->usage = 1;
1359
Adrian Hunterd09408a2011-06-23 13:40:28 +03001360 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00001361 if (ret)
1362 goto err_putdisk;
1363
Russell Kinga6f6c962006-01-03 22:38:44 +00001364 md->queue.issue_fn = mmc_blk_issue_rq;
1365 md->queue.data = md;
1366
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001367 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001368 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00001369 md->disk->fops = &mmc_bdops;
1370 md->disk->private_data = md;
1371 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001372 md->disk->driverfs_dev = parent;
1373 set_disk_ro(md->disk, md->read_only || default_ro);
Russell Kinga6f6c962006-01-03 22:38:44 +00001374
1375 /*
1376 * As discussed on lkml, GENHD_FL_REMOVABLE should:
1377 *
1378 * - be set for removable media with permanent block devices
1379 * - be unset for removable block devices with permanent media
1380 *
1381 * Since MMC block devices clearly fall under the second
1382 * case, we do not set GENHD_FL_REMOVABLE. Userspace
1383 * should use the block device creation/destruction hotplug
1384 * messages to tell when the card is present.
1385 */
1386
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001387 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1388 "mmcblk%d%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00001389
Martin K. Petersene1defc42009-05-22 17:17:49 -04001390 blk_queue_logical_block_size(md->queue.queue, 512);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001391 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001392
Andrei Warkentinf0d89972011-05-23 15:06:38 -05001393 if (mmc_host_cmd23(card->host)) {
1394 if (mmc_card_mmc(card) ||
1395 (mmc_card_sd(card) &&
1396 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1397 md->flags |= MMC_BLK_CMD23;
1398 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001399
1400 if (mmc_card_mmc(card) &&
1401 md->flags & MMC_BLK_CMD23 &&
1402 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1403 card->ext_csd.rel_sectors)) {
1404 md->flags |= MMC_BLK_REL_WR;
1405 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1406 }
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00001409
1410 err_putdisk:
1411 put_disk(md->disk);
1412 err_kfree:
1413 kfree(md);
1414 out:
1415 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
Andrei Warkentin371a6892011-04-11 18:10:25 -05001418static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1419{
1420 sector_t size;
1421 struct mmc_blk_data *md;
1422
1423 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1424 /*
1425 * The EXT_CSD sector count is in number or 512 byte
1426 * sectors.
1427 */
1428 size = card->ext_csd.sectors;
1429 } else {
1430 /*
1431 * The CSD capacity field is in units of read_blkbits.
1432 * set_capacity takes units of 512 bytes.
1433 */
1434 size = card->csd.capacity << (card->csd.read_blkbits - 9);
1435 }
1436
1437 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL);
1438 return md;
1439}
1440
1441static int mmc_blk_alloc_part(struct mmc_card *card,
1442 struct mmc_blk_data *md,
1443 unsigned int part_type,
1444 sector_t size,
1445 bool default_ro,
1446 const char *subname)
1447{
1448 char cap_str[10];
1449 struct mmc_blk_data *part_md;
1450
1451 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
1452 subname);
1453 if (IS_ERR(part_md))
1454 return PTR_ERR(part_md);
1455 part_md->part_type = part_type;
1456 list_add(&part_md->part, &md->part);
1457
1458 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1459 cap_str, sizeof(cap_str));
1460 printk(KERN_INFO "%s: %s %s partition %u %s\n",
1461 part_md->disk->disk_name, mmc_card_id(card),
1462 mmc_card_name(card), part_md->part_type, cap_str);
1463 return 0;
1464}
1465
1466static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1467{
1468 int ret = 0;
1469
1470 if (!mmc_card_mmc(card))
1471 return 0;
1472
1473 if (card->ext_csd.boot_size) {
1474 ret = mmc_blk_alloc_part(card, md, EXT_CSD_PART_CONFIG_ACC_BOOT0,
1475 card->ext_csd.boot_size >> 9,
1476 true,
1477 "boot0");
1478 if (ret)
1479 return ret;
1480 ret = mmc_blk_alloc_part(card, md, EXT_CSD_PART_CONFIG_ACC_BOOT1,
1481 card->ext_csd.boot_size >> 9,
1482 true,
1483 "boot1");
1484 if (ret)
1485 return ret;
1486 }
1487
1488 return ret;
1489}
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491static int
1492mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
1493{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 int err;
1495
Pierre Ossmanb8558852007-01-03 19:47:29 +01001496 mmc_claim_host(card->host);
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001497 err = mmc_set_blocklen(card, 512);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001498 mmc_release_host(card->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 if (err) {
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001501 printk(KERN_ERR "%s: unable to set block size to 512: %d\n",
1502 md->disk->disk_name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return -EINVAL;
1504 }
1505
1506 return 0;
1507}
1508
Andrei Warkentin371a6892011-04-11 18:10:25 -05001509static void mmc_blk_remove_req(struct mmc_blk_data *md)
1510{
1511 if (md) {
1512 if (md->disk->flags & GENHD_FL_UP) {
1513 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1514
1515 /* Stop new requests from getting into the queue */
1516 del_gendisk(md->disk);
1517 }
1518
1519 /* Then flush out any already in there */
1520 mmc_cleanup_queue(&md->queue);
1521 mmc_blk_put(md);
1522 }
1523}
1524
1525static void mmc_blk_remove_parts(struct mmc_card *card,
1526 struct mmc_blk_data *md)
1527{
1528 struct list_head *pos, *q;
1529 struct mmc_blk_data *part_md;
1530
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001531 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001532 list_for_each_safe(pos, q, &md->part) {
1533 part_md = list_entry(pos, struct mmc_blk_data, part);
1534 list_del(pos);
1535 mmc_blk_remove_req(part_md);
1536 }
1537}
1538
1539static int mmc_add_disk(struct mmc_blk_data *md)
1540{
1541 int ret;
1542
1543 add_disk(md->disk);
1544 md->force_ro.show = force_ro_show;
1545 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05301546 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001547 md->force_ro.attr.name = "force_ro";
1548 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1549 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1550 if (ret)
1551 del_gendisk(md->disk);
1552
1553 return ret;
1554}
1555
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001556static const struct mmc_fixup blk_fixups[] =
1557{
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001558 MMC_FIXUP("SEM02G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1559 MMC_FIXUP("SEM04G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1560 MMC_FIXUP("SEM08G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1561 MMC_FIXUP("SEM16G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1562 MMC_FIXUP("SEM32G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001563
1564 /*
1565 * Some MMC cards experience performance degradation with CMD23
1566 * instead of CMD12-bounded multiblock transfers. For now we'll
1567 * black list what's bad...
1568 * - Certain Toshiba cards.
1569 *
1570 * N.B. This doesn't affect SD cards.
1571 */
1572 MMC_FIXUP("MMC08G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1573 MMC_QUIRK_BLK_NO_CMD23),
1574 MMC_FIXUP("MMC16G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1575 MMC_QUIRK_BLK_NO_CMD23),
1576 MMC_FIXUP("MMC32G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1577 MMC_QUIRK_BLK_NO_CMD23),
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001578 END_FIXUP
1579};
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581static int mmc_blk_probe(struct mmc_card *card)
1582{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001583 struct mmc_blk_data *md, *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 int err;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001585 char cap_str[10];
1586
Pierre Ossman912490d2005-05-21 10:27:02 +01001587 /*
1588 * Check that the card supports the command class(es) we need.
1589 */
1590 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return -ENODEV;
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 md = mmc_blk_alloc(card);
1594 if (IS_ERR(md))
1595 return PTR_ERR(md);
1596
1597 err = mmc_blk_set_blksize(md, card);
1598 if (err)
1599 goto out;
1600
Yi Li444122f2009-02-05 15:31:57 +08001601 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001602 cap_str, sizeof(cap_str));
1603 printk(KERN_INFO "%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001605 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Andrei Warkentin371a6892011-04-11 18:10:25 -05001607 if (mmc_blk_alloc_parts(card, md))
1608 goto out;
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 mmc_set_drvdata(card, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001611 mmc_fixup_device(card, blk_fixups);
1612
Andrei Warkentin371a6892011-04-11 18:10:25 -05001613 if (mmc_add_disk(md))
1614 goto out;
1615
1616 list_for_each_entry(part_md, &md->part, part) {
1617 if (mmc_add_disk(part_md))
1618 goto out;
1619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return 0;
1621
1622 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05001623 mmc_blk_remove_parts(card, md);
1624 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return err;
1626}
1627
1628static void mmc_blk_remove(struct mmc_card *card)
1629{
1630 struct mmc_blk_data *md = mmc_get_drvdata(card);
1631
Andrei Warkentin371a6892011-04-11 18:10:25 -05001632 mmc_blk_remove_parts(card, md);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03001633 mmc_claim_host(card->host);
1634 mmc_blk_part_switch(card, md);
1635 mmc_release_host(card->host);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001636 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 mmc_set_drvdata(card, NULL);
1638}
1639
1640#ifdef CONFIG_PM
1641static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
1642{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001643 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 struct mmc_blk_data *md = mmc_get_drvdata(card);
1645
1646 if (md) {
1647 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001648 list_for_each_entry(part_md, &md->part, part) {
1649 mmc_queue_suspend(&part_md->queue);
1650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
1652 return 0;
1653}
1654
1655static int mmc_blk_resume(struct mmc_card *card)
1656{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001657 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 struct mmc_blk_data *md = mmc_get_drvdata(card);
1659
1660 if (md) {
1661 mmc_blk_set_blksize(md, card);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001662
1663 /*
1664 * Resume involves the card going into idle state,
1665 * so current partition is always the main one.
1666 */
1667 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001669 list_for_each_entry(part_md, &md->part, part) {
1670 mmc_queue_resume(&part_md->queue);
1671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673 return 0;
1674}
1675#else
1676#define mmc_blk_suspend NULL
1677#define mmc_blk_resume NULL
1678#endif
1679
1680static struct mmc_driver mmc_driver = {
1681 .drv = {
1682 .name = "mmcblk",
1683 },
1684 .probe = mmc_blk_probe,
1685 .remove = mmc_blk_remove,
1686 .suspend = mmc_blk_suspend,
1687 .resume = mmc_blk_resume,
1688};
1689
1690static int __init mmc_blk_init(void)
1691{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001692 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001694 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1695 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1696
1697 max_devices = 256 / perdev_minors;
1698
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001699 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1700 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001703 res = mmc_register_driver(&mmc_driver);
1704 if (res)
1705 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001707 return 0;
1708 out2:
1709 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 out:
1711 return res;
1712}
1713
1714static void __exit mmc_blk_exit(void)
1715{
1716 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001717 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
1720module_init(mmc_blk_init);
1721module_exit(mmc_blk_exit);
1722
1723MODULE_LICENSE("GPL");
1724MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1725