blob: 6b8d5cd7dbf6bdc3442c1d44ae136a3c6f885aff [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 Torvalds7c0f6ba2016-12-24 11:46:01 -080034#include <linux/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
Mike Christie3a5e02c2016-06-05 14:32:23 -050087 if (req_op(req) == REQ_OP_FLUSH)
Roman Peniaev566c0d62014-03-08 21:59:14 +090088 return tr->flush(dev);
89
Tejun Heo83096eb2009-05-07 22:24:39 +090090 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
91 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090092 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Christoph Hellwigaebf5262017-01-31 16:57:31 +010094 switch (req_op(req)) {
95 case REQ_OP_DISCARD:
Christoph Hellwig1122a262009-09-30 13:52:12 +020096 return tr->discard(dev, block, nsect);
Christoph Hellwigaebf5262017-01-31 16:57:31 +010097 case REQ_OP_READ:
Richard Purdie19187672006-10-27 09:09:33 +010098 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900100 return -EIO;
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100101 rq_flush_dcache_pages(req);
Tejun Heof06d9a22009-04-23 11:05:19 +0900102 return 0;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100103 case REQ_OP_WRITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +0900105 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100107 rq_flush_dcache_pages(req);
Richard Purdie19187672006-10-27 09:09:33 +0100108 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900110 return -EIO;
111 return 0;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100112 default:
113 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115}
116
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200117int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev)
118{
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200119 return dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200120}
121EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);
122
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300123static void mtd_blktrans_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300125 struct mtd_blktrans_dev *dev =
126 container_of(work, struct mtd_blktrans_dev, work);
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200127 struct mtd_blktrans_ops *tr = dev->tr;
Maxim Levitskya8638622010-02-22 20:39:29 +0200128 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900129 struct request *req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200130 int background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900133
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300134 while (1) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900135 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200137 dev->bg_stop = false;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900138 if (!req && !(req = blk_fetch_request(rq))) {
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200139 if (tr->background && !background_done) {
140 spin_unlock_irq(rq->queue_lock);
141 mutex_lock(&dev->lock);
142 tr->background(dev);
143 mutex_unlock(&dev->lock);
144 spin_lock_irq(rq->queue_lock);
145 /*
146 * Do background processing just once per idle
147 * period.
148 */
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200149 background_done = !dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200150 continue;
151 }
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300152 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 spin_unlock_irq(rq->queue_lock);
156
Ingo Molnar48b19262006-03-31 02:29:41 -0800157 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200158 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800159 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 spin_lock_irq(rq->queue_lock);
162
Tejun Heo1498ada2009-05-08 11:54:11 +0900163 if (!__blk_end_request_cur(req, res))
164 req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200165
166 background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172static void mtd_blktrans_request(struct request_queue *rq)
173{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200174 struct mtd_blktrans_dev *dev;
175 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Maxim Levitsky048d8712010-02-22 20:39:30 +0200177 dev = rq->queuedata;
178
179 if (!dev)
180 while ((req = blk_fetch_request(rq)) != NULL)
181 __blk_end_request_all(req, -ENODEV);
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300182 else
183 queue_work(dev->wq, &dev->work);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200184}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Al Viroaf0e2a02008-03-02 10:35:06 -0500186static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200188 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200189 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Maxim Levitsky048d8712010-02-22 20:39:30 +0200191 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200192 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Brian Norris073db4a2015-05-07 17:55:16 -0700194 mutex_lock(&mtd_table_mutex);
Brian Norrisf3c63792015-10-26 10:20:23 -0700195 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Brian Norris342ff282011-11-07 15:51:05 -0800197 if (dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200198 goto unlock;
Maxim Levitsky008c7512010-10-15 17:20:43 +0200199
200 kref_get(&dev->ref);
201 __module_get(dev->tr->owner);
202
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300203 if (!dev->mtd)
204 goto unlock;
205
206 if (dev->tr->open) {
207 ret = dev->tr->open(dev);
208 if (ret)
209 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200211
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300212 ret = __get_mtd_device(dev->mtd);
213 if (ret)
214 goto error_release;
Alexander Stein70d50982012-01-10 13:26:58 +0100215 dev->file_mode = mode;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300216
Maxim Levitsky048d8712010-02-22 20:39:30 +0200217unlock:
Brian Norris342ff282011-11-07 15:51:05 -0800218 dev->open++;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200219 mutex_unlock(&dev->lock);
Brian Norrisf3c63792015-10-26 10:20:23 -0700220 mutex_unlock(&mtd_table_mutex);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200221 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return ret;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300223
224error_release:
225 if (dev->tr->release)
226 dev->tr->release(dev);
227error_put:
228 module_put(dev->tr->owner);
229 kref_put(&dev->ref, blktrans_dev_release);
230 mutex_unlock(&dev->lock);
Brian Norrisf3c63792015-10-26 10:20:23 -0700231 mutex_unlock(&mtd_table_mutex);
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300232 blktrans_dev_put(dev);
233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Al Virodb2a1442013-05-05 21:52:57 -0400236static void blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200238 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Maxim Levitsky048d8712010-02-22 20:39:30 +0200240 if (!dev)
Al Virodb2a1442013-05-05 21:52:57 -0400241 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Brian Norris073db4a2015-05-07 17:55:16 -0700243 mutex_lock(&mtd_table_mutex);
Brian Norrisf3c63792015-10-26 10:20:23 -0700244 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Maxim Levitsky008c7512010-10-15 17:20:43 +0200246 if (--dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200247 goto unlock;
248
Maxim Levitsky008c7512010-10-15 17:20:43 +0200249 kref_put(&dev->ref, blktrans_dev_release);
250 module_put(dev->tr->owner);
251
252 if (dev->mtd) {
Al Viroa8ca8892013-05-05 21:31:22 -0400253 if (dev->tr->release)
254 dev->tr->release(dev);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200255 __put_mtd_device(dev->mtd);
256 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200257unlock:
258 mutex_unlock(&dev->lock);
Brian Norrisf3c63792015-10-26 10:20:23 -0700259 mutex_unlock(&mtd_table_mutex);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200260 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800263static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
264{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200265 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
266 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800267
Maxim Levitsky048d8712010-02-22 20:39:30 +0200268 if (!dev)
269 return ret;
270
271 mutex_lock(&dev->lock);
272
273 if (!dev->mtd)
274 goto unlock;
275
Brian Norrisc4a3f132015-05-21 10:44:32 -0700276 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : -ENOTTY;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200277unlock:
278 mutex_unlock(&dev->lock);
279 blktrans_dev_put(dev);
280 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800281}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Al Viroaf0e2a02008-03-02 10:35:06 -0500283static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 unsigned int cmd, unsigned long arg)
285{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200286 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
287 int ret = -ENXIO;
288
289 if (!dev)
290 return ret;
291
292 mutex_lock(&dev->lock);
293
294 if (!dev->mtd)
295 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 switch (cmd) {
298 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200299 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200300 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200302 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200304unlock:
305 mutex_unlock(&dev->lock);
306 blktrans_dev_put(dev);
307 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Ezequiel Garcia9329c5e2012-11-09 12:36:35 -0300310static const struct block_device_operations mtd_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500312 .open = blktrans_open,
313 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200314 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800315 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
318int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
319{
320 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100321 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 int last_devnum = -1;
323 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200324 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Jean Delvareb3561ea2007-05-08 00:30:46 -0700326 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800327 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 BUG();
329 }
330
Maxim Levitsky048d8712010-02-22 20:39:30 +0200331 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100332 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (new->devnum == -1) {
334 /* Use first free number */
335 if (d->devnum != last_devnum+1) {
336 /* Found a free devnum. Plug it in here */
337 new->devnum = last_devnum+1;
338 list_add_tail(&new->list, &d->list);
339 goto added;
340 }
341 } else if (d->devnum == new->devnum) {
342 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200343 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return -EBUSY;
345 } else if (d->devnum > new->devnum) {
346 /* Required number was free */
347 list_add_tail(&new->list, &d->list);
348 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 last_devnum = d->devnum;
351 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200352
353 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (new->devnum == -1)
355 new->devnum = last_devnum+1;
356
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000357 /* Check that the device and any partitions will get valid
358 * minor numbers and that the disk naming code below can cope
359 * with this number. */
360 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200361 (tr->part_bits && new->devnum >= 27 * 26)) {
362 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200363 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 list_add_tail(&new->list, &tr->devs);
367 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200368 mutex_unlock(&blktrans_ref_mutex);
369
David Woodhousece37ab42007-12-03 12:46:12 +0000370 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200371 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (!tr->writesect)
373 new->readonly = 1;
374
Maxim Levitskya8638622010-02-22 20:39:29 +0200375 /* Create gendisk */
376 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200378
379 if (!gd)
380 goto error2;
381
382 new->disk = gd;
383 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 gd->major = tr->major;
385 gd->first_minor = (new->devnum) << tr->part_bits;
Ezequiel Garcia9329c5e2012-11-09 12:36:35 -0300386 gd->fops = &mtd_block_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000387
Todd Poynor65a8de32005-07-29 20:42:07 +0100388 if (tr->part_bits)
389 if (new->devnum < 26)
390 snprintf(gd->disk_name, sizeof(gd->disk_name),
391 "%s%c", tr->name, 'a' + new->devnum);
392 else
393 snprintf(gd->disk_name, sizeof(gd->disk_name),
394 "%s%c%c", tr->name,
395 'a' - 1 + new->devnum / 26,
396 'a' + new->devnum % 26);
397 else
398 snprintf(gd->disk_name, sizeof(gd->disk_name),
399 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Peng Fan2ce401d2015-09-11 21:41:47 +0800401 set_capacity(gd, ((u64)new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Maxim Levitskya8638622010-02-22 20:39:29 +0200403 /* Create the request queue */
404 spin_lock_init(&new->queue_lock);
405 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
406
407 if (!new->rq)
408 goto error3;
409
Roman Peniaev566c0d62014-03-08 21:59:14 +0900410 if (tr->flush)
Jens Axboefec3ff5d2016-03-30 10:17:47 -0600411 blk_queue_write_cache(new->rq, true, false);
Roman Peniaev566c0d62014-03-08 21:59:14 +0900412
Maxim Levitskya8638622010-02-22 20:39:29 +0200413 new->rq->queuedata = new;
414 blk_queue_logical_block_size(new->rq, tr->blksize);
415
Dan McGee16f7eca2011-09-28 00:21:42 -0500416 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
Mike Snitzerb277da02014-10-04 10:55:32 -0600417 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, new->rq);
Dan McGee16f7eca2011-09-28 00:21:42 -0500418
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200419 if (tr->discard) {
420 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
Jens Axboe2bb4cd52015-07-14 08:15:12 -0600421 blk_queue_max_discard_sectors(new->rq, UINT_MAX);
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200422 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200423
424 gd->queue = new->rq;
425
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300426 /* Create processing workqueue */
427 new->wq = alloc_workqueue("%s%d", 0, 0,
428 tr->name, new->mtd->index);
429 if (!new->wq)
Maxim Levitskya8638622010-02-22 20:39:29 +0200430 goto error4;
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300431 INIT_WORK(&new->work, mtd_blktrans_work);
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (new->readonly)
434 set_disk_ro(gd, 1);
435
Dan Williams0d52c7562016-06-15 19:44:20 -0700436 device_add_disk(&new->mtd->dev, 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'");