blob: 0b2ccb68c0d0240efdb9c5de9189f8e89a4ca890 [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
Tejun Heo83096eb2009-05-07 22:24:39 +090091 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
92 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090093 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Christoph Hellwig33659eb2010-08-07 18:17:56 +020095 if (req->cmd_flags & REQ_DISCARD)
Christoph Hellwig1122a262009-09-30 13:52:12 +020096 return tr->discard(dev, block, nsect);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 switch(rq_data_dir(req)) {
99 case READ:
Richard Purdie19187672006-10-27 09:09:33 +0100100 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900102 return -EIO;
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100103 rq_flush_dcache_pages(req);
Tejun Heof06d9a22009-04-23 11:05:19 +0900104 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 case WRITE:
106 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +0900107 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100109 rq_flush_dcache_pages(req);
Richard Purdie19187672006-10-27 09:09:33 +0100110 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +0900112 return -EIO;
113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 default:
Jeff Garzik9a292302006-10-01 12:16:00 -0400115 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Tejun Heof06d9a22009-04-23 11:05:19 +0900116 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118}
119
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200120int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev)
121{
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200122 return dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200123}
124EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);
125
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300126static void mtd_blktrans_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300128 struct mtd_blktrans_dev *dev =
129 container_of(work, struct mtd_blktrans_dev, work);
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200130 struct mtd_blktrans_ops *tr = dev->tr;
Maxim Levitskya8638622010-02-22 20:39:29 +0200131 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900132 struct request *req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200133 int background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900136
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300137 while (1) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900138 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200140 dev->bg_stop = false;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900141 if (!req && !(req = blk_fetch_request(rq))) {
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200142 if (tr->background && !background_done) {
143 spin_unlock_irq(rq->queue_lock);
144 mutex_lock(&dev->lock);
145 tr->background(dev);
146 mutex_unlock(&dev->lock);
147 spin_lock_irq(rq->queue_lock);
148 /*
149 * Do background processing just once per idle
150 * period.
151 */
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200152 background_done = !dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200153 continue;
154 }
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300155 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 spin_unlock_irq(rq->queue_lock);
159
Ingo Molnar48b19262006-03-31 02:29:41 -0800160 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200161 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800162 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 spin_lock_irq(rq->queue_lock);
165
Tejun Heo1498ada2009-05-08 11:54:11 +0900166 if (!__blk_end_request_cur(req, res))
167 req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200168
169 background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900171
172 if (req)
173 __blk_end_request_all(req, -EIO);
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178static void mtd_blktrans_request(struct request_queue *rq)
179{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200180 struct mtd_blktrans_dev *dev;
181 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Maxim Levitsky048d8712010-02-22 20:39:30 +0200183 dev = rq->queuedata;
184
185 if (!dev)
186 while ((req = blk_fetch_request(rq)) != NULL)
187 __blk_end_request_all(req, -ENODEV);
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300188 else
189 queue_work(dev->wq, &dev->work);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200190}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Al Viroaf0e2a02008-03-02 10:35:06 -0500192static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200194 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200195 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Maxim Levitsky048d8712010-02-22 20:39:30 +0200197 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200198 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Maxim Levitsky048d8712010-02-22 20:39:30 +0200200 mutex_lock(&dev->lock);
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++;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200224 mutex_unlock(&dev->lock);
225 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return ret;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300227
228error_release:
229 if (dev->tr->release)
230 dev->tr->release(dev);
231error_put:
232 module_put(dev->tr->owner);
233 kref_put(&dev->ref, blktrans_dev_release);
234 mutex_unlock(&dev->lock);
235 blktrans_dev_put(dev);
236 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Al Virodb2a1442013-05-05 21:52:57 -0400239static void blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200241 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Maxim Levitsky048d8712010-02-22 20:39:30 +0200243 if (!dev)
Al Virodb2a1442013-05-05 21:52:57 -0400244 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Maxim Levitsky048d8712010-02-22 20:39:30 +0200246 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Maxim Levitsky008c7512010-10-15 17:20:43 +0200248 if (--dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200249 goto unlock;
250
Maxim Levitsky008c7512010-10-15 17:20:43 +0200251 kref_put(&dev->ref, blktrans_dev_release);
252 module_put(dev->tr->owner);
253
254 if (dev->mtd) {
Al Viroa8ca8892013-05-05 21:31:22 -0400255 if (dev->tr->release)
256 dev->tr->release(dev);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200257 __put_mtd_device(dev->mtd);
258 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200259unlock:
260 mutex_unlock(&dev->lock);
261 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800264static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
265{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200266 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
267 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800268
Maxim Levitsky048d8712010-02-22 20:39:30 +0200269 if (!dev)
270 return ret;
271
272 mutex_lock(&dev->lock);
273
274 if (!dev->mtd)
275 goto unlock;
276
277 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
278unlock:
279 mutex_unlock(&dev->lock);
280 blktrans_dev_put(dev);
281 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800282}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Al Viroaf0e2a02008-03-02 10:35:06 -0500284static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 unsigned int cmd, unsigned long arg)
286{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200287 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
288 int ret = -ENXIO;
289
290 if (!dev)
291 return ret;
292
293 mutex_lock(&dev->lock);
294
295 if (!dev->mtd)
296 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 switch (cmd) {
299 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200300 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200301 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200303 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200305unlock:
306 mutex_unlock(&dev->lock);
307 blktrans_dev_put(dev);
308 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300311static const struct block_device_operations mtd_block_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500313 .open = blktrans_open,
314 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200315 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800316 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
319int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
320{
321 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100322 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 int last_devnum = -1;
324 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200325 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Jean Delvareb3561ea2007-05-08 00:30:46 -0700327 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800328 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 BUG();
330 }
331
Maxim Levitsky048d8712010-02-22 20:39:30 +0200332 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100333 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (new->devnum == -1) {
335 /* Use first free number */
336 if (d->devnum != last_devnum+1) {
337 /* Found a free devnum. Plug it in here */
338 new->devnum = last_devnum+1;
339 list_add_tail(&new->list, &d->list);
340 goto added;
341 }
342 } else if (d->devnum == new->devnum) {
343 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200344 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return -EBUSY;
346 } else if (d->devnum > new->devnum) {
347 /* Required number was free */
348 list_add_tail(&new->list, &d->list);
349 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 last_devnum = d->devnum;
352 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200353
354 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (new->devnum == -1)
356 new->devnum = last_devnum+1;
357
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000358 /* Check that the device and any partitions will get valid
359 * minor numbers and that the disk naming code below can cope
360 * with this number. */
361 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200362 (tr->part_bits && new->devnum >= 27 * 26)) {
363 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200364 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 list_add_tail(&new->list, &tr->devs);
368 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200369 mutex_unlock(&blktrans_ref_mutex);
370
David Woodhousece37ab42007-12-03 12:46:12 +0000371 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200372 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (!tr->writesect)
374 new->readonly = 1;
375
Maxim Levitskya8638622010-02-22 20:39:29 +0200376 /* Create gendisk */
377 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200379
380 if (!gd)
381 goto error2;
382
383 new->disk = gd;
384 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 gd->major = tr->major;
386 gd->first_minor = (new->devnum) << tr->part_bits;
Ezequiel Garcia9329c5eb2012-11-09 12:36:35 -0300387 gd->fops = &mtd_block_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000388
Todd Poynor65a8de32005-07-29 20:42:07 +0100389 if (tr->part_bits)
390 if (new->devnum < 26)
391 snprintf(gd->disk_name, sizeof(gd->disk_name),
392 "%s%c", tr->name, 'a' + new->devnum);
393 else
394 snprintf(gd->disk_name, sizeof(gd->disk_name),
395 "%s%c%c", tr->name,
396 'a' - 1 + new->devnum / 26,
397 'a' + new->devnum % 26);
398 else
399 snprintf(gd->disk_name, sizeof(gd->disk_name),
400 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Richard Purdie19187672006-10-27 09:09:33 +0100402 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Maxim Levitskya8638622010-02-22 20:39:29 +0200404 /* Create the request queue */
405 spin_lock_init(&new->queue_lock);
406 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
407
408 if (!new->rq)
409 goto error3;
410
411 new->rq->queuedata = new;
412 blk_queue_logical_block_size(new->rq, tr->blksize);
413
Dan McGee16f7eca2011-09-28 00:21:42 -0500414 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
415
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200416 if (tr->discard) {
417 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
418 new->rq->limits.max_discard_sectors = UINT_MAX;
419 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200420
421 gd->queue = new->rq;
422
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300423 /* Create processing workqueue */
424 new->wq = alloc_workqueue("%s%d", 0, 0,
425 tr->name, new->mtd->index);
426 if (!new->wq)
Maxim Levitskya8638622010-02-22 20:39:29 +0200427 goto error4;
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300428 INIT_WORK(&new->work, mtd_blktrans_work);
429
David Woodhoused6948462009-04-05 07:38:33 -0700430 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 if (new->readonly)
433 set_disk_ro(gd, 1);
434
435 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200436
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200437 if (new->disk_attributes) {
438 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200439 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200440 WARN_ON(ret);
441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200443error4:
444 blk_cleanup_queue(new->rq);
445error3:
446 put_disk(new->disk);
447error2:
448 list_del(&new->list);
449error1:
Maxim Levitskya8638622010-02-22 20:39:29 +0200450 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
454{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200455 unsigned long flags;
456
Jean Delvareb3561ea2007-05-08 00:30:46 -0700457 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800458 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 BUG();
460 }
461
Maxim Levitsky026ec572010-02-22 20:39:33 +0200462 if (old->disk_attributes)
463 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
464 old->disk_attributes);
465
Maxim Levitskydba76c02010-07-28 18:53:16 +0300466 /* Stop new requests to arrive */
467 del_gendisk(old->disk);
468
Ezequiel Garcia22a85782012-11-10 13:08:20 -0300469 /* Stop workqueue. This will perform any pending request. */
470 destroy_workqueue(old->wq);
Maxim Levitskya8638622010-02-22 20:39:29 +0200471
Maxim Levitsky048d8712010-02-22 20:39:30 +0200472 /* Kill current requests */
473 spin_lock_irqsave(&old->queue_lock, flags);
474 old->rq->queuedata = NULL;
475 blk_start_queue(old->rq);
476 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200477
Maxim Levitsky008c7512010-10-15 17:20:43 +0200478 /* If the device is currently open, tell trans driver to close it,
479 then put mtd device, and don't touch it again */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200480 mutex_lock(&old->lock);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200481 if (old->open) {
482 if (old->tr->release)
483 old->tr->release(old);
484 __put_mtd_device(old->mtd);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200485 }
486
Maxim Levitsky048d8712010-02-22 20:39:30 +0200487 old->mtd = NULL;
488
489 mutex_unlock(&old->lock);
490 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492}
493
494static void blktrans_notify_remove(struct mtd_info *mtd)
495{
Chris Malley71a928c2008-05-19 20:11:50 +0100496 struct mtd_blktrans_ops *tr;
497 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Chris Malley71a928c2008-05-19 20:11:50 +0100499 list_for_each_entry(tr, &blktrans_majors, list)
500 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (dev->mtd == mtd)
502 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
505static void blktrans_notify_add(struct mtd_info *mtd)
506{
Chris Malley71a928c2008-05-19 20:11:50 +0100507 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 if (mtd->type == MTD_ABSENT)
510 return;
511
Chris Malley71a928c2008-05-19 20:11:50 +0100512 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516static struct mtd_notifier blktrans_notifier = {
517 .add = blktrans_notify_add,
518 .remove = blktrans_notify_remove,
519};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
522{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000523 struct mtd_info *mtd;
524 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000526 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 registered, to prevent the link/init ordering from fucking
528 us over. */
529 if (!blktrans_notifier.list.next)
530 register_mtd_user(&blktrans_notifier);
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Ingo Molnar48b19262006-03-31 02:29:41 -0800533 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 ret = register_blkdev(tr->major, tr->name);
Frank Li6fe4c592010-10-26 11:02:19 +0800536 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
538 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800539 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return ret;
541 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100542
Frank Li6fe4c592010-10-26 11:02:19 +0800543 if (ret)
544 tr->major = ret;
545
Richard Purdie19187672006-10-27 09:09:33 +0100546 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 INIT_LIST_HEAD(&tr->devs);
549 list_add(&tr->list, &blktrans_majors);
550
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000551 mtd_for_each_device(mtd)
552 if (mtd->type != MTD_ABSENT)
553 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Ingo Molnar48b19262006-03-31 02:29:41 -0800555 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return 0;
557}
558
559int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
560{
Chris Malley71a928c2008-05-19 20:11:50 +0100561 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Ingo Molnar48b19262006-03-31 02:29:41 -0800563 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /* Remove it from the list of active majors */
566 list_del(&tr->list);
567
Chris Malley71a928c2008-05-19 20:11:50 +0100568 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800572 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200574 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return 0;
576}
577
578static void __exit mtd_blktrans_exit(void)
579{
580 /* No race here -- if someone's currently in register_mtd_blktrans
581 we're screwed anyway. */
582 if (blktrans_notifier.list.next)
583 unregister_mtd_user(&blktrans_notifier);
584}
585
586module_exit(mtd_blktrans_exit);
587
588EXPORT_SYMBOL_GPL(register_mtd_blktrans);
589EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
590EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
591EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
592
593MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
594MODULE_LICENSE("GPL");
595MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");