2 * Ceiva flash memory driver.
3 * Copyright (C) 2002 Rob Scott <rscott@mtrob.fdns.net>
5 * Note: this driver supports jedec compatible devices. Modification
6 * for CFI compatible devices should be straight forward: change
7 * jedec_probe to cfi_probe.
9 * Based on: sa1100-flash.c, which has the following copyright:
10 * Flash memory access on SA11x0 based devices
12 * (C) 2000 Nicolas Pitre <nico@cam.org>
14 * $Id: ceiva.c,v 1.11 2004/09/16 23:27:12 gleixner Exp $
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/ioport.h>
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/slab.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/map.h>
26 #include <linux/mtd/partitions.h>
27 #include <linux/mtd/concat.h>
29 #include <asm/hardware.h>
30 #include <asm/mach-types.h>
32 #include <asm/sizes.h>
35 * This isn't complete yet, so...
37 #define CONFIG_MTD_CEIVA_STATICMAP
39 #ifdef CONFIG_MTD_CEIVA_STATICMAP
41 * See include/linux/mtd/partitions.h for definition of the mtd_partition
45 * 1. The flash size given should be the largest flash size that can
48 * 2. The bus width must defined in clps_setup_flash.
50 * The MTD layer will detect flash chip aliasing and reduce the size of
51 * the map accordingly.
55 #ifdef CONFIG_ARCH_CEIVA
56 /* Flash / Partition sizing */
57 /* For the 28F8003, we use the block mapping to calcuate the sizes */
58 #define MAX_SIZE_KiB (16 + 8 + 8 + 96 + (7*128))
59 #define BOOT_PARTITION_SIZE_KiB (16)
60 #define PARAMS_PARTITION_SIZE_KiB (8)
61 #define KERNEL_PARTITION_SIZE_KiB (4*128)
62 /* Use both remaing portion of first flash, and all of second flash */
63 #define ROOT_PARTITION_SIZE_KiB (3*128) + (8*128)
65 static struct mtd_partition ceiva_partitions[] = {
67 .name = "Ceiva BOOT partition",
68 .size = BOOT_PARTITION_SIZE_KiB*1024,
72 .name = "Ceiva parameters partition",
73 .size = PARAMS_PARTITION_SIZE_KiB*1024,
74 .offset = (16 + 8) * 1024,
76 .name = "Ceiva kernel partition",
77 .size = (KERNEL_PARTITION_SIZE_KiB)*1024,
81 .name = "Ceiva root filesystem partition",
82 .offset = MTDPART_OFS_APPEND,
83 .size = (ROOT_PARTITION_SIZE_KiB)*1024,
88 static int __init clps_static_partitions(struct mtd_partition **parts)
92 #ifdef CONFIG_ARCH_CEIVA
93 if (machine_is_ceiva()) {
94 *parts = ceiva_partitions;
95 nb_parts = ARRAY_SIZE(ceiva_partitions);
107 struct map_info *map;
108 struct mtd_info *mtd;
109 struct resource *res;
114 static struct clps_info info[NR_SUBMTD];
116 static int __init clps_setup_mtd(struct clps_info *clps, int nr, struct mtd_info **rmtd)
118 struct mtd_info *subdev[nr];
119 struct map_info *maps;
120 int i, found = 0, ret = 0;
123 * Allocate the map_info structs in one go.
125 maps = kmalloc(sizeof(struct map_info) * nr, GFP_KERNEL);
128 memset(maps, 0, sizeof(struct map_info) * nr);
130 * Claim and then map the memory regions.
132 for (i = 0; i < nr; i++) {
133 if (clps[i].base == (unsigned long)-1)
136 clps[i].res = request_mem_region(clps[i].base, clps[i].size, "clps flash");
142 clps[i].map = maps + i;
144 clps[i].map->name = "clps flash";
145 clps[i].map->phys = clps[i].base;
147 clps[i].vbase = ioremap(clps[i].base, clps[i].size);
148 if (!clps[i].vbase) {
153 clps[i].map->virt = (void __iomem *)clps[i].vbase;
154 clps[i].map->bankwidth = clps[i].width;
155 clps[i].map->size = clps[i].size;
157 simple_map_init(&clps[i].map);
159 clps[i].mtd = do_map_probe("jedec_probe", clps[i].map);
160 if (clps[i].mtd == NULL) {
164 clps[i].mtd->owner = THIS_MODULE;
165 subdev[i] = clps[i].mtd;
167 printk(KERN_INFO "clps flash: JEDEC device at 0x%08lx, %dMiB, "
168 "%d-bit\n", clps[i].base, clps[i].mtd->size >> 20,
174 * ENXIO is special. It means we didn't find a chip when
175 * we probed. We need to tear down the mapping, free the
176 * resource and mark it as such.
179 iounmap(clps[i].vbase);
180 clps[i].vbase = NULL;
181 release_resource(clps[i].res);
186 * If we found one device, don't bother with concat support.
187 * If we found multiple devices, use concat if we have it
188 * available, otherwise fail.
190 if (ret == 0 || ret == -ENXIO) {
194 } else if (found > 1) {
196 * We detected multiple devices. Concatenate
199 #ifdef CONFIG_MTD_CONCAT
200 *rmtd = mtd_concat_create(subdev, found,
205 printk(KERN_ERR "clps flash: multiple devices "
206 "found but MTD concat support disabled.\n");
213 * If we failed, clean up.
218 map_destroy(clps[i].mtd);
220 iounmap(clps[i].vbase);
222 release_resource(clps[i].res);
231 static void __exit clps_destroy_mtd(struct clps_info *clps, struct mtd_info *mtd)
235 del_mtd_partitions(mtd);
237 if (mtd != clps[0].mtd)
238 mtd_concat_destroy(mtd);
240 for (i = NR_SUBMTD; i >= 0; i--) {
242 map_destroy(clps[i].mtd);
244 iounmap(clps[i].vbase);
246 release_resource(clps[i].res);
252 * We define the memory space, size, and width for the flash memory
256 static int __init clps_setup_flash(void)
260 #ifdef CONFIG_ARCH_CEIVA
261 if (machine_is_ceiva()) {
262 info[0].base = CS0_PHYS_BASE;
263 info[0].size = SZ_32M;
264 info[0].width = CEIVA_FLASH_WIDTH;
265 info[1].base = CS1_PHYS_BASE;
266 info[1].size = SZ_32M;
267 info[1].width = CEIVA_FLASH_WIDTH;
274 static struct mtd_partition *parsed_parts;
275 static const char *probes[] = { "cmdlinepart", "RedBoot", NULL };
277 static void __init clps_locate_partitions(struct mtd_info *mtd)
279 const char *part_type = NULL;
283 * Partition selection stuff.
285 nr_parts = parse_mtd_partitions(mtd, probes, &parsed_parts, 0);
287 part_type = "command line";
290 #ifdef CONFIG_MTD_CEIVA_STATICMAP
291 nr_parts = clps_static_partitions(&parsed_parts);
293 part_type = "static";
296 printk("found: %d partitions\n", nr_parts);
301 printk(KERN_NOTICE "clps flash: no partition info "
302 "available, registering whole flash\n");
305 printk(KERN_NOTICE "clps flash: using %s partition "
306 "definition\n", part_type);
307 add_mtd_partitions(mtd, parsed_parts, nr_parts);
310 /* Always succeeds. */
313 static void __exit clps_destroy_partitions(void)
318 static struct mtd_info *mymtd;
320 static int __init clps_mtd_init(void)
325 nr = clps_setup_flash();
329 ret = clps_setup_mtd(info, nr, &mymtd);
333 clps_locate_partitions(mymtd);
338 static void __exit clps_mtd_cleanup(void)
340 clps_destroy_mtd(info, mymtd);
341 clps_destroy_partitions();
344 module_init(clps_mtd_init);
345 module_exit(clps_mtd_cleanup);
347 MODULE_AUTHOR("Rob Scott");
348 MODULE_DESCRIPTION("Cirrus Logic JEDEC map driver");
349 MODULE_LICENSE("GPL");