Merge tag 'r8169-20060920-00' of git://electric-eye.fr.zoreil.com/home/romieu/linux...
[deliverable/linux.git] / drivers / mmc / mmc_block.c
CommitLineData
1da177e4
LT
1/*
2 * Block driver for media (i.e., flash cards)
3 *
4 * Copyright 2002 Hewlett-Packard Company
5 *
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.
9 *
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.
13 *
14 * Many thanks to Alessandro Rubini and Jonathan Corbet!
15 *
16 * Author: Andrew Christian
17 * 28 May 2002
18 */
19#include <linux/moduleparam.h>
20#include <linux/module.h>
21#include <linux/init.h>
22
23#include <linux/sched.h>
24#include <linux/kernel.h>
25#include <linux/fs.h>
26#include <linux/errno.h>
27#include <linux/hdreg.h>
28#include <linux/kdev_t.h>
29#include <linux/blkdev.h>
a621aaed 30#include <linux/mutex.h>
1da177e4
LT
31
32#include <linux/mmc/card.h>
385e3227 33#include <linux/mmc/host.h>
1da177e4
LT
34#include <linux/mmc/protocol.h>
35
36#include <asm/system.h>
37#include <asm/uaccess.h>
38
39#include "mmc_queue.h"
40
41/*
42 * max 8 partitions per card
43 */
44#define MMC_SHIFT 3
45
46static int major;
47
48/*
49 * There is one mmc_blk_data per slot.
50 */
51struct mmc_blk_data {
52 spinlock_t lock;
53 struct gendisk *disk;
54 struct mmc_queue queue;
55
56 unsigned int usage;
57 unsigned int block_bits;
a6f6c96b 58 unsigned int read_only;
1da177e4
LT
59};
60
a621aaed 61static DEFINE_MUTEX(open_lock);
1da177e4
LT
62
63static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
64{
65 struct mmc_blk_data *md;
66
a621aaed 67 mutex_lock(&open_lock);
1da177e4
LT
68 md = disk->private_data;
69 if (md && md->usage == 0)
70 md = NULL;
71 if (md)
72 md->usage++;
a621aaed 73 mutex_unlock(&open_lock);
1da177e4
LT
74
75 return md;
76}
77
78static void mmc_blk_put(struct mmc_blk_data *md)
79{
a621aaed 80 mutex_lock(&open_lock);
1da177e4
LT
81 md->usage--;
82 if (md->usage == 0) {
83 put_disk(md->disk);
84 mmc_cleanup_queue(&md->queue);
85 kfree(md);
86 }
a621aaed 87 mutex_unlock(&open_lock);
1da177e4
LT
88}
89
90static int mmc_blk_open(struct inode *inode, struct file *filp)
91{
92 struct mmc_blk_data *md;
93 int ret = -ENXIO;
94
95 md = mmc_blk_get(inode->i_bdev->bd_disk);
96 if (md) {
97 if (md->usage == 2)
98 check_disk_change(inode->i_bdev);
99 ret = 0;
a00fc090 100
a6f6c96b 101 if ((filp->f_mode & FMODE_WRITE) && md->read_only)
a00fc090 102 ret = -EROFS;
1da177e4
LT
103 }
104
105 return ret;
106}
107
108static int mmc_blk_release(struct inode *inode, struct file *filp)
109{
110 struct mmc_blk_data *md = inode->i_bdev->bd_disk->private_data;
111
112 mmc_blk_put(md);
113 return 0;
114}
115
116static int
a885c8c4 117mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1da177e4 118{
a885c8c4
CH
119 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
120 geo->heads = 4;
121 geo->sectors = 16;
122 return 0;
1da177e4
LT
123}
124
125static struct block_device_operations mmc_bdops = {
126 .open = mmc_blk_open,
127 .release = mmc_blk_release,
a885c8c4 128 .getgeo = mmc_blk_getgeo,
1da177e4
LT
129 .owner = THIS_MODULE,
130};
131
132struct mmc_blk_request {
133 struct mmc_request mrq;
134 struct mmc_command cmd;
135 struct mmc_command stop;
136 struct mmc_data data;
137};
138
139static int mmc_blk_prep_rq(struct mmc_queue *mq, struct request *req)
140{
141 struct mmc_blk_data *md = mq->data;
142 int stat = BLKPREP_OK;
143
144 /*
145 * If we have no device, we haven't finished initialising.
146 */
147 if (!md || !mq->card) {
148 printk(KERN_ERR "%s: killing request - no device/host\n",
149 req->rq_disk->disk_name);
150 stat = BLKPREP_KILL;
151 }
152
153 return stat;
154}
155
156static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
157{
158 struct mmc_blk_data *md = mq->data;
159 struct mmc_card *card = md->queue.card;
160 int ret;
161
162 if (mmc_card_claim_host(card))
163 goto cmd_err;
164
165 do {
166 struct mmc_blk_request brq;
167 struct mmc_command cmd;
168
169 memset(&brq, 0, sizeof(struct mmc_blk_request));
170 brq.mrq.cmd = &brq.cmd;
171 brq.mrq.data = &brq.data;
172
173 brq.cmd.arg = req->sector << 9;
e9225176 174 brq.cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1da177e4 175 brq.data.blksz_bits = md->block_bits;
2c171bf1 176 brq.data.blksz = 1 << md->block_bits;
1da177e4
LT
177 brq.data.blocks = req->nr_sectors >> (md->block_bits - 9);
178 brq.stop.opcode = MMC_STOP_TRANSMISSION;
179 brq.stop.arg = 0;
e9225176 180 brq.stop.flags = MMC_RSP_R1B | MMC_CMD_AC;
1da177e4 181
d773d725 182 mmc_set_data_timeout(&brq.data, card, rq_data_dir(req) != READ);
385e3227 183
1da177e4
LT
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;
187 } else {
188 brq.cmd.opcode = MMC_WRITE_BLOCK;
1da177e4
LT
189 brq.data.flags |= MMC_DATA_WRITE;
190 brq.data.blocks = 1;
191 }
788ee7b0
RK
192
193 if (brq.data.blocks > 1) {
194 brq.data.flags |= MMC_DATA_MULTI;
195 brq.mrq.stop = &brq.stop;
196 } else {
197 brq.mrq.stop = NULL;
198 }
1da177e4
LT
199
200 brq.data.sg = mq->sg;
201 brq.data.sg_len = blk_rq_map_sg(req->q, req, brq.data.sg);
202
203 mmc_wait_for_req(card->host, &brq.mrq);
204 if (brq.cmd.error) {
205 printk(KERN_ERR "%s: error %d sending read/write command\n",
206 req->rq_disk->disk_name, brq.cmd.error);
207 goto cmd_err;
208 }
209
210 if (brq.data.error) {
211 printk(KERN_ERR "%s: error %d transferring data\n",
212 req->rq_disk->disk_name, brq.data.error);
213 goto cmd_err;
214 }
215
216 if (brq.stop.error) {
217 printk(KERN_ERR "%s: error %d sending stop command\n",
218 req->rq_disk->disk_name, brq.stop.error);
219 goto cmd_err;
220 }
221
222 do {
223 int err;
224
225 cmd.opcode = MMC_SEND_STATUS;
226 cmd.arg = card->rca << 16;
e9225176 227 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1da177e4
LT
228 err = mmc_wait_for_cmd(card->host, &cmd, 5);
229 if (err) {
230 printk(KERN_ERR "%s: error %d requesting status\n",
231 req->rq_disk->disk_name, err);
232 goto cmd_err;
233 }
234 } while (!(cmd.resp[0] & R1_READY_FOR_DATA));
235
236#if 0
237 if (cmd.resp[0] & ~0x00000900)
238 printk(KERN_ERR "%s: status = %08x\n",
239 req->rq_disk->disk_name, cmd.resp[0]);
240 if (mmc_decode_status(cmd.resp))
241 goto cmd_err;
242#endif
243
244 /*
245 * A block was successfully transferred.
246 */
247 spin_lock_irq(&md->lock);
248 ret = end_that_request_chunk(req, 1, brq.data.bytes_xfered);
249 if (!ret) {
250 /*
251 * The whole request completed successfully.
252 */
253 add_disk_randomness(req->rq_disk);
254 blkdev_dequeue_request(req);
8ffdc655 255 end_that_request_last(req, 1);
1da177e4
LT
256 }
257 spin_unlock_irq(&md->lock);
258 } while (ret);
259
260 mmc_card_release_host(card);
261
262 return 1;
263
264 cmd_err:
265 mmc_card_release_host(card);
266
267 /*
268 * This is a little draconian, but until we get proper
269 * error handling sorted out here, its the best we can
270 * do - especially as some hosts have no idea how much
271 * data was transferred before the error occurred.
272 */
273 spin_lock_irq(&md->lock);
274 do {
275 ret = end_that_request_chunk(req, 0,
276 req->current_nr_sectors << 9);
277 } while (ret);
278
279 add_disk_randomness(req->rq_disk);
280 blkdev_dequeue_request(req);
8ffdc655 281 end_that_request_last(req, 0);
1da177e4
LT
282 spin_unlock_irq(&md->lock);
283
284 return 0;
285}
286
287#define MMC_NUM_MINORS (256 >> MMC_SHIFT)
288
289static unsigned long dev_use[MMC_NUM_MINORS/(8*sizeof(unsigned long))];
290
a6f6c96b
RK
291static inline int mmc_blk_readonly(struct mmc_card *card)
292{
293 return mmc_card_readonly(card) ||
294 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
295}
296
1da177e4
LT
297static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
298{
299 struct mmc_blk_data *md;
300 int devidx, ret;
301
302 devidx = find_first_zero_bit(dev_use, MMC_NUM_MINORS);
303 if (devidx >= MMC_NUM_MINORS)
304 return ERR_PTR(-ENOSPC);
305 __set_bit(devidx, dev_use);
306
307 md = kmalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
a6f6c96b
RK
308 if (!md) {
309 ret = -ENOMEM;
310 goto out;
311 }
1da177e4 312
a6f6c96b 313 memset(md, 0, sizeof(struct mmc_blk_data));
1da177e4 314
a6f6c96b
RK
315 /*
316 * Set the read-only status based on the supported commands
317 * and the write protect switch.
318 */
319 md->read_only = mmc_blk_readonly(card);
1da177e4 320
a6f6c96b 321 /*
6fe9febb
PO
322 * Both SD and MMC specifications state (although a bit
323 * unclearly in the MMC case) that a block size of 512
324 * bytes must always be supported by the card.
a6f6c96b 325 */
6fe9febb 326 md->block_bits = 9;
1da177e4 327
a6f6c96b
RK
328 md->disk = alloc_disk(1 << MMC_SHIFT);
329 if (md->disk == NULL) {
330 ret = -ENOMEM;
331 goto err_kfree;
332 }
1da177e4 333
a6f6c96b
RK
334 spin_lock_init(&md->lock);
335 md->usage = 1;
1da177e4 336
a6f6c96b
RK
337 ret = mmc_init_queue(&md->queue, card, &md->lock);
338 if (ret)
339 goto err_putdisk;
1da177e4 340
a6f6c96b
RK
341 md->queue.prep_fn = mmc_blk_prep_rq;
342 md->queue.issue_fn = mmc_blk_issue_rq;
343 md->queue.data = md;
d2b18394 344
a6f6c96b
RK
345 md->disk->major = major;
346 md->disk->first_minor = devidx << MMC_SHIFT;
347 md->disk->fops = &mmc_bdops;
348 md->disk->private_data = md;
349 md->disk->queue = md->queue.queue;
350 md->disk->driverfs_dev = &card->dev;
351
352 /*
353 * As discussed on lkml, GENHD_FL_REMOVABLE should:
354 *
355 * - be set for removable media with permanent block devices
356 * - be unset for removable block devices with permanent media
357 *
358 * Since MMC block devices clearly fall under the second
359 * case, we do not set GENHD_FL_REMOVABLE. Userspace
360 * should use the block device creation/destruction hotplug
361 * messages to tell when the card is present.
362 */
363
364 sprintf(md->disk->disk_name, "mmcblk%d", devidx);
a6f6c96b
RK
365
366 blk_queue_hardsect_size(md->queue.queue, 1 << md->block_bits);
367
368 /*
369 * The CSD capacity field is in units of read_blkbits.
370 * set_capacity takes units of 512 bytes.
371 */
372 set_capacity(md->disk, card->csd.capacity << (card->csd.read_blkbits - 9));
1da177e4 373 return md;
a6f6c96b
RK
374
375 err_putdisk:
376 put_disk(md->disk);
377 err_kfree:
378 kfree(md);
379 out:
380 return ERR_PTR(ret);
1da177e4
LT
381}
382
383static int
384mmc_blk_set_blksize(struct mmc_blk_data *md, struct mmc_card *card)
385{
386 struct mmc_command cmd;
387 int err;
388
389 mmc_card_claim_host(card);
390 cmd.opcode = MMC_SET_BLOCKLEN;
d2b18394 391 cmd.arg = 1 << md->block_bits;
e9225176 392 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1da177e4
LT
393 err = mmc_wait_for_cmd(card->host, &cmd, 5);
394 mmc_card_release_host(card);
395
396 if (err) {
397 printk(KERN_ERR "%s: unable to set block size to %d: %d\n",
398 md->disk->disk_name, cmd.arg, err);
399 return -EINVAL;
400 }
401
402 return 0;
403}
404
405static int mmc_blk_probe(struct mmc_card *card)
406{
407 struct mmc_blk_data *md;
408 int err;
409
912490db
PO
410 /*
411 * Check that the card supports the command class(es) we need.
412 */
413 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
1da177e4
LT
414 return -ENODEV;
415
1da177e4
LT
416 md = mmc_blk_alloc(card);
417 if (IS_ERR(md))
418 return PTR_ERR(md);
419
420 err = mmc_blk_set_blksize(md, card);
421 if (err)
422 goto out;
423
51828abc 424 printk(KERN_INFO "%s: %s %s %lluKiB %s\n",
1da177e4 425 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
51828abc
AM
426 (unsigned long long)(get_capacity(md->disk) >> 1),
427 md->read_only ? "(ro)" : "");
1da177e4
LT
428
429 mmc_set_drvdata(card, md);
430 add_disk(md->disk);
431 return 0;
432
433 out:
434 mmc_blk_put(md);
435
436 return err;
437}
438
439static void mmc_blk_remove(struct mmc_card *card)
440{
441 struct mmc_blk_data *md = mmc_get_drvdata(card);
442
443 if (md) {
444 int devidx;
445
446 del_gendisk(md->disk);
447
448 /*
449 * I think this is needed.
450 */
451 md->disk->queue = NULL;
452
453 devidx = md->disk->first_minor >> MMC_SHIFT;
454 __clear_bit(devidx, dev_use);
455
456 mmc_blk_put(md);
457 }
458 mmc_set_drvdata(card, NULL);
459}
460
461#ifdef CONFIG_PM
462static int mmc_blk_suspend(struct mmc_card *card, pm_message_t state)
463{
464 struct mmc_blk_data *md = mmc_get_drvdata(card);
465
466 if (md) {
467 mmc_queue_suspend(&md->queue);
468 }
469 return 0;
470}
471
472static int mmc_blk_resume(struct mmc_card *card)
473{
474 struct mmc_blk_data *md = mmc_get_drvdata(card);
475
476 if (md) {
477 mmc_blk_set_blksize(md, card);
478 mmc_queue_resume(&md->queue);
479 }
480 return 0;
481}
482#else
483#define mmc_blk_suspend NULL
484#define mmc_blk_resume NULL
485#endif
486
487static struct mmc_driver mmc_driver = {
488 .drv = {
489 .name = "mmcblk",
490 },
491 .probe = mmc_blk_probe,
492 .remove = mmc_blk_remove,
493 .suspend = mmc_blk_suspend,
494 .resume = mmc_blk_resume,
495};
496
497static int __init mmc_blk_init(void)
498{
499 int res = -ENOMEM;
500
501 res = register_blkdev(major, "mmc");
502 if (res < 0) {
503 printk(KERN_WARNING "Unable to get major %d for MMC media: %d\n",
504 major, res);
505 goto out;
506 }
507 if (major == 0)
508 major = res;
509
1da177e4
LT
510 return mmc_register_driver(&mmc_driver);
511
512 out:
513 return res;
514}
515
516static void __exit mmc_blk_exit(void)
517{
518 mmc_unregister_driver(&mmc_driver);
1da177e4
LT
519 unregister_blkdev(major, "mmc");
520}
521
522module_init(mmc_blk_init);
523module_exit(mmc_blk_exit);
524
525MODULE_LICENSE("GPL");
526MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
527
528module_param(major, int, 0444);
529MODULE_PARM_DESC(major, "specify the major device number for MMC block driver");
This page took 0.177805 seconds and 5 git commands to generate.