diff options
| author | Todd Poynor <tpoynor@mvista.com> | 2005-09-14 15:14:17 -0400 |
|---|---|---|
| committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-11-06 15:40:38 -0500 |
| commit | 9c517e6c801aab0f8de8f9c67bfc16ea13d72971 (patch) | |
| tree | a97eac9182c8baa54293a71955eae1bc6242e485 | |
| parent | 81e39cf0297c7f32fb8869af9ae199130208ae6f (diff) | |
[MTD] maps: Add mapping driver for PQ2FADS boards.
From: Vitaly Bordug <vbordug@ru.mvista.com>
Signed-off-by: Todd Poynor <tpoynor@mvista.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
| -rw-r--r-- | drivers/mtd/maps/Kconfig | 8 | ||||
| -rw-r--r-- | drivers/mtd/maps/Makefile | 3 | ||||
| -rw-r--r-- | drivers/mtd/maps/pq2fads.c | 88 |
3 files changed, 97 insertions, 2 deletions
diff --git a/drivers/mtd/maps/Kconfig b/drivers/mtd/maps/Kconfig index aa5d71f8d812..8e3e93d62525 100644 --- a/drivers/mtd/maps/Kconfig +++ b/drivers/mtd/maps/Kconfig | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | # drivers/mtd/maps/Kconfig | 1 | # drivers/mtd/maps/Kconfig |
| 2 | # $Id: Kconfig,v 1.55 2005/07/02 01:53:24 tpoynor Exp $ | 2 | # $Id: Kconfig,v 1.58 2005/09/14 19:14:13 tpoynor Exp $ |
| 3 | 3 | ||
| 4 | menu "Mapping drivers for chip access" | 4 | menu "Mapping drivers for chip access" |
| 5 | depends on MTD!=n | 5 | depends on MTD!=n |
| @@ -520,6 +520,12 @@ config MTD_MPC1211 | |||
| 520 | This enables access to the flash chips on the Interface MPC-1211(CTP/PCI/MPC-SH02). | 520 | This enables access to the flash chips on the Interface MPC-1211(CTP/PCI/MPC-SH02). |
| 521 | If you have such a board, say 'Y'. | 521 | If you have such a board, say 'Y'. |
| 522 | 522 | ||
| 523 | config MTD_PQ2FADS | ||
| 524 | tristate "JEDEC flash SIMM mapped on PQ2FADS and 8272ADS boards" | ||
| 525 | depends on (ADS8272 || PQ2FADS) && MTD_PARTITIONS && MTD_JEDECPROBE && MTD_PHYSMAP && MTD_CFI_GEOMETRY && MTD_CFI_INTELEXT | ||
| 526 | help | ||
| 527 | This enables access to flash SIMM on PQ2FADS-like boards | ||
| 528 | |||
| 523 | config MTD_OMAP_NOR | 529 | config MTD_OMAP_NOR |
| 524 | tristate "TI OMAP board mappings" | 530 | tristate "TI OMAP board mappings" |
| 525 | depends on MTD_CFI && ARCH_OMAP | 531 | depends on MTD_CFI && ARCH_OMAP |
diff --git a/drivers/mtd/maps/Makefile b/drivers/mtd/maps/Makefile index 7bcbc49e329f..095517847c77 100644 --- a/drivers/mtd/maps/Makefile +++ b/drivers/mtd/maps/Makefile | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # linux/drivers/maps/Makefile | 2 | # linux/drivers/maps/Makefile |
| 3 | # | 3 | # |
| 4 | # $Id: Makefile.common,v 1.30 2005/07/02 01:53:24 tpoynor Exp $ | 4 | # $Id: Makefile.common,v 1.31 2005/09/14 19:14:13 tpoynor Exp $ |
| 5 | 5 | ||
| 6 | ifeq ($(CONFIG_MTD_COMPLEX_MAPPINGS),y) | 6 | ifeq ($(CONFIG_MTD_COMPLEX_MAPPINGS),y) |
| 7 | obj-$(CONFIG_MTD) += map_funcs.o | 7 | obj-$(CONFIG_MTD) += map_funcs.o |
| @@ -70,3 +70,4 @@ obj-$(CONFIG_MTD_DMV182) += dmv182.o | |||
| 70 | obj-$(CONFIG_MTD_SHARP_SL) += sharpsl-flash.o | 70 | obj-$(CONFIG_MTD_SHARP_SL) += sharpsl-flash.o |
| 71 | obj-$(CONFIG_MTD_PLATRAM) += plat-ram.o | 71 | obj-$(CONFIG_MTD_PLATRAM) += plat-ram.o |
| 72 | obj-$(CONFIG_MTD_OMAP_NOR) += omap_nor.o | 72 | obj-$(CONFIG_MTD_OMAP_NOR) += omap_nor.o |
| 73 | obj-$(CONFIG_MTD_PQ2FADS) += pq2fads.o | ||
diff --git a/drivers/mtd/maps/pq2fads.c b/drivers/mtd/maps/pq2fads.c new file mode 100644 index 000000000000..e959076b1bf6 --- /dev/null +++ b/drivers/mtd/maps/pq2fads.c | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | /* | ||
| 2 | * drivers/mtd/maps/pq2fads.c | ||
| 3 | * | ||
| 4 | * Mapping for the flash SIMM on 8272ADS and PQ2FADS board | ||
| 5 | * | ||
| 6 | * Author: Vitaly Bordug <vbordug@ru.mvista.com> | ||
| 7 | * | ||
| 8 | * 2005 (c) MontaVista Software, Inc. This file is licensed under | ||
| 9 | * the terms of the GNU General Public License version 2. This program | ||
| 10 | * is licensed "as is" without any warranty of any kind, whether express | ||
| 11 | * or implied. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #include <linux/module.h> | ||
| 15 | #include <linux/types.h> | ||
| 16 | #include <linux/kernel.h> | ||
| 17 | #include <linux/init.h> | ||
| 18 | #include <asm/io.h> | ||
| 19 | #include <asm/ppcboot.h> | ||
| 20 | #include <linux/mtd/mtd.h> | ||
| 21 | #include <linux/mtd/map.h> | ||
| 22 | #include <linux/mtd/partitions.h> | ||
| 23 | #include <linux/mtd/physmap.h> | ||
| 24 | |||
| 25 | /* | ||
| 26 | NOTE: bank width and interleave relative to the installed flash | ||
| 27 | should have been chosen within MTD_CFI_GEOMETRY options. | ||
| 28 | */ | ||
| 29 | #define PQ2FADS_BANK_WIDTH 4 | ||
| 30 | |||
| 31 | static struct mtd_partition pq2fads_partitions[] = { | ||
| 32 | { | ||
| 33 | #ifdef CONFIG_ADS8272 | ||
| 34 | .name = "HRCW", | ||
| 35 | .size = 0x40000, | ||
| 36 | .offset = 0, | ||
| 37 | .mask_flags = MTD_WRITEABLE, /* force read-only */ | ||
| 38 | }, { | ||
| 39 | .name = "User FS", | ||
| 40 | .size = 0x5c0000, | ||
| 41 | .offset = 0x40000, | ||
| 42 | #else | ||
| 43 | .name = "User FS", | ||
| 44 | .size = 0x600000, | ||
| 45 | .offset = 0, | ||
| 46 | #endif | ||
| 47 | }, { | ||
| 48 | .name = "uImage", | ||
| 49 | .size = 0x100000, | ||
| 50 | .offset = 0x600000, | ||
| 51 | .mask_flags = MTD_WRITEABLE, /* force read-only */ | ||
| 52 | }, { | ||
| 53 | .name = "bootloader", | ||
| 54 | .size = 0x40000, | ||
| 55 | .offset = 0x700000, | ||
| 56 | .mask_flags = MTD_WRITEABLE, /* force read-only */ | ||
| 57 | }, { | ||
| 58 | .name = "bootloader env", | ||
| 59 | .size = 0x40000, | ||
| 60 | .offset = 0x740000, | ||
| 61 | .mask_flags = MTD_WRITEABLE, /* force read-only */ | ||
| 62 | } | ||
| 63 | }; | ||
| 64 | |||
| 65 | |||
| 66 | /* pointer to MPC885ADS board info data */ | ||
| 67 | extern unsigned char __res[]; | ||
| 68 | |||
| 69 | static int __init init_pq2fads_mtd(void) | ||
| 70 | { | ||
| 71 | bd_t *bd = (bd_t *)__res; | ||
| 72 | physmap_configure(bd->bi_flashstart, bd->bi_flashsize, PQ2FADS_BANK_WIDTH, NULL); | ||
| 73 | |||
| 74 | physmap_set_partitions(pq2fads_partitions, | ||
| 75 | sizeof (pq2fads_partitions) / | ||
| 76 | sizeof (pq2fads_partitions[0])); | ||
| 77 | return 0; | ||
| 78 | } | ||
| 79 | |||
| 80 | static void __exit cleanup_pq2fads_mtd(void) | ||
| 81 | { | ||
| 82 | } | ||
| 83 | |||
| 84 | module_init(init_pq2fads_mtd); | ||
| 85 | module_exit(cleanup_pq2fads_mtd); | ||
| 86 | |||
| 87 | MODULE_LICENSE("GPL"); | ||
| 88 | MODULE_DESCRIPTION("MTD map and partitions for MPC8272ADS boards"); | ||
