blob: 41acc507b22ed942bee2f0df6f43dda073efeb99 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177static void mtd_blktrans_request(struct request_queue *rq)
178{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200179 struct mtd_blktrans_dev *dev;
180 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Maxim Levitsky048d8712010-02-22 20:39:30 +0200182 dev = rq->queuedata;
183
184 if (!dev)
185 while ((req = blk_fetch_request(rq)) != NULL)
186 __blk_end_request_all(req, -ENODEV);
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300187 else
188 queue_work(dev->wq, &dev->work);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200189}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Al Viroaf0e2a02008-03-02 10:35:06 -0500191static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200193 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200194 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Maxim Levitsky048d8712010-02-22 20:39:30 +0200196 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200197 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Maxim Levitsky048d8712010-02-22 20:39:30 +0200199 mutex_lock(&dev->lock);
Brian Norris073db4a2015-05-07 17:55:16 -0700200 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Brian Norris342ff282011-11-07 15:51:05 -0800202 if (dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200203 goto unlock;
Maxim Levitsky008c7512010-10-15 17:20:43 +0200204
205 kref_get(&dev->ref);
206 __module_get(dev->tr->owner);
207
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300208 if (!dev->mtd)
209 goto unlock;
210
211 if (dev->tr->open) {
212 ret = dev->tr->open(dev);
213 if (ret)
214 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200216
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300217 ret = __get_mtd_device(dev->mtd);
218 if (ret)
219 goto error_release;
Alexander Stein70d50982012-01-10 13:26:58 +0100220 dev->file_mode = mode;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300221
Maxim Levitsky048d8712010-02-22 20:39:30 +0200222unlock:
Brian Norris342ff282011-11-07 15:51:05 -0800223 dev->open++;
Brian Norris073db4a2015-05-07 17:55:16 -0700224 mutex_unlock(&mtd_table_mutex);
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);
Brian Norris073db4a2015-05-07 17:55:16 -0700235 mutex_unlock(&mtd_table_mutex);
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300236 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);
Brian Norris073db4a2015-05-07 17:55:16 -0700249 mutex_lock(&mtd_table_mutex);
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:
Brian Norris073db4a2015-05-07 17:55:16 -0700263 mutex_unlock(&mtd_table_mutex);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200264 mutex_unlock(&dev->lock);
265 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800268static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
269{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200270 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
271 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800272
Maxim Levitsky048d8712010-02-22 20:39:30 +0200273 if (!dev)
274 return ret;
275
276 mutex_lock(&dev->lock);
277
278 if (!dev->mtd)
279 goto unlock;
280
Brian Norrisc4a3f132015-05-21 10:44:32 -0700281 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : -ENOTTY;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200282unlock:
283 mutex_unlock(&dev->lock);
284 blktrans_dev_put(dev);
285 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800286}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Al Viroaf0e2a02008-03-02 10:35:06 -0500288static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 unsigned int cmd, unsigned long arg)
290{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200291 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
292 int ret = -ENXIO;
293
294 if (!dev)
295 return ret;
296
297 mutex_lock(&dev->lock);
298
299 if (!dev->mtd)
300 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 switch (cmd) {
303 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200304 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200307 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200309unlock:
310 mutex_unlock(&dev->lock);
311 blktrans_dev_put(dev);
312 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300315static const struct block_device_operations mtd_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500317 .open = blktrans_open,
318 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200319 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800320 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321};
322
323int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
324{
325 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100326 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 int last_devnum = -1;
328 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200329 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Jean Delvareb3561ea2007-05-08 00:30:46 -0700331 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800332 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 BUG();
334 }
335
Maxim Levitsky048d8712010-02-22 20:39:30 +0200336 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100337 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (new->devnum == -1) {
339 /* Use first free number */
340 if (d->devnum != last_devnum+1) {
341 /* Found a free devnum. Plug it in here */
342 new->devnum = last_devnum+1;
343 list_add_tail(&new->list, &d->list);
344 goto added;
345 }
346 } else if (d->devnum == new->devnum) {
347 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200348 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return -EBUSY;
350 } else if (d->devnum > new->devnum) {
351 /* Required number was free */
352 list_add_tail(&new->list, &d->list);
353 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 last_devnum = d->devnum;
356 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200357
358 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (new->devnum == -1)
360 new->devnum = last_devnum+1;
361
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000362 /* Check that the device and any partitions will get valid
363 * minor numbers and that the disk naming code below can cope
364 * with this number. */
365 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200366 (tr->part_bits && new->devnum >= 27 * 26)) {
367 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200368 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 list_add_tail(&new->list, &tr->devs);
372 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200373 mutex_unlock(&blktrans_ref_mutex);
374
David Woodhousece37ab42007-12-03 12:46:12 +0000375 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200376 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (!tr->writesect)
378 new->readonly = 1;
379
Maxim Levitskya8638622010-02-22 20:39:29 +0200380 /* Create gendisk */
381 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200383
384 if (!gd)
385 goto error2;
386
387 new->disk = gd;
388 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 gd->major = tr->major;
390 gd->first_minor = (new->devnum) << tr->part_bits;
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300391 gd->fops = &mtd_block_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000392
Todd Poynor65a8de32005-07-29 20:42:07 +0100393 if (tr->part_bits)
394 if (new->devnum < 26)
395 snprintf(gd->disk_name, sizeof(gd->disk_name),
396 "%s%c", tr->name, 'a' + new->devnum);
397 else
398 snprintf(gd->disk_name, sizeof(gd->disk_name),
399 "%s%c%c", tr->name,
400 'a' - 1 + new->devnum / 26,
401 'a' + new->devnum % 26);
402 else
403 snprintf(gd->disk_name, sizeof(gd->disk_name),
404 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Richard Purdie19187672006-10-27 09:09:33 +0100406 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Maxim Levitskya8638622010-02-22 20:39:29 +0200408 /* Create the request queue */
409 spin_lock_init(&new->queue_lock);
410 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
411
412 if (!new->rq)
413 goto error3;
414
Roman Peniaev566c0d62014-03-08 21:59:14 +0900415 if (tr->flush)
416 blk_queue_flush(new->rq, REQ_FLUSH);
417
Maxim Levitskya8638622010-02-22 20:39:29 +0200418 new->rq->queuedata = new;
419 blk_queue_logical_block_size(new->rq, tr->blksize);
420
Dan McGee16f7eca2011-09-28 00:21:42 -0500421 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
Mike Snitzerb277da02014-10-04 10:55:32 -0600422 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, new->rq);
Dan McGee16f7eca2011-09-28 00:21:42 -0500423
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200424 if (tr->discard) {
425 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
426 new->rq->limits.max_discard_sectors = UINT_MAX;
427 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200428
429 gd->queue = new->rq;
430
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300431 /* Create processing workqueue */
432 new->wq = alloc_workqueue("%s%d", 0, 0,
433 tr->name, new->mtd->index);
434 if (!new->wq)
Maxim Levitskya8638622010-02-22 20:39:29 +0200435 goto error4;
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300436 INIT_WORK(&new->work, mtd_blktrans_work);
437
David Woodhoused6948462009-04-05 07:38:33 -0700438 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 if (new->readonly)
441 set_disk_ro(gd, 1);
442
443 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200444
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200445 if (new->disk_attributes) {
446 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200447 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200448 WARN_ON(ret);
449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200451error4:
452 blk_cleanup_queue(new->rq);
453error3:
454 put_disk(new->disk);
455error2:
456 list_del(&new->list);
457error1:
Maxim Levitskya8638622010-02-22 20:39:29 +0200458 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
461int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
462{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200463 unsigned long flags;
464
Jean Delvareb3561ea2007-05-08 00:30:46 -0700465 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800466 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 BUG();
468 }
469
Maxim Levitsky026ec572010-02-22 20:39:33 +0200470 if (old->disk_attributes)
471 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
472 old->disk_attributes);
473
Maxim Levitskydba76c02010-07-28 18:53:16 +0300474 /* Stop new requests to arrive */
475 del_gendisk(old->disk);
476
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300477 /* Stop workqueue. This will perform any pending request. */
478 destroy_workqueue(old->wq);
Maxim Levitskya8638622010-02-22 20:39:29 +0200479
Maxim Levitsky048d8712010-02-22 20:39:30 +0200480 /* Kill current requests */
481 spin_lock_irqsave(&old->queue_lock, flags);
482 old->rq->queuedata = NULL;
483 blk_start_queue(old->rq);
484 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200485
Maxim Levitsky008c7512010-10-15 17:20:43 +0200486 /* If the device is currently open, tell trans driver to close it,
487 then put mtd device, and don't touch it again */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200488 mutex_lock(&old->lock);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200489 if (old->open) {
490 if (old->tr->release)
491 old->tr->release(old);
492 __put_mtd_device(old->mtd);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200493 }
494
Maxim Levitsky048d8712010-02-22 20:39:30 +0200495 old->mtd = NULL;
496
497 mutex_unlock(&old->lock);
498 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return 0;
500}
501
502static void blktrans_notify_remove(struct mtd_info *mtd)
503{
Chris Malley71a928c2008-05-19 20:11:50 +0100504 struct mtd_blktrans_ops *tr;
505 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Chris Malley71a928c2008-05-19 20:11:50 +0100507 list_for_each_entry(tr, &blktrans_majors, list)
508 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (dev->mtd == mtd)
510 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513static void blktrans_notify_add(struct mtd_info *mtd)
514{
Chris Malley71a928c2008-05-19 20:11:50 +0100515 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if (mtd->type == MTD_ABSENT)
518 return;
519
Chris Malley71a928c2008-05-19 20:11:50 +0100520 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524static struct mtd_notifier blktrans_notifier = {
525 .add = blktrans_notify_add,
526 .remove = blktrans_notify_remove,
527};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
530{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000531 struct mtd_info *mtd;
532 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000534 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 registered, to prevent the link/init ordering from fucking
536 us over. */
537 if (!blktrans_notifier.list.next)
538 register_mtd_user(&blktrans_notifier);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Ingo Molnar48b19262006-03-31 02:29:41 -0800541 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 ret = register_blkdev(tr->major, tr->name);
Frank Li6fe4c592010-10-26 11:02:19 +0800544 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
546 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800547 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return ret;
549 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100550
Frank Li6fe4c592010-10-26 11:02:19 +0800551 if (ret)
552 tr->major = ret;
553
Richard Purdie19187672006-10-27 09:09:33 +0100554 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 INIT_LIST_HEAD(&tr->devs);
557 list_add(&tr->list, &blktrans_majors);
558
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000559 mtd_for_each_device(mtd)
560 if (mtd->type != MTD_ABSENT)
561 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Ingo Molnar48b19262006-03-31 02:29:41 -0800563 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return 0;
565}
566
567int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
568{
Chris Malley71a928c2008-05-19 20:11:50 +0100569 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Ingo Molnar48b19262006-03-31 02:29:41 -0800571 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* Remove it from the list of active majors */
574 list_del(&tr->list);
575
Chris Malley71a928c2008-05-19 20:11:50 +0100576 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800580 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200582 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return 0;
584}
585
586static void __exit mtd_blktrans_exit(void)
587{
588 /* No race here -- if someone's currently in register_mtd_blktrans
589 we're screwed anyway. */
590 if (blktrans_notifier.list.next)
591 unregister_mtd_user(&blktrans_notifier);
592}
593
594module_exit(mtd_blktrans_exit);
595
596EXPORT_SYMBOL_GPL(register_mtd_blktrans);
597EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
598EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
599EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
600
601MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
602MODULE_LICENSE("GPL");
603MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");