blob: d2f0da91a5bd552371abe266843bdb9562181aa2 [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>
Ingo Molnar48b19262006-03-31 02:29:41 -080033#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Ben Dooks356d70f2007-05-28 20:28:34 +010036#include "mtdcore.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Ben Dooks356d70f2007-05-28 20:28:34 +010038static LIST_HEAD(blktrans_majors);
Maxim Levitsky048d8712010-02-22 20:39:30 +020039static DEFINE_MUTEX(blktrans_ref_mutex);
40
H Hartley Sweeten7f53f122011-01-11 18:46:10 -060041static void blktrans_dev_release(struct kref *kref)
Maxim Levitsky048d8712010-02-22 20:39:30 +020042{
43 struct mtd_blktrans_dev *dev =
44 container_of(kref, struct mtd_blktrans_dev, ref);
45
46 dev->disk->private_data = NULL;
Maxim Levitskye4d64ca2010-02-27 02:31:51 +020047 blk_cleanup_queue(dev->rq);
Maxim Levitsky048d8712010-02-22 20:39:30 +020048 put_disk(dev->disk);
49 list_del(&dev->list);
50 kfree(dev);
51}
52
53static struct mtd_blktrans_dev *blktrans_dev_get(struct gendisk *disk)
54{
55 struct mtd_blktrans_dev *dev;
56
57 mutex_lock(&blktrans_ref_mutex);
58 dev = disk->private_data;
59
60 if (!dev)
61 goto unlock;
62 kref_get(&dev->ref);
63unlock:
64 mutex_unlock(&blktrans_ref_mutex);
65 return dev;
66}
67
H Hartley Sweeten7f53f122011-01-11 18:46:10 -060068static void blktrans_dev_put(struct mtd_blktrans_dev *dev)
Maxim Levitsky048d8712010-02-22 20:39:30 +020069{
70 mutex_lock(&blktrans_ref_mutex);
71 kref_put(&dev->ref, blktrans_dev_release);
72 mutex_unlock(&blktrans_ref_mutex);
73}
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static int do_blktrans_request(struct mtd_blktrans_ops *tr,
77 struct mtd_blktrans_dev *dev,
78 struct request *req)
79{
80 unsigned long block, nsect;
81 char *buf;
82
Tejun Heo83096eb2009-05-07 22:24:39 +090083 block = blk_rq_pos(req) << 9 >> tr->blkshift;
Tejun Heo1011c1b2009-05-07 22:24:45 +090084 nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
Richard Purdie19187672006-10-27 09:09:33 +010085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 buf = req->buffer;
87
Christoph Hellwig33659eb2010-08-07 18:17:56 +020088 if (req->cmd_type != REQ_TYPE_FS)
Tejun Heof06d9a22009-04-23 11:05:19 +090089 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Roman Peniaev566c0d62014-03-08 21:59:14 +090091 if (req->cmd_flags & REQ_FLUSH)
92 return tr->flush(dev);
93
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
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200123int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev)
124{
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200125 return dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200126}
127EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);
128
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300129static void mtd_blktrans_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300131 struct mtd_blktrans_dev *dev =
132 container_of(work, struct mtd_blktrans_dev, work);
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200133 struct mtd_blktrans_ops *tr = dev->tr;
Maxim Levitskya8638622010-02-22 20:39:29 +0200134 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900135 struct request *req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200136 int background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900139
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300140 while (1) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900141 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200143 dev->bg_stop = false;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900144 if (!req && !(req = blk_fetch_request(rq))) {
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200145 if (tr->background && !background_done) {
146 spin_unlock_irq(rq->queue_lock);
147 mutex_lock(&dev->lock);
148 tr->background(dev);
149 mutex_unlock(&dev->lock);
150 spin_lock_irq(rq->queue_lock);
151 /*
152 * Do background processing just once per idle
153 * period.
154 */
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200155 background_done = !dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200156 continue;
157 }
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300158 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 spin_unlock_irq(rq->queue_lock);
162
Ingo Molnar48b19262006-03-31 02:29:41 -0800163 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200164 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800165 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 spin_lock_irq(rq->queue_lock);
168
Tejun Heo1498ada2009-05-08 11:54:11 +0900169 if (!__blk_end_request_cur(req, res))
170 req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200171
172 background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900174
175 if (req)
176 __blk_end_request_all(req, -EIO);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181static void mtd_blktrans_request(struct request_queue *rq)
182{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200183 struct mtd_blktrans_dev *dev;
184 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Maxim Levitsky048d8712010-02-22 20:39:30 +0200186 dev = rq->queuedata;
187
188 if (!dev)
189 while ((req = blk_fetch_request(rq)) != NULL)
190 __blk_end_request_all(req, -ENODEV);
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300191 else
192 queue_work(dev->wq, &dev->work);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200193}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Al Viroaf0e2a02008-03-02 10:35:06 -0500195static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200197 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200198 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Maxim Levitsky048d8712010-02-22 20:39:30 +0200200 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200201 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Maxim Levitsky048d8712010-02-22 20:39:30 +0200203 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Brian Norris342ff282011-11-07 15:51:05 -0800205 if (dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200206 goto unlock;
Maxim Levitsky008c7512010-10-15 17:20:43 +0200207
208 kref_get(&dev->ref);
209 __module_get(dev->tr->owner);
210
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300211 if (!dev->mtd)
212 goto unlock;
213
214 if (dev->tr->open) {
215 ret = dev->tr->open(dev);
216 if (ret)
217 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200219
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300220 ret = __get_mtd_device(dev->mtd);
221 if (ret)
222 goto error_release;
Alexander Stein70d50982012-01-10 13:26:58 +0100223 dev->file_mode = mode;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300224
Maxim Levitsky048d8712010-02-22 20:39:30 +0200225unlock:
Brian Norris342ff282011-11-07 15:51:05 -0800226 dev->open++;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200227 mutex_unlock(&dev->lock);
228 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return ret;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300230
231error_release:
232 if (dev->tr->release)
233 dev->tr->release(dev);
234error_put:
235 module_put(dev->tr->owner);
236 kref_put(&dev->ref, blktrans_dev_release);
237 mutex_unlock(&dev->lock);
238 blktrans_dev_put(dev);
239 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Al Virodb2a1442013-05-05 21:52:57 -0400242static void blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200244 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Maxim Levitsky048d8712010-02-22 20:39:30 +0200246 if (!dev)
Al Virodb2a1442013-05-05 21:52:57 -0400247 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Maxim Levitsky048d8712010-02-22 20:39:30 +0200249 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Maxim Levitsky008c7512010-10-15 17:20:43 +0200251 if (--dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200252 goto unlock;
253
Maxim Levitsky008c7512010-10-15 17:20:43 +0200254 kref_put(&dev->ref, blktrans_dev_release);
255 module_put(dev->tr->owner);
256
257 if (dev->mtd) {
Al Viroa8ca8892013-05-05 21:31:22 -0400258 if (dev->tr->release)
259 dev->tr->release(dev);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200260 __put_mtd_device(dev->mtd);
261 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200262unlock:
263 mutex_unlock(&dev->lock);
264 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800267static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
268{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200269 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
270 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800271
Maxim Levitsky048d8712010-02-22 20:39:30 +0200272 if (!dev)
273 return ret;
274
275 mutex_lock(&dev->lock);
276
277 if (!dev->mtd)
278 goto unlock;
279
280 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
281unlock:
282 mutex_unlock(&dev->lock);
283 blktrans_dev_put(dev);
284 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800285}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Al Viroaf0e2a02008-03-02 10:35:06 -0500287static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 unsigned int cmd, unsigned long arg)
289{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200290 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
291 int ret = -ENXIO;
292
293 if (!dev)
294 return ret;
295
296 mutex_lock(&dev->lock);
297
298 if (!dev->mtd)
299 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 switch (cmd) {
302 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200303 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200306 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200308unlock:
309 mutex_unlock(&dev->lock);
310 blktrans_dev_put(dev);
311 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Ezequiel Garcia9329c5e2012-11-09 12:36:35 -0300314static const struct block_device_operations mtd_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500316 .open = blktrans_open,
317 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200318 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800319 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
322int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
323{
324 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100325 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 int last_devnum = -1;
327 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200328 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Jean Delvareb3561ea2007-05-08 00:30:46 -0700330 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800331 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 BUG();
333 }
334
Maxim Levitsky048d8712010-02-22 20:39:30 +0200335 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100336 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (new->devnum == -1) {
338 /* Use first free number */
339 if (d->devnum != last_devnum+1) {
340 /* Found a free devnum. Plug it in here */
341 new->devnum = last_devnum+1;
342 list_add_tail(&new->list, &d->list);
343 goto added;
344 }
345 } else if (d->devnum == new->devnum) {
346 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200347 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return -EBUSY;
349 } else if (d->devnum > new->devnum) {
350 /* Required number was free */
351 list_add_tail(&new->list, &d->list);
352 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 last_devnum = d->devnum;
355 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200356
357 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (new->devnum == -1)
359 new->devnum = last_devnum+1;
360
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000361 /* Check that the device and any partitions will get valid
362 * minor numbers and that the disk naming code below can cope
363 * with this number. */
364 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200365 (tr->part_bits && new->devnum >= 27 * 26)) {
366 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200367 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 list_add_tail(&new->list, &tr->devs);
371 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200372 mutex_unlock(&blktrans_ref_mutex);
373
David Woodhousece37ab42007-12-03 12:46:12 +0000374 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200375 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (!tr->writesect)
377 new->readonly = 1;
378
Maxim Levitskya8638622010-02-22 20:39:29 +0200379 /* Create gendisk */
380 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200382
383 if (!gd)
384 goto error2;
385
386 new->disk = gd;
387 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 gd->major = tr->major;
389 gd->first_minor = (new->devnum) << tr->part_bits;
Ezequiel Garcia9329c5e2012-11-09 12:36:35 -0300390 gd->fops = &mtd_block_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000391
Todd Poynor65a8de32005-07-29 20:42:07 +0100392 if (tr->part_bits)
393 if (new->devnum < 26)
394 snprintf(gd->disk_name, sizeof(gd->disk_name),
395 "%s%c", tr->name, 'a' + new->devnum);
396 else
397 snprintf(gd->disk_name, sizeof(gd->disk_name),
398 "%s%c%c", tr->name,
399 'a' - 1 + new->devnum / 26,
400 'a' + new->devnum % 26);
401 else
402 snprintf(gd->disk_name, sizeof(gd->disk_name),
403 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Richard Purdie19187672006-10-27 09:09:33 +0100405 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Maxim Levitskya8638622010-02-22 20:39:29 +0200407 /* Create the request queue */
408 spin_lock_init(&new->queue_lock);
409 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
410
411 if (!new->rq)
412 goto error3;
413
Roman Peniaev566c0d62014-03-08 21:59:14 +0900414 if (tr->flush)
415 blk_queue_flush(new->rq, REQ_FLUSH);
416
Maxim Levitskya8638622010-02-22 20:39:29 +0200417 new->rq->queuedata = new;
418 blk_queue_logical_block_size(new->rq, tr->blksize);
419
Dan McGee16f7eca2011-09-28 00:21:42 -0500420 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
421
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200422 if (tr->discard) {
423 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
424 new->rq->limits.max_discard_sectors = UINT_MAX;
425 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200426
427 gd->queue = new->rq;
428
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300429 /* Create processing workqueue */
430 new->wq = alloc_workqueue("%s%d", 0, 0,
431 tr->name, new->mtd->index);
432 if (!new->wq)
Maxim Levitskya8638622010-02-22 20:39:29 +0200433 goto error4;
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300434 INIT_WORK(&new->work, mtd_blktrans_work);
435
David Woodhoused6948462009-04-05 07:38:33 -0700436 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (new->readonly)
439 set_disk_ro(gd, 1);
440
441 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200442
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200443 if (new->disk_attributes) {
444 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200445 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200446 WARN_ON(ret);
447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200449error4:
450 blk_cleanup_queue(new->rq);
451error3:
452 put_disk(new->disk);
453error2:
454 list_del(&new->list);
455error1:
Maxim Levitskya8638622010-02-22 20:39:29 +0200456 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
460{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200461 unsigned long flags;
462
Jean Delvareb3561ea2007-05-08 00:30:46 -0700463 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800464 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 BUG();
466 }
467
Maxim Levitsky026ec572010-02-22 20:39:33 +0200468 if (old->disk_attributes)
469 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
470 old->disk_attributes);
471
Maxim Levitskydba76c02010-07-28 18:53:16 +0300472 /* Stop new requests to arrive */
473 del_gendisk(old->disk);
474
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300475 /* Stop workqueue. This will perform any pending request. */
476 destroy_workqueue(old->wq);
Maxim Levitskya8638622010-02-22 20:39:29 +0200477
Maxim Levitsky048d8712010-02-22 20:39:30 +0200478 /* Kill current requests */
479 spin_lock_irqsave(&old->queue_lock, flags);
480 old->rq->queuedata = NULL;
481 blk_start_queue(old->rq);
482 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200483
Maxim Levitsky008c7512010-10-15 17:20:43 +0200484 /* If the device is currently open, tell trans driver to close it,
485 then put mtd device, and don't touch it again */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200486 mutex_lock(&old->lock);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200487 if (old->open) {
488 if (old->tr->release)
489 old->tr->release(old);
490 __put_mtd_device(old->mtd);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200491 }
492
Maxim Levitsky048d8712010-02-22 20:39:30 +0200493 old->mtd = NULL;
494
495 mutex_unlock(&old->lock);
496 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return 0;
498}
499
500static void blktrans_notify_remove(struct mtd_info *mtd)
501{
Chris Malley71a928c2008-05-19 20:11:50 +0100502 struct mtd_blktrans_ops *tr;
503 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Chris Malley71a928c2008-05-19 20:11:50 +0100505 list_for_each_entry(tr, &blktrans_majors, list)
506 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (dev->mtd == mtd)
508 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511static void blktrans_notify_add(struct mtd_info *mtd)
512{
Chris Malley71a928c2008-05-19 20:11:50 +0100513 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 if (mtd->type == MTD_ABSENT)
516 return;
517
Chris Malley71a928c2008-05-19 20:11:50 +0100518 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522static struct mtd_notifier blktrans_notifier = {
523 .add = blktrans_notify_add,
524 .remove = blktrans_notify_remove,
525};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
528{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000529 struct mtd_info *mtd;
530 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000532 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 registered, to prevent the link/init ordering from fucking
534 us over. */
535 if (!blktrans_notifier.list.next)
536 register_mtd_user(&blktrans_notifier);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Ingo Molnar48b19262006-03-31 02:29:41 -0800539 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 ret = register_blkdev(tr->major, tr->name);
Frank Li6fe4c592010-10-26 11:02:19 +0800542 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
544 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800545 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return ret;
547 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100548
Frank Li6fe4c592010-10-26 11:02:19 +0800549 if (ret)
550 tr->major = ret;
551
Richard Purdie19187672006-10-27 09:09:33 +0100552 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 INIT_LIST_HEAD(&tr->devs);
555 list_add(&tr->list, &blktrans_majors);
556
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000557 mtd_for_each_device(mtd)
558 if (mtd->type != MTD_ABSENT)
559 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Ingo Molnar48b19262006-03-31 02:29:41 -0800561 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return 0;
563}
564
565int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
566{
Chris Malley71a928c2008-05-19 20:11:50 +0100567 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Ingo Molnar48b19262006-03-31 02:29:41 -0800569 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* Remove it from the list of active majors */
572 list_del(&tr->list);
573
Chris Malley71a928c2008-05-19 20:11:50 +0100574 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800578 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200580 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 0;
582}
583
584static void __exit mtd_blktrans_exit(void)
585{
586 /* No race here -- if someone's currently in register_mtd_blktrans
587 we're screwed anyway. */
588 if (blktrans_notifier.list.next)
589 unregister_mtd_user(&blktrans_notifier);
590}
591
592module_exit(mtd_blktrans_exit);
593
594EXPORT_SYMBOL_GPL(register_mtd_blktrans);
595EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
596EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
597EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
598
599MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
600MODULE_LICENSE("GPL");
601MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");