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"
35 * Blackfin uses uclinux_ram_map during startup, so it must not be static.
36 * Provide a dummy declaration to make sparse happy.
38 extern struct map_info uclinux_ram_map
;
40 struct map_info uclinux_ram_map
= {
45 static unsigned long physaddr
= -1;
46 module_param(physaddr
, ulong
, S_IRUGO
);
48 static struct mtd_info
*uclinux_ram_mtdinfo
;
50 /****************************************************************************/
52 static struct mtd_partition uclinux_romfs
[] = {
56 #define NUM_PARTITIONS ARRAY_SIZE(uclinux_romfs)
58 /****************************************************************************/
60 static int uclinux_point(struct mtd_info
*mtd
, loff_t from
, size_t len
,
61 size_t *retlen
, void **virt
, resource_size_t
*phys
)
63 struct map_info
*map
= mtd
->priv
;
64 *virt
= map
->virt
+ from
;
66 *phys
= map
->phys
+ from
;
71 /****************************************************************************/
73 static int __init
uclinux_mtd_init(void)
76 struct map_info
*mapp
;
78 mapp
= &uclinux_ram_map
;
81 mapp
->phys
= (resource_size_t
)__bss_stop
;
83 mapp
->phys
= physaddr
;
86 mapp
->size
= PAGE_ALIGN(ntohl(*((unsigned long *)(mapp
->phys
+ 8))));
89 printk("uclinux[mtd]: probe address=0x%x size=0x%x\n",
90 (int) mapp
->phys
, (int) mapp
->size
);
93 * The filesystem is guaranteed to be in direct mapped memory. It is
94 * directly following the kernels own bss region. Following the same
95 * mechanism used by architectures setting up traditional initrds we
96 * use phys_to_virt to get the virtual address of its start.
98 mapp
->virt
= phys_to_virt(mapp
->phys
);
100 if (mapp
->virt
== 0) {
101 printk("uclinux[mtd]: no virtual mapping?\n");
105 simple_map_init(mapp
);
107 mtd
= do_map_probe("map_" MAP_NAME
, mapp
);
109 printk("uclinux[mtd]: failed to find a mapping?\n");
113 mtd
->owner
= THIS_MODULE
;
114 mtd
->_point
= uclinux_point
;
117 uclinux_ram_mtdinfo
= mtd
;
118 mtd_device_register(mtd
, uclinux_romfs
, NUM_PARTITIONS
);
122 device_initcall(uclinux_mtd_init
);
124 /****************************************************************************/