blob: c42f4b83f686dc0235f699b75a2dd457f4f53218 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/****************************************************************************/
2
3/*
4 * uclinux.c -- generic memory mapped MTD driver for uclinux
5 *
6 * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
7 *
Thomas Gleixner69f34c92005-11-07 11:15:40 +00008 * $Id: uclinux.c,v 1.12 2005/11/07 11:14:29 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/****************************************************************************/
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/types.h>
15#include <linux/init.h>
16#include <linux/kernel.h>
17#include <linux/fs.h>
18#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mtd/mtd.h>
20#include <linux/mtd/map.h>
21#include <linux/mtd/partitions.h>
22#include <asm/io.h>
23
24/****************************************************************************/
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026struct map_info uclinux_ram_map = {
27 .name = "RAM",
28};
29
30struct mtd_info *uclinux_ram_mtdinfo;
31
32/****************************************************************************/
33
34struct mtd_partition uclinux_romfs[] = {
35 { .name = "ROMfs" }
36};
37
Tobias Klauser87d10f32006-03-31 02:29:45 -080038#define NUM_PARTITIONS ARRAY_SIZE(uclinux_romfs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/****************************************************************************/
41
42int uclinux_point(struct mtd_info *mtd, loff_t from, size_t len,
Jared Hulberta98889f2008-04-29 23:26:49 -070043 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 struct map_info *map = mtd->priv;
Jared Hulberta98889f2008-04-29 23:26:49 -070046 *virt = map->virt + from;
47 if (phys)
48 *phys = map->phys + from;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 *retlen = len;
50 return(0);
51}
52
53/****************************************************************************/
54
55int __init uclinux_mtd_init(void)
56{
57 struct mtd_info *mtd;
58 struct map_info *mapp;
59 extern char _ebss;
Greg Ungererf6515db2005-09-12 11:18:10 +100060 unsigned long addr = (unsigned long) &_ebss;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 mapp = &uclinux_ram_map;
Greg Ungererf6515db2005-09-12 11:18:10 +100063 mapp->phys = addr;
64 mapp->size = PAGE_ALIGN(ntohl(*((unsigned long *)(addr + 8))));
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 mapp->bankwidth = 4;
66
67 printk("uclinux[mtd]: RAM probe address=0x%x size=0x%x\n",
Greg Ungererf6515db2005-09-12 11:18:10 +100068 (int) mapp->phys, (int) mapp->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 mapp->virt = ioremap_nocache(mapp->phys, mapp->size);
71
72 if (mapp->virt == 0) {
73 printk("uclinux[mtd]: ioremap_nocache() failed\n");
74 return(-EIO);
75 }
76
77 simple_map_init(mapp);
78
79 mtd = do_map_probe("map_ram", mapp);
80 if (!mtd) {
81 printk("uclinux[mtd]: failed to find a mapping?\n");
82 iounmap(mapp->virt);
83 return(-ENXIO);
84 }
Thomas Gleixner69f34c92005-11-07 11:15:40 +000085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 mtd->owner = THIS_MODULE;
87 mtd->point = uclinux_point;
88 mtd->priv = mapp;
89
90 uclinux_ram_mtdinfo = mtd;
91 add_mtd_partitions(mtd, uclinux_romfs, NUM_PARTITIONS);
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return(0);
94}
95
96/****************************************************************************/
97
98void __exit uclinux_mtd_cleanup(void)
99{
100 if (uclinux_ram_mtdinfo) {
101 del_mtd_partitions(uclinux_ram_mtdinfo);
102 map_destroy(uclinux_ram_mtdinfo);
103 uclinux_ram_mtdinfo = NULL;
104 }
Greg Ungererf6515db2005-09-12 11:18:10 +1000105 if (uclinux_ram_map.virt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 iounmap((void *) uclinux_ram_map.virt);
107 uclinux_ram_map.virt = 0;
108 }
109}
110
111/****************************************************************************/
112
113module_init(uclinux_mtd_init);
114module_exit(uclinux_mtd_cleanup);
115
116MODULE_LICENSE("GPL");
117MODULE_AUTHOR("Greg Ungerer <gerg@snapgear.com>");
118MODULE_DESCRIPTION("Generic RAM based MTD for uClinux");
119
120/****************************************************************************/