2 * Block driver for media (i.e., flash cards)
4 * Copyright 2002 Hewlett-Packard Company
5 * Copyright 2005-2008 Pierre Ossman
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.
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.
15 * Many thanks to Alessandro Rubini and Jonathan Corbet!
17 * Author: Andrew Christian
20 #include <linux/moduleparam.h>
21 #include <linux/module.h>
22 #include <linux/init.h>
24 #include <linux/kernel.h>
26 #include <linux/errno.h>
27 #include <linux/hdreg.h>
28 #include <linux/kdev_t.h>
29 #include <linux/blkdev.h>
30 #include <linux/mutex.h>
31 #include <linux/scatterlist.h>
32 #include <linux/string_helpers.h>
34 #include <linux/mmc/card.h>
35 #include <linux/mmc/host.h>
36 #include <linux/mmc/mmc.h>
37 #include <linux/mmc/sd.h>
39 #include <asm/system.h>
40 #include <asm/uaccess.h>
45 * max 8 partitions per card
48 #define MMC_NUM_MINORS (256 >> MMC_SHIFT)
50 static DECLARE_BITMAP(dev_use, MMC_NUM_MINORS);
53 * There is one mmc_blk_data per slot.
58 struct mmc_queue queue;
61 unsigned int read_only;
64 static DEFINE_MUTEX(open_lock);
66 static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
68 struct mmc_blk_data *md;
70 mutex_lock(&open_lock);
71 md = disk->private_data;
72 if (md && md->usage == 0)
76 mutex_unlock(&open_lock);
81 static void mmc_blk_put(struct mmc_blk_data *md)
83 mutex_lock(&open_lock);
86 int devidx = MINOR(disk_devt(md->disk)) >> MMC_SHIFT;
87 __clear_bit(devidx, dev_use);
92 mutex_unlock(&open_lock);
95 static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
97 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
102 check_disk_change(bdev);
105 if ((mode & FMODE_WRITE) && md->read_only) {
114 static int mmc_blk_release(struct gendisk *disk, fmode_t mode)
116 struct mmc_blk_data *md = disk->private_data;
123 mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
125 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
131 static struct block_device_operations mmc_bdops = {
132 .open = mmc_blk_open,
133 .release = mmc_blk_release,
134 .getgeo = mmc_blk_getgeo,
135 .owner = THIS_MODULE,
138 struct mmc_blk_request {
139 struct mmc_request mrq;
140 struct mmc_command cmd;
141 struct mmc_command stop;
142 struct mmc_data data;
145 static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
150 struct mmc_request mrq;
151 struct mmc_command cmd;
152 struct mmc_data data;
153 unsigned int timeout_us;
155 struct scatterlist sg;
157 memset(&cmd, 0, sizeof(struct mmc_command));
159 cmd.opcode = MMC_APP_CMD;
160 cmd.arg = card->rca << 16;
161 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
163 err = mmc_wait_for_cmd(card->host, &cmd, 0);
166 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
169 memset(&cmd, 0, sizeof(struct mmc_command));
171 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
173 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
175 memset(&data, 0, sizeof(struct mmc_data));
177 data.timeout_ns = card->csd.tacc_ns * 100;
178 data.timeout_clks = card->csd.tacc_clks * 100;
180 timeout_us = data.timeout_ns / 1000;
181 timeout_us += data.timeout_clks * 1000 /
182 (card->host->ios.clock / 1000);
184 if (timeout_us > 100000) {
185 data.timeout_ns = 100000000;
186 data.timeout_clks = 0;
191 data.flags = MMC_DATA_READ;
195 memset(&mrq, 0, sizeof(struct mmc_request));
200 sg_init_one(&sg, &blocks, 4);
202 mmc_wait_for_req(card->host, &mrq);
204 if (cmd.error || data.error)
207 blocks = ntohl(blocks);
212 static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
214 struct mmc_blk_data *md = mq->data;
215 struct mmc_card *card = md->queue.card;
216 struct mmc_blk_request brq;
219 mmc_claim_host(card->host);
222 struct mmc_command cmd;
223 u32 readcmd, writecmd;
225 memset(&brq, 0, sizeof(struct mmc_blk_request));
226 brq.mrq.cmd = &brq.cmd;
227 brq.mrq.data = &brq.data;
229 brq.cmd.arg = req->sector;
230 if (!mmc_card_blockaddr(card))
232 brq.cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
233 brq.data.blksz = 512;
234 brq.stop.opcode = MMC_STOP_TRANSMISSION;
236 brq.stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
237 brq.data.blocks = req->nr_sectors;
239 if (brq.data.blocks > 1) {
240 /* SPI multiblock writes terminate using a special
241 * token, not a STOP_TRANSMISSION request.
243 if (!mmc_host_is_spi(card->host)
244 || rq_data_dir(req) == READ)
245 brq.mrq.stop = &brq.stop;
246 readcmd = MMC_READ_MULTIPLE_BLOCK;
247 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
250 readcmd = MMC_READ_SINGLE_BLOCK;
251 writecmd = MMC_WRITE_BLOCK;
254 if (rq_data_dir(req) == READ) {
255 brq.cmd.opcode = readcmd;
256 brq.data.flags |= MMC_DATA_READ;
258 brq.cmd.opcode = writecmd;
259 brq.data.flags |= MMC_DATA_WRITE;
262 mmc_set_data_timeout(&brq.data, card);
264 brq.data.sg = mq->sg;
265 brq.data.sg_len = mmc_queue_map_sg(mq);
267 mmc_queue_bounce_pre(mq);
269 mmc_wait_for_req(card->host, &brq.mrq);
271 mmc_queue_bounce_post(mq);
274 * Check for errors here, but don't jump to cmd_err
275 * until later as we need to wait for the card to leave
276 * programming mode even when things go wrong.
279 printk(KERN_ERR "%s: error %d sending read/write command\n",
280 req->rq_disk->disk_name, brq.cmd.error);
283 if (brq.data.error) {
284 printk(KERN_ERR "%s: error %d transferring data\n",
285 req->rq_disk->disk_name, brq.data.error);
288 if (brq.stop.error) {
289 printk(KERN_ERR "%s: error %d sending stop command\n",
290 req->rq_disk->disk_name, brq.stop.error);
293 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
297 cmd.opcode = MMC_SEND_STATUS;
298 cmd.arg = card->rca << 16;
299 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
300 err = mmc_wait_for_cmd(card->host, &cmd, 5);
302 printk(KERN_ERR "%s: error %d requesting status\n",
303 req->rq_disk->disk_name, err);
307 * Some cards mishandle the status bits,
308 * so make sure to check both the busy
309 * indication and the card state.
311 } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
312 (R1_CURRENT_STATE(cmd.resp[0]) == 7));
315 if (cmd.resp[0] & ~0x00000900)
316 printk(KERN_ERR "%s: status = %08x\n",
317 req->rq_disk->disk_name, cmd.resp[0]);
318 if (mmc_decode_status(cmd.resp))
323 if (brq.cmd.error || brq.data.error || brq.stop.error)
327 * A block was successfully transferred.
329 spin_lock_irq(&md->lock);
330 ret = __blk_end_request(req, 0, brq.data.bytes_xfered);
331 spin_unlock_irq(&md->lock);
334 mmc_release_host(card->host);
340 * If this is an SD card and we're writing, we can first
341 * mark the known good sectors as ok.
343 * If the card is not SD, we can still ok written sectors
344 * as reported by the controller (which might be less than
345 * the real number of written sectors, but never more).
347 * For reads we just fail the entire chunk as that should
348 * be safe in all cases.
350 if (rq_data_dir(req) != READ) {
351 if (mmc_card_sd(card)) {
354 blocks = mmc_sd_num_wr_blocks(card);
355 if (blocks != (u32)-1) {
356 spin_lock_irq(&md->lock);
357 ret = __blk_end_request(req, 0, blocks << 9);
358 spin_unlock_irq(&md->lock);
361 spin_lock_irq(&md->lock);
362 ret = __blk_end_request(req, 0, brq.data.bytes_xfered);
363 spin_unlock_irq(&md->lock);
367 mmc_release_host(card->host);
369 spin_lock_irq(&md->lock);
371 ret = __blk_end_request(req, -EIO, blk_rq_cur_bytes(req));
372 spin_unlock_irq(&md->lock);
378 static inline int mmc_blk_readonly(struct mmc_card *card)
380 return mmc_card_readonly(card) ||
381 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
384 static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
386 struct mmc_blk_data *md;
389 devidx = find_first_zero_bit(dev_use, MMC_NUM_MINORS);
390 if (devidx >= MMC_NUM_MINORS)
391 return ERR_PTR(-ENOSPC);
392 __set_bit(devidx, dev_use);
394 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
402 * Set the read-only status based on the supported commands
403 * and the write protect switch.
405 md->read_only = mmc_blk_readonly(card);
407 md->disk = alloc_disk(1 << MMC_SHIFT);
408 if (md->disk == NULL) {
413 spin_lock_init(&md->lock);
416 ret = mmc_init_queue(&md->queue, card, &md->lock);
420 md->queue.issue_fn = mmc_blk_issue_rq;
423 md->disk->major = MMC_BLOCK_MAJOR;
424 md->disk->first_minor = devidx << MMC_SHIFT;
425 md->disk->fops = &mmc_bdops;
426 md->disk->private_data = md;
427 md->disk->queue = md->queue.queue;
428 md->disk->driverfs_dev = &card->dev;
431 * As discussed on lkml, GENHD_FL_REMOVABLE should:
433 * - be set for removable media with permanent block devices
434 * - be unset for removable block devices with permanent media
436 * Since MMC block devices clearly fall under the second
437 * case, we do not set GENHD_FL_REMOVABLE. Userspace
438 * should use the block device creation/destruction hotplug
439 * messages to tell when the card is present.
442 sprintf(md->disk->disk_name, "mmcblk%d", devidx);
444 blk_queue_hardsect_size(md->queue.queue, 512);
446 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
448 * The EXT_CSD sector count is in number or 512 byte
451 set_capacity(md->disk, card->ext_csd.sectors);
454 * The CSD capacity field is in units of read_blkbits.
455 * set_capacity takes units of 512 bytes.
457 set_capacity(md->disk,
458 card->csd.capacity << (card->csd.read_blkbits - 9));
471 mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
473 struct mmc_command cmd;
476 /* Block-addressed cards ignore MMC_SET_BLOCKLEN. */
477 if (mmc_card_blockaddr(card))
480 mmc_claim_host(card->host);
481 cmd.opcode = MMC_SET_BLOCKLEN;
483 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
484 err = mmc_wait_for_cmd(card->host, &cmd, 5);
485 mmc_release_host(card->host);
488 printk(KERN_ERR "%s: unable to set block size to %d: %d\n",
489 md->disk->disk_name, cmd.arg, err);
496 static int mmc_blk_probe(struct mmc_card *card)
498 struct mmc_blk_data *md;
504 * Check that the card supports the command class(es) we need.
506 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
509 md = mmc_blk_alloc(card);
513 err = mmc_blk_set_blksize(md, card);
517 string_get_size(get_capacity(md->disk) << 9, STRING_UNITS_2,
518 cap_str, sizeof(cap_str));
519 printk(KERN_INFO "%s: %s %s %s %s\n",
520 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
521 cap_str, md->read_only ? "(ro)" : "");
523 mmc_set_drvdata(card, md);
533 static void mmc_blk_remove(struct mmc_card *card)
535 struct mmc_blk_data *md = mmc_get_drvdata(card);
538 /* Stop new requests from getting into the queue */
539 del_gendisk(md->disk);
541 /* Then flush out any already in there */
542 mmc_cleanup_queue(&md->queue);
546 mmc_set_drvdata(card, NULL);
550 static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
552 struct mmc_blk_data *md = mmc_get_drvdata(card);
555 mmc_queue_suspend(&md->queue);
560 static int mmc_blk_resume(struct mmc_card *card)
562 struct mmc_blk_data *md = mmc_get_drvdata(card);
565 mmc_blk_set_blksize(md, card);
566 mmc_queue_resume(&md->queue);
571 #define mmc_blk_suspend NULL
572 #define mmc_blk_resume NULL
575 static struct mmc_driver mmc_driver = {
579 .probe = mmc_blk_probe,
580 .remove = mmc_blk_remove,
581 .suspend = mmc_blk_suspend,
582 .resume = mmc_blk_resume,
585 static int __init mmc_blk_init(void)
589 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
593 res = mmc_register_driver(&mmc_driver);
599 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
604 static void __exit mmc_blk_exit(void)
606 mmc_unregister_driver(&mmc_driver);
607 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
610 module_init(mmc_blk_init);
611 module_exit(mmc_blk_exit);
613 MODULE_LICENSE("GPL");
614 MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");