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) |
Paul Gortmaker | 025ce02 | 2016-03-27 12:13:54 -0400 | [diff] [blame] | 7 | * |
| 8 | * License: GPL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | /****************************************************************************/ |
| 12 | |
Paul Gortmaker | 025ce02 | 2016-03-27 12:13:54 -0400 | [diff] [blame] | 13 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/fs.h> |
Andrea Righi | 27ac792 | 2008-07-23 21:28:13 -0700 | [diff] [blame] | 18 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/major.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/mtd/mtd.h> |
| 21 | #include <linux/mtd/map.h> |
| 22 | #include <linux/mtd/partitions.h> |
| 23 | #include <asm/io.h> |
Geert Uytterhoeven | 363737d | 2012-05-31 22:39:21 +0200 | [diff] [blame] | 24 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | /****************************************************************************/ |
| 27 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 28 | #ifdef CONFIG_MTD_ROM |
| 29 | #define MAP_NAME "rom" |
| 30 | #else |
| 31 | #define MAP_NAME "ram" |
| 32 | #endif |
| 33 | |
Uwe Kleine-König | 44fe63f | 2013-01-16 15:36:56 +0100 | [diff] [blame] | 34 | /* |
| 35 | * Blackfin uses uclinux_ram_map during startup, so it must not be static. |
| 36 | * Provide a dummy declaration to make sparse happy. |
| 37 | */ |
| 38 | extern struct map_info uclinux_ram_map; |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | struct map_info uclinux_ram_map = { |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 41 | .name = MAP_NAME, |
Mike Frysinger | fa254ec | 2009-05-26 19:33:16 -0400 | [diff] [blame] | 42 | .size = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 45 | static unsigned long physaddr = -1; |
| 46 | module_param(physaddr, ulong, S_IRUGO); |
| 47 | |
Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 48 | static struct mtd_info *uclinux_ram_mtdinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | /****************************************************************************/ |
| 51 | |
Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 52 | static struct mtd_partition uclinux_romfs[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | { .name = "ROMfs" } |
| 54 | }; |
| 55 | |
Tobias Klauser | 87d10f3 | 2006-03-31 02:29:45 -0800 | [diff] [blame] | 56 | #define NUM_PARTITIONS ARRAY_SIZE(uclinux_romfs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | /****************************************************************************/ |
| 59 | |
Mike Frysinger | 9f31f4b | 2009-05-26 19:33:17 -0400 | [diff] [blame] | 60 | 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] | 61 | size_t *retlen, void **virt, resource_size_t *phys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
| 63 | struct map_info *map = mtd->priv; |
Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 64 | *virt = map->virt + from; |
| 65 | if (phys) |
| 66 | *phys = map->phys + from; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | *retlen = len; |
| 68 | return(0); |
| 69 | } |
| 70 | |
| 71 | /****************************************************************************/ |
| 72 | |
Dmitri Vorobiev | 769455e | 2008-11-25 02:55:09 +0200 | [diff] [blame] | 73 | static int __init uclinux_mtd_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
| 75 | struct mtd_info *mtd; |
| 76 | struct map_info *mapp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | mapp = &uclinux_ram_map; |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 79 | |
| 80 | if (physaddr == -1) |
| 81 | mapp->phys = (resource_size_t)__bss_stop; |
| 82 | else |
| 83 | mapp->phys = physaddr; |
| 84 | |
Mike Frysinger | fa254ec | 2009-05-26 19:33:16 -0400 | [diff] [blame] | 85 | if (!mapp->size) |
| 86 | mapp->size = PAGE_ALIGN(ntohl(*((unsigned long *)(mapp->phys + 8)))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | mapp->bankwidth = 4; |
| 88 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 89 | printk("uclinux[mtd]: probe address=0x%x size=0x%x\n", |
Greg Ungerer | f6515db | 2005-09-12 11:18:10 +1000 | [diff] [blame] | 90 | (int) mapp->phys, (int) mapp->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Greg Ungerer | 08a3c4b | 2012-07-19 15:42:45 +1000 | [diff] [blame] | 92 | /* |
| 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. |
| 97 | */ |
| 98 | mapp->virt = phys_to_virt(mapp->phys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | if (mapp->virt == 0) { |
Greg Ungerer | 08a3c4b | 2012-07-19 15:42:45 +1000 | [diff] [blame] | 101 | printk("uclinux[mtd]: no virtual mapping?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | return(-EIO); |
| 103 | } |
| 104 | |
| 105 | simple_map_init(mapp); |
| 106 | |
Uwe Kleine-König | 81f53ff | 2013-01-16 15:36:55 +0100 | [diff] [blame] | 107 | mtd = do_map_probe("map_" MAP_NAME, mapp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | if (!mtd) { |
| 109 | printk("uclinux[mtd]: failed to find a mapping?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return(-ENXIO); |
| 111 | } |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | mtd->owner = THIS_MODULE; |
Artem Bityutskiy | 3c3c10b | 2012-01-30 14:58:32 +0200 | [diff] [blame] | 114 | mtd->_point = uclinux_point; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | mtd->priv = mapp; |
| 116 | |
| 117 | uclinux_ram_mtdinfo = mtd; |
Jamie Iles | 5e7e968 | 2011-05-23 10:23:12 +0100 | [diff] [blame] | 118 | mtd_device_register(mtd, uclinux_romfs, NUM_PARTITIONS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | return(0); |
| 121 | } |
Paul Gortmaker | 025ce02 | 2016-03-27 12:13:54 -0400 | [diff] [blame] | 122 | device_initcall(uclinux_mtd_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | /****************************************************************************/ |