blob: 485ea751c7f9b6ab18530e2d7ffcec3f328146c0 [file] [log] [blame]
Thomas Gleixner97894cd2005-11-07 11:15:26 +00001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Direct MTD block device access
3 *
David Woodhousea1452a32010-08-08 20:58:20 +01004 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
5 * Copyright © 2000-2003 Nicolas Pitre <nico@fluxnic.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/fs.h>
24#include <linux/init.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010025#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/slab.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010029#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/vmalloc.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/mtd/mtd.h>
33#include <linux/mtd/blktrans.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080034#include <linux/mutex.h>
Ezequiel Garciaf83c3832013-10-13 18:05:23 -030035#include <linux/major.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000038struct mtdblk_dev {
39 struct mtd_blktrans_dev mbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 int count;
Ingo Molnar48b19262006-03-31 02:29:41 -080041 struct mutex cache_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 unsigned char *cache_data;
43 unsigned long cache_offset;
44 unsigned int cache_size;
45 enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000046};
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Axel Lin7578ca92011-06-03 14:10:22 +080048static DEFINE_MUTEX(mtdblks_lock);
Matthias Kaehlcked676c112009-07-14 22:04:29 +020049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * Cache stuff...
Thomas Gleixner97894cd2005-11-07 11:15:26 +000052 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Since typical flash erasable sectors are much larger than what Linux's
54 * buffer cache can handle, we must implement read-modify-write on flash
55 * sectors for each block write requests. To avoid over-erasing flash sectors
56 * and to speed things up, we locally cache a whole flash sector while it is
57 * being written to until a different sector is required.
58 */
59
60static void erase_callback(struct erase_info *done)
61{
62 wait_queue_head_t *wait_q = (wait_queue_head_t *)done->priv;
63 wake_up(wait_q);
64}
65
Thomas Gleixner97894cd2005-11-07 11:15:26 +000066static int erase_write (struct mtd_info *mtd, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int len, const char *buf)
68{
69 struct erase_info erase;
70 DECLARE_WAITQUEUE(wait, current);
71 wait_queue_head_t wait_q;
72 size_t retlen;
73 int ret;
74
75 /*
76 * First, let's erase the flash block.
77 */
78
79 init_waitqueue_head(&wait_q);
80 erase.mtd = mtd;
81 erase.callback = erase_callback;
82 erase.addr = pos;
83 erase.len = len;
84 erase.priv = (u_long)&wait_q;
85
86 set_current_state(TASK_INTERRUPTIBLE);
87 add_wait_queue(&wait_q, &wait);
88
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +020089 ret = mtd_erase(mtd, &erase);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (ret) {
91 set_current_state(TASK_RUNNING);
92 remove_wait_queue(&wait_q, &wait);
93 printk (KERN_WARNING "mtdblock: erase of region [0x%lx, 0x%x] "
94 "on \"%s\" failed\n",
95 pos, len, mtd->name);
96 return ret;
97 }
98
99 schedule(); /* Wait for erase to finish. */
100 remove_wait_queue(&wait_q, &wait);
101
102 /*
Matthias Kaehlckedff15502009-07-06 12:02:08 +0200103 * Next, write the data to flash.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
105
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200106 ret = mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (ret)
108 return ret;
109 if (retlen != len)
110 return -EIO;
111 return 0;
112}
113
114
115static int write_cached_data (struct mtdblk_dev *mtdblk)
116{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000117 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 int ret;
119
120 if (mtdblk->cache_state != STATE_DIRTY)
121 return 0;
122
Brian Norris289c0522011-07-19 10:06:09 -0700123 pr_debug("mtdblock: writing cached data for \"%s\" "
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000124 "at 0x%lx, size 0x%x\n", mtd->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 mtdblk->cache_offset, mtdblk->cache_size);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000126
127 ret = erase_write (mtd, mtdblk->cache_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 mtdblk->cache_size, mtdblk->cache_data);
129 if (ret)
130 return ret;
131
132 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300133 * Here we could arguably set the cache state to STATE_CLEAN.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000134 * However this could lead to inconsistency since we will not
135 * be notified if this content is altered on the flash by other
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * means. Let's declare it empty and leave buffering tasks to
137 * the buffer cache instead.
138 */
139 mtdblk->cache_state = STATE_EMPTY;
140 return 0;
141}
142
143
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000144static int do_cached_write (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int len, const char *buf)
146{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000147 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 unsigned int sect_size = mtdblk->cache_size;
149 size_t retlen;
150 int ret;
151
Brian Norris289c0522011-07-19 10:06:09 -0700152 pr_debug("mtdblock: write on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 if (!sect_size)
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200156 return mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 while (len > 0) {
159 unsigned long sect_start = (pos/sect_size)*sect_size;
160 unsigned int offset = pos - sect_start;
161 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000162 if( size > len )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 size = len;
164
165 if (size == sect_size) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000166 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * We are covering a whole sector. Thus there is no
168 * need to bother with the cache while it may still be
169 * useful for other partial writes.
170 */
171 ret = erase_write (mtd, pos, size, buf);
172 if (ret)
173 return ret;
174 } else {
175 /* Partial sector: need to use the cache */
176
177 if (mtdblk->cache_state == STATE_DIRTY &&
178 mtdblk->cache_offset != sect_start) {
179 ret = write_cached_data(mtdblk);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000180 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return ret;
182 }
183
184 if (mtdblk->cache_state == STATE_EMPTY ||
185 mtdblk->cache_offset != sect_start) {
186 /* fill the cache with the current sector */
187 mtdblk->cache_state = STATE_EMPTY;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200188 ret = mtd_read(mtd, sect_start, sect_size,
189 &retlen, mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (ret)
191 return ret;
192 if (retlen != sect_size)
193 return -EIO;
194
195 mtdblk->cache_offset = sect_start;
196 mtdblk->cache_size = sect_size;
197 mtdblk->cache_state = STATE_CLEAN;
198 }
199
200 /* write data to our local cache */
201 memcpy (mtdblk->cache_data + offset, buf, size);
202 mtdblk->cache_state = STATE_DIRTY;
203 }
204
205 buf += size;
206 pos += size;
207 len -= size;
208 }
209
210 return 0;
211}
212
213
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000214static int do_cached_read (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int len, char *buf)
216{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000217 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 unsigned int sect_size = mtdblk->cache_size;
219 size_t retlen;
220 int ret;
221
Brian Norris289c0522011-07-19 10:06:09 -0700222 pr_debug("mtdblock: read on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!sect_size)
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200226 return mtd_read(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 while (len > 0) {
229 unsigned long sect_start = (pos/sect_size)*sect_size;
230 unsigned int offset = pos - sect_start;
231 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000232 if (size > len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 size = len;
234
235 /*
236 * Check if the requested data is already cached
237 * Read the requested amount of data from our internal cache if it
238 * contains what we want, otherwise we read the data directly
239 * from flash.
240 */
241 if (mtdblk->cache_state != STATE_EMPTY &&
242 mtdblk->cache_offset == sect_start) {
243 memcpy (buf, mtdblk->cache_data + offset, size);
244 } else {
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200245 ret = mtd_read(mtd, pos, size, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (ret)
247 return ret;
248 if (retlen != size)
249 return -EIO;
250 }
251
252 buf += size;
253 pos += size;
254 len -= size;
255 }
256
257 return 0;
258}
259
260static int mtdblock_readsect(struct mtd_blktrans_dev *dev,
261 unsigned long block, char *buf)
262{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000263 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return do_cached_read(mtdblk, block<<9, 512, buf);
265}
266
267static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
268 unsigned long block, char *buf)
269{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000270 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (unlikely(!mtdblk->cache_data && mtdblk->cache_size)) {
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000272 mtdblk->cache_data = vmalloc(mtdblk->mbd.mtd->erasesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!mtdblk->cache_data)
274 return -EINTR;
275 /* -EINTR is not really correct, but it is the best match
276 * documented in man 2 write for all cases. We could also
277 * return -EAGAIN sometimes, but why bother?
278 */
279 }
280 return do_cached_write(mtdblk, block<<9, 512, buf);
281}
282
283static int mtdblock_open(struct mtd_blktrans_dev *mbd)
284{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000285 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Brian Norris289c0522011-07-19 10:06:09 -0700287 pr_debug("mtdblock_open\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000288
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200289 mutex_lock(&mtdblks_lock);
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000290 if (mtdblk->count) {
291 mtdblk->count++;
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200292 mutex_unlock(&mtdblks_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return 0;
294 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* OK, it's not open. Create cache info for it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 mtdblk->count = 1;
Ingo Molnar48b19262006-03-31 02:29:41 -0800298 mutex_init(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 mtdblk->cache_state = STATE_EMPTY;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000300 if (!(mbd->mtd->flags & MTD_NO_ERASE) && mbd->mtd->erasesize) {
301 mtdblk->cache_size = mbd->mtd->erasesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 mtdblk->cache_data = NULL;
303 }
304
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200305 mutex_unlock(&mtdblks_lock);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000306
Brian Norris289c0522011-07-19 10:06:09 -0700307 pr_debug("ok\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 return 0;
310}
311
Al Viroa8ca8892013-05-05 21:31:22 -0400312static void mtdblock_release(struct mtd_blktrans_dev *mbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000314 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Brian Norris289c0522011-07-19 10:06:09 -0700316 pr_debug("mtdblock_release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200318 mutex_lock(&mtdblks_lock);
319
Ingo Molnar48b19262006-03-31 02:29:41 -0800320 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800322 mutex_unlock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 if (!--mtdblk->count) {
Alexander Stein70d50982012-01-10 13:26:58 +0100325 /*
326 * It was the last usage. Free the cache, but only sync if
327 * opened for writing.
328 */
329 if (mbd->file_mode & FMODE_WRITE)
330 mtd_sync(mbd->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 vfree(mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200333
334 mutex_unlock(&mtdblks_lock);
335
Brian Norris289c0522011-07-19 10:06:09 -0700336 pr_debug("ok\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000337}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339static int mtdblock_flush(struct mtd_blktrans_dev *dev)
340{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000341 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Ingo Molnar48b19262006-03-31 02:29:41 -0800343 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800345 mutex_unlock(&mtdblk->cache_mutex);
Artem Bityutskiy327cf292011-12-30 16:35:35 +0200346 mtd_sync(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348}
349
350static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
351{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000352 struct mtdblk_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 if (!dev)
355 return;
356
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000357 dev->mbd.mtd = mtd;
358 dev->mbd.devnum = mtd->index;
Richard Purdie19187672006-10-27 09:09:33 +0100359
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000360 dev->mbd.size = mtd->size >> 9;
361 dev->mbd.tr = tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 if (!(mtd->flags & MTD_WRITEABLE))
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000364 dev->mbd.readonly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Maxim Levitsky298304f2010-02-22 20:39:31 +0200366 if (add_mtd_blktrans_dev(&dev->mbd))
367 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
370static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
371{
372 del_mtd_blktrans_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375static struct mtd_blktrans_ops mtdblock_tr = {
376 .name = "mtdblock",
Ezequiel Garcia2aabeb22013-10-08 20:59:08 -0300377 .major = MTD_BLOCK_MAJOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 .part_bits = 0,
Richard Purdie19187672006-10-27 09:09:33 +0100379 .blksize = 512,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 .open = mtdblock_open,
381 .flush = mtdblock_flush,
382 .release = mtdblock_release,
383 .readsect = mtdblock_readsect,
384 .writesect = mtdblock_writesect,
385 .add_mtd = mtdblock_add_mtd,
386 .remove_dev = mtdblock_remove_dev,
387 .owner = THIS_MODULE,
388};
389
390static int __init init_mtdblock(void)
391{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return register_mtd_blktrans(&mtdblock_tr);
393}
394
395static void __exit cleanup_mtdblock(void)
396{
397 deregister_mtd_blktrans(&mtdblock_tr);
398}
399
400module_init(init_mtdblock);
401module_exit(cleanup_mtdblock);
402
403
404MODULE_LICENSE("GPL");
Nicolas Pitre2f82af02009-09-14 03:25:28 -0400405MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406MODULE_DESCRIPTION("Caching read/erase/writeback block device emulation access to MTD devices");