| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************/ | 
 | 2 |  | 
 | 3 | /* | 
 | 4 |  *	uclinux.c -- generic memory mapped MTD driver for uclinux | 
 | 5 |  * | 
 | 6 |  *	(C) Copyright 2002, Greg Ungerer (gerg@snapgear.com) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  */ | 
 | 8 |  | 
 | 9 | /****************************************************************************/ | 
 | 10 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> | 
 | 12 | #include <linux/types.h> | 
 | 13 | #include <linux/init.h> | 
 | 14 | #include <linux/kernel.h> | 
 | 15 | #include <linux/fs.h> | 
| Andrea Righi | 27ac792 | 2008-07-23 21:28:13 -0700 | [diff] [blame] | 16 | #include <linux/mm.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/major.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/mtd/mtd.h> | 
 | 19 | #include <linux/mtd/map.h> | 
 | 20 | #include <linux/mtd/partitions.h> | 
 | 21 | #include <asm/io.h> | 
 | 22 |  | 
 | 23 | /****************************************************************************/ | 
 | 24 |  | 
| Mike Frysinger | fa254ec | 2009-05-26 19:33:16 -0400 | [diff] [blame] | 25 | extern char _ebss; | 
 | 26 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | struct map_info uclinux_ram_map = { | 
 | 28 | 	.name = "RAM", | 
| Mike Frysinger | fa254ec | 2009-05-26 19:33:16 -0400 | [diff] [blame] | 29 | 	.phys = (unsigned long)&_ebss, | 
 | 30 | 	.size = 0, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | }; | 
 | 32 |  | 
| Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 33 | static struct mtd_info *uclinux_ram_mtdinfo; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
 | 35 | /****************************************************************************/ | 
 | 36 |  | 
| Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 37 | static struct mtd_partition uclinux_romfs[] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | 	{ .name = "ROMfs" } | 
 | 39 | }; | 
 | 40 |  | 
| Tobias Klauser | 87d10f3 | 2006-03-31 02:29:45 -0800 | [diff] [blame] | 41 | #define	NUM_PARTITIONS	ARRAY_SIZE(uclinux_romfs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
 | 43 | /****************************************************************************/ | 
 | 44 |  | 
| Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 45 | static int uclinux_point(struct mtd_info *mtd, loff_t from, size_t len, | 
| Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 46 | 	size_t *retlen, void **virt, resource_size_t *phys) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { | 
 | 48 | 	struct map_info *map = mtd->priv; | 
| Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 49 | 	*virt = map->virt + from; | 
 | 50 | 	if (phys) | 
 | 51 | 		*phys = map->phys + from; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | 	*retlen = len; | 
 | 53 | 	return(0); | 
 | 54 | } | 
 | 55 |  | 
 | 56 | /****************************************************************************/ | 
 | 57 |  | 
| Dmitri Vorobiev | 769455e | 2008-11-25 02:55:09 +0200 | [diff] [blame] | 58 | static int __init uclinux_mtd_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { | 
 | 60 | 	struct mtd_info *mtd; | 
 | 61 | 	struct map_info *mapp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 |  | 
 | 63 | 	mapp = &uclinux_ram_map; | 
| Mike Frysinger | fa254ec | 2009-05-26 19:33:16 -0400 | [diff] [blame] | 64 | 	if (!mapp->size) | 
 | 65 | 		mapp->size = PAGE_ALIGN(ntohl(*((unsigned long *)(mapp->phys + 8)))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 	mapp->bankwidth = 4; | 
 | 67 |  | 
 | 68 | 	printk("uclinux[mtd]: RAM probe address=0x%x size=0x%x\n", | 
| Greg Ungerer | f6515db | 2005-09-12 11:18:10 +1000 | [diff] [blame] | 69 | 	       	(int) mapp->phys, (int) mapp->size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
 | 71 | 	mapp->virt = ioremap_nocache(mapp->phys, mapp->size); | 
 | 72 |  | 
 | 73 | 	if (mapp->virt == 0) { | 
 | 74 | 		printk("uclinux[mtd]: ioremap_nocache() failed\n"); | 
 | 75 | 		return(-EIO); | 
 | 76 | 	} | 
 | 77 |  | 
 | 78 | 	simple_map_init(mapp); | 
 | 79 |  | 
 | 80 | 	mtd = do_map_probe("map_ram", mapp); | 
 | 81 | 	if (!mtd) { | 
 | 82 | 		printk("uclinux[mtd]: failed to find a mapping?\n"); | 
 | 83 | 		iounmap(mapp->virt); | 
 | 84 | 		return(-ENXIO); | 
 | 85 | 	} | 
| Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 86 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | 	mtd->owner = THIS_MODULE; | 
 | 88 | 	mtd->point = uclinux_point; | 
 | 89 | 	mtd->priv = mapp; | 
 | 90 |  | 
 | 91 | 	uclinux_ram_mtdinfo = mtd; | 
| Jamie Iles | 5e7e968 | 2011-05-23 10:23:12 +0100 | [diff] [blame] | 92 | 	mtd_device_register(mtd, uclinux_romfs, NUM_PARTITIONS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | 	return(0); | 
 | 95 | } | 
 | 96 |  | 
 | 97 | /****************************************************************************/ | 
 | 98 |  | 
| Dmitri Vorobiev | 769455e | 2008-11-25 02:55:09 +0200 | [diff] [blame] | 99 | static void __exit uclinux_mtd_cleanup(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { | 
 | 101 | 	if (uclinux_ram_mtdinfo) { | 
| Jamie Iles | 5e7e968 | 2011-05-23 10:23:12 +0100 | [diff] [blame] | 102 | 		mtd_device_unregister(uclinux_ram_mtdinfo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | 		map_destroy(uclinux_ram_mtdinfo); | 
 | 104 | 		uclinux_ram_mtdinfo = NULL; | 
 | 105 | 	} | 
| Greg Ungerer | f6515db | 2005-09-12 11:18:10 +1000 | [diff] [blame] | 106 | 	if (uclinux_ram_map.virt) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | 		iounmap((void *) uclinux_ram_map.virt); | 
 | 108 | 		uclinux_ram_map.virt = 0; | 
 | 109 | 	} | 
 | 110 | } | 
 | 111 |  | 
 | 112 | /****************************************************************************/ | 
 | 113 |  | 
 | 114 | module_init(uclinux_mtd_init); | 
 | 115 | module_exit(uclinux_mtd_cleanup); | 
 | 116 |  | 
 | 117 | MODULE_LICENSE("GPL"); | 
 | 118 | MODULE_AUTHOR("Greg Ungerer <gerg@snapgear.com>"); | 
 | 119 | MODULE_DESCRIPTION("Generic RAM based MTD for uClinux"); | 
 | 120 |  | 
 | 121 | /****************************************************************************/ |