blob: 7ce30a239ada05cf339106c58a78a569bd799cf4 [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 *
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004 * (C) 2000-2003 Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * (C) 1999-2003 David Woodhouse <dwmw2@infradead.org>
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/fs.h>
9#include <linux/init.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010010#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/slab.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010014#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/vmalloc.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mtd/mtd.h>
18#include <linux/mtd/blktrans.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080019#include <linux/mutex.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000022struct mtdblk_dev {
23 struct mtd_blktrans_dev mbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 int count;
Ingo Molnar48b19262006-03-31 02:29:41 -080025 struct mutex cache_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 unsigned char *cache_data;
27 unsigned long cache_offset;
28 unsigned int cache_size;
29 enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000030};
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Matthias Kaehlcked676c112009-07-14 22:04:29 +020032static struct mutex mtdblks_lock;
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
35 * Cache stuff...
Thomas Gleixner97894cd2005-11-07 11:15:26 +000036 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * Since typical flash erasable sectors are much larger than what Linux's
38 * buffer cache can handle, we must implement read-modify-write on flash
39 * sectors for each block write requests. To avoid over-erasing flash sectors
40 * and to speed things up, we locally cache a whole flash sector while it is
41 * being written to until a different sector is required.
42 */
43
44static void erase_callback(struct erase_info *done)
45{
46 wait_queue_head_t *wait_q = (wait_queue_head_t *)done->priv;
47 wake_up(wait_q);
48}
49
Thomas Gleixner97894cd2005-11-07 11:15:26 +000050static int erase_write (struct mtd_info *mtd, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int len, const char *buf)
52{
53 struct erase_info erase;
54 DECLARE_WAITQUEUE(wait, current);
55 wait_queue_head_t wait_q;
56 size_t retlen;
57 int ret;
58
59 /*
60 * First, let's erase the flash block.
61 */
62
63 init_waitqueue_head(&wait_q);
64 erase.mtd = mtd;
65 erase.callback = erase_callback;
66 erase.addr = pos;
67 erase.len = len;
68 erase.priv = (u_long)&wait_q;
69
70 set_current_state(TASK_INTERRUPTIBLE);
71 add_wait_queue(&wait_q, &wait);
72
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +020073 ret = mtd->erase(mtd, &erase);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (ret) {
75 set_current_state(TASK_RUNNING);
76 remove_wait_queue(&wait_q, &wait);
77 printk (KERN_WARNING "mtdblock: erase of region [0x%lx, 0x%x] "
78 "on \"%s\" failed\n",
79 pos, len, mtd->name);
80 return ret;
81 }
82
83 schedule(); /* Wait for erase to finish. */
84 remove_wait_queue(&wait_q, &wait);
85
86 /*
Matthias Kaehlckedff15502009-07-06 12:02:08 +020087 * Next, write the data to flash.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
89
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +020090 ret = mtd->write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (ret)
92 return ret;
93 if (retlen != len)
94 return -EIO;
95 return 0;
96}
97
98
99static int write_cached_data (struct mtdblk_dev *mtdblk)
100{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000101 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int ret;
103
104 if (mtdblk->cache_state != STATE_DIRTY)
105 return 0;
106
107 DEBUG(MTD_DEBUG_LEVEL2, "mtdblock: writing cached data for \"%s\" "
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000108 "at 0x%lx, size 0x%x\n", mtd->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 mtdblk->cache_offset, mtdblk->cache_size);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000110
111 ret = erase_write (mtd, mtdblk->cache_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 mtdblk->cache_size, mtdblk->cache_data);
113 if (ret)
114 return ret;
115
116 /*
117 * Here we could argubly set the cache state to STATE_CLEAN.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000118 * However this could lead to inconsistency since we will not
119 * be notified if this content is altered on the flash by other
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 * means. Let's declare it empty and leave buffering tasks to
121 * the buffer cache instead.
122 */
123 mtdblk->cache_state = STATE_EMPTY;
124 return 0;
125}
126
127
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000128static int do_cached_write (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int len, const char *buf)
130{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000131 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 unsigned int sect_size = mtdblk->cache_size;
133 size_t retlen;
134 int ret;
135
136 DEBUG(MTD_DEBUG_LEVEL2, "mtdblock: write on \"%s\" at 0x%lx, size 0x%x\n",
137 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!sect_size)
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200140 return mtd->write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 while (len > 0) {
143 unsigned long sect_start = (pos/sect_size)*sect_size;
144 unsigned int offset = pos - sect_start;
145 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000146 if( size > len )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 size = len;
148
149 if (size == sect_size) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000150 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * We are covering a whole sector. Thus there is no
152 * need to bother with the cache while it may still be
153 * useful for other partial writes.
154 */
155 ret = erase_write (mtd, pos, size, buf);
156 if (ret)
157 return ret;
158 } else {
159 /* Partial sector: need to use the cache */
160
161 if (mtdblk->cache_state == STATE_DIRTY &&
162 mtdblk->cache_offset != sect_start) {
163 ret = write_cached_data(mtdblk);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000164 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return ret;
166 }
167
168 if (mtdblk->cache_state == STATE_EMPTY ||
169 mtdblk->cache_offset != sect_start) {
170 /* fill the cache with the current sector */
171 mtdblk->cache_state = STATE_EMPTY;
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200172 ret = mtd->read(mtd, sect_start, sect_size,
173 &retlen, mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (ret)
175 return ret;
176 if (retlen != sect_size)
177 return -EIO;
178
179 mtdblk->cache_offset = sect_start;
180 mtdblk->cache_size = sect_size;
181 mtdblk->cache_state = STATE_CLEAN;
182 }
183
184 /* write data to our local cache */
185 memcpy (mtdblk->cache_data + offset, buf, size);
186 mtdblk->cache_state = STATE_DIRTY;
187 }
188
189 buf += size;
190 pos += size;
191 len -= size;
192 }
193
194 return 0;
195}
196
197
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000198static int do_cached_read (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int len, char *buf)
200{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000201 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 unsigned int sect_size = mtdblk->cache_size;
203 size_t retlen;
204 int ret;
205
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000206 DEBUG(MTD_DEBUG_LEVEL2, "mtdblock: read on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (!sect_size)
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200210 return mtd->read(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 while (len > 0) {
213 unsigned long sect_start = (pos/sect_size)*sect_size;
214 unsigned int offset = pos - sect_start;
215 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000216 if (size > len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 size = len;
218
219 /*
220 * Check if the requested data is already cached
221 * Read the requested amount of data from our internal cache if it
222 * contains what we want, otherwise we read the data directly
223 * from flash.
224 */
225 if (mtdblk->cache_state != STATE_EMPTY &&
226 mtdblk->cache_offset == sect_start) {
227 memcpy (buf, mtdblk->cache_data + offset, size);
228 } else {
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200229 ret = mtd->read(mtd, pos, size, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (ret)
231 return ret;
232 if (retlen != size)
233 return -EIO;
234 }
235
236 buf += size;
237 pos += size;
238 len -= size;
239 }
240
241 return 0;
242}
243
244static int mtdblock_readsect(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 return do_cached_read(mtdblk, block<<9, 512, buf);
249}
250
251static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
252 unsigned long block, char *buf)
253{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000254 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (unlikely(!mtdblk->cache_data && mtdblk->cache_size)) {
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000256 mtdblk->cache_data = vmalloc(mtdblk->mbd.mtd->erasesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (!mtdblk->cache_data)
258 return -EINTR;
259 /* -EINTR is not really correct, but it is the best match
260 * documented in man 2 write for all cases. We could also
261 * return -EAGAIN sometimes, but why bother?
262 */
263 }
264 return do_cached_write(mtdblk, block<<9, 512, buf);
265}
266
267static int mtdblock_open(struct mtd_blktrans_dev *mbd)
268{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000269 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 DEBUG(MTD_DEBUG_LEVEL1,"mtdblock_open\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000272
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200273 mutex_lock(&mtdblks_lock);
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000274 if (mtdblk->count) {
275 mtdblk->count++;
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200276 mutex_unlock(&mtdblks_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* OK, it's not open. Create cache info for it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 mtdblk->count = 1;
Ingo Molnar48b19262006-03-31 02:29:41 -0800282 mutex_init(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 mtdblk->cache_state = STATE_EMPTY;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000284 if (!(mbd->mtd->flags & MTD_NO_ERASE) && mbd->mtd->erasesize) {
285 mtdblk->cache_size = mbd->mtd->erasesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 mtdblk->cache_data = NULL;
287 }
288
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200289 mutex_unlock(&mtdblks_lock);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 DEBUG(MTD_DEBUG_LEVEL1, "ok\n");
292
293 return 0;
294}
295
296static int mtdblock_release(struct mtd_blktrans_dev *mbd)
297{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000298 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 DEBUG(MTD_DEBUG_LEVEL1, "mtdblock_release\n");
301
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200302 mutex_lock(&mtdblks_lock);
303
Ingo Molnar48b19262006-03-31 02:29:41 -0800304 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800306 mutex_unlock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 if (!--mtdblk->count) {
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000309 /* It was the last usage. Free the cache */
310 if (mbd->mtd->sync)
311 mbd->mtd->sync(mbd->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 vfree(mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200314
315 mutex_unlock(&mtdblks_lock);
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 DEBUG(MTD_DEBUG_LEVEL1, "ok\n");
318
319 return 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000320}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322static int mtdblock_flush(struct mtd_blktrans_dev *dev)
323{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000324 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Ingo Molnar48b19262006-03-31 02:29:41 -0800326 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800328 mutex_unlock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000330 if (dev->mtd->sync)
331 dev->mtd->sync(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return 0;
333}
334
335static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
336{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000337 struct mtdblk_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (!dev)
340 return;
341
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000342 dev->mbd.mtd = mtd;
343 dev->mbd.devnum = mtd->index;
Richard Purdie19187672006-10-27 09:09:33 +0100344
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000345 dev->mbd.size = mtd->size >> 9;
346 dev->mbd.tr = tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 if (!(mtd->flags & MTD_WRITEABLE))
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000349 dev->mbd.readonly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Maxim Levitsky298304f2010-02-22 20:39:31 +0200351 if (add_mtd_blktrans_dev(&dev->mbd))
352 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
356{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000357 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 del_mtd_blktrans_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
361static struct mtd_blktrans_ops mtdblock_tr = {
362 .name = "mtdblock",
363 .major = 31,
364 .part_bits = 0,
Richard Purdie19187672006-10-27 09:09:33 +0100365 .blksize = 512,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 .open = mtdblock_open,
367 .flush = mtdblock_flush,
368 .release = mtdblock_release,
369 .readsect = mtdblock_readsect,
370 .writesect = mtdblock_writesect,
371 .add_mtd = mtdblock_add_mtd,
372 .remove_dev = mtdblock_remove_dev,
373 .owner = THIS_MODULE,
374};
375
376static int __init init_mtdblock(void)
377{
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200378 mutex_init(&mtdblks_lock);
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return register_mtd_blktrans(&mtdblock_tr);
381}
382
383static void __exit cleanup_mtdblock(void)
384{
385 deregister_mtd_blktrans(&mtdblock_tr);
386}
387
388module_init(init_mtdblock);
389module_exit(cleanup_mtdblock);
390
391
392MODULE_LICENSE("GPL");
Nicolas Pitre2f82af02009-09-14 03:25:28 -0400393MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394MODULE_DESCRIPTION("Caching read/erase/writeback block device emulation access to MTD devices");