blob: 63790e975d204087feee6675a1deb1c68f3c6b1f [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);
Maxim Levitsky12aebf32010-10-15 17:20:45 +0200136
137 if (kthread_should_stop())
138 set_current_state(TASK_RUNNING);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 continue;
144 }
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 spin_unlock_irq(rq->queue_lock);
147
Ingo Molnar48b19262006-03-31 02:29:41 -0800148 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200149 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800150 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 spin_lock_irq(rq->queue_lock);
153
Tejun Heo1498ada2009-05-08 11:54:11 +0900154 if (!__blk_end_request_cur(req, res))
155 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900157
158 if (req)
159 __blk_end_request_all(req, -EIO);
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 spin_unlock_irq(rq->queue_lock);
162
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166static void mtd_blktrans_request(struct request_queue *rq)
167{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200168 struct mtd_blktrans_dev *dev;
169 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Maxim Levitsky048d8712010-02-22 20:39:30 +0200171 dev = rq->queuedata;
172
173 if (!dev)
174 while ((req = blk_fetch_request(rq)) != NULL)
175 __blk_end_request_all(req, -ENODEV);
176 else
177 wake_up_process(dev->thread);
178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Al Viroaf0e2a02008-03-02 10:35:06 -0500180static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200182 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200183 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Maxim Levitsky048d8712010-02-22 20:39:30 +0200185 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200186 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Maxim Levitsky048d8712010-02-22 20:39:30 +0200188 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Maxim Levitsky008c7512010-10-15 17:20:43 +0200190 if (dev->open++)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200191 goto unlock;
Maxim Levitsky008c7512010-10-15 17:20:43 +0200192
193 kref_get(&dev->ref);
194 __module_get(dev->tr->owner);
195
196 if (dev->mtd) {
197 ret = dev->tr->open ? dev->tr->open(dev) : 0;
198 __get_mtd_device(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200200
Maxim Levitsky048d8712010-02-22 20:39:30 +0200201unlock:
202 mutex_unlock(&dev->lock);
203 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return ret;
205}
206
Al Viroaf0e2a02008-03-02 10:35:06 -0500207static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200209 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200210 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Maxim Levitsky048d8712010-02-22 20:39:30 +0200212 if (!dev)
213 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Maxim Levitsky048d8712010-02-22 20:39:30 +0200215 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Maxim Levitsky008c7512010-10-15 17:20:43 +0200217 if (--dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200218 goto unlock;
219
Maxim Levitsky008c7512010-10-15 17:20:43 +0200220 kref_put(&dev->ref, blktrans_dev_release);
221 module_put(dev->tr->owner);
222
223 if (dev->mtd) {
224 ret = dev->tr->release ? dev->tr->release(dev) : 0;
225 __put_mtd_device(dev->mtd);
226 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200227unlock:
228 mutex_unlock(&dev->lock);
229 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return ret;
231}
232
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800233static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
234{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200235 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
236 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800237
Maxim Levitsky048d8712010-02-22 20:39:30 +0200238 if (!dev)
239 return ret;
240
241 mutex_lock(&dev->lock);
242
243 if (!dev->mtd)
244 goto unlock;
245
246 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
247unlock:
248 mutex_unlock(&dev->lock);
249 blktrans_dev_put(dev);
250 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800251}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Al Viroaf0e2a02008-03-02 10:35:06 -0500253static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 unsigned int cmd, unsigned long arg)
255{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200256 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
257 int ret = -ENXIO;
258
259 if (!dev)
260 return ret;
261
262 mutex_lock(&dev->lock);
263
264 if (!dev->mtd)
265 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 switch (cmd) {
268 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200269 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200270 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200272 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200274unlock:
275 mutex_unlock(&dev->lock);
276 blktrans_dev_put(dev);
277 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700280static const struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500282 .open = blktrans_open,
283 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200284 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800285 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
288int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
289{
290 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100291 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int last_devnum = -1;
293 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200294 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Jean Delvareb3561ea2007-05-08 00:30:46 -0700296 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800297 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 BUG();
299 }
300
Maxim Levitsky048d8712010-02-22 20:39:30 +0200301 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100302 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (new->devnum == -1) {
304 /* Use first free number */
305 if (d->devnum != last_devnum+1) {
306 /* Found a free devnum. Plug it in here */
307 new->devnum = last_devnum+1;
308 list_add_tail(&new->list, &d->list);
309 goto added;
310 }
311 } else if (d->devnum == new->devnum) {
312 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200313 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return -EBUSY;
315 } else if (d->devnum > new->devnum) {
316 /* Required number was free */
317 list_add_tail(&new->list, &d->list);
318 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 last_devnum = d->devnum;
321 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200322
323 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (new->devnum == -1)
325 new->devnum = last_devnum+1;
326
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000327 /* Check that the device and any partitions will get valid
328 * minor numbers and that the disk naming code below can cope
329 * with this number. */
330 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200331 (tr->part_bits && new->devnum >= 27 * 26)) {
332 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200333 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 list_add_tail(&new->list, &tr->devs);
337 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200338 mutex_unlock(&blktrans_ref_mutex);
339
David Woodhousece37ab42007-12-03 12:46:12 +0000340 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200341 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (!tr->writesect)
343 new->readonly = 1;
344
Maxim Levitskya8638622010-02-22 20:39:29 +0200345 /* Create gendisk */
346 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200348
349 if (!gd)
350 goto error2;
351
352 new->disk = gd;
353 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 gd->major = tr->major;
355 gd->first_minor = (new->devnum) << tr->part_bits;
356 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000357
Todd Poynor65a8de32005-07-29 20:42:07 +0100358 if (tr->part_bits)
359 if (new->devnum < 26)
360 snprintf(gd->disk_name, sizeof(gd->disk_name),
361 "%s%c", tr->name, 'a' + new->devnum);
362 else
363 snprintf(gd->disk_name, sizeof(gd->disk_name),
364 "%s%c%c", tr->name,
365 'a' - 1 + new->devnum / 26,
366 'a' + new->devnum % 26);
367 else
368 snprintf(gd->disk_name, sizeof(gd->disk_name),
369 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Richard Purdie19187672006-10-27 09:09:33 +0100371 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Maxim Levitskya8638622010-02-22 20:39:29 +0200373 /* Create the request queue */
374 spin_lock_init(&new->queue_lock);
375 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
376
377 if (!new->rq)
378 goto error3;
379
380 new->rq->queuedata = new;
381 blk_queue_logical_block_size(new->rq, tr->blksize);
382
383 if (tr->discard)
384 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
385 new->rq);
386
387 gd->queue = new->rq;
388
389 /* Create processing thread */
390 /* TODO: workqueue ? */
391 new->thread = kthread_run(mtd_blktrans_thread, new,
392 "%s%d", tr->name, new->mtd->index);
393 if (IS_ERR(new->thread)) {
394 ret = PTR_ERR(new->thread);
395 goto error4;
396 }
David Woodhoused6948462009-04-05 07:38:33 -0700397 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 if (new->readonly)
400 set_disk_ro(gd, 1);
401
402 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200403
Maxim Levitsky133fa8c72010-02-26 22:08:40 +0200404 if (new->disk_attributes) {
405 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200406 new->disk_attributes);
Maxim Levitsky133fa8c72010-02-26 22:08:40 +0200407 WARN_ON(ret);
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200410error4:
411 blk_cleanup_queue(new->rq);
412error3:
413 put_disk(new->disk);
414error2:
415 list_del(&new->list);
416error1:
417 kfree(new);
418 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
421int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
422{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200423 unsigned long flags;
424
Jean Delvareb3561ea2007-05-08 00:30:46 -0700425 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800426 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 BUG();
428 }
429
Maxim Levitsky026ec572010-02-22 20:39:33 +0200430 if (old->disk_attributes)
431 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
432 old->disk_attributes);
433
Maxim Levitskydba76c02010-07-28 18:53:16 +0300434 /* Stop new requests to arrive */
435 del_gendisk(old->disk);
436
437
Maxim Levitskya8638622010-02-22 20:39:29 +0200438 /* Stop the thread */
439 kthread_stop(old->thread);
440
Maxim Levitsky048d8712010-02-22 20:39:30 +0200441 /* Kill current requests */
442 spin_lock_irqsave(&old->queue_lock, flags);
443 old->rq->queuedata = NULL;
444 blk_start_queue(old->rq);
445 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200446
Maxim Levitsky008c7512010-10-15 17:20:43 +0200447 /* If the device is currently open, tell trans driver to close it,
448 then put mtd device, and don't touch it again */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200449 mutex_lock(&old->lock);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200450 if (old->open) {
451 if (old->tr->release)
452 old->tr->release(old);
453 __put_mtd_device(old->mtd);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200454 }
455
Maxim Levitsky048d8712010-02-22 20:39:30 +0200456 old->mtd = NULL;
457
458 mutex_unlock(&old->lock);
459 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
461}
462
463static void blktrans_notify_remove(struct mtd_info *mtd)
464{
Chris Malley71a928c2008-05-19 20:11:50 +0100465 struct mtd_blktrans_ops *tr;
466 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Chris Malley71a928c2008-05-19 20:11:50 +0100468 list_for_each_entry(tr, &blktrans_majors, list)
469 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (dev->mtd == mtd)
471 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
474static void blktrans_notify_add(struct mtd_info *mtd)
475{
Chris Malley71a928c2008-05-19 20:11:50 +0100476 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (mtd->type == MTD_ABSENT)
479 return;
480
Chris Malley71a928c2008-05-19 20:11:50 +0100481 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485static struct mtd_notifier blktrans_notifier = {
486 .add = blktrans_notify_add,
487 .remove = blktrans_notify_remove,
488};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
491{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000492 struct mtd_info *mtd;
493 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000495 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 registered, to prevent the link/init ordering from fucking
497 us over. */
498 if (!blktrans_notifier.list.next)
499 register_mtd_user(&blktrans_notifier);
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Ingo Molnar48b19262006-03-31 02:29:41 -0800502 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 ret = register_blkdev(tr->major, tr->name);
Frank Li6fe4c592010-10-26 11:02:19 +0800505 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
507 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800508 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return ret;
510 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100511
Frank Li6fe4c592010-10-26 11:02:19 +0800512 if (ret)
513 tr->major = ret;
514
Richard Purdie19187672006-10-27 09:09:33 +0100515 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 INIT_LIST_HEAD(&tr->devs);
518 list_add(&tr->list, &blktrans_majors);
519
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000520 mtd_for_each_device(mtd)
521 if (mtd->type != MTD_ABSENT)
522 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Ingo Molnar48b19262006-03-31 02:29:41 -0800524 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return 0;
526}
527
528int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
529{
Chris Malley71a928c2008-05-19 20:11:50 +0100530 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Ingo Molnar48b19262006-03-31 02:29:41 -0800532 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /* Remove it from the list of active majors */
535 list_del(&tr->list);
536
Chris Malley71a928c2008-05-19 20:11:50 +0100537 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800541 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200543 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return 0;
545}
546
547static void __exit mtd_blktrans_exit(void)
548{
549 /* No race here -- if someone's currently in register_mtd_blktrans
550 we're screwed anyway. */
551 if (blktrans_notifier.list.next)
552 unregister_mtd_user(&blktrans_notifier);
553}
554
555module_exit(mtd_blktrans_exit);
556
557EXPORT_SYMBOL_GPL(register_mtd_blktrans);
558EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
559EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
560EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
561
562MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
563MODULE_LICENSE("GPL");
564MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");