blob: 62e68707b07f49a6f07a8f97a7333880f9d7f1db [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>
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +020032#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/hdreg.h>
34#include <linux/init.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080035#include <linux/mutex.h>
Eric W. Biederman99f9b242007-04-19 01:58:33 -060036#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ben Dooks356d70f2007-05-28 20:28:34 +010039#include "mtdcore.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Ben Dooks356d70f2007-05-28 20:28:34 +010041static LIST_HEAD(blktrans_majors);
Maxim Levitsky048d8712010-02-22 20:39:30 +020042static DEFINE_MUTEX(blktrans_ref_mutex);
43
44void blktrans_dev_release(struct kref *kref)
45{
46 struct mtd_blktrans_dev *dev =
47 container_of(kref, struct mtd_blktrans_dev, ref);
48
49 dev->disk->private_data = NULL;
Maxim Levitskye4d64ca2010-02-27 02:31:51 +020050 blk_cleanup_queue(dev->rq);
Maxim Levitsky048d8712010-02-22 20:39:30 +020051 put_disk(dev->disk);
52 list_del(&dev->list);
53 kfree(dev);
54}
55
56static struct mtd_blktrans_dev *blktrans_dev_get(struct gendisk *disk)
57{
58 struct mtd_blktrans_dev *dev;
59
60 mutex_lock(&blktrans_ref_mutex);
61 dev = disk->private_data;
62
63 if (!dev)
64 goto unlock;
65 kref_get(&dev->ref);
66unlock:
67 mutex_unlock(&blktrans_ref_mutex);
68 return dev;
69}
70
71void blktrans_dev_put(struct mtd_blktrans_dev *dev)
72{
73 mutex_lock(&blktrans_ref_mutex);
74 kref_put(&dev->ref, blktrans_dev_release);
75 mutex_unlock(&blktrans_ref_mutex);
76}
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static int do_blktrans_request(struct mtd_blktrans_ops *tr,
80 struct mtd_blktrans_dev *dev,
81 struct request *req)
82{
83 unsigned long block, nsect;
84 char *buf;
85
Tejun Heo83096eb2009-05-07 22:24:39 +090086 block = blk_rq_pos(req) << 9 >> tr->blkshift;
Tejun Heo1011c1b2009-05-07 22:24:45 +090087 nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
Richard Purdie19187672006-10-27 09:09:33 +010088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 buf = req->buffer;
90
Christoph Hellwig33659eb2010-08-07 18:17:56 +020091 if (req->cmd_type != REQ_TYPE_FS)
Tejun Heof06d9a22009-04-23 11:05:19 +090092 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Tejun Heo83096eb2009-05-07 22:24:39 +090094 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
95 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090096 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Christoph Hellwig33659eb2010-08-07 18:17:56 +020098 if (req->cmd_flags & REQ_DISCARD)
Christoph Hellwig1122a262009-09-30 13:52:12 +020099 return tr->discard(dev, block, nsect);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 switch(rq_data_dir(req)) {
102 case READ:
Richard Purdie19187672006-10-27 09:09:33 +0100103 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900105 return -EIO;
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100106 rq_flush_dcache_pages(req);
Tejun Heof06d9a22009-04-23 11:05:19 +0900107 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 case WRITE:
109 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +0900110 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100112 rq_flush_dcache_pages(req);
Richard Purdie19187672006-10-27 09:09:33 +0100113 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900115 return -EIO;
116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 default:
Jeff Garzik9a292302006-10-01 12:16:00 -0400118 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Tejun Heof06d9a22009-04-23 11:05:19 +0900119 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121}
122
123static int mtd_blktrans_thread(void *arg)
124{
Maxim Levitskya8638622010-02-22 20:39:29 +0200125 struct mtd_blktrans_dev *dev = arg;
126 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900127 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900130
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100131 while (!kthread_should_stop()) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900132 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Tejun Heo9934c8c2009-05-08 11:54:16 +0900134 if (!req && !(req = blk_fetch_request(rq))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 continue;
140 }
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 spin_unlock_irq(rq->queue_lock);
143
Ingo Molnar48b19262006-03-31 02:29:41 -0800144 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200145 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800146 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 spin_lock_irq(rq->queue_lock);
149
Tejun Heo1498ada2009-05-08 11:54:11 +0900150 if (!__blk_end_request_cur(req, res))
151 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900153
154 if (req)
155 __blk_end_request_all(req, -EIO);
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 spin_unlock_irq(rq->queue_lock);
158
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100159 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162static void mtd_blktrans_request(struct request_queue *rq)
163{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200164 struct mtd_blktrans_dev *dev;
165 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Maxim Levitsky048d8712010-02-22 20:39:30 +0200167 dev = rq->queuedata;
168
169 if (!dev)
170 while ((req = blk_fetch_request(rq)) != NULL)
171 __blk_end_request_all(req, -ENODEV);
172 else
173 wake_up_process(dev->thread);
174}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Al Viroaf0e2a02008-03-02 10:35:06 -0500176static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200178 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
179 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Maxim Levitsky048d8712010-02-22 20:39:30 +0200181 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200182 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200184 lock_kernel();
Maxim Levitsky048d8712010-02-22 20:39:30 +0200185 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Maxim Levitsky048d8712010-02-22 20:39:30 +0200187 if (!dev->mtd) {
188 ret = -ENXIO;
189 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200191
192 ret = !dev->open++ && dev->tr->open ? dev->tr->open(dev) : 0;
193
194 /* Take another reference on the device so it won't go away till
195 last release */
196 if (!ret)
197 kref_get(&dev->ref);
198unlock:
199 mutex_unlock(&dev->lock);
200 blktrans_dev_put(dev);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200201 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return ret;
203}
204
Al Viroaf0e2a02008-03-02 10:35:06 -0500205static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200207 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
208 int ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Maxim Levitsky048d8712010-02-22 20:39:30 +0200210 if (!dev)
211 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200213 lock_kernel();
Maxim Levitsky048d8712010-02-22 20:39:30 +0200214 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Maxim Levitsky048d8712010-02-22 20:39:30 +0200216 /* Release one reference, we sure its not the last one here*/
217 kref_put(&dev->ref, blktrans_dev_release);
218
219 if (!dev->mtd)
220 goto unlock;
221
222 ret = !--dev->open && dev->tr->release ? dev->tr->release(dev) : 0;
223unlock:
224 mutex_unlock(&dev->lock);
225 blktrans_dev_put(dev);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200226 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return ret;
228}
229
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800230static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
231{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200232 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
233 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800234
Maxim Levitsky048d8712010-02-22 20:39:30 +0200235 if (!dev)
236 return ret;
237
238 mutex_lock(&dev->lock);
239
240 if (!dev->mtd)
241 goto unlock;
242
243 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
244unlock:
245 mutex_unlock(&dev->lock);
246 blktrans_dev_put(dev);
247 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800248}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Al Viroaf0e2a02008-03-02 10:35:06 -0500250static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 unsigned int cmd, unsigned long arg)
252{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200253 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
254 int ret = -ENXIO;
255
256 if (!dev)
257 return ret;
258
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200259 lock_kernel();
Maxim Levitsky048d8712010-02-22 20:39:30 +0200260 mutex_lock(&dev->lock);
261
262 if (!dev->mtd)
263 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 switch (cmd) {
266 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200267 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200268 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200270 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200272unlock:
273 mutex_unlock(&dev->lock);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200274 unlock_kernel();
Maxim Levitsky048d8712010-02-22 20:39:30 +0200275 blktrans_dev_put(dev);
276 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700279static const struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500281 .open = blktrans_open,
282 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200283 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800284 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
287int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
288{
289 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100290 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int last_devnum = -1;
292 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200293 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Jean Delvareb3561ea2007-05-08 00:30:46 -0700295 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800296 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 BUG();
298 }
299
Maxim Levitsky048d8712010-02-22 20:39:30 +0200300 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100301 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (new->devnum == -1) {
303 /* Use first free number */
304 if (d->devnum != last_devnum+1) {
305 /* Found a free devnum. Plug it in here */
306 new->devnum = last_devnum+1;
307 list_add_tail(&new->list, &d->list);
308 goto added;
309 }
310 } else if (d->devnum == new->devnum) {
311 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200312 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return -EBUSY;
314 } else if (d->devnum > new->devnum) {
315 /* Required number was free */
316 list_add_tail(&new->list, &d->list);
317 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 last_devnum = d->devnum;
320 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200321
322 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (new->devnum == -1)
324 new->devnum = last_devnum+1;
325
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000326 /* Check that the device and any partitions will get valid
327 * minor numbers and that the disk naming code below can cope
328 * with this number. */
329 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200330 (tr->part_bits && new->devnum >= 27 * 26)) {
331 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200332 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 list_add_tail(&new->list, &tr->devs);
336 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200337 mutex_unlock(&blktrans_ref_mutex);
338
David Woodhousece37ab42007-12-03 12:46:12 +0000339 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200340 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (!tr->writesect)
342 new->readonly = 1;
343
Maxim Levitskya8638622010-02-22 20:39:29 +0200344 /* Create gendisk */
345 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200347
348 if (!gd)
349 goto error2;
350
351 new->disk = gd;
352 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 gd->major = tr->major;
354 gd->first_minor = (new->devnum) << tr->part_bits;
355 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000356
Todd Poynor65a8de32005-07-29 20:42:07 +0100357 if (tr->part_bits)
358 if (new->devnum < 26)
359 snprintf(gd->disk_name, sizeof(gd->disk_name),
360 "%s%c", tr->name, 'a' + new->devnum);
361 else
362 snprintf(gd->disk_name, sizeof(gd->disk_name),
363 "%s%c%c", tr->name,
364 'a' - 1 + new->devnum / 26,
365 'a' + new->devnum % 26);
366 else
367 snprintf(gd->disk_name, sizeof(gd->disk_name),
368 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Richard Purdie19187672006-10-27 09:09:33 +0100370 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Maxim Levitskya8638622010-02-22 20:39:29 +0200372 /* Create the request queue */
373 spin_lock_init(&new->queue_lock);
374 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
375
376 if (!new->rq)
377 goto error3;
378
379 new->rq->queuedata = new;
380 blk_queue_logical_block_size(new->rq, tr->blksize);
381
382 if (tr->discard)
383 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
384 new->rq);
385
386 gd->queue = new->rq;
387
Maxim Levitsky048d8712010-02-22 20:39:30 +0200388 __get_mtd_device(new->mtd);
389 __module_get(tr->owner);
390
Maxim Levitskya8638622010-02-22 20:39:29 +0200391 /* Create processing thread */
392 /* TODO: workqueue ? */
393 new->thread = kthread_run(mtd_blktrans_thread, new,
394 "%s%d", tr->name, new->mtd->index);
395 if (IS_ERR(new->thread)) {
396 ret = PTR_ERR(new->thread);
397 goto error4;
398 }
David Woodhoused6948462009-04-05 07:38:33 -0700399 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (new->readonly)
402 set_disk_ro(gd, 1);
403
404 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200405
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200406 if (new->disk_attributes) {
407 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200408 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200409 WARN_ON(ret);
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200412error4:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200413 module_put(tr->owner);
414 __put_mtd_device(new->mtd);
Maxim Levitskya8638622010-02-22 20:39:29 +0200415 blk_cleanup_queue(new->rq);
416error3:
417 put_disk(new->disk);
418error2:
419 list_del(&new->list);
420error1:
421 kfree(new);
422 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
425int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
426{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200427 unsigned long flags;
428
Jean Delvareb3561ea2007-05-08 00:30:46 -0700429 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800430 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 BUG();
432 }
433
Maxim Levitsky026ec572010-02-22 20:39:33 +0200434 if (old->disk_attributes)
435 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
436 old->disk_attributes);
437
Maxim Levitskydba76c02010-07-28 18:53:16 +0300438 /* Stop new requests to arrive */
439 del_gendisk(old->disk);
440
441
Maxim Levitskya8638622010-02-22 20:39:29 +0200442 /* Stop the thread */
443 kthread_stop(old->thread);
444
Maxim Levitsky048d8712010-02-22 20:39:30 +0200445 /* Kill current requests */
446 spin_lock_irqsave(&old->queue_lock, flags);
447 old->rq->queuedata = NULL;
448 blk_start_queue(old->rq);
449 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200450
451 /* Ask trans driver for release to the mtd device */
452 mutex_lock(&old->lock);
453 if (old->open && old->tr->release) {
454 old->tr->release(old);
455 old->open = 0;
456 }
457
458 __put_mtd_device(old->mtd);
459 module_put(old->tr->owner);
460
461 /* At that point, we don't touch the mtd anymore */
462 old->mtd = NULL;
463
464 mutex_unlock(&old->lock);
465 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return 0;
467}
468
469static void blktrans_notify_remove(struct mtd_info *mtd)
470{
Chris Malley71a928c2008-05-19 20:11:50 +0100471 struct mtd_blktrans_ops *tr;
472 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Chris Malley71a928c2008-05-19 20:11:50 +0100474 list_for_each_entry(tr, &blktrans_majors, list)
475 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (dev->mtd == mtd)
477 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480static void blktrans_notify_add(struct mtd_info *mtd)
481{
Chris Malley71a928c2008-05-19 20:11:50 +0100482 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if (mtd->type == MTD_ABSENT)
485 return;
486
Chris Malley71a928c2008-05-19 20:11:50 +0100487 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
491static struct mtd_notifier blktrans_notifier = {
492 .add = blktrans_notify_add,
493 .remove = blktrans_notify_remove,
494};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
497{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000498 struct mtd_info *mtd;
499 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000501 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 registered, to prevent the link/init ordering from fucking
503 us over. */
504 if (!blktrans_notifier.list.next)
505 register_mtd_user(&blktrans_notifier);
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Ingo Molnar48b19262006-03-31 02:29:41 -0800508 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 ret = register_blkdev(tr->major, tr->name);
511 if (ret) {
512 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
513 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800514 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return ret;
516 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100517
Richard Purdie19187672006-10-27 09:09:33 +0100518 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 INIT_LIST_HEAD(&tr->devs);
521 list_add(&tr->list, &blktrans_majors);
522
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000523 mtd_for_each_device(mtd)
524 if (mtd->type != MTD_ABSENT)
525 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Ingo Molnar48b19262006-03-31 02:29:41 -0800527 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return 0;
529}
530
531int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
532{
Chris Malley71a928c2008-05-19 20:11:50 +0100533 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Ingo Molnar48b19262006-03-31 02:29:41 -0800535 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /* Remove it from the list of active majors */
538 list_del(&tr->list);
539
Chris Malley71a928c2008-05-19 20:11:50 +0100540 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800544 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200546 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return 0;
548}
549
550static void __exit mtd_blktrans_exit(void)
551{
552 /* No race here -- if someone's currently in register_mtd_blktrans
553 we're screwed anyway. */
554 if (blktrans_notifier.list.next)
555 unregister_mtd_user(&blktrans_notifier);
556}
557
558module_exit(mtd_blktrans_exit);
559
560EXPORT_SYMBOL_GPL(register_mtd_blktrans);
561EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
562EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
563EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
564
565MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
566MODULE_LICENSE("GPL");
567MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");