1 /****************************************************************************/
4 * uclinux.c -- generic memory mapped MTD driver for uclinux
6 * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
8 * $Id: uclinux.c,v 1.10 2005/01/05 18:05:13 dwmw2 Exp $
11 /****************************************************************************/
13 #include <linux/config.h>
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/init.h>
17 #include <linux/kernel.h>
19 #include <linux/major.h>
20 #include <linux/root_dev.h>
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/map.h>
23 #include <linux/mtd/partitions.h>
26 /****************************************************************************/
29 /****************************************************************************/
31 struct map_info uclinux_ram_map
= {
35 struct mtd_info
*uclinux_ram_mtdinfo
;
37 /****************************************************************************/
39 struct mtd_partition uclinux_romfs
[] = {
43 #define NUM_PARTITIONS (sizeof(uclinux_romfs) / sizeof(uclinux_romfs[0]))
45 /****************************************************************************/
47 int uclinux_point(struct mtd_info
*mtd
, loff_t from
, size_t len
,
48 size_t *retlen
, u_char
**mtdbuf
)
50 struct map_info
*map
= mtd
->priv
;
51 *mtdbuf
= (u_char
*) (map
->virt
+ ((int) from
));
56 /****************************************************************************/
58 int __init
uclinux_mtd_init(void)
61 struct map_info
*mapp
;
64 mapp
= &uclinux_ram_map
;
65 mapp
->phys
= (unsigned long) &_ebss
;
66 mapp
->size
= PAGE_ALIGN(*((unsigned long *)((&_ebss
) + 8)));
69 printk("uclinux[mtd]: RAM probe address=0x%x size=0x%x\n",
70 (int) mapp
->map_priv_2
, (int) mapp
->size
);
72 mapp
->virt
= ioremap_nocache(mapp
->phys
, mapp
->size
);
74 if (mapp
->virt
== 0) {
75 printk("uclinux[mtd]: ioremap_nocache() failed\n");
79 simple_map_init(mapp
);
81 mtd
= do_map_probe("map_ram", mapp
);
83 printk("uclinux[mtd]: failed to find a mapping?\n");
88 mtd
->owner
= THIS_MODULE
;
89 mtd
->point
= uclinux_point
;
92 uclinux_ram_mtdinfo
= mtd
;
93 add_mtd_partitions(mtd
, uclinux_romfs
, NUM_PARTITIONS
);
95 printk("uclinux[mtd]: set %s to be root filesystem\n",
96 uclinux_romfs
[0].name
);
97 ROOT_DEV
= MKDEV(MTD_BLOCK_MAJOR
, 0);
103 /****************************************************************************/
105 void __exit
uclinux_mtd_cleanup(void)
107 if (uclinux_ram_mtdinfo
) {
108 del_mtd_partitions(uclinux_ram_mtdinfo
);
109 map_destroy(uclinux_ram_mtdinfo
);
110 uclinux_ram_mtdinfo
= NULL
;
112 if (uclinux_ram_map
.map_priv_1
) {
113 iounmap((void *) uclinux_ram_map
.virt
);
114 uclinux_ram_map
.virt
= 0;
118 /****************************************************************************/
120 module_init(uclinux_mtd_init
);
121 module_exit(uclinux_mtd_cleanup
);
123 MODULE_LICENSE("GPL");
124 MODULE_AUTHOR("Greg Ungerer <gerg@snapgear.com>");
125 MODULE_DESCRIPTION("Generic RAM based MTD for uClinux");
127 /****************************************************************************/