blob: 65dd2fd7b12e8f1c9f5c84fab6ceda37b6a45660 [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>
33#include <linux/init.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080034#include <linux/mutex.h>
Eric W. Biederman99f9b242007-04-19 01:58:33 -060035#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Ben Dooks356d70f2007-05-28 20:28:34 +010038#include "mtdcore.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Ben Dooks356d70f2007-05-28 20:28:34 +010040static LIST_HEAD(blktrans_majors);
Maxim Levitsky048d8712010-02-22 20:39:30 +020041static DEFINE_MUTEX(blktrans_ref_mutex);
42
H Hartley Sweeten7f53f122011-01-11 18:46:10 -060043static void blktrans_dev_release(struct kref *kref)
Maxim Levitsky048d8712010-02-22 20:39:30 +020044{
45 struct mtd_blktrans_dev *dev =
46 container_of(kref, struct mtd_blktrans_dev, ref);
47
48 dev->disk->private_data = NULL;
Maxim Levitskye4d64ca2010-02-27 02:31:51 +020049 blk_cleanup_queue(dev->rq);
Maxim Levitsky048d8712010-02-22 20:39:30 +020050 put_disk(dev->disk);
51 list_del(&dev->list);
52 kfree(dev);
53}
54
55static struct mtd_blktrans_dev *blktrans_dev_get(struct gendisk *disk)
56{
57 struct mtd_blktrans_dev *dev;
58
59 mutex_lock(&blktrans_ref_mutex);
60 dev = disk->private_data;
61
62 if (!dev)
63 goto unlock;
64 kref_get(&dev->ref);
65unlock:
66 mutex_unlock(&blktrans_ref_mutex);
67 return dev;
68}
69
H Hartley Sweeten7f53f122011-01-11 18:46:10 -060070static void blktrans_dev_put(struct mtd_blktrans_dev *dev)
Maxim Levitsky048d8712010-02-22 20:39:30 +020071{
72 mutex_lock(&blktrans_ref_mutex);
73 kref_put(&dev->ref, blktrans_dev_release);
74 mutex_unlock(&blktrans_ref_mutex);
75}
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78static int do_blktrans_request(struct mtd_blktrans_ops *tr,
79 struct mtd_blktrans_dev *dev,
80 struct request *req)
81{
82 unsigned long block, nsect;
83 char *buf;
84
Tejun Heo83096eb2009-05-07 22:24:39 +090085 block = blk_rq_pos(req) << 9 >> tr->blkshift;
Tejun Heo1011c1b2009-05-07 22:24:45 +090086 nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
Richard Purdie19187672006-10-27 09:09:33 +010087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 buf = req->buffer;
89
Christoph Hellwig33659eb2010-08-07 18:17:56 +020090 if (req->cmd_type != REQ_TYPE_FS)
Tejun Heof06d9a22009-04-23 11:05:19 +090091 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
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{
124 if (kthread_should_stop())
125 return 1;
126
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200127 return dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200128}
129EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static int mtd_blktrans_thread(void *arg)
132{
Maxim Levitskya8638622010-02-22 20:39:29 +0200133 struct mtd_blktrans_dev *dev = arg;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200134 struct mtd_blktrans_ops *tr = dev->tr;
Maxim Levitskya8638622010-02-22 20:39:29 +0200135 struct request_queue *rq = dev->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +0900136 struct request *req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200137 int background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +0900140
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100141 while (!kthread_should_stop()) {
Tejun Heof06d9a22009-04-23 11:05:19 +0900142 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200144 dev->bg_stop = false;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900145 if (!req && !(req = blk_fetch_request(rq))) {
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200146 if (tr->background && !background_done) {
147 spin_unlock_irq(rq->queue_lock);
148 mutex_lock(&dev->lock);
149 tr->background(dev);
150 mutex_unlock(&dev->lock);
151 spin_lock_irq(rq->queue_lock);
152 /*
153 * Do background processing just once per idle
154 * period.
155 */
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200156 background_done = !dev->bg_stop;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200157 continue;
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 set_current_state(TASK_INTERRUPTIBLE);
Maxim Levitsky12aebf32010-10-15 17:20:45 +0200160
161 if (kthread_should_stop())
162 set_current_state(TASK_RUNNING);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 continue;
168 }
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 spin_unlock_irq(rq->queue_lock);
171
Ingo Molnar48b19262006-03-31 02:29:41 -0800172 mutex_lock(&dev->lock);
Maxim Levitskya8638622010-02-22 20:39:29 +0200173 res = do_blktrans_request(dev->tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800174 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 spin_lock_irq(rq->queue_lock);
177
Tejun Heo1498ada2009-05-08 11:54:11 +0900178 if (!__blk_end_request_cur(req, res))
179 req = NULL;
Jarkko Lavinenc7519db2011-02-14 16:16:09 +0200180
181 background_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900183
184 if (req)
185 __blk_end_request_all(req, -EIO);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 spin_unlock_irq(rq->queue_lock);
188
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192static void mtd_blktrans_request(struct request_queue *rq)
193{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200194 struct mtd_blktrans_dev *dev;
195 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Maxim Levitsky048d8712010-02-22 20:39:30 +0200197 dev = rq->queuedata;
198
199 if (!dev)
200 while ((req = blk_fetch_request(rq)) != NULL)
201 __blk_end_request_all(req, -ENODEV);
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200202 else {
203 dev->bg_stop = true;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200204 wake_up_process(dev->thread);
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +0200205 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200206}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Al Viroaf0e2a02008-03-02 10:35:06 -0500208static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200210 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200211 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Maxim Levitsky048d8712010-02-22 20:39:30 +0200213 if (!dev)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200214 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Maxim Levitsky048d8712010-02-22 20:39:30 +0200216 mutex_lock(&dev->lock);
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600217 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Brian Norris342ff282011-11-07 15:51:05 -0800219 if (dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200220 goto unlock;
Maxim Levitsky008c7512010-10-15 17:20:43 +0200221
222 kref_get(&dev->ref);
223 __module_get(dev->tr->owner);
224
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300225 if (!dev->mtd)
226 goto unlock;
227
228 if (dev->tr->open) {
229 ret = dev->tr->open(dev);
230 if (ret)
231 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200233
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300234 ret = __get_mtd_device(dev->mtd);
235 if (ret)
236 goto error_release;
Alexander Stein70d50982012-01-10 13:26:58 +0100237 dev->file_mode = mode;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300238
Maxim Levitsky048d8712010-02-22 20:39:30 +0200239unlock:
Brian Norris342ff282011-11-07 15:51:05 -0800240 dev->open++;
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600241 mutex_unlock(&mtd_table_mutex);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200242 mutex_unlock(&dev->lock);
243 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return ret;
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300245
246error_release:
247 if (dev->tr->release)
248 dev->tr->release(dev);
249error_put:
250 module_put(dev->tr->owner);
251 kref_put(&dev->ref, blktrans_dev_release);
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600252 mutex_unlock(&mtd_table_mutex);
Artem Bityutskiy94735ec2011-04-18 07:50:37 +0300253 mutex_unlock(&dev->lock);
254 blktrans_dev_put(dev);
255 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Al Viroaf0e2a02008-03-02 10:35:06 -0500258static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200260 struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200261 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Maxim Levitsky048d8712010-02-22 20:39:30 +0200263 if (!dev)
264 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Maxim Levitsky048d8712010-02-22 20:39:30 +0200266 mutex_lock(&dev->lock);
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600267 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Maxim Levitsky008c7512010-10-15 17:20:43 +0200269 if (--dev->open)
Maxim Levitsky048d8712010-02-22 20:39:30 +0200270 goto unlock;
271
Maxim Levitsky008c7512010-10-15 17:20:43 +0200272 kref_put(&dev->ref, blktrans_dev_release);
273 module_put(dev->tr->owner);
274
275 if (dev->mtd) {
276 ret = dev->tr->release ? dev->tr->release(dev) : 0;
277 __put_mtd_device(dev->mtd);
278 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200279unlock:
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600280 mutex_unlock(&mtd_table_mutex);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200281 mutex_unlock(&dev->lock);
282 blktrans_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return ret;
284}
285
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800286static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
287{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200288 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
289 int ret = -ENXIO;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800290
Maxim Levitsky048d8712010-02-22 20:39:30 +0200291 if (!dev)
292 return ret;
293
294 mutex_lock(&dev->lock);
295
296 if (!dev->mtd)
297 goto unlock;
298
299 ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
300unlock:
301 mutex_unlock(&dev->lock);
302 blktrans_dev_put(dev);
303 return ret;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800304}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Al Viroaf0e2a02008-03-02 10:35:06 -0500306static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unsigned int cmd, unsigned long arg)
308{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200309 struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
310 int ret = -ENXIO;
311
312 if (!dev)
313 return ret;
314
315 mutex_lock(&dev->lock);
316
317 if (!dev->mtd)
318 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 switch (cmd) {
321 case BLKFLSBUF:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200322 ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
Dan Carpenter007c2d82010-05-31 16:03:38 +0200323 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 default:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200325 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Maxim Levitsky048d8712010-02-22 20:39:30 +0200327unlock:
328 mutex_unlock(&dev->lock);
329 blktrans_dev_put(dev);
330 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700333static const struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500335 .open = blktrans_open,
336 .release = blktrans_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200337 .ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800338 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339};
340
341int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
342{
343 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100344 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 int last_devnum = -1;
346 struct gendisk *gd;
Maxim Levitskya8638622010-02-22 20:39:29 +0200347 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Jean Delvareb3561ea2007-05-08 00:30:46 -0700349 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800350 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 BUG();
352 }
353
Maxim Levitsky048d8712010-02-22 20:39:30 +0200354 mutex_lock(&blktrans_ref_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100355 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (new->devnum == -1) {
357 /* Use first free number */
358 if (d->devnum != last_devnum+1) {
359 /* Found a free devnum. Plug it in here */
360 new->devnum = last_devnum+1;
361 list_add_tail(&new->list, &d->list);
362 goto added;
363 }
364 } else if (d->devnum == new->devnum) {
365 /* Required number taken */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200366 mutex_unlock(&blktrans_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -EBUSY;
368 } else if (d->devnum > new->devnum) {
369 /* Required number was free */
370 list_add_tail(&new->list, &d->list);
371 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 last_devnum = d->devnum;
374 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200375
376 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (new->devnum == -1)
378 new->devnum = last_devnum+1;
379
Ben Hutchings4d3a8532010-01-29 20:59:53 +0000380 /* Check that the device and any partitions will get valid
381 * minor numbers and that the disk naming code below can cope
382 * with this number. */
383 if (new->devnum > (MINORMASK >> tr->part_bits) ||
Maxim Levitsky048d8712010-02-22 20:39:30 +0200384 (tr->part_bits && new->devnum >= 27 * 26)) {
385 mutex_unlock(&blktrans_ref_mutex);
Maxim Levitskya8638622010-02-22 20:39:29 +0200386 goto error1;
Maxim Levitsky048d8712010-02-22 20:39:30 +0200387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 list_add_tail(&new->list, &tr->devs);
390 added:
Maxim Levitsky048d8712010-02-22 20:39:30 +0200391 mutex_unlock(&blktrans_ref_mutex);
392
David Woodhousece37ab42007-12-03 12:46:12 +0000393 mutex_init(&new->lock);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200394 kref_init(&new->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!tr->writesect)
396 new->readonly = 1;
397
Maxim Levitskya8638622010-02-22 20:39:29 +0200398 /* Create gendisk */
399 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 gd = alloc_disk(1 << tr->part_bits);
Maxim Levitskya8638622010-02-22 20:39:29 +0200401
402 if (!gd)
403 goto error2;
404
405 new->disk = gd;
406 gd->private_data = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 gd->major = tr->major;
408 gd->first_minor = (new->devnum) << tr->part_bits;
409 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000410
Todd Poynor65a8de32005-07-29 20:42:07 +0100411 if (tr->part_bits)
412 if (new->devnum < 26)
413 snprintf(gd->disk_name, sizeof(gd->disk_name),
414 "%s%c", tr->name, 'a' + new->devnum);
415 else
416 snprintf(gd->disk_name, sizeof(gd->disk_name),
417 "%s%c%c", tr->name,
418 'a' - 1 + new->devnum / 26,
419 'a' + new->devnum % 26);
420 else
421 snprintf(gd->disk_name, sizeof(gd->disk_name),
422 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Richard Purdie19187672006-10-27 09:09:33 +0100424 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Maxim Levitskya8638622010-02-22 20:39:29 +0200426 /* Create the request queue */
427 spin_lock_init(&new->queue_lock);
428 new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);
429
430 if (!new->rq)
431 goto error3;
432
433 new->rq->queuedata = new;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700434
435 /*
436 * Empirical measurements revealed that read ahead values larger than
437 * 4 slowed down boot time, so start out with this small value.
438 */
439 new->rq->backing_dev_info.ra_pages = (4 * 1024) / PAGE_CACHE_SIZE;
440
Maxim Levitskya8638622010-02-22 20:39:29 +0200441 blk_queue_logical_block_size(new->rq, tr->blksize);
442
Dan McGee16f7eca2011-09-28 00:21:42 -0500443 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
444
Jarkko Lavinen115ee882011-02-14 16:16:10 +0200445 if (tr->discard) {
446 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
447 new->rq->limits.max_discard_sectors = UINT_MAX;
448 }
Maxim Levitskya8638622010-02-22 20:39:29 +0200449
450 gd->queue = new->rq;
451
452 /* Create processing thread */
453 /* TODO: workqueue ? */
454 new->thread = kthread_run(mtd_blktrans_thread, new,
455 "%s%d", tr->name, new->mtd->index);
456 if (IS_ERR(new->thread)) {
457 ret = PTR_ERR(new->thread);
458 goto error4;
459 }
David Woodhoused6948462009-04-05 07:38:33 -0700460 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 if (new->readonly)
463 set_disk_ro(gd, 1);
464
465 add_disk(gd);
Maxim Levitsky026ec572010-02-22 20:39:33 +0200466
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200467 if (new->disk_attributes) {
468 ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
Maxim Levitsky026ec572010-02-22 20:39:33 +0200469 new->disk_attributes);
Maxim Levitsky133fa8c2010-02-26 22:08:40 +0200470 WARN_ON(ret);
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 0;
Maxim Levitskya8638622010-02-22 20:39:29 +0200473error4:
474 blk_cleanup_queue(new->rq);
475error3:
476 put_disk(new->disk);
477error2:
478 list_del(&new->list);
479error1:
Maxim Levitskya8638622010-02-22 20:39:29 +0200480 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
484{
Maxim Levitsky048d8712010-02-22 20:39:30 +0200485 unsigned long flags;
486
Jean Delvareb3561ea2007-05-08 00:30:46 -0700487 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800488 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 BUG();
490 }
491
Maxim Levitsky026ec572010-02-22 20:39:33 +0200492 if (old->disk_attributes)
493 sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
494 old->disk_attributes);
495
Maxim Levitskydba76c02010-07-28 18:53:16 +0300496 /* Stop new requests to arrive */
497 del_gendisk(old->disk);
498
499
Maxim Levitskya8638622010-02-22 20:39:29 +0200500 /* Stop the thread */
501 kthread_stop(old->thread);
502
Maxim Levitsky048d8712010-02-22 20:39:30 +0200503 /* Kill current requests */
504 spin_lock_irqsave(&old->queue_lock, flags);
505 old->rq->queuedata = NULL;
506 blk_start_queue(old->rq);
507 spin_unlock_irqrestore(&old->queue_lock, flags);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200508
Maxim Levitsky008c7512010-10-15 17:20:43 +0200509 /* If the device is currently open, tell trans driver to close it,
510 then put mtd device, and don't touch it again */
Maxim Levitsky048d8712010-02-22 20:39:30 +0200511 mutex_lock(&old->lock);
Maxim Levitsky008c7512010-10-15 17:20:43 +0200512 if (old->open) {
513 if (old->tr->release)
514 old->tr->release(old);
515 __put_mtd_device(old->mtd);
Maxim Levitsky048d8712010-02-22 20:39:30 +0200516 }
517
Maxim Levitsky048d8712010-02-22 20:39:30 +0200518 old->mtd = NULL;
519
520 mutex_unlock(&old->lock);
521 blktrans_dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return 0;
523}
524
525static void blktrans_notify_remove(struct mtd_info *mtd)
526{
Chris Malley71a928c2008-05-19 20:11:50 +0100527 struct mtd_blktrans_ops *tr;
528 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Chris Malley71a928c2008-05-19 20:11:50 +0100530 list_for_each_entry(tr, &blktrans_majors, list)
531 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (dev->mtd == mtd)
533 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536static void blktrans_notify_add(struct mtd_info *mtd)
537{
Chris Malley71a928c2008-05-19 20:11:50 +0100538 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (mtd->type == MTD_ABSENT)
541 return;
542
Chris Malley71a928c2008-05-19 20:11:50 +0100543 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547static struct mtd_notifier blktrans_notifier = {
548 .add = blktrans_notify_add,
549 .remove = blktrans_notify_remove,
550};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
553{
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000554 struct mtd_info *mtd;
555 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000557 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 registered, to prevent the link/init ordering from fucking
559 us over. */
560 if (!blktrans_notifier.list.next)
561 register_mtd_user(&blktrans_notifier);
562
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
566 ret = register_blkdev(tr->major, tr->name);
Frank Li6fe4c592010-10-26 11:02:19 +0800567 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
569 tr->name, tr->major, ret);
Ingo Molnar48b19262006-03-31 02:29:41 -0800570 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return ret;
572 }
David Woodhouseeae9acd2008-08-05 18:08:25 +0100573
Frank Li6fe4c592010-10-26 11:02:19 +0800574 if (ret)
575 tr->major = ret;
576
Richard Purdie19187672006-10-27 09:09:33 +0100577 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 INIT_LIST_HEAD(&tr->devs);
580 list_add(&tr->list, &blktrans_majors);
581
Ben Hutchingsf1332ba2010-01-29 20:57:11 +0000582 mtd_for_each_device(mtd)
583 if (mtd->type != MTD_ABSENT)
584 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Ingo Molnar48b19262006-03-31 02:29:41 -0800586 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return 0;
588}
589
590int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
591{
Chris Malley71a928c2008-05-19 20:11:50 +0100592 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Ingo Molnar48b19262006-03-31 02:29:41 -0800594 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* Remove it from the list of active majors */
597 list_del(&tr->list);
598
Chris Malley71a928c2008-05-19 20:11:50 +0100599 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 unregister_blkdev(tr->major, tr->name);
Ingo Molnar48b19262006-03-31 02:29:41 -0800603 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200605 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 0;
607}
608
609static void __exit mtd_blktrans_exit(void)
610{
611 /* No race here -- if someone's currently in register_mtd_blktrans
612 we're screwed anyway. */
613 if (blktrans_notifier.list.next)
614 unregister_mtd_user(&blktrans_notifier);
615}
616
617module_exit(mtd_blktrans_exit);
618
619EXPORT_SYMBOL_GPL(register_mtd_blktrans);
620EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
621EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
622EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
623
624MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
625MODULE_LICENSE("GPL");
626MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");