2 * Block driver for media (i.e., flash cards)
4 * Copyright 2002 Hewlett-Packard Company
6 * Use consistent with the GNU GPL is permitted,
7 * provided that this copyright notice is
8 * preserved in its entirety in all copies and derived works.
10 * HEWLETT-PACKARD COMPANY MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
11 * AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
12 * FITNESS FOR ANY PARTICULAR PURPOSE.
14 * Many thanks to Alessandro Rubini and Jonathan Corbet!
16 * Author: Andrew Christian
19 #include <linux/moduleparam.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
23 #include <linux/kernel.h>
25 #include <linux/errno.h>
26 #include <linux/hdreg.h>
27 #include <linux/kdev_t.h>
28 #include <linux/blkdev.h>
29 #include <linux/mutex.h>
30 #include <linux/scatterlist.h>
32 #include <linux/mmc/card.h>
33 #include <linux/mmc/host.h>
34 #include <linux/mmc/protocol.h>
35 #include <linux/mmc/host.h>
37 #include <asm/system.h>
38 #include <asm/uaccess.h>
40 #include "mmc_queue.h"
43 * max 8 partitions per card
50 * There is one mmc_blk_data per slot.
55 struct mmc_queue queue
;
58 unsigned int block_bits
;
59 unsigned int read_only
;
62 static DEFINE_MUTEX(open_lock
);
64 static struct mmc_blk_data
*mmc_blk_get(struct gendisk
*disk
)
66 struct mmc_blk_data
*md
;
68 mutex_lock(&open_lock
);
69 md
= disk
->private_data
;
70 if (md
&& md
->usage
== 0)
74 mutex_unlock(&open_lock
);
79 static void mmc_blk_put(struct mmc_blk_data
*md
)
81 mutex_lock(&open_lock
);
87 mutex_unlock(&open_lock
);
90 static int mmc_blk_open(struct inode
*inode
, struct file
*filp
)
92 struct mmc_blk_data
*md
;
95 md
= mmc_blk_get(inode
->i_bdev
->bd_disk
);
98 check_disk_change(inode
->i_bdev
);
101 if ((filp
->f_mode
& FMODE_WRITE
) && md
->read_only
)
108 static int mmc_blk_release(struct inode
*inode
, struct file
*filp
)
110 struct mmc_blk_data
*md
= inode
->i_bdev
->bd_disk
->private_data
;
117 mmc_blk_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
119 geo
->cylinders
= get_capacity(bdev
->bd_disk
) / (4 * 16);
125 static struct block_device_operations mmc_bdops
= {
126 .open
= mmc_blk_open
,
127 .release
= mmc_blk_release
,
128 .getgeo
= mmc_blk_getgeo
,
129 .owner
= THIS_MODULE
,
132 struct mmc_blk_request
{
133 struct mmc_request mrq
;
134 struct mmc_command cmd
;
135 struct mmc_command stop
;
136 struct mmc_data data
;
139 static int mmc_blk_prep_rq(struct mmc_queue
*mq
, struct request
*req
)
141 struct mmc_blk_data
*md
= mq
->data
;
142 int stat
= BLKPREP_OK
;
145 * If we have no device, we haven't finished initialising.
147 if (!md
|| !mq
->card
) {
148 printk(KERN_ERR
"%s: killing request - no device/host\n",
149 req
->rq_disk
->disk_name
);
156 static u32
mmc_sd_num_wr_blocks(struct mmc_card
*card
)
161 struct mmc_request mrq
;
162 struct mmc_command cmd
;
163 struct mmc_data data
;
164 unsigned int timeout_us
;
166 struct scatterlist sg
;
168 memset(&cmd
, 0, sizeof(struct mmc_command
));
170 cmd
.opcode
= MMC_APP_CMD
;
171 cmd
.arg
= card
->rca
<< 16;
172 cmd
.flags
= MMC_RSP_R1
| MMC_CMD_AC
;
174 err
= mmc_wait_for_cmd(card
->host
, &cmd
, 0);
175 if ((err
!= MMC_ERR_NONE
) || !(cmd
.resp
[0] & R1_APP_CMD
))
178 memset(&cmd
, 0, sizeof(struct mmc_command
));
180 cmd
.opcode
= SD_APP_SEND_NUM_WR_BLKS
;
182 cmd
.flags
= MMC_RSP_R1
| MMC_CMD_ADTC
;
184 memset(&data
, 0, sizeof(struct mmc_data
));
186 data
.timeout_ns
= card
->csd
.tacc_ns
* 100;
187 data
.timeout_clks
= card
->csd
.tacc_clks
* 100;
189 timeout_us
= data
.timeout_ns
/ 1000;
190 timeout_us
+= data
.timeout_clks
* 1000 /
191 (card
->host
->ios
.clock
/ 1000);
193 if (timeout_us
> 100000) {
194 data
.timeout_ns
= 100000000;
195 data
.timeout_clks
= 0;
200 data
.flags
= MMC_DATA_READ
;
204 memset(&mrq
, 0, sizeof(struct mmc_request
));
209 sg_init_one(&sg
, &blocks
, 4);
211 mmc_wait_for_req(card
->host
, &mrq
);
213 if (cmd
.error
!= MMC_ERR_NONE
|| data
.error
!= MMC_ERR_NONE
)
216 blocks
= ntohl(blocks
);
221 static int mmc_blk_issue_rq(struct mmc_queue
*mq
, struct request
*req
)
223 struct mmc_blk_data
*md
= mq
->data
;
224 struct mmc_card
*card
= md
->queue
.card
;
225 struct mmc_blk_request brq
;
228 if (mmc_card_claim_host(card
))
232 struct mmc_command cmd
;
233 u32 readcmd
, writecmd
;
235 memset(&brq
, 0, sizeof(struct mmc_blk_request
));
236 brq
.mrq
.cmd
= &brq
.cmd
;
237 brq
.mrq
.data
= &brq
.data
;
239 brq
.cmd
.arg
= req
->sector
;
240 if (!mmc_card_blockaddr(card
))
242 brq
.cmd
.flags
= MMC_RSP_R1
| MMC_CMD_ADTC
;
243 brq
.data
.blksz
= 1 << md
->block_bits
;
244 brq
.stop
.opcode
= MMC_STOP_TRANSMISSION
;
246 brq
.stop
.flags
= MMC_RSP_R1B
| MMC_CMD_AC
;
247 brq
.data
.blocks
= req
->nr_sectors
>> (md
->block_bits
- 9);
248 if (brq
.data
.blocks
> card
->host
->max_blk_count
)
249 brq
.data
.blocks
= card
->host
->max_blk_count
;
251 mmc_set_data_timeout(&brq
.data
, card
, rq_data_dir(req
) != READ
);
254 * If the host doesn't support multiple block writes, force
255 * block writes to single block. SD cards are excepted from
256 * this rule as they support querying the number of
257 * successfully written sectors.
259 if (rq_data_dir(req
) != READ
&&
260 !(card
->host
->caps
& MMC_CAP_MULTIWRITE
) &&
264 if (brq
.data
.blocks
> 1) {
265 brq
.data
.flags
|= MMC_DATA_MULTI
;
266 brq
.mrq
.stop
= &brq
.stop
;
267 readcmd
= MMC_READ_MULTIPLE_BLOCK
;
268 writecmd
= MMC_WRITE_MULTIPLE_BLOCK
;
271 readcmd
= MMC_READ_SINGLE_BLOCK
;
272 writecmd
= MMC_WRITE_BLOCK
;
275 if (rq_data_dir(req
) == READ
) {
276 brq
.cmd
.opcode
= readcmd
;
277 brq
.data
.flags
|= MMC_DATA_READ
;
279 brq
.cmd
.opcode
= writecmd
;
280 brq
.data
.flags
|= MMC_DATA_WRITE
;
283 brq
.data
.sg
= mq
->sg
;
284 brq
.data
.sg_len
= blk_rq_map_sg(req
->q
, req
, brq
.data
.sg
);
286 mmc_wait_for_req(card
->host
, &brq
.mrq
);
288 printk(KERN_ERR
"%s: error %d sending read/write command\n",
289 req
->rq_disk
->disk_name
, brq
.cmd
.error
);
293 if (brq
.data
.error
) {
294 printk(KERN_ERR
"%s: error %d transferring data\n",
295 req
->rq_disk
->disk_name
, brq
.data
.error
);
299 if (brq
.stop
.error
) {
300 printk(KERN_ERR
"%s: error %d sending stop command\n",
301 req
->rq_disk
->disk_name
, brq
.stop
.error
);
305 if (rq_data_dir(req
) != READ
) {
309 cmd
.opcode
= MMC_SEND_STATUS
;
310 cmd
.arg
= card
->rca
<< 16;
311 cmd
.flags
= MMC_RSP_R1
| MMC_CMD_AC
;
312 err
= mmc_wait_for_cmd(card
->host
, &cmd
, 5);
314 printk(KERN_ERR
"%s: error %d requesting status\n",
315 req
->rq_disk
->disk_name
, err
);
318 } while (!(cmd
.resp
[0] & R1_READY_FOR_DATA
));
321 if (cmd
.resp
[0] & ~0x00000900)
322 printk(KERN_ERR
"%s: status = %08x\n",
323 req
->rq_disk
->disk_name
, cmd
.resp
[0]);
324 if (mmc_decode_status(cmd
.resp
))
330 * A block was successfully transferred.
332 spin_lock_irq(&md
->lock
);
333 ret
= end_that_request_chunk(req
, 1, brq
.data
.bytes_xfered
);
336 * The whole request completed successfully.
338 add_disk_randomness(req
->rq_disk
);
339 blkdev_dequeue_request(req
);
340 end_that_request_last(req
, 1);
342 spin_unlock_irq(&md
->lock
);
345 mmc_card_release_host(card
);
351 * If this is an SD card and we're writing, we can first
352 * mark the known good sectors as ok.
354 * If the card is not SD, we can still ok written sectors
355 * if the controller can do proper error reporting.
357 * For reads we just fail the entire chunk as that should
358 * be safe in all cases.
360 if (rq_data_dir(req
) != READ
&& mmc_card_sd(card
)) {
364 blocks
= mmc_sd_num_wr_blocks(card
);
365 if (blocks
!= (u32
)-1) {
366 if (card
->csd
.write_partial
)
367 bytes
= blocks
<< md
->block_bits
;
370 spin_lock_irq(&md
->lock
);
371 ret
= end_that_request_chunk(req
, 1, bytes
);
372 spin_unlock_irq(&md
->lock
);
374 } else if (rq_data_dir(req
) != READ
&&
375 (card
->host
->caps
& MMC_CAP_MULTIWRITE
)) {
376 spin_lock_irq(&md
->lock
);
377 ret
= end_that_request_chunk(req
, 1, brq
.data
.bytes_xfered
);
378 spin_unlock_irq(&md
->lock
);
383 mmc_card_release_host(card
);
385 spin_lock_irq(&md
->lock
);
387 ret
= end_that_request_chunk(req
, 0,
388 req
->current_nr_sectors
<< 9);
391 add_disk_randomness(req
->rq_disk
);
392 blkdev_dequeue_request(req
);
393 end_that_request_last(req
, 0);
394 spin_unlock_irq(&md
->lock
);
399 #define MMC_NUM_MINORS (256 >> MMC_SHIFT)
401 static unsigned long dev_use
[MMC_NUM_MINORS
/(8*sizeof(unsigned long))];
403 static inline int mmc_blk_readonly(struct mmc_card
*card
)
405 return mmc_card_readonly(card
) ||
406 !(card
->csd
.cmdclass
& CCC_BLOCK_WRITE
);
409 static struct mmc_blk_data
*mmc_blk_alloc(struct mmc_card
*card
)
411 struct mmc_blk_data
*md
;
414 devidx
= find_first_zero_bit(dev_use
, MMC_NUM_MINORS
);
415 if (devidx
>= MMC_NUM_MINORS
)
416 return ERR_PTR(-ENOSPC
);
417 __set_bit(devidx
, dev_use
);
419 md
= kmalloc(sizeof(struct mmc_blk_data
), GFP_KERNEL
);
425 memset(md
, 0, sizeof(struct mmc_blk_data
));
428 * Set the read-only status based on the supported commands
429 * and the write protect switch.
431 md
->read_only
= mmc_blk_readonly(card
);
434 * Both SD and MMC specifications state (although a bit
435 * unclearly in the MMC case) that a block size of 512
436 * bytes must always be supported by the card.
440 md
->disk
= alloc_disk(1 << MMC_SHIFT
);
441 if (md
->disk
== NULL
) {
446 spin_lock_init(&md
->lock
);
449 ret
= mmc_init_queue(&md
->queue
, card
, &md
->lock
);
453 md
->queue
.prep_fn
= mmc_blk_prep_rq
;
454 md
->queue
.issue_fn
= mmc_blk_issue_rq
;
457 md
->disk
->major
= major
;
458 md
->disk
->first_minor
= devidx
<< MMC_SHIFT
;
459 md
->disk
->fops
= &mmc_bdops
;
460 md
->disk
->private_data
= md
;
461 md
->disk
->queue
= md
->queue
.queue
;
462 md
->disk
->driverfs_dev
= &card
->dev
;
465 * As discussed on lkml, GENHD_FL_REMOVABLE should:
467 * - be set for removable media with permanent block devices
468 * - be unset for removable block devices with permanent media
470 * Since MMC block devices clearly fall under the second
471 * case, we do not set GENHD_FL_REMOVABLE. Userspace
472 * should use the block device creation/destruction hotplug
473 * messages to tell when the card is present.
476 sprintf(md
->disk
->disk_name
, "mmcblk%d", devidx
);
478 blk_queue_hardsect_size(md
->queue
.queue
, 1 << md
->block_bits
);
481 * The CSD capacity field is in units of read_blkbits.
482 * set_capacity takes units of 512 bytes.
484 set_capacity(md
->disk
, card
->csd
.capacity
<< (card
->csd
.read_blkbits
- 9));
496 mmc_blk_set_blksize(struct mmc_blk_data
*md
, struct mmc_card
*card
)
498 struct mmc_command cmd
;
501 /* Block-addressed cards ignore MMC_SET_BLOCKLEN. */
502 if (mmc_card_blockaddr(card
))
505 mmc_card_claim_host(card
);
506 cmd
.opcode
= MMC_SET_BLOCKLEN
;
507 cmd
.arg
= 1 << md
->block_bits
;
508 cmd
.flags
= MMC_RSP_R1
| MMC_CMD_AC
;
509 err
= mmc_wait_for_cmd(card
->host
, &cmd
, 5);
510 mmc_card_release_host(card
);
513 printk(KERN_ERR
"%s: unable to set block size to %d: %d\n",
514 md
->disk
->disk_name
, cmd
.arg
, err
);
521 static int mmc_blk_probe(struct mmc_card
*card
)
523 struct mmc_blk_data
*md
;
527 * Check that the card supports the command class(es) we need.
529 if (!(card
->csd
.cmdclass
& CCC_BLOCK_READ
))
532 md
= mmc_blk_alloc(card
);
536 err
= mmc_blk_set_blksize(md
, card
);
540 printk(KERN_INFO
"%s: %s %s %lluKiB %s\n",
541 md
->disk
->disk_name
, mmc_card_id(card
), mmc_card_name(card
),
542 (unsigned long long)(get_capacity(md
->disk
) >> 1),
543 md
->read_only
? "(ro)" : "");
545 mmc_set_drvdata(card
, md
);
555 static void mmc_blk_remove(struct mmc_card
*card
)
557 struct mmc_blk_data
*md
= mmc_get_drvdata(card
);
562 /* Stop new requests from getting into the queue */
563 del_gendisk(md
->disk
);
565 /* Then flush out any already in there */
566 mmc_cleanup_queue(&md
->queue
);
568 devidx
= md
->disk
->first_minor
>> MMC_SHIFT
;
569 __clear_bit(devidx
, dev_use
);
573 mmc_set_drvdata(card
, NULL
);
577 static int mmc_blk_suspend(struct mmc_card
*card
, pm_message_t state
)
579 struct mmc_blk_data
*md
= mmc_get_drvdata(card
);
582 mmc_queue_suspend(&md
->queue
);
587 static int mmc_blk_resume(struct mmc_card
*card
)
589 struct mmc_blk_data
*md
= mmc_get_drvdata(card
);
592 mmc_blk_set_blksize(md
, card
);
593 mmc_queue_resume(&md
->queue
);
598 #define mmc_blk_suspend NULL
599 #define mmc_blk_resume NULL
602 static struct mmc_driver mmc_driver
= {
606 .probe
= mmc_blk_probe
,
607 .remove
= mmc_blk_remove
,
608 .suspend
= mmc_blk_suspend
,
609 .resume
= mmc_blk_resume
,
612 static int __init
mmc_blk_init(void)
616 res
= register_blkdev(major
, "mmc");
618 printk(KERN_WARNING
"Unable to get major %d for MMC media: %d\n",
625 return mmc_register_driver(&mmc_driver
);
631 static void __exit
mmc_blk_exit(void)
633 mmc_unregister_driver(&mmc_driver
);
634 unregister_blkdev(major
, "mmc");
637 module_init(mmc_blk_init
);
638 module_exit(mmc_blk_exit
);
640 MODULE_LICENSE("GPL");
641 MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
643 module_param(major
, int, 0444);
644 MODULE_PARM_DESC(major
, "specify the major device number for MMC block driver");