2 * NV-RAM memory access on autcpu12
3 * (C) 2002 Thomas Gleixner (gleixner@autronix.de)
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/module.h>
22 #include <linux/types.h>
23 #include <linux/kernel.h>
24 #include <linux/ioport.h>
25 #include <linux/init.h>
27 #include <asm/sizes.h>
28 #include <mach/hardware.h>
29 #include <mach/autcpu12.h>
30 #include <linux/mtd/mtd.h>
31 #include <linux/mtd/map.h>
32 #include <linux/mtd/partitions.h>
35 static struct mtd_info
*sram_mtd
;
37 struct map_info autcpu12_sram_map
= {
44 static int __init
init_autcpu12_sram (void)
46 int err
, save0
, save1
;
48 autcpu12_sram_map
.virt
= ioremap(0x12000000, SZ_128K
);
49 if (!autcpu12_sram_map
.virt
) {
50 printk("Failed to ioremap autcpu12 NV-RAM space\n");
54 simple_map_init(&autcpu_sram_map
);
60 * Write complement to ofs 0x100000
61 * Read and check result on ofs 0x0
64 save0
= map_read32(&autcpu12_sram_map
,0);
65 save1
= map_read32(&autcpu12_sram_map
,0x10000);
66 map_write32(&autcpu12_sram_map
,~save0
,0x10000);
67 /* if we find this pattern on 0x0, we have 32K size
68 * restore contents and exit
70 if ( map_read32(&autcpu12_sram_map
,0) != save0
) {
71 map_write32(&autcpu12_sram_map
,save0
,0x0);
74 /* We have a 128K found, restore 0x10000 and set size
77 map_write32(&autcpu12_sram_map
,save1
,0x10000);
78 autcpu12_sram_map
.size
= SZ_128K
;
81 sram_mtd
= do_map_probe("map_ram", &autcpu12_sram_map
);
83 printk("NV-RAM probe failed\n");
88 sram_mtd
->owner
= THIS_MODULE
;
89 sram_mtd
->erasesize
= 16;
91 if (mtd_device_register(sram_mtd
, NULL
, 0)) {
92 printk("NV-RAM device addition failed\n");
97 printk("NV-RAM device size %ldKiB registered on AUTCPU12\n",autcpu12_sram_map
.size
/SZ_1K
);
102 map_destroy(sram_mtd
);
106 iounmap((void *)autcpu12_sram_map
.virt
);
111 static void __exit
cleanup_autcpu12_maps(void)
114 mtd_device_unregister(sram_mtd
);
115 map_destroy(sram_mtd
);
116 iounmap((void *)autcpu12_sram_map
.virt
);
120 module_init(init_autcpu12_sram
);
121 module_exit(cleanup_autcpu12_maps
);
123 MODULE_AUTHOR("Thomas Gleixner");
124 MODULE_DESCRIPTION("autcpu12 NV-RAM map driver");
125 MODULE_LICENSE("GPL");