mtdblock.c 9.2 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3
 * Direct MTD block device access
 *
D
David Woodhouse 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
 * Copyright © 2000-2003 Nicolas Pitre <nico@fluxnic.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
L
Linus Torvalds 已提交
21 22 23 24
 */

#include <linux/fs.h>
#include <linux/init.h>
25 26 27
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/sched.h>
L
Linus Torvalds 已提交
28
#include <linux/slab.h>
29
#include <linux/types.h>
L
Linus Torvalds 已提交
30
#include <linux/vmalloc.h>
31

L
Linus Torvalds 已提交
32 33
#include <linux/mtd/mtd.h>
#include <linux/mtd/blktrans.h>
I
Ingo Molnar 已提交
34
#include <linux/mutex.h>
35
#include <linux/major.h>
I
Ingo Molnar 已提交
36

L
Linus Torvalds 已提交
37

38 39
struct mtdblk_dev {
	struct mtd_blktrans_dev mbd;
L
Linus Torvalds 已提交
40
	int count;
I
Ingo Molnar 已提交
41
	struct mutex cache_mutex;
L
Linus Torvalds 已提交
42 43 44 45
	unsigned char *cache_data;
	unsigned long cache_offset;
	unsigned int cache_size;
	enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
46
};
L
Linus Torvalds 已提交
47 48 49

/*
 * Cache stuff...
50
 *
L
Linus Torvalds 已提交
51 52 53 54 55 56 57
 * Since typical flash erasable sectors are much larger than what Linux's
 * buffer cache can handle, we must implement read-modify-write on flash
 * sectors for each block write requests.  To avoid over-erasing flash sectors
 * and to speed things up, we locally cache a whole flash sector while it is
 * being written to until a different sector is required.
 */

58
static int erase_write (struct mtd_info *mtd, unsigned long pos,
L
Linus Torvalds 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71
			int len, const char *buf)
{
	struct erase_info erase;
	size_t retlen;
	int ret;

	/*
	 * First, let's erase the flash block.
	 */
	erase.mtd = mtd;
	erase.addr = pos;
	erase.len = len;

72
	ret = mtd_erase(mtd, &erase);
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80
	if (ret) {
		printk (KERN_WARNING "mtdblock: erase of region [0x%lx, 0x%x] "
				     "on \"%s\" failed\n",
			pos, len, mtd->name);
		return ret;
	}

	/*
M
Matthias Kaehlcke 已提交
81
	 * Next, write the data to flash.
L
Linus Torvalds 已提交
82 83
	 */

84
	ret = mtd_write(mtd, pos, len, &retlen, buf);
L
Linus Torvalds 已提交
85 86 87 88 89 90 91 92 93 94
	if (ret)
		return ret;
	if (retlen != len)
		return -EIO;
	return 0;
}


static int write_cached_data (struct mtdblk_dev *mtdblk)
{
95
	struct mtd_info *mtd = mtdblk->mbd.mtd;
L
Linus Torvalds 已提交
96 97 98 99 100
	int ret;

	if (mtdblk->cache_state != STATE_DIRTY)
		return 0;

101
	pr_debug("mtdblock: writing cached data for \"%s\" "
102
			"at 0x%lx, size 0x%x\n", mtd->name,
L
Linus Torvalds 已提交
103
			mtdblk->cache_offset, mtdblk->cache_size);
104 105

	ret = erase_write (mtd, mtdblk->cache_offset,
L
Linus Torvalds 已提交
106 107 108 109 110
			   mtdblk->cache_size, mtdblk->cache_data);
	if (ret)
		return ret;

	/*
L
Lucas De Marchi 已提交
111
	 * Here we could arguably set the cache state to STATE_CLEAN.
112 113
	 * However this could lead to inconsistency since we will not
	 * be notified if this content is altered on the flash by other
L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121
	 * means.  Let's declare it empty and leave buffering tasks to
	 * the buffer cache instead.
	 */
	mtdblk->cache_state = STATE_EMPTY;
	return 0;
}


122
static int do_cached_write (struct mtdblk_dev *mtdblk, unsigned long pos,
L
Linus Torvalds 已提交
123 124
			    int len, const char *buf)
{
125
	struct mtd_info *mtd = mtdblk->mbd.mtd;
L
Linus Torvalds 已提交
126 127 128 129
	unsigned int sect_size = mtdblk->cache_size;
	size_t retlen;
	int ret;

130
	pr_debug("mtdblock: write on \"%s\" at 0x%lx, size 0x%x\n",
L
Linus Torvalds 已提交
131
		mtd->name, pos, len);
132

L
Linus Torvalds 已提交
133
	if (!sect_size)
134
		return mtd_write(mtd, pos, len, &retlen, buf);
L
Linus Torvalds 已提交
135 136 137 138 139

	while (len > 0) {
		unsigned long sect_start = (pos/sect_size)*sect_size;
		unsigned int offset = pos - sect_start;
		unsigned int size = sect_size - offset;
140
		if( size > len )
L
Linus Torvalds 已提交
141 142 143
			size = len;

		if (size == sect_size) {
144
			/*
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157
			 * We are covering a whole sector.  Thus there is no
			 * need to bother with the cache while it may still be
			 * useful for other partial writes.
			 */
			ret = erase_write (mtd, pos, size, buf);
			if (ret)
				return ret;
		} else {
			/* Partial sector: need to use the cache */

			if (mtdblk->cache_state == STATE_DIRTY &&
			    mtdblk->cache_offset != sect_start) {
				ret = write_cached_data(mtdblk);
158
				if (ret)
L
Linus Torvalds 已提交
159 160 161 162 163 164 165
					return ret;
			}

			if (mtdblk->cache_state == STATE_EMPTY ||
			    mtdblk->cache_offset != sect_start) {
				/* fill the cache with the current sector */
				mtdblk->cache_state = STATE_EMPTY;
166 167
				ret = mtd_read(mtd, sect_start, sect_size,
					       &retlen, mtdblk->cache_data);
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
				if (ret)
					return ret;
				if (retlen != sect_size)
					return -EIO;

				mtdblk->cache_offset = sect_start;
				mtdblk->cache_size = sect_size;
				mtdblk->cache_state = STATE_CLEAN;
			}

			/* write data to our local cache */
			memcpy (mtdblk->cache_data + offset, buf, size);
			mtdblk->cache_state = STATE_DIRTY;
		}

		buf += size;
		pos += size;
		len -= size;
	}

	return 0;
}


192
static int do_cached_read (struct mtdblk_dev *mtdblk, unsigned long pos,
L
Linus Torvalds 已提交
193 194
			   int len, char *buf)
{
195
	struct mtd_info *mtd = mtdblk->mbd.mtd;
L
Linus Torvalds 已提交
196 197 198 199
	unsigned int sect_size = mtdblk->cache_size;
	size_t retlen;
	int ret;

200
	pr_debug("mtdblock: read on \"%s\" at 0x%lx, size 0x%x\n",
L
Linus Torvalds 已提交
201
			mtd->name, pos, len);
202

L
Linus Torvalds 已提交
203
	if (!sect_size)
204
		return mtd_read(mtd, pos, len, &retlen, buf);
L
Linus Torvalds 已提交
205 206 207 208 209

	while (len > 0) {
		unsigned long sect_start = (pos/sect_size)*sect_size;
		unsigned int offset = pos - sect_start;
		unsigned int size = sect_size - offset;
210
		if (size > len)
L
Linus Torvalds 已提交
211 212 213 214 215 216 217 218 219 220 221 222
			size = len;

		/*
		 * Check if the requested data is already cached
		 * Read the requested amount of data from our internal cache if it
		 * contains what we want, otherwise we read the data directly
		 * from flash.
		 */
		if (mtdblk->cache_state != STATE_EMPTY &&
		    mtdblk->cache_offset == sect_start) {
			memcpy (buf, mtdblk->cache_data + offset, size);
		} else {
223
			ret = mtd_read(mtd, pos, size, &retlen, buf);
L
Linus Torvalds 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
			if (ret)
				return ret;
			if (retlen != size)
				return -EIO;
		}

		buf += size;
		pos += size;
		len -= size;
	}

	return 0;
}

static int mtdblock_readsect(struct mtd_blktrans_dev *dev,
			      unsigned long block, char *buf)
{
241
	struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
242 243 244 245 246 247
	return do_cached_read(mtdblk, block<<9, 512, buf);
}

static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
			      unsigned long block, char *buf)
{
248
	struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
249
	if (unlikely(!mtdblk->cache_data && mtdblk->cache_size)) {
250
		mtdblk->cache_data = vmalloc(mtdblk->mbd.mtd->erasesize);
L
Linus Torvalds 已提交
251 252 253 254 255 256 257 258 259 260 261 262
		if (!mtdblk->cache_data)
			return -EINTR;
		/* -EINTR is not really correct, but it is the best match
		 * documented in man 2 write for all cases.  We could also
		 * return -EAGAIN sometimes, but why bother?
		 */
	}
	return do_cached_write(mtdblk, block<<9, 512, buf);
}

static int mtdblock_open(struct mtd_blktrans_dev *mbd)
{
263
	struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
264

265
	pr_debug("mtdblock_open\n");
266

267 268
	if (mtdblk->count) {
		mtdblk->count++;
L
Linus Torvalds 已提交
269 270
		return 0;
	}
271

L
Linus Torvalds 已提交
272 273
	/* OK, it's not open. Create cache info for it */
	mtdblk->count = 1;
I
Ingo Molnar 已提交
274
	mutex_init(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
275
	mtdblk->cache_state = STATE_EMPTY;
276 277
	if (!(mbd->mtd->flags & MTD_NO_ERASE) && mbd->mtd->erasesize) {
		mtdblk->cache_size = mbd->mtd->erasesize;
L
Linus Torvalds 已提交
278 279 280
		mtdblk->cache_data = NULL;
	}

281
	pr_debug("ok\n");
L
Linus Torvalds 已提交
282 283 284 285

	return 0;
}

286
static void mtdblock_release(struct mtd_blktrans_dev *mbd)
L
Linus Torvalds 已提交
287
{
288
	struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
289

290
	pr_debug("mtdblock_release\n");
L
Linus Torvalds 已提交
291

I
Ingo Molnar 已提交
292
	mutex_lock(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
293
	write_cached_data(mtdblk);
I
Ingo Molnar 已提交
294
	mutex_unlock(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
295 296

	if (!--mtdblk->count) {
297 298 299 300 301 302
		/*
		 * It was the last usage. Free the cache, but only sync if
		 * opened for writing.
		 */
		if (mbd->file_mode & FMODE_WRITE)
			mtd_sync(mbd->mtd);
L
Linus Torvalds 已提交
303 304
		vfree(mtdblk->cache_data);
	}
305

306
	pr_debug("ok\n");
307
}
L
Linus Torvalds 已提交
308 309 310

static int mtdblock_flush(struct mtd_blktrans_dev *dev)
{
311
	struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
312

I
Ingo Molnar 已提交
313
	mutex_lock(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
314
	write_cached_data(mtdblk);
I
Ingo Molnar 已提交
315
	mutex_unlock(&mtdblk->cache_mutex);
316
	mtd_sync(dev->mtd);
L
Linus Torvalds 已提交
317 318 319 320 321
	return 0;
}

static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
{
322
	struct mtdblk_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
L
Linus Torvalds 已提交
323 324 325 326

	if (!dev)
		return;

327 328
	dev->mbd.mtd = mtd;
	dev->mbd.devnum = mtd->index;
329

330 331
	dev->mbd.size = mtd->size >> 9;
	dev->mbd.tr = tr;
L
Linus Torvalds 已提交
332 333

	if (!(mtd->flags & MTD_WRITEABLE))
334
		dev->mbd.readonly = 1;
L
Linus Torvalds 已提交
335

336 337
	if (add_mtd_blktrans_dev(&dev->mbd))
		kfree(dev);
L
Linus Torvalds 已提交
338 339 340 341 342 343 344 345 346
}

static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
{
	del_mtd_blktrans_dev(dev);
}

static struct mtd_blktrans_ops mtdblock_tr = {
	.name		= "mtdblock",
347
	.major		= MTD_BLOCK_MAJOR,
L
Linus Torvalds 已提交
348
	.part_bits	= 0,
349
	.blksize 	= 512,
L
Linus Torvalds 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
	.open		= mtdblock_open,
	.flush		= mtdblock_flush,
	.release	= mtdblock_release,
	.readsect	= mtdblock_readsect,
	.writesect	= mtdblock_writesect,
	.add_mtd	= mtdblock_add_mtd,
	.remove_dev	= mtdblock_remove_dev,
	.owner		= THIS_MODULE,
};

static int __init init_mtdblock(void)
{
	return register_mtd_blktrans(&mtdblock_tr);
}

static void __exit cleanup_mtdblock(void)
{
	deregister_mtd_blktrans(&mtdblock_tr);
}

module_init(init_mtdblock);
module_exit(cleanup_mtdblock);


MODULE_LICENSE("GPL");
375
MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
L
Linus Torvalds 已提交
376
MODULE_DESCRIPTION("Caching read/erase/writeback block device emulation access to MTD devices");