blob: fb5dc89369de34f1ec95126e64b1ed4a7c275c18 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Simple read-only (writable only for RAM) mtdblock driver
David Woodhousea1452a32010-08-08 20:58:20 +01003 *
4 * Copyright © 2001-2010 David Woodhouse <dwmw2@infradead.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
22#include <linux/init.h>
23#include <linux/slab.h>
24#include <linux/mtd/mtd.h>
25#include <linux/mtd/blktrans.h>
Paul Gortmakera0e5cc52011-07-03 15:17:31 -040026#include <linux/module.h>
Ezequiel Garciaf83c3832013-10-13 18:05:23 -030027#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29static int mtdblock_readsect(struct mtd_blktrans_dev *dev,
30 unsigned long block, char *buf)
31{
32 size_t retlen;
33
Artem Bityutskiy329ad392011-12-23 17:30:16 +020034 if (mtd_read(dev->mtd, (block * 512), 512, &retlen, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 return 1;
36 return 0;
37}
38
39static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
40 unsigned long block, char *buf)
41{
42 size_t retlen;
43
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +020044 if (mtd_write(dev->mtd, (block * 512), 512, &retlen, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 return 1;
46 return 0;
47}
48
49static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
50{
Burman Yan95b93a02006-11-15 21:10:29 +020051 struct mtd_blktrans_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 if (!dev)
54 return;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 dev->mtd = mtd;
57 dev->devnum = mtd->index;
Richard Purdie19187672006-10-27 09:09:33 +010058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 dev->size = mtd->size >> 9;
60 dev->tr = tr;
Jörn Engelaf63a3b2006-04-13 18:53:55 +020061 dev->readonly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Maxim Levitsky298304f2010-02-22 20:39:31 +020063 if (add_mtd_blktrans_dev(dev))
64 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
68{
69 del_mtd_blktrans_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
72static struct mtd_blktrans_ops mtdblock_tr = {
73 .name = "mtdblock",
Ezequiel Garcia2aabeb22013-10-08 20:59:08 -030074 .major = MTD_BLOCK_MAJOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .part_bits = 0,
Richard Purdie19187672006-10-27 09:09:33 +010076 .blksize = 512,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 .readsect = mtdblock_readsect,
78 .writesect = mtdblock_writesect,
79 .add_mtd = mtdblock_add_mtd,
80 .remove_dev = mtdblock_remove_dev,
81 .owner = THIS_MODULE,
82};
83
84static int __init mtdblock_init(void)
85{
86 return register_mtd_blktrans(&mtdblock_tr);
87}
88
89static void __exit mtdblock_exit(void)
90{
91 deregister_mtd_blktrans(&mtdblock_tr);
92}
93
94module_init(mtdblock_init);
95module_exit(mtdblock_exit);
96
97MODULE_LICENSE("GPL");
98MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
99MODULE_DESCRIPTION("Simple read-only block device emulation access to MTD devices");