blob: eeaaa9dce6ef62607ee510e580d647554bca8611 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Adrian Bunk2b9175c2005-11-29 14:49:38 +00002 * $Id: block2mtd.c,v 1.30 2005/11/29 14:48:32 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * block2mtd.c - create an mtd from a block device
5 *
6 * Copyright (C) 2001,2002 Simon Evans <spse@secret.org.uk>
Joern Engel2b54aae2008-02-06 01:38:02 -08007 * Copyright (C) 2004-2006 Joern Engel <joern@wh.fh-wedel.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Licence: GPL
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/fs.h>
13#include <linux/blkdev.h>
14#include <linux/bio.h>
15#include <linux/pagemap.h>
16#include <linux/list.h>
17#include <linux/init.h>
18#include <linux/mtd/mtd.h>
19#include <linux/buffer_head.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080020#include <linux/mutex.h>
Ville Hervac4e7fb32006-07-14 00:31:16 +030021#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Adrian Bunk2b9175c2005-11-29 14:49:38 +000023#define VERSION "$Revision: 1.30 $"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25
26#define ERROR(fmt, args...) printk(KERN_ERR "block2mtd: " fmt "\n" , ## args)
27#define INFO(fmt, args...) printk(KERN_INFO "block2mtd: " fmt "\n" , ## args)
28
29
30/* Info for the block device */
31struct block2mtd_dev {
32 struct list_head list;
33 struct block_device *blkdev;
34 struct mtd_info mtd;
Ingo Molnar48b19262006-03-31 02:29:41 -080035 struct mutex write_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
38
39/* Static info about the MTD, used in cleanup_module */
40static LIST_HEAD(blkmtd_device_list);
41
42
Nick Piggin6fe69002007-05-06 14:49:04 -070043static struct page *page_read(struct address_space *mapping, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Nick Piggin6fe69002007-05-06 14:49:04 -070045 return read_mapping_page(mapping, index, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* erase a specified part of the device */
49static int _block2mtd_erase(struct block2mtd_dev *dev, loff_t to, size_t len)
50{
51 struct address_space *mapping = dev->blkdev->bd_inode->i_mapping;
52 struct page *page;
53 int index = to >> PAGE_SHIFT; // page index
54 int pages = len >> PAGE_SHIFT;
55 u_long *p;
56 u_long *max;
57
58 while (pages) {
Joern Engel21d31f12007-02-20 20:22:22 +010059 page = page_read(mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (!page)
61 return -ENOMEM;
62 if (IS_ERR(page))
63 return PTR_ERR(page);
64
Joern Engel0ffb74c2007-02-20 20:20:58 +010065 max = page_address(page) + PAGE_SIZE;
66 for (p=page_address(page); p<max; p++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (*p != -1UL) {
68 lock_page(page);
69 memset(page_address(page), 0xff, PAGE_SIZE);
70 set_page_dirty(page);
71 unlock_page(page);
72 break;
73 }
74
75 page_cache_release(page);
76 pages--;
77 index++;
78 }
79 return 0;
80}
81static int block2mtd_erase(struct mtd_info *mtd, struct erase_info *instr)
82{
83 struct block2mtd_dev *dev = mtd->priv;
84 size_t from = instr->addr;
85 size_t len = instr->len;
86 int err;
87
88 instr->state = MTD_ERASING;
Ingo Molnar48b19262006-03-31 02:29:41 -080089 mutex_lock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 err = _block2mtd_erase(dev, from, len);
Ingo Molnar48b19262006-03-31 02:29:41 -080091 mutex_unlock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (err) {
93 ERROR("erase failed err = %d", err);
94 instr->state = MTD_ERASE_FAILED;
95 } else
96 instr->state = MTD_ERASE_DONE;
97
98 instr->state = MTD_ERASE_DONE;
99 mtd_erase_callback(instr);
100 return err;
101}
102
103
104static int block2mtd_read(struct mtd_info *mtd, loff_t from, size_t len,
105 size_t *retlen, u_char *buf)
106{
107 struct block2mtd_dev *dev = mtd->priv;
108 struct page *page;
109 int index = from >> PAGE_SHIFT;
Joern Engel711c11b2005-03-07 20:29:09 +0000110 int offset = from & (PAGE_SIZE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int cpylen;
112
113 if (from > mtd->size)
114 return -EINVAL;
115 if (from + len > mtd->size)
116 len = mtd->size - from;
117
118 if (retlen)
119 *retlen = 0;
120
121 while (len) {
122 if ((offset + len) > PAGE_SIZE)
123 cpylen = PAGE_SIZE - offset; // multiple pages
124 else
125 cpylen = len; // this page
126 len = len - cpylen;
127
Joern Engel21d31f12007-02-20 20:22:22 +0100128 page = page_read(dev->blkdev->bd_inode->i_mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (!page)
130 return -ENOMEM;
131 if (IS_ERR(page))
132 return PTR_ERR(page);
133
134 memcpy(buf, page_address(page) + offset, cpylen);
135 page_cache_release(page);
136
137 if (retlen)
138 *retlen += cpylen;
139 buf += cpylen;
140 offset = 0;
141 index++;
142 }
143 return 0;
144}
145
146
147/* write data to the underlying device */
148static int _block2mtd_write(struct block2mtd_dev *dev, const u_char *buf,
149 loff_t to, size_t len, size_t *retlen)
150{
151 struct page *page;
152 struct address_space *mapping = dev->blkdev->bd_inode->i_mapping;
153 int index = to >> PAGE_SHIFT; // page index
154 int offset = to & ~PAGE_MASK; // page offset
155 int cpylen;
156
157 if (retlen)
158 *retlen = 0;
159 while (len) {
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000160 if ((offset+len) > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 cpylen = PAGE_SIZE - offset; // multiple pages
162 else
163 cpylen = len; // this page
164 len = len - cpylen;
165
Joern Engel21d31f12007-02-20 20:22:22 +0100166 page = page_read(mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!page)
168 return -ENOMEM;
169 if (IS_ERR(page))
170 return PTR_ERR(page);
171
172 if (memcmp(page_address(page)+offset, buf, cpylen)) {
173 lock_page(page);
174 memcpy(page_address(page) + offset, buf, cpylen);
175 set_page_dirty(page);
176 unlock_page(page);
177 }
178 page_cache_release(page);
179
180 if (retlen)
181 *retlen += cpylen;
182
183 buf += cpylen;
184 offset = 0;
185 index++;
186 }
187 return 0;
188}
Ville Hervac4e7fb32006-07-14 00:31:16 +0300189
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static int block2mtd_write(struct mtd_info *mtd, loff_t to, size_t len,
192 size_t *retlen, const u_char *buf)
193{
194 struct block2mtd_dev *dev = mtd->priv;
195 int err;
196
197 if (!len)
198 return 0;
199 if (to >= mtd->size)
200 return -ENOSPC;
201 if (to + len > mtd->size)
202 len = mtd->size - to;
203
Ingo Molnar48b19262006-03-31 02:29:41 -0800204 mutex_lock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 err = _block2mtd_write(dev, buf, to, len, retlen);
Ingo Molnar48b19262006-03-31 02:29:41 -0800206 mutex_unlock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (err > 0)
208 err = 0;
209 return err;
210}
211
212
213/* sync the device - wait until the write queue is empty */
214static void block2mtd_sync(struct mtd_info *mtd)
215{
216 struct block2mtd_dev *dev = mtd->priv;
217 sync_blockdev(dev->blkdev);
218 return;
219}
220
221
222static void block2mtd_free_device(struct block2mtd_dev *dev)
223{
224 if (!dev)
225 return;
226
227 kfree(dev->mtd.name);
228
229 if (dev->blkdev) {
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800230 invalidate_mapping_pages(dev->blkdev->bd_inode->i_mapping,
231 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 close_bdev_excl(dev->blkdev);
233 }
234
235 kfree(dev);
236}
237
238
239/* FIXME: ensure that mtd->size % erase_size == 0 */
240static struct block2mtd_dev *add_device(char *devname, int erase_size)
241{
242 struct block_device *bdev;
243 struct block2mtd_dev *dev;
244
245 if (!devname)
246 return NULL;
247
Burman Yan95b93a02006-11-15 21:10:29 +0200248 dev = kzalloc(sizeof(struct block2mtd_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (!dev)
250 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* Get a handle on the device */
253 bdev = open_bdev_excl(devname, O_RDWR, NULL);
Ville Hervac4e7fb32006-07-14 00:31:16 +0300254#ifndef MODULE
255 if (IS_ERR(bdev)) {
256
257 /* We might not have rootfs mounted at this point. Try
258 to resolve the device name by other means. */
259
Joern Engel88705302007-02-20 20:21:41 +0100260 dev_t devt = name_to_dev_t(devname);
261 if (devt) {
262 bdev = open_by_devnum(devt, FMODE_WRITE | FMODE_READ);
Ville Hervac4e7fb32006-07-14 00:31:16 +0300263 }
264 }
265#endif
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (IS_ERR(bdev)) {
268 ERROR("error: cannot open device %s", devname);
269 goto devinit_err;
270 }
271 dev->blkdev = bdev;
272
273 if (MAJOR(bdev->bd_dev) == MTD_BLOCK_MAJOR) {
274 ERROR("attempting to use an MTD device as a block device");
275 goto devinit_err;
276 }
277
Ingo Molnar48b19262006-03-31 02:29:41 -0800278 mutex_init(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* Setup the MTD structure */
281 /* make the name contain the block device in */
282 dev->mtd.name = kmalloc(sizeof("block2mtd: ") + strlen(devname),
283 GFP_KERNEL);
284 if (!dev->mtd.name)
285 goto devinit_err;
286
287 sprintf(dev->mtd.name, "block2mtd: %s", devname);
288
289 dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK;
290 dev->mtd.erasesize = erase_size;
Artem B. Bityutskiy17ffc7b2006-06-22 18:15:48 +0400291 dev->mtd.writesize = 1;
David Woodhouse21c8db92006-06-14 21:39:48 +0100292 dev->mtd.type = MTD_RAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 dev->mtd.flags = MTD_CAP_RAM;
294 dev->mtd.erase = block2mtd_erase;
295 dev->mtd.write = block2mtd_write;
296 dev->mtd.writev = default_mtd_writev;
297 dev->mtd.sync = block2mtd_sync;
298 dev->mtd.read = block2mtd_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 dev->mtd.priv = dev;
300 dev->mtd.owner = THIS_MODULE;
301
302 if (add_mtd_device(&dev->mtd)) {
303 /* Device didnt get added, so free the entry */
304 goto devinit_err;
305 }
306 list_add(&dev->list, &blkmtd_device_list);
307 INFO("mtd%d: [%s] erase_size = %dKiB [%d]", dev->mtd.index,
308 dev->mtd.name + strlen("blkmtd: "),
309 dev->mtd.erasesize >> 10, dev->mtd.erasesize);
310 return dev;
311
312devinit_err:
313 block2mtd_free_device(dev);
314 return NULL;
315}
316
317
Joern Engel954c2422006-04-18 21:03:08 -0700318/* This function works similar to reguler strtoul. In addition, it
319 * allows some suffixes for a more human-readable number format:
320 * ki, Ki, kiB, KiB - multiply result with 1024
321 * Mi, MiB - multiply result with 1024^2
322 * Gi, GiB - multiply result with 1024^3
323 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324static int ustrtoul(const char *cp, char **endp, unsigned int base)
325{
326 unsigned long result = simple_strtoul(cp, endp, base);
327 switch (**endp) {
328 case 'G' :
329 result *= 1024;
330 case 'M':
331 result *= 1024;
Joern Engel954c2422006-04-18 21:03:08 -0700332 case 'K':
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 case 'k':
334 result *= 1024;
335 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
Joern Engel954c2422006-04-18 21:03:08 -0700336 if ((*endp)[1] == 'i') {
337 if ((*endp)[2] == 'B')
338 (*endp) += 3;
339 else
340 (*endp) += 2;
341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 return result;
344}
345
346
Thomas Gleixnercc712292005-03-19 22:40:47 +0000347static int parse_num(size_t *num, const char *token)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 char *endp;
Thomas Gleixnercc712292005-03-19 22:40:47 +0000350 size_t n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Thomas Gleixnercc712292005-03-19 22:40:47 +0000352 n = (size_t) ustrtoul(token, &endp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (*endp)
354 return -EINVAL;
355
Thomas Gleixnercc712292005-03-19 22:40:47 +0000356 *num = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return 0;
358}
359
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361static inline void kill_final_newline(char *str)
362{
363 char *newline = strrchr(str, '\n');
364 if (newline && !newline[1])
365 *newline = 0;
366}
367
368
369#define parse_err(fmt, args...) do { \
370 ERROR("block2mtd: " fmt "\n", ## args); \
371 return 0; \
372} while (0)
373
Ville Hervac4e7fb32006-07-14 00:31:16 +0300374#ifndef MODULE
375static int block2mtd_init_called = 0;
Adrian Bunk4839f042007-05-02 12:33:17 +0100376static char block2mtd_paramline[80 + 12]; /* 80 for device, 12 for erase size */
Ville Hervac4e7fb32006-07-14 00:31:16 +0300377#endif
378
379
380static int block2mtd_setup2(const char *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Ville Hervac4e7fb32006-07-14 00:31:16 +0300382 char buf[80 + 12]; /* 80 for device, 12 for erase size */
Jesper Juhla6550e52006-05-14 01:42:25 +0200383 char *str = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 char *token[2];
385 char *name;
Thomas Gleixnercc712292005-03-19 22:40:47 +0000386 size_t erase_size = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 int i, ret;
388
389 if (strnlen(val, sizeof(buf)) >= sizeof(buf))
390 parse_err("parameter too long");
391
392 strcpy(str, val);
393 kill_final_newline(str);
394
Jesper Juhla6550e52006-05-14 01:42:25 +0200395 for (i = 0; i < 2; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 token[i] = strsep(&str, ",");
397
398 if (str)
399 parse_err("too many arguments");
400
401 if (!token[0])
402 parse_err("no argument");
403
Ville Hervac4e7fb32006-07-14 00:31:16 +0300404 name = token[0];
405 if (strlen(name) + 1 > 80)
406 parse_err("device name too long");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 if (token[1]) {
Thomas Gleixnercc712292005-03-19 22:40:47 +0000409 ret = parse_num(&erase_size, token[1]);
Jesper Juhla6550e52006-05-14 01:42:25 +0200410 if (ret) {
411 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 parse_err("illegal erase size");
Jesper Juhla6550e52006-05-14 01:42:25 +0200413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
416 add_device(name, erase_size);
417
418 return 0;
419}
420
421
Ville Hervac4e7fb32006-07-14 00:31:16 +0300422static int block2mtd_setup(const char *val, struct kernel_param *kp)
423{
424#ifdef MODULE
425 return block2mtd_setup2(val);
426#else
427 /* If more parameters are later passed in via
428 /sys/module/block2mtd/parameters/block2mtd
429 and block2mtd_init() has already been called,
430 we can parse the argument now. */
431
432 if (block2mtd_init_called)
433 return block2mtd_setup2(val);
434
435 /* During early boot stage, we only save the parameters
436 here. We must parse them later: if the param passed
437 from kernel boot command line, block2mtd_setup() is
438 called so early that it is not possible to resolve
439 the device (even kmalloc() fails). Deter that work to
440 block2mtd_setup2(). */
441
442 strlcpy(block2mtd_paramline, val, sizeof(block2mtd_paramline));
443
444 return 0;
445#endif
446}
447
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449module_param_call(block2mtd, block2mtd_setup, NULL, NULL, 0200);
450MODULE_PARM_DESC(block2mtd, "Device to use. \"block2mtd=<dev>[,<erasesize>]\"");
451
452static int __init block2mtd_init(void)
453{
Ville Hervac4e7fb32006-07-14 00:31:16 +0300454 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 INFO("version " VERSION);
Ville Hervac4e7fb32006-07-14 00:31:16 +0300456
457#ifndef MODULE
458 if (strlen(block2mtd_paramline))
459 ret = block2mtd_setup2(block2mtd_paramline);
460 block2mtd_init_called = 1;
461#endif
462
463 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466
467static void __devexit block2mtd_exit(void)
468{
469 struct list_head *pos, *next;
470
471 /* Remove the MTD devices */
472 list_for_each_safe(pos, next, &blkmtd_device_list) {
473 struct block2mtd_dev *dev = list_entry(pos, typeof(*dev), list);
474 block2mtd_sync(&dev->mtd);
475 del_mtd_device(&dev->mtd);
476 INFO("mtd%d: [%s] removed", dev->mtd.index,
477 dev->mtd.name + strlen("blkmtd: "));
478 list_del(&dev->list);
479 block2mtd_free_device(dev);
480 }
481}
482
483
484module_init(block2mtd_init);
485module_exit(block2mtd_exit);
486
487MODULE_LICENSE("GPL");
Joern Engel2b54aae2008-02-06 01:38:02 -0800488MODULE_AUTHOR("Joern Engel <joern@lazybastard.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489MODULE_DESCRIPTION("Emulate an MTD using a block device");