1 /****************************************************************************/
4 * uclinux.c -- generic memory mapped MTD driver for uclinux
6 * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
11 /****************************************************************************/
13 #include <linux/moduleparam.h>
14 #include <linux/types.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
19 #include <linux/major.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/mtd/map.h>
22 #include <linux/mtd/partitions.h>
24 #include <asm/sections.h>
26 /****************************************************************************/
29 #define MAP_NAME "rom"
31 #define MAP_NAME "ram"
34 static struct map_info uclinux_ram_map
= {
39 static unsigned long physaddr
= -1;
40 module_param(physaddr
, ulong
, S_IRUGO
);
42 static struct mtd_info
*uclinux_ram_mtdinfo
;
44 /****************************************************************************/
46 static const struct mtd_partition uclinux_romfs
[] = {
50 #define NUM_PARTITIONS ARRAY_SIZE(uclinux_romfs)
52 /****************************************************************************/
54 static int uclinux_point(struct mtd_info
*mtd
, loff_t from
, size_t len
,
55 size_t *retlen
, void **virt
, resource_size_t
*phys
)
57 struct map_info
*map
= mtd
->priv
;
58 *virt
= map
->virt
+ from
;
60 *phys
= map
->phys
+ from
;
65 /****************************************************************************/
67 static int __init
uclinux_mtd_init(void)
70 struct map_info
*mapp
;
72 mapp
= &uclinux_ram_map
;
75 mapp
->phys
= (resource_size_t
)__bss_stop
;
77 mapp
->phys
= physaddr
;
80 mapp
->size
= PAGE_ALIGN(ntohl(*((unsigned long *)(mapp
->phys
+ 8))));
83 printk("uclinux[mtd]: probe address=0x%x size=0x%x\n",
84 (int) mapp
->phys
, (int) mapp
->size
);
87 * The filesystem is guaranteed to be in direct mapped memory. It is
88 * directly following the kernels own bss region. Following the same
89 * mechanism used by architectures setting up traditional initrds we
90 * use phys_to_virt to get the virtual address of its start.
92 mapp
->virt
= phys_to_virt(mapp
->phys
);
94 if (mapp
->virt
== 0) {
95 printk("uclinux[mtd]: no virtual mapping?\n");
99 simple_map_init(mapp
);
101 mtd
= do_map_probe("map_" MAP_NAME
, mapp
);
103 printk("uclinux[mtd]: failed to find a mapping?\n");
107 mtd
->owner
= THIS_MODULE
;
108 mtd
->_point
= uclinux_point
;
111 uclinux_ram_mtdinfo
= mtd
;
112 mtd_device_register(mtd
, uclinux_romfs
, NUM_PARTITIONS
);
116 device_initcall(uclinux_mtd_init
);
118 /****************************************************************************/