blob: 1ff5486213fbeb2682b2cad1b96d423a1fb235fa [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;
Andrei Warkentin371a6892011-04-11 18:10:25 -050097
98 /*
99 * Only set in main mmc_blk_data associated
100 * with mmc_card with mmc_set_drvdata, and keeps
101 * track of the current selected device partition.
102 */
103 unsigned int part_curr;
104 struct device_attribute force_ro;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Arjan van de Vena621aae2006-01-12 18:43:35 +0000107static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Per Forlind78d4a82011-07-01 18:55:30 +0200109enum mmc_blk_status {
110 MMC_BLK_SUCCESS = 0,
111 MMC_BLK_PARTIAL,
112 MMC_BLK_RETRY,
113 MMC_BLK_RETRY_SINGLE,
114 MMC_BLK_DATA_ERR,
115 MMC_BLK_CMD_ERR,
116 MMC_BLK_ABORT,
117};
118
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400119module_param(perdev_minors, int, 0444);
120MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
123{
124 struct mmc_blk_data *md;
125
Arjan van de Vena621aae2006-01-12 18:43:35 +0000126 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 md = disk->private_data;
128 if (md && md->usage == 0)
129 md = NULL;
130 if (md)
131 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000132 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 return md;
135}
136
Andrei Warkentin371a6892011-04-11 18:10:25 -0500137static inline int mmc_get_devidx(struct gendisk *disk)
138{
139 int devmaj = MAJOR(disk_devt(disk));
140 int devidx = MINOR(disk_devt(disk)) / perdev_minors;
141
142 if (!devmaj)
143 devidx = disk->first_minor / perdev_minors;
144 return devidx;
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static void mmc_blk_put(struct mmc_blk_data *md)
148{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000149 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 md->usage--;
151 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500152 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800153 blk_cleanup_queue(md->queue.queue);
154
David Woodhouse1dff3142007-11-21 18:45:12 +0100155 __clear_bit(devidx, dev_use);
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 kfree(md);
159 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000160 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Andrei Warkentin371a6892011-04-11 18:10:25 -0500163static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
164 char *buf)
165{
166 int ret;
167 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
168
169 ret = snprintf(buf, PAGE_SIZE, "%d",
170 get_disk_ro(dev_to_disk(dev)) ^
171 md->read_only);
172 mmc_blk_put(md);
173 return ret;
174}
175
176static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
177 const char *buf, size_t count)
178{
179 int ret;
180 char *end;
181 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
182 unsigned long set = simple_strtoul(buf, &end, 0);
183 if (end == buf) {
184 ret = -EINVAL;
185 goto out;
186 }
187
188 set_disk_ro(dev_to_disk(dev), set || md->read_only);
189 ret = count;
190out:
191 mmc_blk_put(md);
192 return ret;
193}
194
Al Viroa5a15612008-03-02 10:33:30 -0500195static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Al Viroa5a15612008-03-02 10:33:30 -0500197 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int ret = -ENXIO;
199
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200200 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (md) {
202 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500203 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700205
Al Viroa5a15612008-03-02 10:33:30 -0500206 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700207 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700208 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200211 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 return ret;
214}
215
Al Viroa5a15612008-03-02 10:33:30 -0500216static int mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Al Viroa5a15612008-03-02 10:33:30 -0500218 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200220 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200222 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return 0;
224}
225
226static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800227mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800229 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
230 geo->heads = 4;
231 geo->sectors = 16;
232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
John Calixtocb87ea22011-04-26 18:56:29 -0400235struct mmc_blk_ioc_data {
236 struct mmc_ioc_cmd ic;
237 unsigned char *buf;
238 u64 buf_bytes;
239};
240
241static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
242 struct mmc_ioc_cmd __user *user)
243{
244 struct mmc_blk_ioc_data *idata;
245 int err;
246
247 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
248 if (!idata) {
249 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400250 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400251 }
252
253 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
254 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400255 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400256 }
257
258 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
259 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
260 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400261 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400262 }
263
264 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
265 if (!idata->buf) {
266 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400267 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400268 }
269
270 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
271 idata->ic.data_ptr, idata->buf_bytes)) {
272 err = -EFAULT;
273 goto copy_err;
274 }
275
276 return idata;
277
278copy_err:
279 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400280idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400281 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400282out:
John Calixtocb87ea22011-04-26 18:56:29 -0400283 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400284}
285
286static int mmc_blk_ioctl_cmd(struct block_device *bdev,
287 struct mmc_ioc_cmd __user *ic_ptr)
288{
289 struct mmc_blk_ioc_data *idata;
290 struct mmc_blk_data *md;
291 struct mmc_card *card;
292 struct mmc_command cmd = {0};
293 struct mmc_data data = {0};
294 struct mmc_request mrq = {0};
295 struct scatterlist sg;
296 int err;
297
298 /*
299 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
300 * whole block device, not on a partition. This prevents overspray
301 * between sibling partitions.
302 */
303 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
304 return -EPERM;
305
306 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
307 if (IS_ERR(idata))
308 return PTR_ERR(idata);
309
310 cmd.opcode = idata->ic.opcode;
311 cmd.arg = idata->ic.arg;
312 cmd.flags = idata->ic.flags;
313
314 data.sg = &sg;
315 data.sg_len = 1;
316 data.blksz = idata->ic.blksz;
317 data.blocks = idata->ic.blocks;
318
319 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
320
321 if (idata->ic.write_flag)
322 data.flags = MMC_DATA_WRITE;
323 else
324 data.flags = MMC_DATA_READ;
325
326 mrq.cmd = &cmd;
327 mrq.data = &data;
328
329 md = mmc_blk_get(bdev->bd_disk);
330 if (!md) {
331 err = -EINVAL;
332 goto cmd_done;
333 }
334
335 card = md->queue.card;
336 if (IS_ERR(card)) {
337 err = PTR_ERR(card);
338 goto cmd_done;
339 }
340
341 mmc_claim_host(card->host);
342
343 if (idata->ic.is_acmd) {
344 err = mmc_app_cmd(card->host, card);
345 if (err)
346 goto cmd_rel_host;
347 }
348
349 /* data.flags must already be set before doing this. */
350 mmc_set_data_timeout(&data, card);
351 /* Allow overriding the timeout_ns for empirical tuning. */
352 if (idata->ic.data_timeout_ns)
353 data.timeout_ns = idata->ic.data_timeout_ns;
354
355 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
356 /*
357 * Pretend this is a data transfer and rely on the host driver
358 * to compute timeout. When all host drivers support
359 * cmd.cmd_timeout for R1B, this can be changed to:
360 *
361 * mrq.data = NULL;
362 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
363 */
364 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
365 }
366
367 mmc_wait_for_req(card->host, &mrq);
368
369 if (cmd.error) {
370 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
371 __func__, cmd.error);
372 err = cmd.error;
373 goto cmd_rel_host;
374 }
375 if (data.error) {
376 dev_err(mmc_dev(card->host), "%s: data error %d\n",
377 __func__, data.error);
378 err = data.error;
379 goto cmd_rel_host;
380 }
381
382 /*
383 * According to the SD specs, some commands require a delay after
384 * issuing the command.
385 */
386 if (idata->ic.postsleep_min_us)
387 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
388
389 if (copy_to_user(&(ic_ptr->response), cmd.resp, sizeof(cmd.resp))) {
390 err = -EFAULT;
391 goto cmd_rel_host;
392 }
393
394 if (!idata->ic.write_flag) {
395 if (copy_to_user((void __user *)(unsigned long) idata->ic.data_ptr,
396 idata->buf, idata->buf_bytes)) {
397 err = -EFAULT;
398 goto cmd_rel_host;
399 }
400 }
401
402cmd_rel_host:
403 mmc_release_host(card->host);
404
405cmd_done:
406 mmc_blk_put(md);
407 kfree(idata->buf);
408 kfree(idata);
409 return err;
410}
411
412static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
413 unsigned int cmd, unsigned long arg)
414{
415 int ret = -EINVAL;
416 if (cmd == MMC_IOC_CMD)
417 ret = mmc_blk_ioctl_cmd(bdev, (struct mmc_ioc_cmd __user *)arg);
418 return ret;
419}
420
421#ifdef CONFIG_COMPAT
422static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
423 unsigned int cmd, unsigned long arg)
424{
425 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
426}
427#endif
428
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700429static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500430 .open = mmc_blk_open,
431 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800432 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400434 .ioctl = mmc_blk_ioctl,
435#ifdef CONFIG_COMPAT
436 .compat_ioctl = mmc_blk_compat_ioctl,
437#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438};
439
Andrei Warkentin371a6892011-04-11 18:10:25 -0500440static inline int mmc_blk_part_switch(struct mmc_card *card,
441 struct mmc_blk_data *md)
442{
443 int ret;
444 struct mmc_blk_data *main_md = mmc_get_drvdata(card);
445 if (main_md->part_curr == md->part_type)
446 return 0;
447
448 if (mmc_card_mmc(card)) {
449 card->ext_csd.part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
450 card->ext_csd.part_config |= md->part_type;
451
452 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
453 EXT_CSD_PART_CONFIG, card->ext_csd.part_config,
454 card->ext_csd.part_time);
455 if (ret)
456 return ret;
457}
458
459 main_md->part_curr = md->part_type;
460 return 0;
461}
462
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700463static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
464{
465 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100466 u32 result;
467 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700468
Chris Ball24f5b532011-04-13 23:49:45 -0400469 struct mmc_request mrq = {0};
Chris Ball1278dba2011-04-13 23:40:30 -0400470 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400471 struct mmc_data data = {0};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700472 unsigned int timeout_us;
473
474 struct scatterlist sg;
475
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700476 cmd.opcode = MMC_APP_CMD;
477 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700478 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700479
480 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700481 if (err)
482 return (u32)-1;
483 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700484 return (u32)-1;
485
486 memset(&cmd, 0, sizeof(struct mmc_command));
487
488 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
489 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700490 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700491
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700492 data.timeout_ns = card->csd.tacc_ns * 100;
493 data.timeout_clks = card->csd.tacc_clks * 100;
494
495 timeout_us = data.timeout_ns / 1000;
496 timeout_us += data.timeout_clks * 1000 /
497 (card->host->ios.clock / 1000);
498
499 if (timeout_us > 100000) {
500 data.timeout_ns = 100000000;
501 data.timeout_clks = 0;
502 }
503
504 data.blksz = 4;
505 data.blocks = 1;
506 data.flags = MMC_DATA_READ;
507 data.sg = &sg;
508 data.sg_len = 1;
509
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700510 mrq.cmd = &cmd;
511 mrq.data = &data;
512
Ben Dooks051913d2009-06-08 23:33:57 +0100513 blocks = kmalloc(4, GFP_KERNEL);
514 if (!blocks)
515 return (u32)-1;
516
517 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700518
519 mmc_wait_for_req(card->host, &mrq);
520
Ben Dooks051913d2009-06-08 23:33:57 +0100521 result = ntohl(*blocks);
522 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700523
Ben Dooks051913d2009-06-08 23:33:57 +0100524 if (cmd.error || data.error)
525 result = (u32)-1;
526
527 return result;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700528}
529
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100530static int send_stop(struct mmc_card *card, u32 *status)
531{
532 struct mmc_command cmd = {0};
533 int err;
534
535 cmd.opcode = MMC_STOP_TRANSMISSION;
536 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
537 err = mmc_wait_for_cmd(card->host, &cmd, 5);
538 if (err == 0)
539 *status = cmd.resp[0];
540 return err;
541}
542
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100543static int get_card_status(struct mmc_card *card, u32 *status, int retries)
Adrian Hunter504f1912008-10-16 12:55:25 +0300544{
Chris Ball1278dba2011-04-13 23:40:30 -0400545 struct mmc_command cmd = {0};
Adrian Hunter504f1912008-10-16 12:55:25 +0300546 int err;
547
Adrian Hunter504f1912008-10-16 12:55:25 +0300548 cmd.opcode = MMC_SEND_STATUS;
549 if (!mmc_host_is_spi(card->host))
550 cmd.arg = card->rca << 16;
551 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
Russell King - ARM Linux0a2d4042011-06-20 20:10:08 +0100552 err = mmc_wait_for_cmd(card->host, &cmd, retries);
553 if (err == 0)
554 *status = cmd.resp[0];
555 return err;
Adrian Hunter504f1912008-10-16 12:55:25 +0300556}
557
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +0100558#define ERR_RETRY 2
559#define ERR_ABORT 1
560#define ERR_CONTINUE 0
561
562static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
563 bool status_valid, u32 status)
564{
565 switch (error) {
566 case -EILSEQ:
567 /* response crc error, retry the r/w cmd */
568 pr_err("%s: %s sending %s command, card status %#x\n",
569 req->rq_disk->disk_name, "response CRC error",
570 name, status);
571 return ERR_RETRY;
572
573 case -ETIMEDOUT:
574 pr_err("%s: %s sending %s command, card status %#x\n",
575 req->rq_disk->disk_name, "timed out", name, status);
576
577 /* If the status cmd initially failed, retry the r/w cmd */
578 if (!status_valid)
579 return ERR_RETRY;
580
581 /*
582 * If it was a r/w cmd crc error, or illegal command
583 * (eg, issued in wrong state) then retry - we should
584 * have corrected the state problem above.
585 */
586 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
587 return ERR_RETRY;
588
589 /* Otherwise abort the command */
590 return ERR_ABORT;
591
592 default:
593 /* We don't understand the error code the driver gave us */
594 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
595 req->rq_disk->disk_name, error, status);
596 return ERR_ABORT;
597 }
598}
599
600/*
601 * Initial r/w and stop cmd error recovery.
602 * We don't know whether the card received the r/w cmd or not, so try to
603 * restore things back to a sane state. Essentially, we do this as follows:
604 * - Obtain card status. If the first attempt to obtain card status fails,
605 * the status word will reflect the failed status cmd, not the failed
606 * r/w cmd. If we fail to obtain card status, it suggests we can no
607 * longer communicate with the card.
608 * - Check the card state. If the card received the cmd but there was a
609 * transient problem with the response, it might still be in a data transfer
610 * mode. Try to send it a stop command. If this fails, we can't recover.
611 * - If the r/w cmd failed due to a response CRC error, it was probably
612 * transient, so retry the cmd.
613 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
614 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
615 * illegal cmd, retry.
616 * Otherwise we don't understand what happened, so abort.
617 */
618static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
619 struct mmc_blk_request *brq)
620{
621 bool prev_cmd_status_valid = true;
622 u32 status, stop_status = 0;
623 int err, retry;
624
625 /*
626 * Try to get card status which indicates both the card state
627 * and why there was no response. If the first attempt fails,
628 * we can't be sure the returned status is for the r/w command.
629 */
630 for (retry = 2; retry >= 0; retry--) {
631 err = get_card_status(card, &status, 0);
632 if (!err)
633 break;
634
635 prev_cmd_status_valid = false;
636 pr_err("%s: error %d sending status command, %sing\n",
637 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
638 }
639
640 /* We couldn't get a response from the card. Give up. */
641 if (err)
642 return ERR_ABORT;
643
644 /*
645 * Check the current card state. If it is in some data transfer
646 * mode, tell it to stop (and hopefully transition back to TRAN.)
647 */
648 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
649 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
650 err = send_stop(card, &stop_status);
651 if (err)
652 pr_err("%s: error %d sending stop command\n",
653 req->rq_disk->disk_name, err);
654
655 /*
656 * If the stop cmd also timed out, the card is probably
657 * not present, so abort. Other errors are bad news too.
658 */
659 if (err)
660 return ERR_ABORT;
661 }
662
663 /* Check for set block count errors */
664 if (brq->sbc.error)
665 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
666 prev_cmd_status_valid, status);
667
668 /* Check for r/w command errors */
669 if (brq->cmd.error)
670 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
671 prev_cmd_status_valid, status);
672
673 /* Now for stop errors. These aren't fatal to the transfer. */
674 pr_err("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
675 req->rq_disk->disk_name, brq->stop.error,
676 brq->cmd.resp[0], status);
677
678 /*
679 * Subsitute in our own stop status as this will give the error
680 * state which happened during the execution of the r/w command.
681 */
682 if (stop_status) {
683 brq->stop.resp[0] = stop_status;
684 brq->stop.error = 0;
685 }
686 return ERR_CONTINUE;
687}
688
Adrian Hunterbd788c92010-08-11 14:17:47 -0700689static int mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
690{
691 struct mmc_blk_data *md = mq->data;
692 struct mmc_card *card = md->queue.card;
693 unsigned int from, nr, arg;
694 int err = 0;
695
Adrian Hunterbd788c92010-08-11 14:17:47 -0700696 if (!mmc_can_erase(card)) {
697 err = -EOPNOTSUPP;
698 goto out;
699 }
700
701 from = blk_rq_pos(req);
702 nr = blk_rq_sectors(req);
703
704 if (mmc_can_trim(card))
705 arg = MMC_TRIM_ARG;
706 else
707 arg = MMC_ERASE_ARG;
708
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500709 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
710 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
711 INAND_CMD38_ARG_EXT_CSD,
712 arg == MMC_TRIM_ARG ?
713 INAND_CMD38_ARG_TRIM :
714 INAND_CMD38_ARG_ERASE,
715 0);
716 if (err)
717 goto out;
718 }
Adrian Hunterbd788c92010-08-11 14:17:47 -0700719 err = mmc_erase(card, from, nr, arg);
720out:
721 spin_lock_irq(&md->lock);
722 __blk_end_request(req, err, blk_rq_bytes(req));
723 spin_unlock_irq(&md->lock);
724
Adrian Hunterbd788c92010-08-11 14:17:47 -0700725 return err ? 0 : 1;
726}
727
Adrian Hunter49804542010-08-11 14:17:50 -0700728static int mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
729 struct request *req)
730{
731 struct mmc_blk_data *md = mq->data;
732 struct mmc_card *card = md->queue.card;
733 unsigned int from, nr, arg;
734 int err = 0;
735
Adrian Hunter49804542010-08-11 14:17:50 -0700736 if (!mmc_can_secure_erase_trim(card)) {
737 err = -EOPNOTSUPP;
738 goto out;
739 }
740
741 from = blk_rq_pos(req);
742 nr = blk_rq_sectors(req);
743
744 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
745 arg = MMC_SECURE_TRIM1_ARG;
746 else
747 arg = MMC_SECURE_ERASE_ARG;
748
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500749 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
750 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
751 INAND_CMD38_ARG_EXT_CSD,
752 arg == MMC_SECURE_TRIM1_ARG ?
753 INAND_CMD38_ARG_SECTRIM1 :
754 INAND_CMD38_ARG_SECERASE,
755 0);
756 if (err)
757 goto out;
758 }
Adrian Hunter49804542010-08-11 14:17:50 -0700759 err = mmc_erase(card, from, nr, arg);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500760 if (!err && arg == MMC_SECURE_TRIM1_ARG) {
761 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
762 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
763 INAND_CMD38_ARG_EXT_CSD,
764 INAND_CMD38_ARG_SECTRIM2,
765 0);
766 if (err)
767 goto out;
768 }
Adrian Hunter49804542010-08-11 14:17:50 -0700769 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500770 }
Adrian Hunter49804542010-08-11 14:17:50 -0700771out:
772 spin_lock_irq(&md->lock);
773 __blk_end_request(req, err, blk_rq_bytes(req));
774 spin_unlock_irq(&md->lock);
775
Adrian Hunter49804542010-08-11 14:17:50 -0700776 return err ? 0 : 1;
777}
778
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500779static int mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
780{
781 struct mmc_blk_data *md = mq->data;
782
783 /*
784 * No-op, only service this because we need REQ_FUA for reliable
785 * writes.
786 */
787 spin_lock_irq(&md->lock);
788 __blk_end_request_all(req, 0);
789 spin_unlock_irq(&md->lock);
790
791 return 1;
792}
793
794/*
795 * Reformat current write as a reliable write, supporting
796 * both legacy and the enhanced reliable write MMC cards.
797 * In each transfer we'll handle only as much as a single
798 * reliable write can handle, thus finish the request in
799 * partial completions.
800 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500801static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
802 struct mmc_card *card,
803 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500804{
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500805 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
806 /* Legacy mode imposes restrictions on transfers. */
807 if (!IS_ALIGNED(brq->cmd.arg, card->ext_csd.rel_sectors))
808 brq->data.blocks = 1;
809
810 if (brq->data.blocks > card->ext_csd.rel_sectors)
811 brq->data.blocks = card->ext_csd.rel_sectors;
812 else if (brq->data.blocks < card->ext_csd.rel_sectors)
813 brq->data.blocks = 1;
814 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500815}
816
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +0100817#define CMD_ERRORS \
818 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
819 R1_ADDRESS_ERROR | /* Misaligned address */ \
820 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
821 R1_WP_VIOLATION | /* Tried to write to protected block */ \
822 R1_CC_ERROR | /* Card controller error */ \
823 R1_ERROR) /* General/unknown error */
824
Per Forlinee8a43a2011-07-01 18:55:33 +0200825static int mmc_blk_err_check(struct mmc_card *card,
826 struct mmc_async_req *areq)
Per Forlind78d4a82011-07-01 18:55:30 +0200827{
Per Forlinee8a43a2011-07-01 18:55:33 +0200828 enum mmc_blk_status ret = MMC_BLK_SUCCESS;
829 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
830 mmc_active);
831 struct mmc_blk_request *brq = &mq_mrq->brq;
832 struct request *req = mq_mrq->req;
Per Forlind78d4a82011-07-01 18:55:30 +0200833
834 /*
835 * sbc.error indicates a problem with the set block count
836 * command. No data will have been transferred.
837 *
838 * cmd.error indicates a problem with the r/w command. No
839 * data will have been transferred.
840 *
841 * stop.error indicates a problem with the stop command. Data
842 * may have been transferred, or may still be transferring.
843 */
844 if (brq->sbc.error || brq->cmd.error || brq->stop.error) {
845 switch (mmc_blk_cmd_recovery(card, req, brq)) {
846 case ERR_RETRY:
847 return MMC_BLK_RETRY;
848 case ERR_ABORT:
849 return MMC_BLK_ABORT;
850 case ERR_CONTINUE:
851 break;
852 }
853 }
854
855 /*
856 * Check for errors relating to the execution of the
857 * initial command - such as address errors. No data
858 * has been transferred.
859 */
860 if (brq->cmd.resp[0] & CMD_ERRORS) {
861 pr_err("%s: r/w command failed, status = %#x\n",
862 req->rq_disk->disk_name, brq->cmd.resp[0]);
863 return MMC_BLK_ABORT;
864 }
865
866 /*
867 * Everything else is either success, or a data error of some
868 * kind. If it was a write, we may have transitioned to
869 * program mode, which we have to wait for it to complete.
870 */
871 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
872 u32 status;
873 do {
874 int err = get_card_status(card, &status, 5);
875 if (err) {
876 printk(KERN_ERR "%s: error %d requesting status\n",
877 req->rq_disk->disk_name, err);
878 return MMC_BLK_CMD_ERR;
879 }
880 /*
881 * Some cards mishandle the status bits,
882 * so make sure to check both the busy
883 * indication and the card state.
884 */
885 } while (!(status & R1_READY_FOR_DATA) ||
886 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
887 }
888
889 if (brq->data.error) {
890 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
891 req->rq_disk->disk_name, brq->data.error,
892 (unsigned)blk_rq_pos(req),
893 (unsigned)blk_rq_sectors(req),
894 brq->cmd.resp[0], brq->stop.resp[0]);
895
896 if (rq_data_dir(req) == READ) {
897 if (brq->data.blocks > 1) {
898 /* Redo read one sector at a time */
899 pr_warning("%s: retrying using single block read\n",
900 req->rq_disk->disk_name);
901 return MMC_BLK_RETRY_SINGLE;
902 }
903 return MMC_BLK_DATA_ERR;
904 } else {
905 return MMC_BLK_CMD_ERR;
906 }
907 }
908
909 if (ret == MMC_BLK_SUCCESS &&
910 blk_rq_bytes(req) != brq->data.bytes_xfered)
911 ret = MMC_BLK_PARTIAL;
912
913 return ret;
914}
915
Per Forlin54d49d72011-07-01 18:55:29 +0200916static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
917 struct mmc_card *card,
918 int disable_multi,
919 struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Per Forlin54d49d72011-07-01 18:55:29 +0200921 u32 readcmd, writecmd;
922 struct mmc_blk_request *brq = &mqrq->brq;
923 struct request *req = mqrq->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 struct mmc_blk_data *md = mq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500926 /*
927 * Reliable writes are used to implement Forced Unit Access and
928 * REQ_META accesses, and are supported only on MMCs.
929 */
930 bool do_rel_wr = ((req->cmd_flags & REQ_FUA) ||
931 (req->cmd_flags & REQ_META)) &&
932 (rq_data_dir(req) == WRITE) &&
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500933 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -0500934
Per Forlin54d49d72011-07-01 18:55:29 +0200935 memset(brq, 0, sizeof(struct mmc_blk_request));
936 brq->mrq.cmd = &brq->cmd;
937 brq->mrq.data = &brq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Per Forlin54d49d72011-07-01 18:55:29 +0200939 brq->cmd.arg = blk_rq_pos(req);
940 if (!mmc_card_blockaddr(card))
941 brq->cmd.arg <<= 9;
942 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
943 brq->data.blksz = 512;
944 brq->stop.opcode = MMC_STOP_TRANSMISSION;
945 brq->stop.arg = 0;
946 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
947 brq->data.blocks = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Per Forlin54d49d72011-07-01 18:55:29 +0200949 /*
950 * The block layer doesn't support all sector count
951 * restrictions, so we need to be prepared for too big
952 * requests.
953 */
954 if (brq->data.blocks > card->host->max_blk_count)
955 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Per Forlin54d49d72011-07-01 18:55:29 +0200957 /*
958 * After a read error, we redo the request one sector at a time
959 * in order to accurately determine which sectors can be read
960 * successfully.
961 */
962 if (disable_multi && brq->data.blocks > 1)
963 brq->data.blocks = 1;
964
965 if (brq->data.blocks > 1 || do_rel_wr) {
966 /* SPI multiblock writes terminate using a special
967 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +0200968 */
Per Forlin54d49d72011-07-01 18:55:29 +0200969 if (!mmc_host_is_spi(card->host) ||
970 rq_data_dir(req) == READ)
971 brq->mrq.stop = &brq->stop;
972 readcmd = MMC_READ_MULTIPLE_BLOCK;
973 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
974 } else {
975 brq->mrq.stop = NULL;
976 readcmd = MMC_READ_SINGLE_BLOCK;
977 writecmd = MMC_WRITE_BLOCK;
978 }
979 if (rq_data_dir(req) == READ) {
980 brq->cmd.opcode = readcmd;
981 brq->data.flags |= MMC_DATA_READ;
982 } else {
983 brq->cmd.opcode = writecmd;
984 brq->data.flags |= MMC_DATA_WRITE;
985 }
Pierre Ossman548d2de2009-04-10 17:52:57 +0200986
Per Forlin54d49d72011-07-01 18:55:29 +0200987 if (do_rel_wr)
988 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter6a79e392008-12-31 18:21:17 +0100989
Per Forlin54d49d72011-07-01 18:55:29 +0200990 /*
991 * Pre-defined multi-block transfers are preferable to
992 * open ended-ones (and necessary for reliable writes).
993 * However, it is not sufficient to just send CMD23,
994 * and avoid the final CMD12, as on an error condition
995 * CMD12 (stop) needs to be sent anyway. This, coupled
996 * with Auto-CMD23 enhancements provided by some
997 * hosts, means that the complexity of dealing
998 * with this is best left to the host. If CMD23 is
999 * supported by card and host, we'll fill sbc in and let
1000 * the host deal with handling it correctly. This means
1001 * that for hosts that don't expose MMC_CAP_CMD23, no
1002 * change of behavior will be observed.
1003 *
1004 * N.B: Some MMC cards experience perf degradation.
1005 * We'll avoid using CMD23-bounded multiblock writes for
1006 * these, while retaining features like reliable writes.
1007 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Per Forlin54d49d72011-07-01 18:55:29 +02001009 if ((md->flags & MMC_BLK_CMD23) &&
1010 mmc_op_multi(brq->cmd.opcode) &&
1011 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23))) {
1012 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1013 brq->sbc.arg = brq->data.blocks |
1014 (do_rel_wr ? (1 << 31) : 0);
1015 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1016 brq->mrq.sbc = &brq->sbc;
1017 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001018
Per Forlin54d49d72011-07-01 18:55:29 +02001019 mmc_set_data_timeout(&brq->data, card);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001020
Per Forlin54d49d72011-07-01 18:55:29 +02001021 brq->data.sg = mqrq->sg;
1022 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001023
Per Forlin54d49d72011-07-01 18:55:29 +02001024 /*
1025 * Adjust the sg list so it is the same size as the
1026 * request.
1027 */
1028 if (brq->data.blocks != blk_rq_sectors(req)) {
1029 int i, data_size = brq->data.blocks << 9;
1030 struct scatterlist *sg;
Pierre Ossmanb146d262007-07-24 19:16:54 +02001031
Per Forlin54d49d72011-07-01 18:55:29 +02001032 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1033 data_size -= sg->length;
1034 if (data_size <= 0) {
1035 sg->length += data_size;
1036 i++;
1037 break;
Adrian Hunter6a79e392008-12-31 18:21:17 +01001038 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001039 }
Per Forlin54d49d72011-07-01 18:55:29 +02001040 brq->data.sg_len = i;
1041 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001042
Per Forlinee8a43a2011-07-01 18:55:33 +02001043 mqrq->mmc_active.mrq = &brq->mrq;
1044 mqrq->mmc_active.err_check = mmc_blk_err_check;
1045
Per Forlin54d49d72011-07-01 18:55:29 +02001046 mmc_queue_bounce_pre(mqrq);
1047}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Per Forlinee8a43a2011-07-01 18:55:33 +02001049static int mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *rqc)
Per Forlin54d49d72011-07-01 18:55:29 +02001050{
1051 struct mmc_blk_data *md = mq->data;
1052 struct mmc_card *card = md->queue.card;
1053 struct mmc_blk_request *brq = &mq->mqrq_cur->brq;
1054 int ret = 1, disable_multi = 0, retry = 0;
Per Forlind78d4a82011-07-01 18:55:30 +02001055 enum mmc_blk_status status;
Per Forlinee8a43a2011-07-01 18:55:33 +02001056 struct mmc_queue_req *mq_rq;
1057 struct request *req;
1058 struct mmc_async_req *areq;
1059
1060 if (!rqc && !mq->mqrq_prev->req)
1061 return 0;
Per Forlin54d49d72011-07-01 18:55:29 +02001062
1063 do {
Per Forlinee8a43a2011-07-01 18:55:33 +02001064 if (rqc) {
1065 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1066 areq = &mq->mqrq_cur->mmc_active;
1067 } else
1068 areq = NULL;
1069 areq = mmc_start_req(card->host, areq, (int *) &status);
1070 if (!areq)
1071 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +02001072
Per Forlinee8a43a2011-07-01 18:55:33 +02001073 mq_rq = container_of(areq, struct mmc_queue_req, mmc_active);
1074 brq = &mq_rq->brq;
1075 req = mq_rq->req;
1076 mmc_queue_bounce_post(mq_rq);
Pierre Ossman98ccf142007-05-12 00:26:16 +02001077
Per Forlind78d4a82011-07-01 18:55:30 +02001078 switch (status) {
1079 case MMC_BLK_SUCCESS:
1080 case MMC_BLK_PARTIAL:
1081 /*
1082 * A block was successfully transferred.
1083 */
1084 spin_lock_irq(&md->lock);
1085 ret = __blk_end_request(req, 0,
1086 brq->data.bytes_xfered);
1087 spin_unlock_irq(&md->lock);
Per Forlinee8a43a2011-07-01 18:55:33 +02001088 if (status == MMC_BLK_SUCCESS && ret) {
1089 /*
1090 * The blk_end_request has returned non zero
1091 * even though all data is transfered and no
1092 * erros returned by host.
1093 * If this happen it's a bug.
1094 */
1095 printk(KERN_ERR "%s BUG rq_tot %d d_xfer %d\n",
1096 __func__, blk_rq_bytes(req),
1097 brq->data.bytes_xfered);
1098 rqc = NULL;
1099 goto cmd_abort;
1100 }
Per Forlind78d4a82011-07-01 18:55:30 +02001101 break;
1102 case MMC_BLK_CMD_ERR:
1103 goto cmd_err;
1104 case MMC_BLK_RETRY_SINGLE:
1105 disable_multi = 1;
1106 break;
1107 case MMC_BLK_RETRY:
1108 if (retry++ < 5)
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +01001109 break;
Per Forlind78d4a82011-07-01 18:55:30 +02001110 case MMC_BLK_ABORT:
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001111 goto cmd_abort;
Per Forlind78d4a82011-07-01 18:55:30 +02001112 case MMC_BLK_DATA_ERR:
1113 /*
1114 * After an error, we redo I/O one sector at a
1115 * time, so we only reach here after trying to
1116 * read a single sector.
1117 */
1118 spin_lock_irq(&md->lock);
1119 ret = __blk_end_request(req, -EIO,
1120 brq->data.blksz);
1121 spin_unlock_irq(&md->lock);
Per Forlinee8a43a2011-07-01 18:55:33 +02001122 if (!ret)
1123 goto start_new_req;
Per Forlind78d4a82011-07-01 18:55:30 +02001124 break;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001125 }
1126
Per Forlinee8a43a2011-07-01 18:55:33 +02001127 if (ret) {
1128 /*
1129 * In case of a none complete request
1130 * prepare it again and resend.
1131 */
1132 mmc_blk_rw_rq_prep(mq_rq, card, disable_multi, mq);
1133 mmc_start_req(card->host, &mq_rq->mmc_active, NULL);
1134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 } while (ret);
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return 1;
1138
1139 cmd_err:
Pierre Ossmanec5a19d2006-10-06 00:44:03 -07001140 /*
1141 * If this is an SD card and we're writing, we can first
1142 * mark the known good sectors as ok.
1143 *
1144 * If the card is not SD, we can still ok written sectors
Pierre Ossman23af6032008-07-06 01:10:27 +02001145 * as reported by the controller (which might be less than
1146 * the real number of written sectors, but never more).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 */
Adrian Hunter6a79e392008-12-31 18:21:17 +01001148 if (mmc_card_sd(card)) {
1149 u32 blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -07001150
Adrian Hunter6a79e392008-12-31 18:21:17 +01001151 blocks = mmc_sd_num_wr_blocks(card);
1152 if (blocks != (u32)-1) {
Pierre Ossmanec5a19d2006-10-06 00:44:03 -07001153 spin_lock_irq(&md->lock);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001154 ret = __blk_end_request(req, 0, blocks << 9);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -07001155 spin_unlock_irq(&md->lock);
1156 }
Adrian Hunter6a79e392008-12-31 18:21:17 +01001157 } else {
1158 spin_lock_irq(&md->lock);
Per Forlin97868a22011-07-09 17:12:36 -04001159 ret = __blk_end_request(req, 0, brq->data.bytes_xfered);
Adrian Hunter6a79e392008-12-31 18:21:17 +01001160 spin_unlock_irq(&md->lock);
Pierre Ossman176f00f2006-10-04 02:15:41 -07001161 }
1162
Russell King - ARM Linuxa01f3ccf2011-06-20 20:10:28 +01001163 cmd_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 spin_lock_irq(&md->lock);
Kiyoshi Uedafd539832007-12-11 17:48:29 -05001165 while (ret)
1166 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 spin_unlock_irq(&md->lock);
1168
Per Forlinee8a43a2011-07-01 18:55:33 +02001169 start_new_req:
1170 if (rqc) {
1171 mmc_blk_rw_rq_prep(mq->mqrq_cur, card, 0, mq);
1172 mmc_start_req(card->host, &mq->mqrq_cur->mmc_active, NULL);
1173 }
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return 0;
1176}
1177
Adrian Hunterbd788c92010-08-11 14:17:47 -07001178static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
1179{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001180 int ret;
1181 struct mmc_blk_data *md = mq->data;
1182 struct mmc_card *card = md->queue.card;
1183
Per Forlinee8a43a2011-07-01 18:55:33 +02001184 if (req && !mq->mqrq_prev->req)
1185 /* claim host only for the first request */
1186 mmc_claim_host(card->host);
1187
Andrei Warkentin371a6892011-04-11 18:10:25 -05001188 ret = mmc_blk_part_switch(card, md);
1189 if (ret) {
1190 ret = 0;
1191 goto out;
1192 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001193
Per Forlinee8a43a2011-07-01 18:55:33 +02001194 if (req && req->cmd_flags & REQ_DISCARD) {
1195 /* complete ongoing async transfer before issuing discard */
1196 if (card->host->areq)
1197 mmc_blk_issue_rw_rq(mq, NULL);
Adrian Hunter49804542010-08-11 14:17:50 -07001198 if (req->cmd_flags & REQ_SECURE)
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001199 ret = mmc_blk_issue_secdiscard_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001200 else
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001201 ret = mmc_blk_issue_discard_rq(mq, req);
Per Forlinee8a43a2011-07-01 18:55:33 +02001202 } else if (req && req->cmd_flags & REQ_FLUSH) {
Jaehoon Chung393f9a02011-07-13 17:02:16 +09001203 /* complete ongoing async transfer before issuing flush */
1204 if (card->host->areq)
1205 mmc_blk_issue_rw_rq(mq, NULL);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001206 ret = mmc_blk_issue_flush(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001207 } else {
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001208 ret = mmc_blk_issue_rw_rq(mq, req);
Adrian Hunter49804542010-08-11 14:17:50 -07001209 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001210
Andrei Warkentin371a6892011-04-11 18:10:25 -05001211out:
Per Forlinee8a43a2011-07-01 18:55:33 +02001212 if (!req)
1213 /* release host only when there are no more requests */
1214 mmc_release_host(card->host);
Andrei Warkentin1a258db2011-04-11 18:10:24 -05001215 return ret;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001216}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Russell Kinga6f6c962006-01-03 22:38:44 +00001218static inline int mmc_blk_readonly(struct mmc_card *card)
1219{
1220 return mmc_card_readonly(card) ||
1221 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
1222}
1223
Andrei Warkentin371a6892011-04-11 18:10:25 -05001224static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
1225 struct device *parent,
1226 sector_t size,
1227 bool default_ro,
1228 const char *subname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 struct mmc_blk_data *md;
1231 int devidx, ret;
1232
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001233 devidx = find_first_zero_bit(dev_use, max_devices);
1234 if (devidx >= max_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return ERR_PTR(-ENOSPC);
1236 __set_bit(devidx, dev_use);
1237
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001238 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00001239 if (!md) {
1240 ret = -ENOMEM;
1241 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
Russell Kinga6f6c962006-01-03 22:38:44 +00001243
Russell Kinga6f6c962006-01-03 22:38:44 +00001244 /*
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001245 * !subname implies we are creating main mmc_blk_data that will be
1246 * associated with mmc_card with mmc_set_drvdata. Due to device
1247 * partitions, devidx will not coincide with a per-physical card
1248 * index anymore so we keep track of a name index.
1249 */
1250 if (!subname) {
1251 md->name_idx = find_first_zero_bit(name_use, max_devices);
1252 __set_bit(md->name_idx, name_use);
1253 }
1254 else
1255 md->name_idx = ((struct mmc_blk_data *)
1256 dev_to_disk(parent)->private_data)->name_idx;
1257
1258 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00001259 * Set the read-only status based on the supported commands
1260 * and the write protect switch.
1261 */
1262 md->read_only = mmc_blk_readonly(card);
1263
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001264 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00001265 if (md->disk == NULL) {
1266 ret = -ENOMEM;
1267 goto err_kfree;
1268 }
1269
1270 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001271 INIT_LIST_HEAD(&md->part);
Russell Kinga6f6c962006-01-03 22:38:44 +00001272 md->usage = 1;
1273
Adrian Hunterd09408a2011-06-23 13:40:28 +03001274 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00001275 if (ret)
1276 goto err_putdisk;
1277
Russell Kinga6f6c962006-01-03 22:38:44 +00001278 md->queue.issue_fn = mmc_blk_issue_rq;
1279 md->queue.data = md;
1280
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001281 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001282 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00001283 md->disk->fops = &mmc_bdops;
1284 md->disk->private_data = md;
1285 md->disk->queue = md->queue.queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -05001286 md->disk->driverfs_dev = parent;
1287 set_disk_ro(md->disk, md->read_only || default_ro);
Russell Kinga6f6c962006-01-03 22:38:44 +00001288
1289 /*
1290 * As discussed on lkml, GENHD_FL_REMOVABLE should:
1291 *
1292 * - be set for removable media with permanent block devices
1293 * - be unset for removable block devices with permanent media
1294 *
1295 * Since MMC block devices clearly fall under the second
1296 * case, we do not set GENHD_FL_REMOVABLE. Userspace
1297 * should use the block device creation/destruction hotplug
1298 * messages to tell when the card is present.
1299 */
1300
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001301 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
1302 "mmcblk%d%s", md->name_idx, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00001303
Martin K. Petersene1defc42009-05-22 17:17:49 -04001304 blk_queue_logical_block_size(md->queue.queue, 512);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001305 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001306
Andrei Warkentinf0d89972011-05-23 15:06:38 -05001307 if (mmc_host_cmd23(card->host)) {
1308 if (mmc_card_mmc(card) ||
1309 (mmc_card_sd(card) &&
1310 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
1311 md->flags |= MMC_BLK_CMD23;
1312 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001313
1314 if (mmc_card_mmc(card) &&
1315 md->flags & MMC_BLK_CMD23 &&
1316 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
1317 card->ext_csd.rel_sectors)) {
1318 md->flags |= MMC_BLK_REL_WR;
1319 blk_queue_flush(md->queue.queue, REQ_FLUSH | REQ_FUA);
1320 }
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00001323
1324 err_putdisk:
1325 put_disk(md->disk);
1326 err_kfree:
1327 kfree(md);
1328 out:
1329 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Andrei Warkentin371a6892011-04-11 18:10:25 -05001332static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
1333{
1334 sector_t size;
1335 struct mmc_blk_data *md;
1336
1337 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
1338 /*
1339 * The EXT_CSD sector count is in number or 512 byte
1340 * sectors.
1341 */
1342 size = card->ext_csd.sectors;
1343 } else {
1344 /*
1345 * The CSD capacity field is in units of read_blkbits.
1346 * set_capacity takes units of 512 bytes.
1347 */
1348 size = card->csd.capacity << (card->csd.read_blkbits - 9);
1349 }
1350
1351 md = mmc_blk_alloc_req(card, &card->dev, size, false, NULL);
1352 return md;
1353}
1354
1355static int mmc_blk_alloc_part(struct mmc_card *card,
1356 struct mmc_blk_data *md,
1357 unsigned int part_type,
1358 sector_t size,
1359 bool default_ro,
1360 const char *subname)
1361{
1362 char cap_str[10];
1363 struct mmc_blk_data *part_md;
1364
1365 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
1366 subname);
1367 if (IS_ERR(part_md))
1368 return PTR_ERR(part_md);
1369 part_md->part_type = part_type;
1370 list_add(&part_md->part, &md->part);
1371
1372 string_get_size((u64)get_capacity(part_md->disk) << 9, STRING_UNITS_2,
1373 cap_str, sizeof(cap_str));
1374 printk(KERN_INFO "%s: %s %s partition %u %s\n",
1375 part_md->disk->disk_name, mmc_card_id(card),
1376 mmc_card_name(card), part_md->part_type, cap_str);
1377 return 0;
1378}
1379
1380static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
1381{
1382 int ret = 0;
1383
1384 if (!mmc_card_mmc(card))
1385 return 0;
1386
1387 if (card->ext_csd.boot_size) {
1388 ret = mmc_blk_alloc_part(card, md, EXT_CSD_PART_CONFIG_ACC_BOOT0,
1389 card->ext_csd.boot_size >> 9,
1390 true,
1391 "boot0");
1392 if (ret)
1393 return ret;
1394 ret = mmc_blk_alloc_part(card, md, EXT_CSD_PART_CONFIG_ACC_BOOT1,
1395 card->ext_csd.boot_size >> 9,
1396 true,
1397 "boot1");
1398 if (ret)
1399 return ret;
1400 }
1401
1402 return ret;
1403}
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405static int
1406mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
1407{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 int err;
1409
Pierre Ossmanb8558852007-01-03 19:47:29 +01001410 mmc_claim_host(card->host);
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001411 err = mmc_set_blocklen(card, 512);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001412 mmc_release_host(card->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 if (err) {
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001415 printk(KERN_ERR "%s: unable to set block size to 512: %d\n",
1416 md->disk->disk_name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return -EINVAL;
1418 }
1419
1420 return 0;
1421}
1422
Andrei Warkentin371a6892011-04-11 18:10:25 -05001423static void mmc_blk_remove_req(struct mmc_blk_data *md)
1424{
1425 if (md) {
1426 if (md->disk->flags & GENHD_FL_UP) {
1427 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
1428
1429 /* Stop new requests from getting into the queue */
1430 del_gendisk(md->disk);
1431 }
1432
1433 /* Then flush out any already in there */
1434 mmc_cleanup_queue(&md->queue);
1435 mmc_blk_put(md);
1436 }
1437}
1438
1439static void mmc_blk_remove_parts(struct mmc_card *card,
1440 struct mmc_blk_data *md)
1441{
1442 struct list_head *pos, *q;
1443 struct mmc_blk_data *part_md;
1444
Andrei Warkentinf06c9152011-04-21 22:46:13 -05001445 __clear_bit(md->name_idx, name_use);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001446 list_for_each_safe(pos, q, &md->part) {
1447 part_md = list_entry(pos, struct mmc_blk_data, part);
1448 list_del(pos);
1449 mmc_blk_remove_req(part_md);
1450 }
1451}
1452
1453static int mmc_add_disk(struct mmc_blk_data *md)
1454{
1455 int ret;
1456
1457 add_disk(md->disk);
1458 md->force_ro.show = force_ro_show;
1459 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05301460 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001461 md->force_ro.attr.name = "force_ro";
1462 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
1463 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
1464 if (ret)
1465 del_gendisk(md->disk);
1466
1467 return ret;
1468}
1469
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001470static const struct mmc_fixup blk_fixups[] =
1471{
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001472 MMC_FIXUP("SEM02G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1473 MMC_FIXUP("SEM04G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1474 MMC_FIXUP("SEM08G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1475 MMC_FIXUP("SEM16G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
1476 MMC_FIXUP("SEM32G", 0x2, 0x100, add_quirk, MMC_QUIRK_INAND_CMD38),
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001477
1478 /*
1479 * Some MMC cards experience performance degradation with CMD23
1480 * instead of CMD12-bounded multiblock transfers. For now we'll
1481 * black list what's bad...
1482 * - Certain Toshiba cards.
1483 *
1484 * N.B. This doesn't affect SD cards.
1485 */
1486 MMC_FIXUP("MMC08G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1487 MMC_QUIRK_BLK_NO_CMD23),
1488 MMC_FIXUP("MMC16G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1489 MMC_QUIRK_BLK_NO_CMD23),
1490 MMC_FIXUP("MMC32G", 0x11, CID_OEMID_ANY, add_quirk_mmc,
1491 MMC_QUIRK_BLK_NO_CMD23),
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001492 END_FIXUP
1493};
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495static int mmc_blk_probe(struct mmc_card *card)
1496{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001497 struct mmc_blk_data *md, *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 int err;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001499 char cap_str[10];
1500
Pierre Ossman912490d2005-05-21 10:27:02 +01001501 /*
1502 * Check that the card supports the command class(es) we need.
1503 */
1504 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return -ENODEV;
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 md = mmc_blk_alloc(card);
1508 if (IS_ERR(md))
1509 return PTR_ERR(md);
1510
1511 err = mmc_blk_set_blksize(md, card);
1512 if (err)
1513 goto out;
1514
Yi Li444122f2009-02-05 15:31:57 +08001515 string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001516 cap_str, sizeof(cap_str));
1517 printk(KERN_INFO "%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02001519 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Andrei Warkentin371a6892011-04-11 18:10:25 -05001521 if (mmc_blk_alloc_parts(card, md))
1522 goto out;
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 mmc_set_drvdata(card, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04001525 mmc_fixup_device(card, blk_fixups);
1526
Andrei Warkentin371a6892011-04-11 18:10:25 -05001527 if (mmc_add_disk(md))
1528 goto out;
1529
1530 list_for_each_entry(part_md, &md->part, part) {
1531 if (mmc_add_disk(part_md))
1532 goto out;
1533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return 0;
1535
1536 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05001537 mmc_blk_remove_parts(card, md);
1538 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return err;
1540}
1541
1542static void mmc_blk_remove(struct mmc_card *card)
1543{
1544 struct mmc_blk_data *md = mmc_get_drvdata(card);
1545
Andrei Warkentin371a6892011-04-11 18:10:25 -05001546 mmc_blk_remove_parts(card, md);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03001547 mmc_claim_host(card->host);
1548 mmc_blk_part_switch(card, md);
1549 mmc_release_host(card->host);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001550 mmc_blk_remove_req(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 mmc_set_drvdata(card, NULL);
1552}
1553
1554#ifdef CONFIG_PM
1555static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
1556{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001557 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 struct mmc_blk_data *md = mmc_get_drvdata(card);
1559
1560 if (md) {
1561 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001562 list_for_each_entry(part_md, &md->part, part) {
1563 mmc_queue_suspend(&part_md->queue);
1564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 return 0;
1567}
1568
1569static int mmc_blk_resume(struct mmc_card *card)
1570{
Andrei Warkentin371a6892011-04-11 18:10:25 -05001571 struct mmc_blk_data *part_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 struct mmc_blk_data *md = mmc_get_drvdata(card);
1573
1574 if (md) {
1575 mmc_blk_set_blksize(md, card);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001576
1577 /*
1578 * Resume involves the card going into idle state,
1579 * so current partition is always the main one.
1580 */
1581 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05001583 list_for_each_entry(part_md, &md->part, part) {
1584 mmc_queue_resume(&part_md->queue);
1585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587 return 0;
1588}
1589#else
1590#define mmc_blk_suspend NULL
1591#define mmc_blk_resume NULL
1592#endif
1593
1594static struct mmc_driver mmc_driver = {
1595 .drv = {
1596 .name = "mmcblk",
1597 },
1598 .probe = mmc_blk_probe,
1599 .remove = mmc_blk_remove,
1600 .suspend = mmc_blk_suspend,
1601 .resume = mmc_blk_resume,
1602};
1603
1604static int __init mmc_blk_init(void)
1605{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001606 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Olof Johansson5e71b7a2010-09-17 21:19:57 -04001608 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
1609 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
1610
1611 max_devices = 256 / perdev_minors;
1612
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001613 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
1614 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001617 res = mmc_register_driver(&mmc_driver);
1618 if (res)
1619 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09001621 return 0;
1622 out2:
1623 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 out:
1625 return res;
1626}
1627
1628static void __exit mmc_blk_exit(void)
1629{
1630 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02001631 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
1634module_init(mmc_blk_init);
1635module_exit(mmc_blk_exit);
1636
1637MODULE_LICENSE("GPL");
1638MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
1639