blob: 43e30992a3697a76f932bc778c76d8bcdf7080ce [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;
Jens Axboeb4f42e22014-04-10 09:46:28 -060085 buf = bio_data(req->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Christoph Hellwig33659eb2010-08-07 18:17:56 +020087 if (req->cmd_type != REQ_TYPE_FS)
Tejun Heof06d9a22009-04-23 11:05:19 +090088 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Roman Peniaev566c0d62014-03-08 21:59:14 +090090 if (req->cmd_flags & REQ_FLUSH)
91 return tr->flush(dev);
92
Tejun Heo83096eb2009-05-07 22:24:39 +090093 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
94 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090095 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Christoph Hellwig33659eb2010-08-07 18:17:56 +020097 if (req->cmd_flags & REQ_DISCARD)
Christoph Hellwig1122a262009-09-30 13:52:12 +020098 return tr->discard(dev, block, nsect);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 switch(rq_data_dir(req)) {
101 case READ:
Richard Purdie19187672006-10-27 09:09:33 +0100102 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900104 return -EIO;
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100105 rq_flush_dcache_pages(req);
Tejun Heof06d9a22009-04-23 11:05:19 +0900106 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 case WRITE:
108 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +0900109 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100111 rq_flush_dcache_pages(req);
Richard Purdie19187672006-10-27 09:09:33 +0100112 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900114 return -EIO;
115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 default:
Jeff Garzik9a292302006-10-01 12:16:00 -0400117 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Tejun Heof06d9a22009-04-23 11:05:19 +0900118 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120}
121
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200122int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev)
123{
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200124 return dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200125}
126EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);
127
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300128static void mtd_blktrans_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300130 struct mtd_blktrans_dev *dev =
131 container_of(work, struct mtd_blktrans_dev, work);
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200132 struct mtd_blktrans_ops *tr = dev->tr;
Maxim Levitskya8638622010-02-22 20:39:29 +0200133 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900134 struct request *req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200135 int background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900138
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300139 while (1) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900140 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200142 dev->bg_stop = false;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900143 if (!req && !(req = blk_fetch_request(rq))) {
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200144 if (tr->background && !background_done) {
145 spin_unlock_irq(rq->queue_lock);
146 mutex_lock(&dev->lock);
147 tr->background(dev);
148 mutex_unlock(&dev->lock);
149 spin_lock_irq(rq->queue_lock);
150 /*
151 * Do background processing just once per idle
152 * period.
153 */
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200154 background_done = !dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200155 continue;
156 }
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300157 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 spin_unlock_irq(rq->queue_lock);
161
Ingo Molnar48b19262006-03-31 02:29:41 -0800162 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200163 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800164 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 spin_lock_irq(rq->queue_lock);
167
Tejun Heo1498ada2009-05-08 11:54:11 +0900168 if (!__blk_end_request_cur(req, res))
169 req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200170
171 background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900173
174 if (req)
175 __blk_end_request_all(req, -EIO);
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180static void mtd_blktrans_request(struct request_queue *rq)
181{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200182 struct mtd_blktrans_dev *dev;
183 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Maxim Levitsky048d8712010-02-22 20:39:30 +0200185 dev = rq->queuedata;
186
187 if (!dev)
188 while ((req = blk_fetch_request(rq)) != NULL)
189 __blk_end_request_all(req, -ENODEV);
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300190 else
191 queue_work(dev->wq, &dev->work);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200192}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Al Viroaf0e2a02008-03-02 10:35:06 -0500194static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200196 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200197 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Maxim Levitsky048d8712010-02-22 20:39:30 +0200199 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200200 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Maxim Levitsky048d8712010-02-22 20:39:30 +0200202 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Brian Norris342ff282011-11-07 15:51:05 -0800204 if (dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200205 goto unlock;
Maxim Levitsky008c7512010-10-15 17:20:43 +0200206
207 kref_get(&dev->ref);
208 __module_get(dev->tr->owner);
209
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300210 if (!dev->mtd)
211 goto unlock;
212
213 if (dev->tr->open) {
214 ret = dev->tr->open(dev);
215 if (ret)
216 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200218
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300219 ret = __get_mtd_device(dev->mtd);
220 if (ret)
221 goto error_release;
Alexander Stein70d50982012-01-10 13:26:58 +0100222 dev->file_mode = mode;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300223
Maxim Levitsky048d8712010-02-22 20:39:30 +0200224unlock:
Brian Norris342ff282011-11-07 15:51:05 -0800225 dev->open++;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200226 mutex_unlock(&dev->lock);
227 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return ret;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300229
230error_release:
231 if (dev->tr->release)
232 dev->tr->release(dev);
233error_put:
234 module_put(dev->tr->owner);
235 kref_put(&dev->ref, blktrans_dev_release);
236 mutex_unlock(&dev->lock);
237 blktrans_dev_put(dev);
238 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Al Virodb2a1442013-05-05 21:52:57 -0400241static void blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200243 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Maxim Levitsky048d8712010-02-22 20:39:30 +0200245 if (!dev)
Al Virodb2a1442013-05-05 21:52:57 -0400246 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Maxim Levitsky048d8712010-02-22 20:39:30 +0200248 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Maxim Levitsky008c7512010-10-15 17:20:43 +0200250 if (--dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200251 goto unlock;
252
Maxim Levitsky008c7512010-10-15 17:20:43 +0200253 kref_put(&dev->ref, blktrans_dev_release);
254 module_put(dev->tr->owner);
255
256 if (dev->mtd) {
Al Viroa8ca8892013-05-05 21:31:22 -0400257 if (dev->tr->release)
258 dev->tr->release(dev);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200259 __put_mtd_device(dev->mtd);
260 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200261unlock:
262 mutex_unlock(&dev->lock);
263 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800266static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
267{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200268 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
269 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800270
Maxim Levitsky048d8712010-02-22 20:39:30 +0200271 if (!dev)
272 return ret;
273
274 mutex_lock(&dev->lock);
275
276 if (!dev->mtd)
277 goto unlock;
278
279 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
280unlock:
281 mutex_unlock(&dev->lock);
282 blktrans_dev_put(dev);
283 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800284}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Al Viroaf0e2a02008-03-02 10:35:06 -0500286static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 unsigned int cmd, unsigned long arg)
288{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200289 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
290 int ret = -ENXIO;
291
292 if (!dev)
293 return ret;
294
295 mutex_lock(&dev->lock);
296
297 if (!dev->mtd)
298 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 switch (cmd) {
301 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200302 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200305 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200307unlock:
308 mutex_unlock(&dev->lock);
309 blktrans_dev_put(dev);
310 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300313static const struct block_device_operations mtd_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500315 .open = blktrans_open,
316 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200317 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800318 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
320
321int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
322{
323 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100324 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 int last_devnum = -1;
326 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200327 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Jean Delvareb3561ea2007-05-08 00:30:46 -0700329 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800330 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 BUG();
332 }
333
Maxim Levitsky048d8712010-02-22 20:39:30 +0200334 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100335 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (new->devnum == -1) {
337 /* Use first free number */
338 if (d->devnum != last_devnum+1) {
339 /* Found a free devnum. Plug it in here */
340 new->devnum = last_devnum+1;
341 list_add_tail(&new->list, &d->list);
342 goto added;
343 }
344 } else if (d->devnum == new->devnum) {
345 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200346 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return -EBUSY;
348 } else if (d->devnum > new->devnum) {
349 /* Required number was free */
350 list_add_tail(&new->list, &d->list);
351 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 last_devnum = d->devnum;
354 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200355
356 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (new->devnum == -1)
358 new->devnum = last_devnum+1;
359
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000360 /* Check that the device and any partitions will get valid
361 * minor numbers and that the disk naming code below can cope
362 * with this number. */
363 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200364 (tr->part_bits && new->devnum >= 27 * 26)) {
365 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200366 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 list_add_tail(&new->list, &tr->devs);
370 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200371 mutex_unlock(&blktrans_ref_mutex);
372
David Woodhousece37ab42007-12-03 12:46:12 +0000373 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200374 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (!tr->writesect)
376 new->readonly = 1;
377
Maxim Levitskya8638622010-02-22 20:39:29 +0200378 /* Create gendisk */
379 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200381
382 if (!gd)
383 goto error2;
384
385 new->disk = gd;
386 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 gd->major = tr->major;
388 gd->first_minor = (new->devnum) << tr->part_bits;
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300389 gd->fops = &mtd_block_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000390
Todd Poynor65a8de32005-07-29 20:42:07 +0100391 if (tr->part_bits)
392 if (new->devnum < 26)
393 snprintf(gd->disk_name, sizeof(gd->disk_name),
394 "%s%c", tr->name, 'a' + new->devnum);
395 else
396 snprintf(gd->disk_name, sizeof(gd->disk_name),
397 "%s%c%c", tr->name,
398 'a' - 1 + new->devnum / 26,
399 'a' + new->devnum % 26);
400 else
401 snprintf(gd->disk_name, sizeof(gd->disk_name),
402 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Richard Purdie19187672006-10-27 09:09:33 +0100404 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Maxim Levitskya8638622010-02-22 20:39:29 +0200406 /* Create the request queue */
407 spin_lock_init(&new->queue_lock);
408 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
409
410 if (!new->rq)
411 goto error3;
412
Roman Peniaev566c0d62014-03-08 21:59:14 +0900413 if (tr->flush)
414 blk_queue_flush(new->rq, REQ_FLUSH);
415
Maxim Levitskya8638622010-02-22 20:39:29 +0200416 new->rq->queuedata = new;
417 blk_queue_logical_block_size(new->rq, tr->blksize);
418
Dan McGee16f7eca2011-09-28 00:21:42 -0500419 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
420
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200421 if (tr->discard) {
422 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
423 new->rq->limits.max_discard_sectors = UINT_MAX;
424 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200425
426 gd->queue = new->rq;
427
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300428 /* Create processing workqueue */
429 new->wq = alloc_workqueue("%s%d", 0, 0,
430 tr->name, new->mtd->index);
431 if (!new->wq)
Maxim Levitskya8638622010-02-22 20:39:29 +0200432 goto error4;
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300433 INIT_WORK(&new->work, mtd_blktrans_work);
434
David Woodhoused6948462009-04-05 07:38:33 -0700435 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 if (new->readonly)
438 set_disk_ro(gd, 1);
439
440 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200441
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200442 if (new->disk_attributes) {
443 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200444 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200445 WARN_ON(ret);
446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200448error4:
449 blk_cleanup_queue(new->rq);
450error3:
451 put_disk(new->disk);
452error2:
453 list_del(&new->list);
454error1:
Maxim Levitskya8638622010-02-22 20:39:29 +0200455 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
459{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200460 unsigned long flags;
461
Jean Delvareb3561ea2007-05-08 00:30:46 -0700462 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800463 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 BUG();
465 }
466
Maxim Levitsky026ec572010-02-22 20:39:33 +0200467 if (old->disk_attributes)
468 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
469 old->disk_attributes);
470
Maxim Levitskydba76c02010-07-28 18:53:16 +0300471 /* Stop new requests to arrive */
472 del_gendisk(old->disk);
473
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300474 /* Stop workqueue. This will perform any pending request. */
475 destroy_workqueue(old->wq);
Maxim Levitskya8638622010-02-22 20:39:29 +0200476
Maxim Levitsky048d8712010-02-22 20:39:30 +0200477 /* Kill current requests */
478 spin_lock_irqsave(&old->queue_lock, flags);
479 old->rq->queuedata = NULL;
480 blk_start_queue(old->rq);
481 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200482
Maxim Levitsky008c7512010-10-15 17:20:43 +0200483 /* If the device is currently open, tell trans driver to close it,
484 then put mtd device, and don't touch it again */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200485 mutex_lock(&old->lock);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200486 if (old->open) {
487 if (old->tr->release)
488 old->tr->release(old);
489 __put_mtd_device(old->mtd);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200490 }
491
Maxim Levitsky048d8712010-02-22 20:39:30 +0200492 old->mtd = NULL;
493
494 mutex_unlock(&old->lock);
495 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return 0;
497}
498
499static void blktrans_notify_remove(struct mtd_info *mtd)
500{
Chris Malley71a928c2008-05-19 20:11:50 +0100501 struct mtd_blktrans_ops *tr;
502 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Chris Malley71a928c2008-05-19 20:11:50 +0100504 list_for_each_entry(tr, &blktrans_majors, list)
505 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (dev->mtd == mtd)
507 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510static void blktrans_notify_add(struct mtd_info *mtd)
511{
Chris Malley71a928c2008-05-19 20:11:50 +0100512 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 if (mtd->type == MTD_ABSENT)
515 return;
516
Chris Malley71a928c2008-05-19 20:11:50 +0100517 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
521static struct mtd_notifier blktrans_notifier = {
522 .add = blktrans_notify_add,
523 .remove = blktrans_notify_remove,
524};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
527{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000528 struct mtd_info *mtd;
529 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000531 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 registered, to prevent the link/init ordering from fucking
533 us over. */
534 if (!blktrans_notifier.list.next)
535 register_mtd_user(&blktrans_notifier);
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Ingo Molnar48b19262006-03-31 02:29:41 -0800538 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 ret = register_blkdev(tr->major, tr->name);
Frank Li6fe4c592010-10-26 11:02:19 +0800541 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
543 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800544 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return ret;
546 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100547
Frank Li6fe4c592010-10-26 11:02:19 +0800548 if (ret)
549 tr->major = ret;
550
Richard Purdie19187672006-10-27 09:09:33 +0100551 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 INIT_LIST_HEAD(&tr->devs);
554 list_add(&tr->list, &blktrans_majors);
555
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000556 mtd_for_each_device(mtd)
557 if (mtd->type != MTD_ABSENT)
558 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Ingo Molnar48b19262006-03-31 02:29:41 -0800560 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return 0;
562}
563
564int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
565{
Chris Malley71a928c2008-05-19 20:11:50 +0100566 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Ingo Molnar48b19262006-03-31 02:29:41 -0800568 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /* Remove it from the list of active majors */
571 list_del(&tr->list);
572
Chris Malley71a928c2008-05-19 20:11:50 +0100573 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800577 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200579 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return 0;
581}
582
583static void __exit mtd_blktrans_exit(void)
584{
585 /* No race here -- if someone's currently in register_mtd_blktrans
586 we're screwed anyway. */
587 if (blktrans_notifier.list.next)
588 unregister_mtd_user(&blktrans_notifier);
589}
590
591module_exit(mtd_blktrans_exit);
592
593EXPORT_SYMBOL_GPL(register_mtd_blktrans);
594EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
595EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
596EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
597
598MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
599MODULE_LICENSE("GPL");
600MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");