blob: bb4c14f83c75acd0c070fca721e2516447fe633c [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
48/*
49 * Cache stuff...
Thomas Gleixner97894cd2005-11-07 11:15:26 +000050 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * Since typical flash erasable sectors are much larger than what Linux's
52 * buffer cache can handle, we must implement read-modify-write on flash
53 * sectors for each block write requests. To avoid over-erasing flash sectors
54 * and to speed things up, we locally cache a whole flash sector while it is
55 * being written to until a different sector is required.
56 */
57
58static void erase_callback(struct erase_info *done)
59{
60 wait_queue_head_t *wait_q = (wait_queue_head_t *)done->priv;
61 wake_up(wait_q);
62}
63
Thomas Gleixner97894cd2005-11-07 11:15:26 +000064static int erase_write (struct mtd_info *mtd, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int len, const char *buf)
66{
67 struct erase_info erase;
68 DECLARE_WAITQUEUE(wait, current);
69 wait_queue_head_t wait_q;
70 size_t retlen;
71 int ret;
72
73 /*
74 * First, let's erase the flash block.
75 */
76
77 init_waitqueue_head(&wait_q);
78 erase.mtd = mtd;
79 erase.callback = erase_callback;
80 erase.addr = pos;
81 erase.len = len;
82 erase.priv = (u_long)&wait_q;
83
84 set_current_state(TASK_INTERRUPTIBLE);
85 add_wait_queue(&wait_q, &wait);
86
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +020087 ret = mtd_erase(mtd, &erase);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (ret) {
89 set_current_state(TASK_RUNNING);
90 remove_wait_queue(&wait_q, &wait);
91 printk (KERN_WARNING "mtdblock: erase of region [0x%lx, 0x%x] "
92 "on \"%s\" failed\n",
93 pos, len, mtd->name);
94 return ret;
95 }
96
97 schedule(); /* Wait for erase to finish. */
98 remove_wait_queue(&wait_q, &wait);
99
100 /*
Matthias Kaehlckedff15502009-07-06 12:02:08 +0200101 * Next, write the data to flash.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
103
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200104 ret = mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (ret)
106 return ret;
107 if (retlen != len)
108 return -EIO;
109 return 0;
110}
111
112
113static int write_cached_data (struct mtdblk_dev *mtdblk)
114{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000115 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int ret;
117
118 if (mtdblk->cache_state != STATE_DIRTY)
119 return 0;
120
Brian Norris289c0522011-07-19 10:06:09 -0700121 pr_debug("mtdblock: writing cached data for \"%s\" "
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000122 "at 0x%lx, size 0x%x\n", mtd->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 mtdblk->cache_offset, mtdblk->cache_size);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000124
125 ret = erase_write (mtd, mtdblk->cache_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 mtdblk->cache_size, mtdblk->cache_data);
127 if (ret)
128 return ret;
129
130 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300131 * Here we could arguably set the cache state to STATE_CLEAN.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000132 * However this could lead to inconsistency since we will not
133 * be notified if this content is altered on the flash by other
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * means. Let's declare it empty and leave buffering tasks to
135 * the buffer cache instead.
136 */
137 mtdblk->cache_state = STATE_EMPTY;
138 return 0;
139}
140
141
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000142static int do_cached_write (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int len, const char *buf)
144{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000145 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 unsigned int sect_size = mtdblk->cache_size;
147 size_t retlen;
148 int ret;
149
Brian Norris289c0522011-07-19 10:06:09 -0700150 pr_debug("mtdblock: write on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!sect_size)
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200154 return mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 while (len > 0) {
157 unsigned long sect_start = (pos/sect_size)*sect_size;
158 unsigned int offset = pos - sect_start;
159 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000160 if( size > len )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 size = len;
162
163 if (size == sect_size) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000164 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * We are covering a whole sector. Thus there is no
166 * need to bother with the cache while it may still be
167 * useful for other partial writes.
168 */
169 ret = erase_write (mtd, pos, size, buf);
170 if (ret)
171 return ret;
172 } else {
173 /* Partial sector: need to use the cache */
174
175 if (mtdblk->cache_state == STATE_DIRTY &&
176 mtdblk->cache_offset != sect_start) {
177 ret = write_cached_data(mtdblk);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000178 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return ret;
180 }
181
182 if (mtdblk->cache_state == STATE_EMPTY ||
183 mtdblk->cache_offset != sect_start) {
184 /* fill the cache with the current sector */
185 mtdblk->cache_state = STATE_EMPTY;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200186 ret = mtd_read(mtd, sect_start, sect_size,
187 &retlen, mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (ret)
189 return ret;
190 if (retlen != sect_size)
191 return -EIO;
192
193 mtdblk->cache_offset = sect_start;
194 mtdblk->cache_size = sect_size;
195 mtdblk->cache_state = STATE_CLEAN;
196 }
197
198 /* write data to our local cache */
199 memcpy (mtdblk->cache_data + offset, buf, size);
200 mtdblk->cache_state = STATE_DIRTY;
201 }
202
203 buf += size;
204 pos += size;
205 len -= size;
206 }
207
208 return 0;
209}
210
211
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000212static int do_cached_read (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int len, char *buf)
214{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000215 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 unsigned int sect_size = mtdblk->cache_size;
217 size_t retlen;
218 int ret;
219
Brian Norris289c0522011-07-19 10:06:09 -0700220 pr_debug("mtdblock: read on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!sect_size)
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200224 return mtd_read(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 while (len > 0) {
227 unsigned long sect_start = (pos/sect_size)*sect_size;
228 unsigned int offset = pos - sect_start;
229 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000230 if (size > len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 size = len;
232
233 /*
234 * Check if the requested data is already cached
235 * Read the requested amount of data from our internal cache if it
236 * contains what we want, otherwise we read the data directly
237 * from flash.
238 */
239 if (mtdblk->cache_state != STATE_EMPTY &&
240 mtdblk->cache_offset == sect_start) {
241 memcpy (buf, mtdblk->cache_data + offset, size);
242 } else {
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200243 ret = mtd_read(mtd, pos, size, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (ret)
245 return ret;
246 if (retlen != size)
247 return -EIO;
248 }
249
250 buf += size;
251 pos += size;
252 len -= size;
253 }
254
255 return 0;
256}
257
258static int mtdblock_readsect(struct mtd_blktrans_dev *dev,
259 unsigned long block, char *buf)
260{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000261 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return do_cached_read(mtdblk, block<<9, 512, buf);
263}
264
265static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
266 unsigned long block, char *buf)
267{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000268 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (unlikely(!mtdblk->cache_data && mtdblk->cache_size)) {
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000270 mtdblk->cache_data = vmalloc(mtdblk->mbd.mtd->erasesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (!mtdblk->cache_data)
272 return -EINTR;
273 /* -EINTR is not really correct, but it is the best match
274 * documented in man 2 write for all cases. We could also
275 * return -EAGAIN sometimes, but why bother?
276 */
277 }
278 return do_cached_write(mtdblk, block<<9, 512, buf);
279}
280
281static int mtdblock_open(struct mtd_blktrans_dev *mbd)
282{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000283 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Brian Norris289c0522011-07-19 10:06:09 -0700285 pr_debug("mtdblock_open\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000286
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000287 if (mtdblk->count) {
288 mtdblk->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return 0;
290 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* OK, it's not open. Create cache info for it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 mtdblk->count = 1;
Ingo Molnar48b19262006-03-31 02:29:41 -0800294 mutex_init(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 mtdblk->cache_state = STATE_EMPTY;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000296 if (!(mbd->mtd->flags & MTD_NO_ERASE) && mbd->mtd->erasesize) {
297 mtdblk->cache_size = mbd->mtd->erasesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 mtdblk->cache_data = NULL;
299 }
300
Brian Norris289c0522011-07-19 10:06:09 -0700301 pr_debug("ok\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 return 0;
304}
305
Al Viroa8ca8892013-05-05 21:31:22 -0400306static void mtdblock_release(struct mtd_blktrans_dev *mbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000308 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Brian Norris289c0522011-07-19 10:06:09 -0700310 pr_debug("mtdblock_release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Ingo Molnar48b19262006-03-31 02:29:41 -0800312 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800314 mutex_unlock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 if (!--mtdblk->count) {
Alexander Stein70d50982012-01-10 13:26:58 +0100317 /*
318 * It was the last usage. Free the cache, but only sync if
319 * opened for writing.
320 */
321 if (mbd->file_mode & FMODE_WRITE)
322 mtd_sync(mbd->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 vfree(mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200325
Brian Norris289c0522011-07-19 10:06:09 -0700326 pr_debug("ok\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329static int mtdblock_flush(struct mtd_blktrans_dev *dev)
330{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000331 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Ingo Molnar48b19262006-03-31 02:29:41 -0800333 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800335 mutex_unlock(&mtdblk->cache_mutex);
Artem Bityutskiy327cf292011-12-30 16:35:35 +0200336 mtd_sync(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return 0;
338}
339
340static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
341{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000342 struct mtdblk_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (!dev)
345 return;
346
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000347 dev->mbd.mtd = mtd;
348 dev->mbd.devnum = mtd->index;
Richard Purdie19187672006-10-27 09:09:33 +0100349
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000350 dev->mbd.size = mtd->size >> 9;
351 dev->mbd.tr = tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 if (!(mtd->flags & MTD_WRITEABLE))
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000354 dev->mbd.readonly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Maxim Levitsky298304f2010-02-22 20:39:31 +0200356 if (add_mtd_blktrans_dev(&dev->mbd))
357 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
361{
362 del_mtd_blktrans_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365static struct mtd_blktrans_ops mtdblock_tr = {
366 .name = "mtdblock",
Ezequiel Garcia2aabeb22013-10-08 20:59:08 -0300367 .major = MTD_BLOCK_MAJOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 .part_bits = 0,
Richard Purdie19187672006-10-27 09:09:33 +0100369 .blksize = 512,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 .open = mtdblock_open,
371 .flush = mtdblock_flush,
372 .release = mtdblock_release,
373 .readsect = mtdblock_readsect,
374 .writesect = mtdblock_writesect,
375 .add_mtd = mtdblock_add_mtd,
376 .remove_dev = mtdblock_remove_dev,
377 .owner = THIS_MODULE,
378};
379
380static int __init init_mtdblock(void)
381{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return register_mtd_blktrans(&mtdblock_tr);
383}
384
385static void __exit cleanup_mtdblock(void)
386{
387 deregister_mtd_blktrans(&mtdblock_tr);
388}
389
390module_init(init_mtdblock);
391module_exit(cleanup_mtdblock);
392
393
394MODULE_LICENSE("GPL");
Nicolas Pitre2f82af02009-09-14 03:25:28 -0400395MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396MODULE_DESCRIPTION("Caching read/erase/writeback block device emulation access to MTD devices");