Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************/ |
| 2 | |
| 3 | /* |
| 4 | * uclinux.c -- generic memory mapped MTD driver for uclinux |
| 5 | * |
| 6 | * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | /****************************************************************************/ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/fs.h> |
Andrea Righi | 27ac792 | 2008-07-23 21:28:13 -0700 | [diff] [blame] | 16 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/major.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/mtd/mtd.h> |
| 19 | #include <linux/mtd/map.h> |
| 20 | #include <linux/mtd/partitions.h> |
| 21 | #include <asm/io.h> |
Geert Uytterhoeven | 363737d | 2012-05-31 22:39:21 +0200 | [diff] [blame] | 22 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | /****************************************************************************/ |
| 25 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 26 | #ifdef CONFIG_MTD_ROM |
| 27 | #define MAP_NAME "rom" |
| 28 | #else |
| 29 | #define MAP_NAME "ram" |
| 30 | #endif |
| 31 | |
Uwe Kleine-König | 44fe63f | 2013-01-16 15:36:56 +0100 | [diff] [blame] | 32 | /* |
| 33 | * Blackfin uses uclinux_ram_map during startup, so it must not be static. |
| 34 | * Provide a dummy declaration to make sparse happy. |
| 35 | */ |
| 36 | extern struct map_info uclinux_ram_map; |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | struct map_info uclinux_ram_map = { |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 39 | .name = MAP_NAME, |
Mike Frysinger | fa254ec | 2009-05-26 19:33:16 -0400 | [diff] [blame] | 40 | .size = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 43 | static unsigned long physaddr = -1; |
| 44 | module_param(physaddr, ulong, S_IRUGO); |
| 45 | |
Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 46 | static struct mtd_info *uclinux_ram_mtdinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /****************************************************************************/ |
| 49 | |
Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 50 | static struct mtd_partition uclinux_romfs[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { .name = "ROMfs" } |
| 52 | }; |
| 53 | |
Tobias Klauser | 87d10f3 | 2006-03-31 02:29:45 -0800 | [diff] [blame] | 54 | #define NUM_PARTITIONS ARRAY_SIZE(uclinux_romfs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | /****************************************************************************/ |
| 57 | |
Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 58 | static int uclinux_point(struct mtd_info *mtd, loff_t from, size_t len, |
Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 59 | size_t *retlen, void **virt, resource_size_t *phys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
| 61 | struct map_info *map = mtd->priv; |
Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 62 | *virt = map->virt + from; |
| 63 | if (phys) |
| 64 | *phys = map->phys + from; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | *retlen = len; |
| 66 | return(0); |
| 67 | } |
| 68 | |
| 69 | /****************************************************************************/ |
| 70 | |
Dmitri Vorobiev | 769455e | 2008-11-25 02:55:09 +0200 | [diff] [blame] | 71 | static int __init uclinux_mtd_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
| 73 | struct mtd_info *mtd; |
| 74 | struct map_info *mapp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | mapp = &uclinux_ram_map; |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 77 | |
| 78 | if (physaddr == -1) |
| 79 | mapp->phys = (resource_size_t)__bss_stop; |
| 80 | else |
| 81 | mapp->phys = physaddr; |
| 82 | |
Mike Frysinger | fa254ec | 2009-05-26 19:33:16 -0400 | [diff] [blame] | 83 | if (!mapp->size) |
| 84 | mapp->size = PAGE_ALIGN(ntohl(*((unsigned long *)(mapp->phys + 8)))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | mapp->bankwidth = 4; |
| 86 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 87 | printk("uclinux[mtd]: probe address=0x%x size=0x%x\n", |
Greg Ungerer | f6515db | 2005-09-12 11:18:10 +1000 | [diff] [blame] | 88 | (int) mapp->phys, (int) mapp->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Greg Ungerer | 08a3c4b | 2012-07-19 15:42:45 +1000 | [diff] [blame] | 90 | /* |
| 91 | * The filesystem is guaranteed to be in direct mapped memory. It is |
| 92 | * directly following the kernels own bss region. Following the same |
| 93 | * mechanism used by architectures setting up traditional initrds we |
| 94 | * use phys_to_virt to get the virtual address of its start. |
| 95 | */ |
| 96 | mapp->virt = phys_to_virt(mapp->phys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | if (mapp->virt == 0) { |
Greg Ungerer | 08a3c4b | 2012-07-19 15:42:45 +1000 | [diff] [blame] | 99 | printk("uclinux[mtd]: no virtual mapping?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | return(-EIO); |
| 101 | } |
| 102 | |
| 103 | simple_map_init(mapp); |
| 104 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 105 | mtd = do_map_probe("map_" MAP_NAME, mapp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | if (!mtd) { |
| 107 | printk("uclinux[mtd]: failed to find a mapping?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | return(-ENXIO); |
| 109 | } |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | mtd->owner = THIS_MODULE; |
Artem Bityutskiy | 3c3c10b | 2012-01-30 14:58:32 +0200 | [diff] [blame] | 112 | mtd->_point = uclinux_point; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | mtd->priv = mapp; |
| 114 | |
| 115 | uclinux_ram_mtdinfo = mtd; |
Jamie Iles | 5e7e968 | 2011-05-23 10:23:12 +0100 | [diff] [blame] | 116 | mtd_device_register(mtd, uclinux_romfs, NUM_PARTITIONS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | return(0); |
| 119 | } |
| 120 | |
| 121 | /****************************************************************************/ |
| 122 | |
Dmitri Vorobiev | 769455e | 2008-11-25 02:55:09 +0200 | [diff] [blame] | 123 | static void __exit uclinux_mtd_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
| 125 | if (uclinux_ram_mtdinfo) { |
Jamie Iles | 5e7e968 | 2011-05-23 10:23:12 +0100 | [diff] [blame] | 126 | mtd_device_unregister(uclinux_ram_mtdinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | map_destroy(uclinux_ram_mtdinfo); |
| 128 | uclinux_ram_mtdinfo = NULL; |
| 129 | } |
Greg Ungerer | 08a3c4b | 2012-07-19 15:42:45 +1000 | [diff] [blame] | 130 | if (uclinux_ram_map.virt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | uclinux_ram_map.virt = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | /****************************************************************************/ |
| 135 | |
| 136 | module_init(uclinux_mtd_init); |
| 137 | module_exit(uclinux_mtd_cleanup); |
| 138 | |
| 139 | MODULE_LICENSE("GPL"); |
| 140 | MODULE_AUTHOR("Greg Ungerer <gerg@snapgear.com>"); |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 141 | MODULE_DESCRIPTION("Generic MTD for uClinux"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | /****************************************************************************/ |