mtdblock.c 9.3 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3
 * Direct MTD block device access
 *
4
 * (C) 2000-2003 Nicolas Pitre <nico@fluxnic.net>
L
Linus Torvalds 已提交
5 6 7 8 9
 * (C) 1999-2003 David Woodhouse <dwmw2@infradead.org>
 */

#include <linux/fs.h>
#include <linux/init.h>
10 11 12
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/sched.h>
L
Linus Torvalds 已提交
13
#include <linux/slab.h>
14
#include <linux/types.h>
L
Linus Torvalds 已提交
15
#include <linux/vmalloc.h>
16

L
Linus Torvalds 已提交
17 18
#include <linux/mtd/mtd.h>
#include <linux/mtd/blktrans.h>
I
Ingo Molnar 已提交
19 20
#include <linux/mutex.h>

L
Linus Torvalds 已提交
21

22 23
struct mtdblk_dev {
	struct mtd_blktrans_dev mbd;
L
Linus Torvalds 已提交
24
	int count;
I
Ingo Molnar 已提交
25
	struct mutex cache_mutex;
L
Linus Torvalds 已提交
26 27 28 29
	unsigned char *cache_data;
	unsigned long cache_offset;
	unsigned int cache_size;
	enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
30
};
L
Linus Torvalds 已提交
31

32 33
static struct mutex mtdblks_lock;

L
Linus Torvalds 已提交
34 35
/*
 * Cache stuff...
36
 *
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49
 * 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.
 */

static void erase_callback(struct erase_info *done)
{
	wait_queue_head_t *wait_q = (wait_queue_head_t *)done->priv;
	wake_up(wait_q);
}

50
static int erase_write (struct mtd_info *mtd, unsigned long pos,
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
			int len, const char *buf)
{
	struct erase_info erase;
	DECLARE_WAITQUEUE(wait, current);
	wait_queue_head_t wait_q;
	size_t retlen;
	int ret;

	/*
	 * First, let's erase the flash block.
	 */

	init_waitqueue_head(&wait_q);
	erase.mtd = mtd;
	erase.callback = erase_callback;
	erase.addr = pos;
	erase.len = len;
	erase.priv = (u_long)&wait_q;

	set_current_state(TASK_INTERRUPTIBLE);
	add_wait_queue(&wait_q, &wait);

73
	ret = mtd->erase(mtd, &erase);
L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86
	if (ret) {
		set_current_state(TASK_RUNNING);
		remove_wait_queue(&wait_q, &wait);
		printk (KERN_WARNING "mtdblock: erase of region [0x%lx, 0x%x] "
				     "on \"%s\" failed\n",
			pos, len, mtd->name);
		return ret;
	}

	schedule();  /* Wait for erase to finish. */
	remove_wait_queue(&wait_q, &wait);

	/*
M
Matthias Kaehlcke 已提交
87
	 * Next, write the data to flash.
L
Linus Torvalds 已提交
88 89
	 */

90
	ret = mtd->write(mtd, pos, len, &retlen, buf);
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98 99 100
	if (ret)
		return ret;
	if (retlen != len)
		return -EIO;
	return 0;
}


static int write_cached_data (struct mtdblk_dev *mtdblk)
{
101
	struct mtd_info *mtd = mtdblk->mbd.mtd;
L
Linus Torvalds 已提交
102 103 104 105 106 107
	int ret;

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

	DEBUG(MTD_DEBUG_LEVEL2, "mtdblock: writing cached data for \"%s\" "
108
			"at 0x%lx, size 0x%x\n", mtd->name,
L
Linus Torvalds 已提交
109
			mtdblk->cache_offset, mtdblk->cache_size);
110 111

	ret = erase_write (mtd, mtdblk->cache_offset,
L
Linus Torvalds 已提交
112 113 114 115 116 117
			   mtdblk->cache_size, mtdblk->cache_data);
	if (ret)
		return ret;

	/*
	 * Here we could argubly set the cache state to STATE_CLEAN.
118 119
	 * 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 已提交
120 121 122 123 124 125 126 127
	 * means.  Let's declare it empty and leave buffering tasks to
	 * the buffer cache instead.
	 */
	mtdblk->cache_state = STATE_EMPTY;
	return 0;
}


128
static int do_cached_write (struct mtdblk_dev *mtdblk, unsigned long pos,
L
Linus Torvalds 已提交
129 130
			    int len, const char *buf)
{
131
	struct mtd_info *mtd = mtdblk->mbd.mtd;
L
Linus Torvalds 已提交
132 133 134 135 136 137
	unsigned int sect_size = mtdblk->cache_size;
	size_t retlen;
	int ret;

	DEBUG(MTD_DEBUG_LEVEL2, "mtdblock: write on \"%s\" at 0x%lx, size 0x%x\n",
		mtd->name, pos, len);
138

L
Linus Torvalds 已提交
139
	if (!sect_size)
140
		return mtd->write(mtd, pos, len, &retlen, buf);
L
Linus Torvalds 已提交
141 142 143 144 145

	while (len > 0) {
		unsigned long sect_start = (pos/sect_size)*sect_size;
		unsigned int offset = pos - sect_start;
		unsigned int size = sect_size - offset;
146
		if( size > len )
L
Linus Torvalds 已提交
147 148 149
			size = len;

		if (size == sect_size) {
150
			/*
L
Linus Torvalds 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163
			 * 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);
164
				if (ret)
L
Linus Torvalds 已提交
165 166 167 168 169 170 171
					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;
172 173
				ret = mtd->read(mtd, sect_start, sect_size,
						&retlen, mtdblk->cache_data);
L
Linus Torvalds 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
				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;
}


198
static int do_cached_read (struct mtdblk_dev *mtdblk, unsigned long pos,
L
Linus Torvalds 已提交
199 200
			   int len, char *buf)
{
201
	struct mtd_info *mtd = mtdblk->mbd.mtd;
L
Linus Torvalds 已提交
202 203 204 205
	unsigned int sect_size = mtdblk->cache_size;
	size_t retlen;
	int ret;

206
	DEBUG(MTD_DEBUG_LEVEL2, "mtdblock: read on \"%s\" at 0x%lx, size 0x%x\n",
L
Linus Torvalds 已提交
207
			mtd->name, pos, len);
208

L
Linus Torvalds 已提交
209
	if (!sect_size)
210
		return mtd->read(mtd, pos, len, &retlen, buf);
L
Linus Torvalds 已提交
211 212 213 214 215

	while (len > 0) {
		unsigned long sect_start = (pos/sect_size)*sect_size;
		unsigned int offset = pos - sect_start;
		unsigned int size = sect_size - offset;
216
		if (size > len)
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226 227 228
			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 {
229
			ret = mtd->read(mtd, pos, size, &retlen, buf);
L
Linus Torvalds 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
			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)
{
247
	struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
248 249 250 251 252 253
	return do_cached_read(mtdblk, block<<9, 512, buf);
}

static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
			      unsigned long block, char *buf)
{
254
	struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
255
	if (unlikely(!mtdblk->cache_data && mtdblk->cache_size)) {
256
		mtdblk->cache_data = vmalloc(mtdblk->mbd.mtd->erasesize);
L
Linus Torvalds 已提交
257 258 259 260 261 262 263 264 265 266 267 268
		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)
{
269
	struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
270 271

	DEBUG(MTD_DEBUG_LEVEL1,"mtdblock_open\n");
272

273
	mutex_lock(&mtdblks_lock);
274 275
	if (mtdblk->count) {
		mtdblk->count++;
276
		mutex_unlock(&mtdblks_lock);
L
Linus Torvalds 已提交
277 278
		return 0;
	}
279

L
Linus Torvalds 已提交
280 281
	/* OK, it's not open. Create cache info for it */
	mtdblk->count = 1;
I
Ingo Molnar 已提交
282
	mutex_init(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
283
	mtdblk->cache_state = STATE_EMPTY;
284 285
	if (!(mbd->mtd->flags & MTD_NO_ERASE) && mbd->mtd->erasesize) {
		mtdblk->cache_size = mbd->mtd->erasesize;
L
Linus Torvalds 已提交
286 287 288
		mtdblk->cache_data = NULL;
	}

289
	mutex_unlock(&mtdblks_lock);
290

L
Linus Torvalds 已提交
291 292 293 294 295 296 297
	DEBUG(MTD_DEBUG_LEVEL1, "ok\n");

	return 0;
}

static int mtdblock_release(struct mtd_blktrans_dev *mbd)
{
298
	struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
299 300 301

   	DEBUG(MTD_DEBUG_LEVEL1, "mtdblock_release\n");

302 303
	mutex_lock(&mtdblks_lock);

I
Ingo Molnar 已提交
304
	mutex_lock(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
305
	write_cached_data(mtdblk);
I
Ingo Molnar 已提交
306
	mutex_unlock(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
307 308

	if (!--mtdblk->count) {
309 310 311
		/* It was the last usage. Free the cache */
		if (mbd->mtd->sync)
			mbd->mtd->sync(mbd->mtd);
L
Linus Torvalds 已提交
312 313
		vfree(mtdblk->cache_data);
	}
314 315 316

	mutex_unlock(&mtdblks_lock);

L
Linus Torvalds 已提交
317 318 319
	DEBUG(MTD_DEBUG_LEVEL1, "ok\n");

	return 0;
320
}
L
Linus Torvalds 已提交
321 322 323

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

I
Ingo Molnar 已提交
326
	mutex_lock(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
327
	write_cached_data(mtdblk);
I
Ingo Molnar 已提交
328
	mutex_unlock(&mtdblk->cache_mutex);
L
Linus Torvalds 已提交
329

330 331
	if (dev->mtd->sync)
		dev->mtd->sync(dev->mtd);
L
Linus Torvalds 已提交
332 333 334 335 336
	return 0;
}

static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
{
337
	struct mtdblk_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
L
Linus Torvalds 已提交
338 339 340 341

	if (!dev)
		return;

342 343
	dev->mbd.mtd = mtd;
	dev->mbd.devnum = mtd->index;
344

345 346
	dev->mbd.size = mtd->size >> 9;
	dev->mbd.tr = tr;
L
Linus Torvalds 已提交
347 348

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

351 352
	if (add_mtd_blktrans_dev(&dev->mbd))
		kfree(dev);
L
Linus Torvalds 已提交
353 354 355 356
}

static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
{
357
	struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
L
Linus Torvalds 已提交
358 359 360 361 362 363 364
	del_mtd_blktrans_dev(dev);
}

static struct mtd_blktrans_ops mtdblock_tr = {
	.name		= "mtdblock",
	.major		= 31,
	.part_bits	= 0,
365
	.blksize 	= 512,
L
Linus Torvalds 已提交
366 367 368 369 370 371 372 373 374 375 376 377
	.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)
{
378 379
	mutex_init(&mtdblks_lock);

L
Linus Torvalds 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392
	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");
393
MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
L
Linus Torvalds 已提交
394
MODULE_DESCRIPTION("Caching read/erase/writeback block device emulation access to MTD devices");