blob: a5b1933c0490946d3c328f13074865af10718f19 [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
Thomas Gleixner97894cd2005-11-07 11:15:26 +000058static int erase_write (struct mtd_info *mtd, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int len, const char *buf)
60{
61 struct erase_info erase;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 size_t retlen;
63 int ret;
64
65 /*
66 * First, let's erase the flash block.
67 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 erase.addr = pos;
69 erase.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +020071 ret = mtd_erase(mtd, &erase);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 printk (KERN_WARNING "mtdblock: erase of region [0x%lx, 0x%x] "
74 "on \"%s\" failed\n",
75 pos, len, mtd->name);
76 return ret;
77 }
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 /*
Matthias Kaehlckedff15502009-07-06 12:02:08 +020080 * Next, write the data to flash.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +020083 ret = mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (ret)
85 return ret;
86 if (retlen != len)
87 return -EIO;
88 return 0;
89}
90
91
92static int write_cached_data (struct mtdblk_dev *mtdblk)
93{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000094 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int ret;
96
97 if (mtdblk->cache_state != STATE_DIRTY)
98 return 0;
99
Brian Norris289c0522011-07-19 10:06:09 -0700100 pr_debug("mtdblock: writing cached data for \"%s\" "
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000101 "at 0x%lx, size 0x%x\n", mtd->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 mtdblk->cache_offset, mtdblk->cache_size);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000103
104 ret = erase_write (mtd, mtdblk->cache_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 mtdblk->cache_size, mtdblk->cache_data);
106 if (ret)
107 return ret;
108
109 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300110 * Here we could arguably set the cache state to STATE_CLEAN.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000111 * However this could lead to inconsistency since we will not
112 * be notified if this content is altered on the flash by other
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * means. Let's declare it empty and leave buffering tasks to
114 * the buffer cache instead.
115 */
116 mtdblk->cache_state = STATE_EMPTY;
117 return 0;
118}
119
120
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000121static int do_cached_write (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 int len, const char *buf)
123{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000124 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 unsigned int sect_size = mtdblk->cache_size;
126 size_t retlen;
127 int ret;
128
Brian Norris289c0522011-07-19 10:06:09 -0700129 pr_debug("mtdblock: write on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (!sect_size)
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200133 return mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 while (len > 0) {
136 unsigned long sect_start = (pos/sect_size)*sect_size;
137 unsigned int offset = pos - sect_start;
138 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000139 if( size > len )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 size = len;
141
142 if (size == sect_size) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000143 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * We are covering a whole sector. Thus there is no
145 * need to bother with the cache while it may still be
146 * useful for other partial writes.
147 */
148 ret = erase_write (mtd, pos, size, buf);
149 if (ret)
150 return ret;
151 } else {
152 /* Partial sector: need to use the cache */
153
154 if (mtdblk->cache_state == STATE_DIRTY &&
155 mtdblk->cache_offset != sect_start) {
156 ret = write_cached_data(mtdblk);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000157 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return ret;
159 }
160
161 if (mtdblk->cache_state == STATE_EMPTY ||
162 mtdblk->cache_offset != sect_start) {
163 /* fill the cache with the current sector */
164 mtdblk->cache_state = STATE_EMPTY;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200165 ret = mtd_read(mtd, sect_start, sect_size,
166 &retlen, mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (ret)
168 return ret;
169 if (retlen != sect_size)
170 return -EIO;
171
172 mtdblk->cache_offset = sect_start;
173 mtdblk->cache_size = sect_size;
174 mtdblk->cache_state = STATE_CLEAN;
175 }
176
177 /* write data to our local cache */
178 memcpy (mtdblk->cache_data + offset, buf, size);
179 mtdblk->cache_state = STATE_DIRTY;
180 }
181
182 buf += size;
183 pos += size;
184 len -= size;
185 }
186
187 return 0;
188}
189
190
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000191static int do_cached_read (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 int len, char *buf)
193{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000194 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 unsigned int sect_size = mtdblk->cache_size;
196 size_t retlen;
197 int ret;
198
Brian Norris289c0522011-07-19 10:06:09 -0700199 pr_debug("mtdblock: read on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (!sect_size)
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200203 return mtd_read(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 while (len > 0) {
206 unsigned long sect_start = (pos/sect_size)*sect_size;
207 unsigned int offset = pos - sect_start;
208 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000209 if (size > len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 size = len;
211
212 /*
213 * Check if the requested data is already cached
214 * Read the requested amount of data from our internal cache if it
215 * contains what we want, otherwise we read the data directly
216 * from flash.
217 */
218 if (mtdblk->cache_state != STATE_EMPTY &&
219 mtdblk->cache_offset == sect_start) {
220 memcpy (buf, mtdblk->cache_data + offset, size);
221 } else {
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200222 ret = mtd_read(mtd, pos, size, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (ret)
224 return ret;
225 if (retlen != size)
226 return -EIO;
227 }
228
229 buf += size;
230 pos += size;
231 len -= size;
232 }
233
234 return 0;
235}
236
237static int mtdblock_readsect(struct mtd_blktrans_dev *dev,
238 unsigned long block, char *buf)
239{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000240 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return do_cached_read(mtdblk, block<<9, 512, buf);
242}
243
244static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
245 unsigned long block, char *buf)
246{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000247 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (unlikely(!mtdblk->cache_data && mtdblk->cache_size)) {
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000249 mtdblk->cache_data = vmalloc(mtdblk->mbd.mtd->erasesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (!mtdblk->cache_data)
251 return -EINTR;
252 /* -EINTR is not really correct, but it is the best match
253 * documented in man 2 write for all cases. We could also
254 * return -EAGAIN sometimes, but why bother?
255 */
256 }
257 return do_cached_write(mtdblk, block<<9, 512, buf);
258}
259
260static int mtdblock_open(struct mtd_blktrans_dev *mbd)
261{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000262 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Brian Norris289c0522011-07-19 10:06:09 -0700264 pr_debug("mtdblock_open\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000265
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000266 if (mtdblk->count) {
267 mtdblk->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return 0;
269 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /* OK, it's not open. Create cache info for it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 mtdblk->count = 1;
Ingo Molnar48b19262006-03-31 02:29:41 -0800273 mutex_init(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 mtdblk->cache_state = STATE_EMPTY;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000275 if (!(mbd->mtd->flags & MTD_NO_ERASE) && mbd->mtd->erasesize) {
276 mtdblk->cache_size = mbd->mtd->erasesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 mtdblk->cache_data = NULL;
278 }
279
Brian Norris289c0522011-07-19 10:06:09 -0700280 pr_debug("ok\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 return 0;
283}
284
Al Viroa8ca8892013-05-05 21:31:22 -0400285static void mtdblock_release(struct mtd_blktrans_dev *mbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000287 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Brian Norris289c0522011-07-19 10:06:09 -0700289 pr_debug("mtdblock_release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Ingo Molnar48b19262006-03-31 02:29:41 -0800291 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800293 mutex_unlock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 if (!--mtdblk->count) {
Alexander Stein70d50982012-01-10 13:26:58 +0100296 /*
297 * It was the last usage. Free the cache, but only sync if
298 * opened for writing.
299 */
300 if (mbd->file_mode & FMODE_WRITE)
301 mtd_sync(mbd->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 vfree(mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200304
Brian Norris289c0522011-07-19 10:06:09 -0700305 pr_debug("ok\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000306}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308static int mtdblock_flush(struct mtd_blktrans_dev *dev)
309{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000310 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
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);
Artem Bityutskiy327cf292011-12-30 16:35:35 +0200315 mtd_sync(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return 0;
317}
318
319static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
320{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000321 struct mtdblk_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 if (!dev)
324 return;
325
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000326 dev->mbd.mtd = mtd;
327 dev->mbd.devnum = mtd->index;
Richard Purdie19187672006-10-27 09:09:33 +0100328
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000329 dev->mbd.size = mtd->size >> 9;
330 dev->mbd.tr = tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 if (!(mtd->flags & MTD_WRITEABLE))
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000333 dev->mbd.readonly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Maxim Levitsky298304f2010-02-22 20:39:31 +0200335 if (add_mtd_blktrans_dev(&dev->mbd))
336 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
340{
341 del_mtd_blktrans_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344static struct mtd_blktrans_ops mtdblock_tr = {
345 .name = "mtdblock",
Ezequiel Garcia2aabeb22013-10-08 20:59:08 -0300346 .major = MTD_BLOCK_MAJOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 .part_bits = 0,
Richard Purdie19187672006-10-27 09:09:33 +0100348 .blksize = 512,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 .open = mtdblock_open,
350 .flush = mtdblock_flush,
351 .release = mtdblock_release,
352 .readsect = mtdblock_readsect,
353 .writesect = mtdblock_writesect,
354 .add_mtd = mtdblock_add_mtd,
355 .remove_dev = mtdblock_remove_dev,
356 .owner = THIS_MODULE,
357};
358
359static int __init init_mtdblock(void)
360{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return register_mtd_blktrans(&mtdblock_tr);
362}
363
364static void __exit cleanup_mtdblock(void)
365{
366 deregister_mtd_blktrans(&mtdblock_tr);
367}
368
369module_init(init_mtdblock);
370module_exit(cleanup_mtdblock);
371
372
373MODULE_LICENSE("GPL");
Nicolas Pitre2f82af02009-09-14 03:25:28 -0400374MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375MODULE_DESCRIPTION("Caching read/erase/writeback block device emulation access to MTD devices");