blob: 5073cbc796d86c3a04c4f22d83b01c2f01b1d114 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Ben Dooks356d70f2007-05-28 20:28:34 +010037#include "mtdcore.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ben Dooks356d70f2007-05-28 20:28:34 +010039static LIST_HEAD(blktrans_majors);
Maxim Levitsky048d8712010-02-22 20:39:30 +020040static DEFINE_MUTEX(blktrans_ref_mutex);
41
H Hartley Sweeten7f53f122011-01-11 18:46:10 -060042static void blktrans_dev_release(struct kref *kref)
Maxim Levitsky048d8712010-02-22 20:39:30 +020043{
44 struct mtd_blktrans_dev *dev =
45 container_of(kref, struct mtd_blktrans_dev, ref);
46
47 dev->disk->private_data = NULL;
Maxim Levitskye4d64ca2010-02-27 02:31:51 +020048 blk_cleanup_queue(dev->rq);
Maxim Levitsky048d8712010-02-22 20:39:30 +020049 put_disk(dev->disk);
50 list_del(&dev->list);
51 kfree(dev);
52}
53
54static struct mtd_blktrans_dev *blktrans_dev_get(struct gendisk *disk)
55{
56 struct mtd_blktrans_dev *dev;
57
58 mutex_lock(&blktrans_ref_mutex);
59 dev = disk->private_data;
60
61 if (!dev)
62 goto unlock;
63 kref_get(&dev->ref);
64unlock:
65 mutex_unlock(&blktrans_ref_mutex);
66 return dev;
67}
68
H Hartley Sweeten7f53f122011-01-11 18:46:10 -060069static void blktrans_dev_put(struct mtd_blktrans_dev *dev)
Maxim Levitsky048d8712010-02-22 20:39:30 +020070{
71 mutex_lock(&blktrans_ref_mutex);
72 kref_put(&dev->ref, blktrans_dev_release);
73 mutex_unlock(&blktrans_ref_mutex);
74}
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77static int do_blktrans_request(struct mtd_blktrans_ops *tr,
78 struct mtd_blktrans_dev *dev,
79 struct request *req)
80{
81 unsigned long block, nsect;
82 char *buf;
83
Tejun Heo83096eb2009-05-07 22:24:39 +090084 block = blk_rq_pos(req) << 9 >> tr->blkshift;
Tejun Heo1011c1b2009-05-07 22:24:45 +090085 nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
Richard Purdie19187672006-10-27 09:09:33 +010086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 buf = req->buffer;
88
Christoph Hellwig33659eb2010-08-07 18:17:56 +020089 if (req->cmd_type != REQ_TYPE_FS)
Tejun Heof06d9a22009-04-23 11:05:19 +090090 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Tejun Heo83096eb2009-05-07 22:24:39 +090092 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
93 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090094 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Christoph Hellwig33659eb2010-08-07 18:17:56 +020096 if (req->cmd_flags & REQ_DISCARD)
Christoph Hellwig1122a262009-09-30 13:52:12 +020097 return tr->discard(dev, block, nsect);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 switch(rq_data_dir(req)) {
100 case READ:
Richard Purdie19187672006-10-27 09:09:33 +0100101 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900103 return -EIO;
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100104 rq_flush_dcache_pages(req);
Tejun Heof06d9a22009-04-23 11:05:19 +0900105 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 case WRITE:
107 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +0900108 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100110 rq_flush_dcache_pages(req);
Richard Purdie19187672006-10-27 09:09:33 +0100111 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900113 return -EIO;
114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 default:
Jeff Garzik9a292302006-10-01 12:16:00 -0400116 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Tejun Heof06d9a22009-04-23 11:05:19 +0900117 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119}
120
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200121int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev)
122{
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200123 return dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200124}
125EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);
126
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300127static void mtd_blktrans_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300129 struct mtd_blktrans_dev *dev =
130 container_of(work, struct mtd_blktrans_dev, work);
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200131 struct mtd_blktrans_ops *tr = dev->tr;
Maxim Levitskya8638622010-02-22 20:39:29 +0200132 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900133 struct request *req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200134 int background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900137
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300138 while (1) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900139 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200141 dev->bg_stop = false;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900142 if (!req && !(req = blk_fetch_request(rq))) {
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200143 if (tr->background && !background_done) {
144 spin_unlock_irq(rq->queue_lock);
145 mutex_lock(&dev->lock);
146 tr->background(dev);
147 mutex_unlock(&dev->lock);
148 spin_lock_irq(rq->queue_lock);
149 /*
150 * Do background processing just once per idle
151 * period.
152 */
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200153 background_done = !dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200154 continue;
155 }
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300156 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 spin_unlock_irq(rq->queue_lock);
160
Ingo Molnar48b19262006-03-31 02:29:41 -0800161 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200162 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800163 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 spin_lock_irq(rq->queue_lock);
166
Tejun Heo1498ada2009-05-08 11:54:11 +0900167 if (!__blk_end_request_cur(req, res))
168 req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200169
170 background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900172
173 if (req)
174 __blk_end_request_all(req, -EIO);
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179static void mtd_blktrans_request(struct request_queue *rq)
180{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200181 struct mtd_blktrans_dev *dev;
182 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Maxim Levitsky048d8712010-02-22 20:39:30 +0200184 dev = rq->queuedata;
185
186 if (!dev)
187 while ((req = blk_fetch_request(rq)) != NULL)
188 __blk_end_request_all(req, -ENODEV);
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300189 else
190 queue_work(dev->wq, &dev->work);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200191}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Al Viroaf0e2a02008-03-02 10:35:06 -0500193static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200195 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200196 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Maxim Levitsky048d8712010-02-22 20:39:30 +0200198 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200199 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Maxim Levitsky048d8712010-02-22 20:39:30 +0200201 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Brian Norris342ff282011-11-07 15:51:05 -0800203 if (dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200204 goto unlock;
Maxim Levitsky008c7512010-10-15 17:20:43 +0200205
206 kref_get(&dev->ref);
207 __module_get(dev->tr->owner);
208
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300209 if (!dev->mtd)
210 goto unlock;
211
212 if (dev->tr->open) {
213 ret = dev->tr->open(dev);
214 if (ret)
215 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200217
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300218 ret = __get_mtd_device(dev->mtd);
219 if (ret)
220 goto error_release;
Alexander Stein70d50982012-01-10 13:26:58 +0100221 dev->file_mode = mode;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300222
Maxim Levitsky048d8712010-02-22 20:39:30 +0200223unlock:
Brian Norris342ff282011-11-07 15:51:05 -0800224 dev->open++;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200225 mutex_unlock(&dev->lock);
226 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return ret;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300228
229error_release:
230 if (dev->tr->release)
231 dev->tr->release(dev);
232error_put:
233 module_put(dev->tr->owner);
234 kref_put(&dev->ref, blktrans_dev_release);
235 mutex_unlock(&dev->lock);
236 blktrans_dev_put(dev);
237 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Al Virodb2a1442013-05-05 21:52:57 -0400240static void blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200242 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Maxim Levitsky048d8712010-02-22 20:39:30 +0200244 if (!dev)
Al Virodb2a1442013-05-05 21:52:57 -0400245 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Maxim Levitsky048d8712010-02-22 20:39:30 +0200247 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Maxim Levitsky008c7512010-10-15 17:20:43 +0200249 if (--dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200250 goto unlock;
251
Maxim Levitsky008c7512010-10-15 17:20:43 +0200252 kref_put(&dev->ref, blktrans_dev_release);
253 module_put(dev->tr->owner);
254
255 if (dev->mtd) {
Al Viroa8ca8892013-05-05 21:31:22 -0400256 if (dev->tr->release)
257 dev->tr->release(dev);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200258 __put_mtd_device(dev->mtd);
259 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200260unlock:
261 mutex_unlock(&dev->lock);
262 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800265static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
266{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200267 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
268 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800269
Maxim Levitsky048d8712010-02-22 20:39:30 +0200270 if (!dev)
271 return ret;
272
273 mutex_lock(&dev->lock);
274
275 if (!dev->mtd)
276 goto unlock;
277
278 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
279unlock:
280 mutex_unlock(&dev->lock);
281 blktrans_dev_put(dev);
282 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800283}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Al Viroaf0e2a02008-03-02 10:35:06 -0500285static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 unsigned int cmd, unsigned long arg)
287{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200288 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
289 int ret = -ENXIO;
290
291 if (!dev)
292 return ret;
293
294 mutex_lock(&dev->lock);
295
296 if (!dev->mtd)
297 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 switch (cmd) {
300 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200301 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200302 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200304 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200306unlock:
307 mutex_unlock(&dev->lock);
308 blktrans_dev_put(dev);
309 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300312static const struct block_device_operations mtd_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500314 .open = blktrans_open,
315 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200316 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800317 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318};
319
320int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
321{
322 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100323 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 int last_devnum = -1;
325 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200326 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Jean Delvareb3561ea2007-05-08 00:30:46 -0700328 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800329 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 BUG();
331 }
332
Maxim Levitsky048d8712010-02-22 20:39:30 +0200333 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100334 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (new->devnum == -1) {
336 /* Use first free number */
337 if (d->devnum != last_devnum+1) {
338 /* Found a free devnum. Plug it in here */
339 new->devnum = last_devnum+1;
340 list_add_tail(&new->list, &d->list);
341 goto added;
342 }
343 } else if (d->devnum == new->devnum) {
344 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200345 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return -EBUSY;
347 } else if (d->devnum > new->devnum) {
348 /* Required number was free */
349 list_add_tail(&new->list, &d->list);
350 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 last_devnum = d->devnum;
353 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200354
355 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (new->devnum == -1)
357 new->devnum = last_devnum+1;
358
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000359 /* Check that the device and any partitions will get valid
360 * minor numbers and that the disk naming code below can cope
361 * with this number. */
362 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200363 (tr->part_bits && new->devnum >= 27 * 26)) {
364 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200365 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 list_add_tail(&new->list, &tr->devs);
369 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200370 mutex_unlock(&blktrans_ref_mutex);
371
David Woodhousece37ab42007-12-03 12:46:12 +0000372 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200373 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (!tr->writesect)
375 new->readonly = 1;
376
Maxim Levitskya8638622010-02-22 20:39:29 +0200377 /* Create gendisk */
378 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200380
381 if (!gd)
382 goto error2;
383
384 new->disk = gd;
385 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 gd->major = tr->major;
387 gd->first_minor = (new->devnum) << tr->part_bits;
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300388 gd->fops = &mtd_block_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000389
Todd Poynor65a8de32005-07-29 20:42:07 +0100390 if (tr->part_bits)
391 if (new->devnum < 26)
392 snprintf(gd->disk_name, sizeof(gd->disk_name),
393 "%s%c", tr->name, 'a' + new->devnum);
394 else
395 snprintf(gd->disk_name, sizeof(gd->disk_name),
396 "%s%c%c", tr->name,
397 'a' - 1 + new->devnum / 26,
398 'a' + new->devnum % 26);
399 else
400 snprintf(gd->disk_name, sizeof(gd->disk_name),
401 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Richard Purdie19187672006-10-27 09:09:33 +0100403 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Maxim Levitskya8638622010-02-22 20:39:29 +0200405 /* Create the request queue */
406 spin_lock_init(&new->queue_lock);
407 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
408
409 if (!new->rq)
410 goto error3;
411
412 new->rq->queuedata = new;
413 blk_queue_logical_block_size(new->rq, tr->blksize);
414
Dan McGee16f7eca2011-09-28 00:21:42 -0500415 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
416
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200417 if (tr->discard) {
418 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
419 new->rq->limits.max_discard_sectors = UINT_MAX;
420 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200421
422 gd->queue = new->rq;
423
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300424 /* Create processing workqueue */
425 new->wq = alloc_workqueue("%s%d", 0, 0,
426 tr->name, new->mtd->index);
427 if (!new->wq)
Maxim Levitskya8638622010-02-22 20:39:29 +0200428 goto error4;
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300429 INIT_WORK(&new->work, mtd_blktrans_work);
430
David Woodhoused6948462009-04-05 07:38:33 -0700431 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 if (new->readonly)
434 set_disk_ro(gd, 1);
435
436 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200437
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200438 if (new->disk_attributes) {
439 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200440 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200441 WARN_ON(ret);
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200444error4:
445 blk_cleanup_queue(new->rq);
446error3:
447 put_disk(new->disk);
448error2:
449 list_del(&new->list);
450error1:
Maxim Levitskya8638622010-02-22 20:39:29 +0200451 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
455{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200456 unsigned long flags;
457
Jean Delvareb3561ea2007-05-08 00:30:46 -0700458 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800459 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 BUG();
461 }
462
Maxim Levitsky026ec572010-02-22 20:39:33 +0200463 if (old->disk_attributes)
464 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
465 old->disk_attributes);
466
Maxim Levitskydba76c02010-07-28 18:53:16 +0300467 /* Stop new requests to arrive */
468 del_gendisk(old->disk);
469
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300470 /* Stop workqueue. This will perform any pending request. */
471 destroy_workqueue(old->wq);
Maxim Levitskya8638622010-02-22 20:39:29 +0200472
Maxim Levitsky048d8712010-02-22 20:39:30 +0200473 /* Kill current requests */
474 spin_lock_irqsave(&old->queue_lock, flags);
475 old->rq->queuedata = NULL;
476 blk_start_queue(old->rq);
477 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200478
Maxim Levitsky008c7512010-10-15 17:20:43 +0200479 /* If the device is currently open, tell trans driver to close it,
480 then put mtd device, and don't touch it again */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200481 mutex_lock(&old->lock);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200482 if (old->open) {
483 if (old->tr->release)
484 old->tr->release(old);
485 __put_mtd_device(old->mtd);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200486 }
487
Maxim Levitsky048d8712010-02-22 20:39:30 +0200488 old->mtd = NULL;
489
490 mutex_unlock(&old->lock);
491 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return 0;
493}
494
495static void blktrans_notify_remove(struct mtd_info *mtd)
496{
Chris Malley71a928c2008-05-19 20:11:50 +0100497 struct mtd_blktrans_ops *tr;
498 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Chris Malley71a928c2008-05-19 20:11:50 +0100500 list_for_each_entry(tr, &blktrans_majors, list)
501 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (dev->mtd == mtd)
503 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
506static void blktrans_notify_add(struct mtd_info *mtd)
507{
Chris Malley71a928c2008-05-19 20:11:50 +0100508 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 if (mtd->type == MTD_ABSENT)
511 return;
512
Chris Malley71a928c2008-05-19 20:11:50 +0100513 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517static struct mtd_notifier blktrans_notifier = {
518 .add = blktrans_notify_add,
519 .remove = blktrans_notify_remove,
520};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
523{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000524 struct mtd_info *mtd;
525 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000527 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 registered, to prevent the link/init ordering from fucking
529 us over. */
530 if (!blktrans_notifier.list.next)
531 register_mtd_user(&blktrans_notifier);
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Ingo Molnar48b19262006-03-31 02:29:41 -0800534 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 ret = register_blkdev(tr->major, tr->name);
Frank Li6fe4c592010-10-26 11:02:19 +0800537 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
539 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800540 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return ret;
542 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100543
Frank Li6fe4c592010-10-26 11:02:19 +0800544 if (ret)
545 tr->major = ret;
546
Richard Purdie19187672006-10-27 09:09:33 +0100547 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 INIT_LIST_HEAD(&tr->devs);
550 list_add(&tr->list, &blktrans_majors);
551
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000552 mtd_for_each_device(mtd)
553 if (mtd->type != MTD_ABSENT)
554 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Ingo Molnar48b19262006-03-31 02:29:41 -0800556 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return 0;
558}
559
560int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
561{
Chris Malley71a928c2008-05-19 20:11:50 +0100562 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Ingo Molnar48b19262006-03-31 02:29:41 -0800564 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /* Remove it from the list of active majors */
567 list_del(&tr->list);
568
Chris Malley71a928c2008-05-19 20:11:50 +0100569 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800573 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200575 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return 0;
577}
578
579static void __exit mtd_blktrans_exit(void)
580{
581 /* No race here -- if someone's currently in register_mtd_blktrans
582 we're screwed anyway. */
583 if (blktrans_notifier.list.next)
584 unregister_mtd_user(&blktrans_notifier);
585}
586
587module_exit(mtd_blktrans_exit);
588
589EXPORT_SYMBOL_GPL(register_mtd_blktrans);
590EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
591EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
592EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
593
594MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
595MODULE_LICENSE("GPL");
596MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");