blob: 681d5aca2af436630fda1d5124d8a3d6a1e70ce4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) 2003 David Woodhouse <dwmw2@infradead.org>
3 *
4 * Interface to Linux 2.5 block layer for MTD 'translation layers'.
5 *
6 */
7
8#include <linux/kernel.h>
9#include <linux/slab.h>
10#include <linux/module.h>
11#include <linux/list.h>
12#include <linux/fs.h>
13#include <linux/mtd/blktrans.h>
14#include <linux/mtd/mtd.h>
15#include <linux/blkdev.h>
16#include <linux/blkpg.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070017#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/spinlock.h>
19#include <linux/hdreg.h>
20#include <linux/init.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080021#include <linux/mutex.h>
Eric W. Biederman99f9b242007-04-19 01:58:33 -060022#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ben Dooks356d70f2007-05-28 20:28:34 +010025#include "mtdcore.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Ben Dooks356d70f2007-05-28 20:28:34 +010027static LIST_HEAD(blktrans_majors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29struct mtd_blkcore_priv {
Christoph Hellwig3e67fe42007-04-22 20:40:57 +010030 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct request_queue *rq;
32 spinlock_t queue_lock;
33};
34
David Woodhouseeae9acd2008-08-05 18:08:25 +010035static int blktrans_discard_request(struct request_queue *q,
36 struct request *req)
37{
38 req->cmd_type = REQ_TYPE_LINUX_BLOCK;
39 req->cmd[0] = REQ_LB_OP_DISCARD;
40 return 0;
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static int do_blktrans_request(struct mtd_blktrans_ops *tr,
44 struct mtd_blktrans_dev *dev,
45 struct request *req)
46{
47 unsigned long block, nsect;
48 char *buf;
49
Richard Purdie19187672006-10-27 09:09:33 +010050 block = req->sector << 9 >> tr->blkshift;
51 nsect = req->current_nr_sectors << 9 >> tr->blkshift;
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 buf = req->buffer;
54
David Woodhouseeae9acd2008-08-05 18:08:25 +010055 if (req->cmd_type == REQ_TYPE_LINUX_BLOCK &&
56 req->cmd[0] == REQ_LB_OP_DISCARD)
57 return !tr->discard(dev, block, nsect);
58
Jens Axboe4aff5e22006-08-10 08:44:47 +020059 if (!blk_fs_request(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
61
Richard Purdie19187672006-10-27 09:09:33 +010062 if (req->sector + req->current_nr_sectors > get_capacity(req->rq_disk))
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return 0;
64
65 switch(rq_data_dir(req)) {
66 case READ:
Richard Purdie19187672006-10-27 09:09:33 +010067 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (tr->readsect(dev, block, buf))
69 return 0;
70 return 1;
71
72 case WRITE:
73 if (!tr->writesect)
74 return 0;
75
Richard Purdie19187672006-10-27 09:09:33 +010076 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (tr->writesect(dev, block, buf))
78 return 0;
79 return 1;
80
81 default:
Jeff Garzik9a292302006-10-01 12:16:00 -040082 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return 0;
84 }
85}
86
87static int mtd_blktrans_thread(void *arg)
88{
89 struct mtd_blktrans_ops *tr = arg;
90 struct request_queue *rq = tr->blkcore_priv->rq;
91
92 /* we might get involved when memory gets low, so use PF_MEMALLOC */
Rafael J. Wysocki83144182007-07-17 04:03:35 -070093 current->flags |= PF_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 spin_lock_irq(rq->queue_lock);
Christoph Hellwig3e67fe42007-04-22 20:40:57 +010096 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 struct request *req;
98 struct mtd_blktrans_dev *dev;
99 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 req = elv_next_request(rq);
102
103 if (!req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 continue;
109 }
110
111 dev = req->rq_disk->private_data;
112 tr = dev->tr;
113
114 spin_unlock_irq(rq->queue_lock);
115
Ingo Molnar48b19262006-03-31 02:29:41 -0800116 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 res = do_blktrans_request(tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800118 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 spin_lock_irq(rq->queue_lock);
121
122 end_request(req, res);
123 }
124 spin_unlock_irq(rq->queue_lock);
125
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100126 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129static void mtd_blktrans_request(struct request_queue *rq)
130{
131 struct mtd_blktrans_ops *tr = rq->queuedata;
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100132 wake_up_process(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135
136static int blktrans_open(struct inode *i, struct file *f)
137{
138 struct mtd_blktrans_dev *dev;
139 struct mtd_blktrans_ops *tr;
140 int ret = -ENODEV;
141
142 dev = i->i_bdev->bd_disk->private_data;
143 tr = dev->tr;
144
145 if (!try_module_get(dev->mtd->owner))
146 goto out;
147
148 if (!try_module_get(tr->owner))
149 goto out_tr;
150
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000151 /* FIXME: Locking. A hot pluggable device can go away
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 (del_mtd_device can be called for it) without its module
153 being unloaded. */
154 dev->mtd->usecount++;
155
156 ret = 0;
157 if (tr->open && (ret = tr->open(dev))) {
158 dev->mtd->usecount--;
159 module_put(dev->mtd->owner);
160 out_tr:
161 module_put(tr->owner);
162 }
163 out:
164 return ret;
165}
166
167static int blktrans_release(struct inode *i, struct file *f)
168{
169 struct mtd_blktrans_dev *dev;
170 struct mtd_blktrans_ops *tr;
171 int ret = 0;
172
173 dev = i->i_bdev->bd_disk->private_data;
174 tr = dev->tr;
175
176 if (tr->release)
177 ret = tr->release(dev);
178
179 if (!ret) {
180 dev->mtd->usecount--;
181 module_put(dev->mtd->owner);
182 module_put(tr->owner);
183 }
184
185 return ret;
186}
187
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800188static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
189{
190 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
191
192 if (dev->tr->getgeo)
193 return dev->tr->getgeo(dev, geo);
194 return -ENOTTY;
195}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000197static int blktrans_ioctl(struct inode *inode, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 unsigned int cmd, unsigned long arg)
199{
200 struct mtd_blktrans_dev *dev = inode->i_bdev->bd_disk->private_data;
201 struct mtd_blktrans_ops *tr = dev->tr;
202
203 switch (cmd) {
204 case BLKFLSBUF:
205 if (tr->flush)
206 return tr->flush(dev);
207 /* The core code did the work, we had nothing to do. */
208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 default:
210 return -ENOTTY;
211 }
212}
213
Ben Dooks8f026f72007-05-28 19:51:59 +0100214static struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .owner = THIS_MODULE,
216 .open = blktrans_open,
217 .release = blktrans_release,
218 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800219 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
222int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
223{
224 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100225 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 int last_devnum = -1;
227 struct gendisk *gd;
228
Jean Delvareb3561ea2007-05-08 00:30:46 -0700229 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800230 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 BUG();
232 }
233
Chris Malley71a928c2008-05-19 20:11:50 +0100234 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (new->devnum == -1) {
236 /* Use first free number */
237 if (d->devnum != last_devnum+1) {
238 /* Found a free devnum. Plug it in here */
239 new->devnum = last_devnum+1;
240 list_add_tail(&new->list, &d->list);
241 goto added;
242 }
243 } else if (d->devnum == new->devnum) {
244 /* Required number taken */
245 return -EBUSY;
246 } else if (d->devnum > new->devnum) {
247 /* Required number was free */
248 list_add_tail(&new->list, &d->list);
249 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 last_devnum = d->devnum;
252 }
253 if (new->devnum == -1)
254 new->devnum = last_devnum+1;
255
256 if ((new->devnum << tr->part_bits) > 256) {
257 return -EBUSY;
258 }
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 list_add_tail(&new->list, &tr->devs);
261 added:
David Woodhousece37ab42007-12-03 12:46:12 +0000262 mutex_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (!tr->writesect)
264 new->readonly = 1;
265
266 gd = alloc_disk(1 << tr->part_bits);
267 if (!gd) {
268 list_del(&new->list);
269 return -ENOMEM;
270 }
271 gd->major = tr->major;
272 gd->first_minor = (new->devnum) << tr->part_bits;
273 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000274
Todd Poynor65a8de32005-07-29 20:42:07 +0100275 if (tr->part_bits)
276 if (new->devnum < 26)
277 snprintf(gd->disk_name, sizeof(gd->disk_name),
278 "%s%c", tr->name, 'a' + new->devnum);
279 else
280 snprintf(gd->disk_name, sizeof(gd->disk_name),
281 "%s%c%c", tr->name,
282 'a' - 1 + new->devnum / 26,
283 'a' + new->devnum % 26);
284 else
285 snprintf(gd->disk_name, sizeof(gd->disk_name),
286 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* 2.5 has capacity in units of 512 bytes while still
289 having BLOCK_SIZE_BITS set to 10. Just to keep us amused. */
Richard Purdie19187672006-10-27 09:09:33 +0100290 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 gd->private_data = new;
293 new->blkcore_priv = gd;
294 gd->queue = tr->blkcore_priv->rq;
295
296 if (new->readonly)
297 set_disk_ro(gd, 1);
298
299 add_disk(gd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return 0;
302}
303
304int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
305{
Jean Delvareb3561ea2007-05-08 00:30:46 -0700306 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800307 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 BUG();
309 }
310
311 list_del(&old->list);
312
313 del_gendisk(old->blkcore_priv);
314 put_disk(old->blkcore_priv);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return 0;
317}
318
319static void blktrans_notify_remove(struct mtd_info *mtd)
320{
Chris Malley71a928c2008-05-19 20:11:50 +0100321 struct mtd_blktrans_ops *tr;
322 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Chris Malley71a928c2008-05-19 20:11:50 +0100324 list_for_each_entry(tr, &blktrans_majors, list)
325 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (dev->mtd == mtd)
327 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330static void blktrans_notify_add(struct mtd_info *mtd)
331{
Chris Malley71a928c2008-05-19 20:11:50 +0100332 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 if (mtd->type == MTD_ABSENT)
335 return;
336
Chris Malley71a928c2008-05-19 20:11:50 +0100337 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341static struct mtd_notifier blktrans_notifier = {
342 .add = blktrans_notify_add,
343 .remove = blktrans_notify_remove,
344};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
347{
348 int ret, i;
349
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000350 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 registered, to prevent the link/init ordering from fucking
352 us over. */
353 if (!blktrans_notifier.list.next)
354 register_mtd_user(&blktrans_notifier);
355
Burman Yan95b93a02006-11-15 21:10:29 +0200356 tr->blkcore_priv = kzalloc(sizeof(*tr->blkcore_priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (!tr->blkcore_priv)
358 return -ENOMEM;
359
Ingo Molnar48b19262006-03-31 02:29:41 -0800360 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 ret = register_blkdev(tr->major, tr->name);
363 if (ret) {
364 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
365 tr->name, tr->major, ret);
366 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800367 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return ret;
369 }
370 spin_lock_init(&tr->blkcore_priv->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 tr->blkcore_priv->rq = blk_init_queue(mtd_blktrans_request, &tr->blkcore_priv->queue_lock);
373 if (!tr->blkcore_priv->rq) {
374 unregister_blkdev(tr->major, tr->name);
375 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800376 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return -ENOMEM;
378 }
379
380 tr->blkcore_priv->rq->queuedata = tr;
Richard Purdie19187672006-10-27 09:09:33 +0100381 blk_queue_hardsect_size(tr->blkcore_priv->rq, tr->blksize);
David Woodhouseeae9acd2008-08-05 18:08:25 +0100382 if (tr->discard)
383 blk_queue_set_discard(tr->blkcore_priv->rq,
384 blktrans_discard_request);
385
Richard Purdie19187672006-10-27 09:09:33 +0100386 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100388 tr->blkcore_priv->thread = kthread_run(mtd_blktrans_thread, tr,
389 "%sd", tr->name);
390 if (IS_ERR(tr->blkcore_priv->thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 blk_cleanup_queue(tr->blkcore_priv->rq);
392 unregister_blkdev(tr->major, tr->name);
393 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800394 mutex_unlock(&mtd_table_mutex);
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100395 return PTR_ERR(tr->blkcore_priv->thread);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 INIT_LIST_HEAD(&tr->devs);
399 list_add(&tr->list, &blktrans_majors);
400
401 for (i=0; i<MAX_MTD_DEVICES; i++) {
402 if (mtd_table[i] && mtd_table[i]->type != MTD_ABSENT)
403 tr->add_mtd(tr, mtd_table[i]);
404 }
405
Ingo Molnar48b19262006-03-31 02:29:41 -0800406 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 return 0;
409}
410
411int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
412{
Chris Malley71a928c2008-05-19 20:11:50 +0100413 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Ingo Molnar48b19262006-03-31 02:29:41 -0800415 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* Clean up the kernel thread */
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100418 kthread_stop(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /* Remove it from the list of active majors */
421 list_del(&tr->list);
422
Chris Malley71a928c2008-05-19 20:11:50 +0100423 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 blk_cleanup_queue(tr->blkcore_priv->rq);
427 unregister_blkdev(tr->major, tr->name);
428
Ingo Molnar48b19262006-03-31 02:29:41 -0800429 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 kfree(tr->blkcore_priv);
432
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200433 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return 0;
435}
436
437static void __exit mtd_blktrans_exit(void)
438{
439 /* No race here -- if someone's currently in register_mtd_blktrans
440 we're screwed anyway. */
441 if (blktrans_notifier.list.next)
442 unregister_mtd_user(&blktrans_notifier);
443}
444
445module_exit(mtd_blktrans_exit);
446
447EXPORT_SYMBOL_GPL(register_mtd_blktrans);
448EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
449EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
450EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
451
452MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
453MODULE_LICENSE("GPL");
454MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");