blob: 4109e0bb94f58fcb986c8b0bd48a3f45ec368c16 [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
Al Viroaf0e2a02008-03-02 10:35:06 -0500136static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Al Viroaf0e2a02008-03-02 10:35:06 -0500138 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
139 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int ret = -ENODEV;
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (!try_module_get(dev->mtd->owner))
143 goto out;
144
145 if (!try_module_get(tr->owner))
146 goto out_tr;
147
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000148 /* FIXME: Locking. A hot pluggable device can go away
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 (del_mtd_device can be called for it) without its module
150 being unloaded. */
151 dev->mtd->usecount++;
152
153 ret = 0;
154 if (tr->open && (ret = tr->open(dev))) {
155 dev->mtd->usecount--;
156 module_put(dev->mtd->owner);
157 out_tr:
158 module_put(tr->owner);
159 }
160 out:
161 return ret;
162}
163
Al Viroaf0e2a02008-03-02 10:35:06 -0500164static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Al Viroaf0e2a02008-03-02 10:35:06 -0500166 struct mtd_blktrans_dev *dev = disk->private_data;
167 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 int ret = 0;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (tr->release)
171 ret = tr->release(dev);
172
173 if (!ret) {
174 dev->mtd->usecount--;
175 module_put(dev->mtd->owner);
176 module_put(tr->owner);
177 }
178
179 return ret;
180}
181
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800182static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
183{
184 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
185
186 if (dev->tr->getgeo)
187 return dev->tr->getgeo(dev, geo);
188 return -ENOTTY;
189}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Al Viroaf0e2a02008-03-02 10:35:06 -0500191static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned int cmd, unsigned long arg)
193{
Al Viroaf0e2a02008-03-02 10:35:06 -0500194 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 struct mtd_blktrans_ops *tr = dev->tr;
196
197 switch (cmd) {
198 case BLKFLSBUF:
199 if (tr->flush)
200 return tr->flush(dev);
201 /* The core code did the work, we had nothing to do. */
202 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 default:
204 return -ENOTTY;
205 }
206}
207
Ben Dooks8f026f72007-05-28 19:51:59 +0100208static struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500210 .open = blktrans_open,
211 .release = blktrans_release,
212 .locked_ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800213 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
216int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
217{
218 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100219 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 int last_devnum = -1;
221 struct gendisk *gd;
222
Jean Delvareb3561ea2007-05-08 00:30:46 -0700223 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800224 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 BUG();
226 }
227
Chris Malley71a928c2008-05-19 20:11:50 +0100228 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (new->devnum == -1) {
230 /* Use first free number */
231 if (d->devnum != last_devnum+1) {
232 /* Found a free devnum. Plug it in here */
233 new->devnum = last_devnum+1;
234 list_add_tail(&new->list, &d->list);
235 goto added;
236 }
237 } else if (d->devnum == new->devnum) {
238 /* Required number taken */
239 return -EBUSY;
240 } else if (d->devnum > new->devnum) {
241 /* Required number was free */
242 list_add_tail(&new->list, &d->list);
243 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 last_devnum = d->devnum;
246 }
247 if (new->devnum == -1)
248 new->devnum = last_devnum+1;
249
250 if ((new->devnum << tr->part_bits) > 256) {
251 return -EBUSY;
252 }
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 list_add_tail(&new->list, &tr->devs);
255 added:
David Woodhousece37ab42007-12-03 12:46:12 +0000256 mutex_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (!tr->writesect)
258 new->readonly = 1;
259
260 gd = alloc_disk(1 << tr->part_bits);
261 if (!gd) {
262 list_del(&new->list);
263 return -ENOMEM;
264 }
265 gd->major = tr->major;
266 gd->first_minor = (new->devnum) << tr->part_bits;
267 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000268
Todd Poynor65a8de32005-07-29 20:42:07 +0100269 if (tr->part_bits)
270 if (new->devnum < 26)
271 snprintf(gd->disk_name, sizeof(gd->disk_name),
272 "%s%c", tr->name, 'a' + new->devnum);
273 else
274 snprintf(gd->disk_name, sizeof(gd->disk_name),
275 "%s%c%c", tr->name,
276 'a' - 1 + new->devnum / 26,
277 'a' + new->devnum % 26);
278 else
279 snprintf(gd->disk_name, sizeof(gd->disk_name),
280 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* 2.5 has capacity in units of 512 bytes while still
283 having BLOCK_SIZE_BITS set to 10. Just to keep us amused. */
Richard Purdie19187672006-10-27 09:09:33 +0100284 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 gd->private_data = new;
287 new->blkcore_priv = gd;
288 gd->queue = tr->blkcore_priv->rq;
289
290 if (new->readonly)
291 set_disk_ro(gd, 1);
292
293 add_disk(gd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0;
296}
297
298int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
299{
Jean Delvareb3561ea2007-05-08 00:30:46 -0700300 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800301 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 BUG();
303 }
304
305 list_del(&old->list);
306
307 del_gendisk(old->blkcore_priv);
308 put_disk(old->blkcore_priv);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return 0;
311}
312
313static void blktrans_notify_remove(struct mtd_info *mtd)
314{
Chris Malley71a928c2008-05-19 20:11:50 +0100315 struct mtd_blktrans_ops *tr;
316 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Chris Malley71a928c2008-05-19 20:11:50 +0100318 list_for_each_entry(tr, &blktrans_majors, list)
319 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (dev->mtd == mtd)
321 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324static void blktrans_notify_add(struct mtd_info *mtd)
325{
Chris Malley71a928c2008-05-19 20:11:50 +0100326 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 if (mtd->type == MTD_ABSENT)
329 return;
330
Chris Malley71a928c2008-05-19 20:11:50 +0100331 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335static struct mtd_notifier blktrans_notifier = {
336 .add = blktrans_notify_add,
337 .remove = blktrans_notify_remove,
338};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
341{
342 int ret, i;
343
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000344 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 registered, to prevent the link/init ordering from fucking
346 us over. */
347 if (!blktrans_notifier.list.next)
348 register_mtd_user(&blktrans_notifier);
349
Burman Yan95b93a02006-11-15 21:10:29 +0200350 tr->blkcore_priv = kzalloc(sizeof(*tr->blkcore_priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (!tr->blkcore_priv)
352 return -ENOMEM;
353
Ingo Molnar48b19262006-03-31 02:29:41 -0800354 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 ret = register_blkdev(tr->major, tr->name);
357 if (ret) {
358 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
359 tr->name, tr->major, ret);
360 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800361 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return ret;
363 }
364 spin_lock_init(&tr->blkcore_priv->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 tr->blkcore_priv->rq = blk_init_queue(mtd_blktrans_request, &tr->blkcore_priv->queue_lock);
367 if (!tr->blkcore_priv->rq) {
368 unregister_blkdev(tr->major, tr->name);
369 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800370 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return -ENOMEM;
372 }
373
374 tr->blkcore_priv->rq->queuedata = tr;
Richard Purdie19187672006-10-27 09:09:33 +0100375 blk_queue_hardsect_size(tr->blkcore_priv->rq, tr->blksize);
David Woodhouseeae9acd2008-08-05 18:08:25 +0100376 if (tr->discard)
377 blk_queue_set_discard(tr->blkcore_priv->rq,
378 blktrans_discard_request);
379
Richard Purdie19187672006-10-27 09:09:33 +0100380 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100382 tr->blkcore_priv->thread = kthread_run(mtd_blktrans_thread, tr,
383 "%sd", tr->name);
384 if (IS_ERR(tr->blkcore_priv->thread)) {
Marcin Slusarz2cf3a1142009-03-28 18:44:24 +0100385 int ret = PTR_ERR(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 blk_cleanup_queue(tr->blkcore_priv->rq);
387 unregister_blkdev(tr->major, tr->name);
388 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800389 mutex_unlock(&mtd_table_mutex);
Marcin Slusarz2cf3a1142009-03-28 18:44:24 +0100390 return ret;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 INIT_LIST_HEAD(&tr->devs);
394 list_add(&tr->list, &blktrans_majors);
395
396 for (i=0; i<MAX_MTD_DEVICES; i++) {
397 if (mtd_table[i] && mtd_table[i]->type != MTD_ABSENT)
398 tr->add_mtd(tr, mtd_table[i]);
399 }
400
Ingo Molnar48b19262006-03-31 02:29:41 -0800401 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return 0;
404}
405
406int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
407{
Chris Malley71a928c2008-05-19 20:11:50 +0100408 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Ingo Molnar48b19262006-03-31 02:29:41 -0800410 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* Clean up the kernel thread */
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100413 kthread_stop(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* Remove it from the list of active majors */
416 list_del(&tr->list);
417
Chris Malley71a928c2008-05-19 20:11:50 +0100418 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 blk_cleanup_queue(tr->blkcore_priv->rq);
422 unregister_blkdev(tr->major, tr->name);
423
Ingo Molnar48b19262006-03-31 02:29:41 -0800424 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 kfree(tr->blkcore_priv);
427
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200428 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return 0;
430}
431
432static void __exit mtd_blktrans_exit(void)
433{
434 /* No race here -- if someone's currently in register_mtd_blktrans
435 we're screwed anyway. */
436 if (blktrans_notifier.list.next)
437 unregister_mtd_user(&blktrans_notifier);
438}
439
440module_exit(mtd_blktrans_exit);
441
442EXPORT_SYMBOL_GPL(register_mtd_blktrans);
443EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
444EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
445EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
446
447MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
448MODULE_LICENSE("GPL");
449MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");