GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / mtd / maps / ceiva.c
blobc09f4f57093ee65e4a149b537cec45ef868be9ff
1 /*
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@fluxnic.net>
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 <mach/hardware.h>
29 #include <asm/mach-types.h>
30 #include <asm/io.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
41 * structure.
43 * Please note:
44 * 1. The flash size given should be the largest flash size that can
45 * be accomodated.
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,
68 .offset = 0,
70 },{
71 .name = "Ceiva parameters partition",
72 .size = PARAMS_PARTITION_SIZE_KiB*1024,
73 .offset = (16 + 8) * 1024,
74 },{
75 .name = "Ceiva kernel partition",
76 .size = (KERNEL_PARTITION_SIZE_KiB)*1024,
77 .offset = 0x20000,
79 },{
80 .name = "Ceiva root filesystem partition",
81 .offset = MTDPART_OFS_APPEND,
82 .size = (ROOT_PARTITION_SIZE_KiB)*1024,
85 #endif
87 static int __init clps_static_partitions(struct mtd_partition **parts)
89 int nb_parts = 0;
91 #ifdef CONFIG_ARCH_CEIVA
92 if (machine_is_ceiva()) {
93 *parts = ceiva_partitions;
94 nb_parts = ARRAY_SIZE(ceiva_partitions);
96 #endif
97 return nb_parts;
99 #endif
101 struct clps_info {
102 unsigned long base;
103 unsigned long size;
104 int width;
105 void *vbase;
106 struct map_info *map;
107 struct mtd_info *mtd;
108 struct resource *res;
111 #define NR_SUBMTD 4
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);
125 if (!maps)
126 return -ENOMEM;
128 * Claim and then map the memory regions.
130 for (i = 0; i < nr; i++) {
131 if (clps[i].base == (unsigned long)-1)
132 break;
134 clps[i].res = request_mem_region(clps[i].base, clps[i].size, "clps flash");
135 if (!clps[i].res) {
136 ret = -EBUSY;
137 break;
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) {
147 ret = -ENOMEM;
148 break;
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) {
159 ret = -ENXIO;
160 break;
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,
167 clps[i].width * 8);
168 found += 1;
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.
176 if (ret == -ENXIO) {
177 iounmap(clps[i].vbase);
178 clps[i].vbase = NULL;
179 release_resource(clps[i].res);
180 clps[i].res = NULL;
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) {
189 if (found == 1) {
190 *rmtd = subdev[0];
191 ret = 0;
192 } else if (found > 1) {
194 * We detected multiple devices. Concatenate
195 * them together.
197 #ifdef CONFIG_MTD_CONCAT
198 *rmtd = mtd_concat_create(subdev, found,
199 "clps flash");
200 if (*rmtd == NULL)
201 ret = -ENXIO;
202 #else
203 printk(KERN_ERR "clps flash: multiple devices "
204 "found but MTD concat support disabled.\n");
205 ret = -ENXIO;
206 #endif
211 * If we failed, clean up.
213 if (ret) {
214 do {
215 if (clps[i].mtd)
216 map_destroy(clps[i].mtd);
217 if (clps[i].vbase)
218 iounmap(clps[i].vbase);
219 if (clps[i].res)
220 release_resource(clps[i].res);
221 } while (i--);
223 kfree(maps);
226 return ret;
229 static void __exit clps_destroy_mtd(struct clps_info *clps, struct mtd_info *mtd)
231 int i;
233 del_mtd_partitions(mtd);
235 if (mtd != clps[0].mtd)
236 mtd_concat_destroy(mtd);
238 for (i = NR_SUBMTD; i >= 0; i--) {
239 if (clps[i].mtd)
240 map_destroy(clps[i].mtd);
241 if (clps[i].vbase)
242 iounmap(clps[i].vbase);
243 if (clps[i].res)
244 release_resource(clps[i].res);
246 kfree(clps[0].map);
250 * We define the memory space, size, and width for the flash memory
251 * space here.
254 static int __init clps_setup_flash(void)
256 int nr = 0;
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;
266 nr = 2;
268 #endif
269 return nr;
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;
278 int nr_parts = 0;
279 do {
281 * Partition selection stuff.
283 nr_parts = parse_mtd_partitions(mtd, probes, &parsed_parts, 0);
284 if (nr_parts > 0) {
285 part_type = "command line";
286 break;
288 #ifdef CONFIG_MTD_CEIVA_STATICMAP
289 nr_parts = clps_static_partitions(&parsed_parts);
290 if (nr_parts > 0) {
291 part_type = "static";
292 break;
294 printk("found: %d partitions\n", nr_parts);
295 #endif
296 } while (0);
298 if (nr_parts == 0) {
299 printk(KERN_NOTICE "clps flash: no partition info "
300 "available, registering whole flash\n");
301 add_mtd_device(mtd);
302 } else {
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)
313 kfree(parsed_parts);
316 static struct mtd_info *mymtd;
318 static int __init clps_mtd_init(void)
320 int ret;
321 int nr;
323 nr = clps_setup_flash();
324 if (nr < 0)
325 return nr;
327 ret = clps_setup_mtd(info, nr, &mymtd);
328 if (ret)
329 return ret;
331 clps_locate_partitions(mymtd);
333 return 0;
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");