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/sched.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/devfs_fs_kernel.h>
31 #include <linux/mutex.h>
33 #include <linux/mmc/card.h>
34 #include <linux/mmc/protocol.h>
36 #include <asm/system.h>
37 #include <asm/uaccess.h>
39 #include "mmc_queue.h"
42 * max 8 partitions per card
49 * There is one mmc_blk_data per slot.
54 struct mmc_queue queue
;
57 unsigned int block_bits
;
58 unsigned int read_only
;
61 static DEFINE_MUTEX(open_lock
);
63 static struct mmc_blk_data
*mmc_blk_get(struct gendisk
*disk
)
65 struct mmc_blk_data
*md
;
67 mutex_lock(&open_lock
);
68 md
= disk
->private_data
;
69 if (md
&& md
->usage
== 0)
73 mutex_unlock(&open_lock
);
78 static void mmc_blk_put(struct mmc_blk_data
*md
)
80 mutex_lock(&open_lock
);
84 mmc_cleanup_queue(&md
->queue
);
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 int mmc_blk_issue_rq(struct mmc_queue
*mq
, struct request
*req
)
158 struct mmc_blk_data
*md
= mq
->data
;
159 struct mmc_card
*card
= md
->queue
.card
;
162 if (mmc_card_claim_host(card
))
166 struct mmc_blk_request brq
;
167 struct mmc_command cmd
;
169 memset(&brq
, 0, sizeof(struct mmc_blk_request
));
170 brq
.mrq
.cmd
= &brq
.cmd
;
171 brq
.mrq
.data
= &brq
.data
;
173 brq
.cmd
.arg
= req
->sector
<< 9;
174 brq
.cmd
.flags
= MMC_RSP_R1
| MMC_CMD_ADTC
;
175 brq
.data
.timeout_ns
= card
->csd
.tacc_ns
* 10;
176 brq
.data
.timeout_clks
= card
->csd
.tacc_clks
* 10;
177 brq
.data
.blksz_bits
= md
->block_bits
;
178 brq
.data
.blksz
= 1 << md
->block_bits
;
179 brq
.data
.blocks
= req
->nr_sectors
>> (md
->block_bits
- 9);
180 brq
.stop
.opcode
= MMC_STOP_TRANSMISSION
;
182 brq
.stop
.flags
= MMC_RSP_R1B
| MMC_CMD_AC
;
184 if (rq_data_dir(req
) == READ
) {
185 brq
.cmd
.opcode
= brq
.data
.blocks
> 1 ? MMC_READ_MULTIPLE_BLOCK
: MMC_READ_SINGLE_BLOCK
;
186 brq
.data
.flags
|= MMC_DATA_READ
;
188 brq
.cmd
.opcode
= MMC_WRITE_BLOCK
;
189 brq
.data
.flags
|= MMC_DATA_WRITE
;
193 * Scale up the timeout by the r2w factor
195 brq
.data
.timeout_ns
<<= card
->csd
.r2w_factor
;
196 brq
.data
.timeout_clks
<<= card
->csd
.r2w_factor
;
199 if (brq
.data
.blocks
> 1) {
200 brq
.data
.flags
|= MMC_DATA_MULTI
;
201 brq
.mrq
.stop
= &brq
.stop
;
206 brq
.data
.sg
= mq
->sg
;
207 brq
.data
.sg_len
= blk_rq_map_sg(req
->q
, req
, brq
.data
.sg
);
209 mmc_wait_for_req(card
->host
, &brq
.mrq
);
211 printk(KERN_ERR
"%s: error %d sending read/write command\n",
212 req
->rq_disk
->disk_name
, brq
.cmd
.error
);
216 if (brq
.data
.error
) {
217 printk(KERN_ERR
"%s: error %d transferring data\n",
218 req
->rq_disk
->disk_name
, brq
.data
.error
);
222 if (brq
.stop
.error
) {
223 printk(KERN_ERR
"%s: error %d sending stop command\n",
224 req
->rq_disk
->disk_name
, brq
.stop
.error
);
231 cmd
.opcode
= MMC_SEND_STATUS
;
232 cmd
.arg
= card
->rca
<< 16;
233 cmd
.flags
= MMC_RSP_R1
| MMC_CMD_AC
;
234 err
= mmc_wait_for_cmd(card
->host
, &cmd
, 5);
236 printk(KERN_ERR
"%s: error %d requesting status\n",
237 req
->rq_disk
->disk_name
, err
);
240 } while (!(cmd
.resp
[0] & R1_READY_FOR_DATA
));
243 if (cmd
.resp
[0] & ~0x00000900)
244 printk(KERN_ERR
"%s: status = %08x\n",
245 req
->rq_disk
->disk_name
, cmd
.resp
[0]);
246 if (mmc_decode_status(cmd
.resp
))
251 * A block was successfully transferred.
253 spin_lock_irq(&md
->lock
);
254 ret
= end_that_request_chunk(req
, 1, brq
.data
.bytes_xfered
);
257 * The whole request completed successfully.
259 add_disk_randomness(req
->rq_disk
);
260 blkdev_dequeue_request(req
);
261 end_that_request_last(req
, 1);
263 spin_unlock_irq(&md
->lock
);
266 mmc_card_release_host(card
);
271 mmc_card_release_host(card
);
274 * This is a little draconian, but until we get proper
275 * error handling sorted out here, its the best we can
276 * do - especially as some hosts have no idea how much
277 * data was transferred before the error occurred.
279 spin_lock_irq(&md
->lock
);
281 ret
= end_that_request_chunk(req
, 0,
282 req
->current_nr_sectors
<< 9);
285 add_disk_randomness(req
->rq_disk
);
286 blkdev_dequeue_request(req
);
287 end_that_request_last(req
, 0);
288 spin_unlock_irq(&md
->lock
);
293 #define MMC_NUM_MINORS (256 >> MMC_SHIFT)
295 static unsigned long dev_use
[MMC_NUM_MINORS
/(8*sizeof(unsigned long))];
297 static inline int mmc_blk_readonly(struct mmc_card
*card
)
299 return mmc_card_readonly(card
) ||
300 !(card
->csd
.cmdclass
& CCC_BLOCK_WRITE
);
303 static struct mmc_blk_data
*mmc_blk_alloc(struct mmc_card
*card
)
305 struct mmc_blk_data
*md
;
308 devidx
= find_first_zero_bit(dev_use
, MMC_NUM_MINORS
);
309 if (devidx
>= MMC_NUM_MINORS
)
310 return ERR_PTR(-ENOSPC
);
311 __set_bit(devidx
, dev_use
);
313 md
= kmalloc(sizeof(struct mmc_blk_data
), GFP_KERNEL
);
319 memset(md
, 0, sizeof(struct mmc_blk_data
));
322 * Set the read-only status based on the supported commands
323 * and the write protect switch.
325 md
->read_only
= mmc_blk_readonly(card
);
328 * Figure out a workable block size. MMC cards have:
329 * - two block sizes, one for read and one for write.
330 * - may support partial reads and/or writes
331 * (allows block sizes smaller than specified)
333 md
->block_bits
= card
->csd
.read_blkbits
;
334 if (card
->csd
.write_blkbits
!= card
->csd
.read_blkbits
) {
335 if (card
->csd
.write_blkbits
< card
->csd
.read_blkbits
&&
336 card
->csd
.read_partial
) {
338 * write block size is smaller than read block
339 * size, but we support partial reads, so choose
340 * the smaller write block size.
342 md
->block_bits
= card
->csd
.write_blkbits
;
343 } else if (card
->csd
.write_blkbits
> card
->csd
.read_blkbits
&&
344 card
->csd
.write_partial
) {
346 * read block size is smaller than write block
347 * size, but we support partial writes. Use read
352 * We don't support this configuration for writes.
354 printk(KERN_ERR
"%s: unable to select block size for "
355 "writing (rb%u wb%u rp%u wp%u)\n",
357 1 << card
->csd
.read_blkbits
,
358 1 << card
->csd
.write_blkbits
,
359 card
->csd
.read_partial
,
360 card
->csd
.write_partial
);
366 * Refuse to allow block sizes smaller than 512 bytes.
368 if (md
->block_bits
< 9) {
369 printk(KERN_ERR
"%s: unable to support block size %u\n",
370 mmc_card_id(card
), 1 << md
->block_bits
);
375 md
->disk
= alloc_disk(1 << MMC_SHIFT
);
376 if (md
->disk
== NULL
) {
381 spin_lock_init(&md
->lock
);
384 ret
= mmc_init_queue(&md
->queue
, card
, &md
->lock
);
388 md
->queue
.prep_fn
= mmc_blk_prep_rq
;
389 md
->queue
.issue_fn
= mmc_blk_issue_rq
;
392 md
->disk
->major
= major
;
393 md
->disk
->first_minor
= devidx
<< MMC_SHIFT
;
394 md
->disk
->fops
= &mmc_bdops
;
395 md
->disk
->private_data
= md
;
396 md
->disk
->queue
= md
->queue
.queue
;
397 md
->disk
->driverfs_dev
= &card
->dev
;
400 * As discussed on lkml, GENHD_FL_REMOVABLE should:
402 * - be set for removable media with permanent block devices
403 * - be unset for removable block devices with permanent media
405 * Since MMC block devices clearly fall under the second
406 * case, we do not set GENHD_FL_REMOVABLE. Userspace
407 * should use the block device creation/destruction hotplug
408 * messages to tell when the card is present.
411 sprintf(md
->disk
->disk_name
, "mmcblk%d", devidx
);
412 sprintf(md
->disk
->devfs_name
, "mmc/blk%d", devidx
);
414 blk_queue_hardsect_size(md
->queue
.queue
, 1 << md
->block_bits
);
417 * The CSD capacity field is in units of read_blkbits.
418 * set_capacity takes units of 512 bytes.
420 set_capacity(md
->disk
, card
->csd
.capacity
<< (card
->csd
.read_blkbits
- 9));
432 mmc_blk_set_blksize(struct mmc_blk_data
*md
, struct mmc_card
*card
)
434 struct mmc_command cmd
;
437 mmc_card_claim_host(card
);
438 cmd
.opcode
= MMC_SET_BLOCKLEN
;
439 cmd
.arg
= 1 << md
->block_bits
;
440 cmd
.flags
= MMC_RSP_R1
| MMC_CMD_AC
;
441 err
= mmc_wait_for_cmd(card
->host
, &cmd
, 5);
442 mmc_card_release_host(card
);
445 printk(KERN_ERR
"%s: unable to set block size to %d: %d\n",
446 md
->disk
->disk_name
, cmd
.arg
, err
);
453 static int mmc_blk_probe(struct mmc_card
*card
)
455 struct mmc_blk_data
*md
;
459 * Check that the card supports the command class(es) we need.
461 if (!(card
->csd
.cmdclass
& CCC_BLOCK_READ
))
464 md
= mmc_blk_alloc(card
);
468 err
= mmc_blk_set_blksize(md
, card
);
472 printk(KERN_INFO
"%s: %s %s %lluKiB %s\n",
473 md
->disk
->disk_name
, mmc_card_id(card
), mmc_card_name(card
),
474 (unsigned long long)(get_capacity(md
->disk
) >> 1),
475 md
->read_only
? "(ro)" : "");
477 mmc_set_drvdata(card
, md
);
487 static void mmc_blk_remove(struct mmc_card
*card
)
489 struct mmc_blk_data
*md
= mmc_get_drvdata(card
);
494 del_gendisk(md
->disk
);
497 * I think this is needed.
499 md
->disk
->queue
= NULL
;
501 devidx
= md
->disk
->first_minor
>> MMC_SHIFT
;
502 __clear_bit(devidx
, dev_use
);
506 mmc_set_drvdata(card
, NULL
);
510 static int mmc_blk_suspend(struct mmc_card
*card
, pm_message_t state
)
512 struct mmc_blk_data
*md
= mmc_get_drvdata(card
);
515 mmc_queue_suspend(&md
->queue
);
520 static int mmc_blk_resume(struct mmc_card
*card
)
522 struct mmc_blk_data
*md
= mmc_get_drvdata(card
);
525 mmc_blk_set_blksize(md
, card
);
526 mmc_queue_resume(&md
->queue
);
531 #define mmc_blk_suspend NULL
532 #define mmc_blk_resume NULL
535 static struct mmc_driver mmc_driver
= {
539 .probe
= mmc_blk_probe
,
540 .remove
= mmc_blk_remove
,
541 .suspend
= mmc_blk_suspend
,
542 .resume
= mmc_blk_resume
,
545 static int __init
mmc_blk_init(void)
549 res
= register_blkdev(major
, "mmc");
551 printk(KERN_WARNING
"Unable to get major %d for MMC media: %d\n",
559 return mmc_register_driver(&mmc_driver
);
565 static void __exit
mmc_blk_exit(void)
567 mmc_unregister_driver(&mmc_driver
);
569 unregister_blkdev(major
, "mmc");
572 module_init(mmc_blk_init
);
573 module_exit(mmc_blk_exit
);
575 MODULE_LICENSE("GPL");
576 MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
578 module_param(major
, int, 0444);
579 MODULE_PARM_DESC(major
, "specify the major device number for MMC block driver");