Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Simple read-only (writable only for RAM) mtdblock driver |
David Woodhouse | a1452a3 | 2010-08-08 20:58:20 +0100 | [diff] [blame] | 3 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/mtd/mtd.h> |
| 25 | #include <linux/mtd/blktrans.h> |
Paul Gortmaker | a0e5cc5 | 2011-07-03 15:17:31 -0400 | [diff] [blame] | 26 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | static int mtdblock_readsect(struct mtd_blktrans_dev *dev, |
| 29 | unsigned long block, char *buf) |
| 30 | { |
| 31 | size_t retlen; |
| 32 | |
Artem Bityutskiy | 329ad39 | 2011-12-23 17:30:16 +0200 | [diff] [blame] | 33 | if (mtd_read(dev->mtd, (block * 512), 512, &retlen, buf)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | return 1; |
| 35 | return 0; |
| 36 | } |
| 37 | |
| 38 | static int mtdblock_writesect(struct mtd_blktrans_dev *dev, |
| 39 | unsigned long block, char *buf) |
| 40 | { |
| 41 | size_t retlen; |
| 42 | |
Artem Bityutskiy | eda95cb | 2011-12-23 17:35:41 +0200 | [diff] [blame] | 43 | if (mtd_write(dev->mtd, (block * 512), 512, &retlen, buf)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | return 1; |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd) |
| 49 | { |
Burman Yan | 95b93a0 | 2006-11-15 21:10:29 +0200 | [diff] [blame] | 50 | struct mtd_blktrans_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | if (!dev) |
| 53 | return; |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | dev->mtd = mtd; |
| 56 | dev->devnum = mtd->index; |
Richard Purdie | 1918767 | 2006-10-27 09:09:33 +0100 | [diff] [blame] | 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | dev->size = mtd->size >> 9; |
| 59 | dev->tr = tr; |
Jörn Engel | af63a3b | 2006-04-13 18:53:55 +0200 | [diff] [blame] | 60 | dev->readonly = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Maxim Levitsky | 298304f | 2010-02-22 20:39:31 +0200 | [diff] [blame] | 62 | if (add_mtd_blktrans_dev(dev)) |
| 63 | kfree(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev) |
| 67 | { |
| 68 | del_mtd_blktrans_dev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | static struct mtd_blktrans_ops mtdblock_tr = { |
| 72 | .name = "mtdblock", |
| 73 | .major = 31, |
| 74 | .part_bits = 0, |
Richard Purdie | 1918767 | 2006-10-27 09:09:33 +0100 | [diff] [blame] | 75 | .blksize = 512, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | .readsect = mtdblock_readsect, |
| 77 | .writesect = mtdblock_writesect, |
| 78 | .add_mtd = mtdblock_add_mtd, |
| 79 | .remove_dev = mtdblock_remove_dev, |
| 80 | .owner = THIS_MODULE, |
| 81 | }; |
| 82 | |
| 83 | static int __init mtdblock_init(void) |
| 84 | { |
| 85 | return register_mtd_blktrans(&mtdblock_tr); |
| 86 | } |
| 87 | |
| 88 | static void __exit mtdblock_exit(void) |
| 89 | { |
| 90 | deregister_mtd_blktrans(&mtdblock_tr); |
| 91 | } |
| 92 | |
| 93 | module_init(mtdblock_init); |
| 94 | module_exit(mtdblock_exit); |
| 95 | |
| 96 | MODULE_LICENSE("GPL"); |
| 97 | MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>"); |
| 98 | MODULE_DESCRIPTION("Simple read-only block device emulation access to MTD devices"); |