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>
16 #include <linux/module.h>
17 #include <linux/types.h>
18 #include <linux/ioport.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/slab.h>
23 #include <linux/mtd/mtd.h>
24 #include <linux/mtd/map.h>
25 #include <linux/mtd/partitions.h>
26 #include <linux/mtd/concat.h>
28 #include <asm/hardware.h>
29 #include <asm/mach-types.h>
31 #include <asm/sizes.h>
34 * This isn't complete yet, so...
36 #define CONFIG_MTD_CEIVA_STATICMAP
38 #ifdef CONFIG_MTD_CEIVA_STATICMAP
40 * See include/linux/mtd/partitions.h for definition of the mtd_partition
44 * 1. The flash size given should be the largest flash size that can
47 * 2. The bus width must defined in clps_setup_flash.
49 * The MTD layer will detect flash chip aliasing and reduce the size of
50 * the map accordingly.
54 #ifdef CONFIG_ARCH_CEIVA
55 /* Flash / Partition sizing */
56 /* For the 28F8003, we use the block mapping to calcuate the sizes */
57 #define MAX_SIZE_KiB (16 + 8 + 8 + 96 + (7*128))
58 #define BOOT_PARTITION_SIZE_KiB (16)
59 #define PARAMS_PARTITION_SIZE_KiB (8)
60 #define KERNEL_PARTITION_SIZE_KiB (4*128)
61 /* Use both remaing portion of first flash, and all of second flash */
62 #define ROOT_PARTITION_SIZE_KiB (3*128) + (8*128)
64 static struct mtd_partition ceiva_partitions[] = {
66 .name = "Ceiva BOOT partition",
67 .size = BOOT_PARTITION_SIZE_KiB*1024,
71 .name = "Ceiva parameters partition",
72 .size = PARAMS_PARTITION_SIZE_KiB*1024,
73 .offset = (16 + 8) * 1024,
75 .name = "Ceiva kernel partition",
76 .size = (KERNEL_PARTITION_SIZE_KiB)*1024,
80 .name = "Ceiva root filesystem partition",
81 .offset = MTDPART_OFS_APPEND,
82 .size = (ROOT_PARTITION_SIZE_KiB)*1024,
87 static int __init clps_static_partitions(struct mtd_partition **parts)
91 #ifdef CONFIG_ARCH_CEIVA
92 if (machine_is_ceiva()) {
93 *parts = ceiva_partitions;
94 nb_parts = ARRAY_SIZE(ceiva_partitions);
106 struct map_info *map;
107 struct mtd_info *mtd;
108 struct resource *res;
113 static struct clps_info info[NR_SUBMTD];
115 static int __init clps_setup_mtd(struct clps_info *clps, int nr, struct mtd_info **rmtd)
117 struct mtd_info *subdev[nr];
118 struct map_info *maps;
119 int i, found = 0, ret = 0;
122 * Allocate the map_info structs in one go.
124 maps = kzalloc(sizeof(struct map_info) * nr, GFP_KERNEL);
128 * Claim and then map the memory regions.
130 for (i = 0; i < nr; i++) {
131 if (clps[i].base == (unsigned long)-1)
134 clps[i].res = request_mem_region(clps[i].base, clps[i].size, "clps flash");
140 clps[i].map = maps + i;
142 clps[i].map->name = "clps flash";
143 clps[i].map->phys = clps[i].base;
145 clps[i].vbase = ioremap(clps[i].base, clps[i].size);
146 if (!clps[i].vbase) {
151 clps[i].map->virt = (void __iomem *)clps[i].vbase;
152 clps[i].map->bankwidth = clps[i].width;
153 clps[i].map->size = clps[i].size;
155 simple_map_init(&clps[i].map);
157 clps[i].mtd = do_map_probe("jedec_probe", clps[i].map);
158 if (clps[i].mtd == NULL) {
162 clps[i].mtd->owner = THIS_MODULE;
163 subdev[i] = clps[i].mtd;
165 printk(KERN_INFO "clps flash: JEDEC device at 0x%08lx, %dMiB, "
166 "%d-bit\n", clps[i].base, clps[i].mtd->size >> 20,
172 * ENXIO is special. It means we didn't find a chip when
173 * we probed. We need to tear down the mapping, free the
174 * resource and mark it as such.
177 iounmap(clps[i].vbase);
178 clps[i].vbase = NULL;
179 release_resource(clps[i].res);
184 * If we found one device, don't bother with concat support.
185 * If we found multiple devices, use concat if we have it
186 * available, otherwise fail.
188 if (ret == 0 || ret == -ENXIO) {
192 } else if (found > 1) {
194 * We detected multiple devices. Concatenate
197 #ifdef CONFIG_MTD_CONCAT
198 *rmtd = mtd_concat_create(subdev, found,
203 printk(KERN_ERR "clps flash: multiple devices "
204 "found but MTD concat support disabled.\n");
211 * If we failed, clean up.
216 map_destroy(clps[i].mtd);
218 iounmap(clps[i].vbase);
220 release_resource(clps[i].res);
229 static void __exit clps_destroy_mtd(struct clps_info *clps, struct mtd_info *mtd)
233 del_mtd_partitions(mtd);
235 if (mtd != clps[0].mtd)
236 mtd_concat_destroy(mtd);
238 for (i = NR_SUBMTD; i >= 0; i--) {
240 map_destroy(clps[i].mtd);
242 iounmap(clps[i].vbase);
244 release_resource(clps[i].res);
250 * We define the memory space, size, and width for the flash memory
254 static int __init clps_setup_flash(void)
258 #ifdef CONFIG_ARCH_CEIVA
259 if (machine_is_ceiva()) {
260 info[0].base = CS0_PHYS_BASE;
261 info[0].size = SZ_32M;
262 info[0].width = CEIVA_FLASH_WIDTH;
263 info[1].base = CS1_PHYS_BASE;
264 info[1].size = SZ_32M;
265 info[1].width = CEIVA_FLASH_WIDTH;
272 static struct mtd_partition *parsed_parts;
273 static const char *probes[] = { "cmdlinepart", "RedBoot", NULL };
275 static void __init clps_locate_partitions(struct mtd_info *mtd)
277 const char *part_type = NULL;
281 * Partition selection stuff.
283 nr_parts = parse_mtd_partitions(mtd, probes, &parsed_parts, 0);
285 part_type = "command line";
288 #ifdef CONFIG_MTD_CEIVA_STATICMAP
289 nr_parts = clps_static_partitions(&parsed_parts);
291 part_type = "static";
294 printk("found: %d partitions\n", nr_parts);
299 printk(KERN_NOTICE "clps flash: no partition info "
300 "available, registering whole flash\n");
303 printk(KERN_NOTICE "clps flash: using %s partition "
304 "definition\n", part_type);
305 add_mtd_partitions(mtd, parsed_parts, nr_parts);
308 /* Always succeeds. */
311 static void __exit clps_destroy_partitions(void)
316 static struct mtd_info *mymtd;
318 static int __init clps_mtd_init(void)
323 nr = clps_setup_flash();
327 ret = clps_setup_mtd(info, nr, &mymtd);
331 clps_locate_partitions(mymtd);
336 static void __exit clps_mtd_cleanup(void)
338 clps_destroy_mtd(info, mymtd);
339 clps_destroy_partitions();
342 module_init(clps_mtd_init);
343 module_exit(clps_mtd_cleanup);
345 MODULE_AUTHOR("Rob Scott");
346 MODULE_DESCRIPTION("Cirrus Logic JEDEC map driver");
347 MODULE_LICENSE("GPL");