blob: 1d2144d77470160c0d58e349170766eeead7c729 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Woodhousea1452a32010-08-08 20:58:20 +01002 * Interface to Linux block layer for MTD 'translation layers'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David Woodhousea1452a32010-08-08 20:58:20 +01004 * Copyright © 2003-2010 David Woodhouse <dwmw2@infradead.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 */
21
22#include <linux/kernel.h>
23#include <linux/slab.h>
24#include <linux/module.h>
25#include <linux/list.h>
26#include <linux/fs.h>
27#include <linux/mtd/blktrans.h>
28#include <linux/mtd/mtd.h>
29#include <linux/blkdev.h>
30#include <linux/blkpg.h>
31#include <linux/spinlock.h>
32#include <linux/hdreg.h>
33#include <linux/init.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080034#include <linux/mutex.h>
Eric W. Biederman99f9b242007-04-19 01:58:33 -060035#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Ben Dooks356d70f2007-05-28 20:28:34 +010038#include "mtdcore.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Ben Dooks356d70f2007-05-28 20:28:34 +010040static LIST_HEAD(blktrans_majors);
Maxim Levitsky048d8712010-02-22 20:39:30 +020041static DEFINE_MUTEX(blktrans_ref_mutex);
42
43void blktrans_dev_release(struct kref *kref)
44{
45 struct mtd_blktrans_dev *dev =
46 container_of(kref, struct mtd_blktrans_dev, ref);
47
48 dev->disk->private_data = NULL;
Maxim Levitskye4d64ca2010-02-27 02:31:51 +020049 blk_cleanup_queue(dev->rq);
Maxim Levitsky048d8712010-02-22 20:39:30 +020050 put_disk(dev->disk);
51 list_del(&dev->list);
52 kfree(dev);
53}
54
55static struct mtd_blktrans_dev *blktrans_dev_get(struct gendisk *disk)
56{
57 struct mtd_blktrans_dev *dev;
58
59 mutex_lock(&blktrans_ref_mutex);
60 dev = disk->private_data;
61
62 if (!dev)
63 goto unlock;
64 kref_get(&dev->ref);
65unlock:
66 mutex_unlock(&blktrans_ref_mutex);
67 return dev;
68}
69
70void blktrans_dev_put(struct mtd_blktrans_dev *dev)
71{
72 mutex_lock(&blktrans_ref_mutex);
73 kref_put(&dev->ref, blktrans_dev_release);
74 mutex_unlock(&blktrans_ref_mutex);
75}
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78static int do_blktrans_request(struct mtd_blktrans_ops *tr,
79 struct mtd_blktrans_dev *dev,
80 struct request *req)
81{
82 unsigned long block, nsect;
83 char *buf;
84
Tejun Heo83096eb2009-05-07 22:24:39 +090085 block = blk_rq_pos(req) << 9 >> tr->blkshift;
Tejun Heo1011c1b2009-05-07 22:24:45 +090086 nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
Richard Purdie19187672006-10-27 09:09:33 +010087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 buf = req->buffer;
89
Jens Axboe4aff5e22006-08-10 08:44:47 +020090 if (!blk_fs_request(req))
Tejun Heof06d9a22009-04-23 11:05:19 +090091 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Tejun Heo83096eb2009-05-07 22:24:39 +090093 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
94 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090095 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Christoph Hellwig1122a262009-09-30 13:52:12 +020097 if (blk_discard_rq(req))
98 return tr->discard(dev, block, nsect);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 switch(rq_data_dir(req)) {
101 case READ:
Richard Purdie19187672006-10-27 09:09:33 +0100102 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900104 return -EIO;
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100105 rq_flush_dcache_pages(req);
Tejun Heof06d9a22009-04-23 11:05:19 +0900106 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 case WRITE:
108 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +0900109 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100111 rq_flush_dcache_pages(req);
Richard Purdie19187672006-10-27 09:09:33 +0100112 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900114 return -EIO;
115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 default:
Jeff Garzik9a292302006-10-01 12:16:00 -0400117 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Tejun Heof06d9a22009-04-23 11:05:19 +0900118 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120}
121
122static int mtd_blktrans_thread(void *arg)
123{
Maxim Levitskya8638622010-02-22 20:39:29 +0200124 struct mtd_blktrans_dev *dev = arg;
125 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900126 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900129
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100130 while (!kthread_should_stop()) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900131 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Tejun Heo9934c8c2009-05-08 11:54:16 +0900133 if (!req && !(req = blk_fetch_request(rq))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 continue;
139 }
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 spin_unlock_irq(rq->queue_lock);
142
Ingo Molnar48b19262006-03-31 02:29:41 -0800143 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200144 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800145 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 spin_lock_irq(rq->queue_lock);
148
Tejun Heo1498ada2009-05-08 11:54:11 +0900149 if (!__blk_end_request_cur(req, res))
150 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900152
153 if (req)
154 __blk_end_request_all(req, -EIO);
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 spin_unlock_irq(rq->queue_lock);
157
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100158 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161static void mtd_blktrans_request(struct request_queue *rq)
162{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200163 struct mtd_blktrans_dev *dev;
164 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Maxim Levitsky048d8712010-02-22 20:39:30 +0200166 dev = rq->queuedata;
167
168 if (!dev)
169 while ((req = blk_fetch_request(rq)) != NULL)
170 __blk_end_request_all(req, -ENODEV);
171 else
172 wake_up_process(dev->thread);
173}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Al Viroaf0e2a02008-03-02 10:35:06 -0500175static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200177 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
178 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Maxim Levitsky048d8712010-02-22 20:39:30 +0200180 if (!dev)
181 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Maxim Levitsky048d8712010-02-22 20:39:30 +0200183 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Maxim Levitsky048d8712010-02-22 20:39:30 +0200185 if (!dev->mtd) {
186 ret = -ENXIO;
187 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200189
190 ret = !dev->open++ && dev->tr->open ? dev->tr->open(dev) : 0;
191
192 /* Take another reference on the device so it won't go away till
193 last release */
194 if (!ret)
195 kref_get(&dev->ref);
196unlock:
197 mutex_unlock(&dev->lock);
198 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return ret;
200}
201
Al Viroaf0e2a02008-03-02 10:35:06 -0500202static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200204 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
205 int ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Maxim Levitsky048d8712010-02-22 20:39:30 +0200207 if (!dev)
208 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Maxim Levitsky048d8712010-02-22 20:39:30 +0200210 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Maxim Levitsky048d8712010-02-22 20:39:30 +0200212 /* Release one reference, we sure its not the last one here*/
213 kref_put(&dev->ref, blktrans_dev_release);
214
215 if (!dev->mtd)
216 goto unlock;
217
218 ret = !--dev->open && dev->tr->release ? dev->tr->release(dev) : 0;
219unlock:
220 mutex_unlock(&dev->lock);
221 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return ret;
223}
224
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800225static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
226{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200227 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
228 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800229
Maxim Levitsky048d8712010-02-22 20:39:30 +0200230 if (!dev)
231 return ret;
232
233 mutex_lock(&dev->lock);
234
235 if (!dev->mtd)
236 goto unlock;
237
238 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
239unlock:
240 mutex_unlock(&dev->lock);
241 blktrans_dev_put(dev);
242 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800243}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Al Viroaf0e2a02008-03-02 10:35:06 -0500245static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 unsigned int cmd, unsigned long arg)
247{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200248 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
249 int ret = -ENXIO;
250
251 if (!dev)
252 return ret;
253
254 mutex_lock(&dev->lock);
255
256 if (!dev->mtd)
257 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 switch (cmd) {
260 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200261 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200262 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200264 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200266unlock:
267 mutex_unlock(&dev->lock);
268 blktrans_dev_put(dev);
269 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700272static const struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500274 .open = blktrans_open,
275 .release = blktrans_release,
276 .locked_ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800277 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278};
279
280int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
281{
282 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100283 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 int last_devnum = -1;
285 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200286 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Jean Delvareb3561ea2007-05-08 00:30:46 -0700288 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800289 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 BUG();
291 }
292
Maxim Levitsky048d8712010-02-22 20:39:30 +0200293 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100294 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (new->devnum == -1) {
296 /* Use first free number */
297 if (d->devnum != last_devnum+1) {
298 /* Found a free devnum. Plug it in here */
299 new->devnum = last_devnum+1;
300 list_add_tail(&new->list, &d->list);
301 goto added;
302 }
303 } else if (d->devnum == new->devnum) {
304 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200305 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return -EBUSY;
307 } else if (d->devnum > new->devnum) {
308 /* Required number was free */
309 list_add_tail(&new->list, &d->list);
310 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 last_devnum = d->devnum;
313 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200314
315 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (new->devnum == -1)
317 new->devnum = last_devnum+1;
318
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000319 /* Check that the device and any partitions will get valid
320 * minor numbers and that the disk naming code below can cope
321 * with this number. */
322 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200323 (tr->part_bits && new->devnum >= 27 * 26)) {
324 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200325 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 list_add_tail(&new->list, &tr->devs);
329 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200330 mutex_unlock(&blktrans_ref_mutex);
331
David Woodhousece37ab42007-12-03 12:46:12 +0000332 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200333 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (!tr->writesect)
335 new->readonly = 1;
336
Maxim Levitskya8638622010-02-22 20:39:29 +0200337 /* Create gendisk */
338 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200340
341 if (!gd)
342 goto error2;
343
344 new->disk = gd;
345 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 gd->major = tr->major;
347 gd->first_minor = (new->devnum) << tr->part_bits;
348 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000349
Todd Poynor65a8de32005-07-29 20:42:07 +0100350 if (tr->part_bits)
351 if (new->devnum < 26)
352 snprintf(gd->disk_name, sizeof(gd->disk_name),
353 "%s%c", tr->name, 'a' + new->devnum);
354 else
355 snprintf(gd->disk_name, sizeof(gd->disk_name),
356 "%s%c%c", tr->name,
357 'a' - 1 + new->devnum / 26,
358 'a' + new->devnum % 26);
359 else
360 snprintf(gd->disk_name, sizeof(gd->disk_name),
361 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Richard Purdie19187672006-10-27 09:09:33 +0100363 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Maxim Levitskya8638622010-02-22 20:39:29 +0200365 /* Create the request queue */
366 spin_lock_init(&new->queue_lock);
367 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
368
369 if (!new->rq)
370 goto error3;
371
372 new->rq->queuedata = new;
373 blk_queue_logical_block_size(new->rq, tr->blksize);
374
375 if (tr->discard)
376 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
377 new->rq);
378
379 gd->queue = new->rq;
380
Maxim Levitsky048d8712010-02-22 20:39:30 +0200381 __get_mtd_device(new->mtd);
382 __module_get(tr->owner);
383
Maxim Levitskya8638622010-02-22 20:39:29 +0200384 /* Create processing thread */
385 /* TODO: workqueue ? */
386 new->thread = kthread_run(mtd_blktrans_thread, new,
387 "%s%d", tr->name, new->mtd->index);
388 if (IS_ERR(new->thread)) {
389 ret = PTR_ERR(new->thread);
390 goto error4;
391 }
David Woodhoused6948462009-04-05 07:38:33 -0700392 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 if (new->readonly)
395 set_disk_ro(gd, 1);
396
397 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200398
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200399 if (new->disk_attributes) {
400 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200401 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200402 WARN_ON(ret);
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200405error4:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200406 module_put(tr->owner);
407 __put_mtd_device(new->mtd);
Maxim Levitskya8638622010-02-22 20:39:29 +0200408 blk_cleanup_queue(new->rq);
409error3:
410 put_disk(new->disk);
411error2:
412 list_del(&new->list);
413error1:
414 kfree(new);
415 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
419{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200420 unsigned long flags;
421
Jean Delvareb3561ea2007-05-08 00:30:46 -0700422 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800423 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 BUG();
425 }
426
Maxim Levitsky026ec572010-02-22 20:39:33 +0200427 if (old->disk_attributes)
428 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
429 old->disk_attributes);
430
Maxim Levitskydba76c02010-07-28 18:53:16 +0300431 /* Stop new requests to arrive */
432 del_gendisk(old->disk);
433
434
Maxim Levitskya8638622010-02-22 20:39:29 +0200435 /* Stop the thread */
436 kthread_stop(old->thread);
437
Maxim Levitsky048d8712010-02-22 20:39:30 +0200438 /* Kill current requests */
439 spin_lock_irqsave(&old->queue_lock, flags);
440 old->rq->queuedata = NULL;
441 blk_start_queue(old->rq);
442 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200443
444 /* Ask trans driver for release to the mtd device */
445 mutex_lock(&old->lock);
446 if (old->open && old->tr->release) {
447 old->tr->release(old);
448 old->open = 0;
449 }
450
451 __put_mtd_device(old->mtd);
452 module_put(old->tr->owner);
453
454 /* At that point, we don't touch the mtd anymore */
455 old->mtd = NULL;
456
457 mutex_unlock(&old->lock);
458 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0;
460}
461
462static void blktrans_notify_remove(struct mtd_info *mtd)
463{
Chris Malley71a928c2008-05-19 20:11:50 +0100464 struct mtd_blktrans_ops *tr;
465 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Chris Malley71a928c2008-05-19 20:11:50 +0100467 list_for_each_entry(tr, &blktrans_majors, list)
468 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (dev->mtd == mtd)
470 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473static void blktrans_notify_add(struct mtd_info *mtd)
474{
Chris Malley71a928c2008-05-19 20:11:50 +0100475 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 if (mtd->type == MTD_ABSENT)
478 return;
479
Chris Malley71a928c2008-05-19 20:11:50 +0100480 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484static struct mtd_notifier blktrans_notifier = {
485 .add = blktrans_notify_add,
486 .remove = blktrans_notify_remove,
487};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
490{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000491 struct mtd_info *mtd;
492 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000494 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 registered, to prevent the link/init ordering from fucking
496 us over. */
497 if (!blktrans_notifier.list.next)
498 register_mtd_user(&blktrans_notifier);
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Ingo Molnar48b19262006-03-31 02:29:41 -0800501 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 ret = register_blkdev(tr->major, tr->name);
504 if (ret) {
505 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
506 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800507 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return ret;
509 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100510
Richard Purdie19187672006-10-27 09:09:33 +0100511 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 INIT_LIST_HEAD(&tr->devs);
514 list_add(&tr->list, &blktrans_majors);
515
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000516 mtd_for_each_device(mtd)
517 if (mtd->type != MTD_ABSENT)
518 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Ingo Molnar48b19262006-03-31 02:29:41 -0800520 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 0;
522}
523
524int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
525{
Chris Malley71a928c2008-05-19 20:11:50 +0100526 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Ingo Molnar48b19262006-03-31 02:29:41 -0800528 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* Remove it from the list of active majors */
531 list_del(&tr->list);
532
Chris Malley71a928c2008-05-19 20:11:50 +0100533 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800537 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200539 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return 0;
541}
542
543static void __exit mtd_blktrans_exit(void)
544{
545 /* No race here -- if someone's currently in register_mtd_blktrans
546 we're screwed anyway. */
547 if (blktrans_notifier.list.next)
548 unregister_mtd_user(&blktrans_notifier);
549}
550
551module_exit(mtd_blktrans_exit);
552
553EXPORT_SYMBOL_GPL(register_mtd_blktrans);
554EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
555EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
556EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
557
558MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
559MODULE_LICENSE("GPL");
560MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");