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>
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 remaining 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 *rmtd
= mtd_concat_create(subdev
, found
,
205 * If we failed, clean up.
210 map_destroy(clps
[i
].mtd
);
212 iounmap(clps
[i
].vbase
);
214 release_resource(clps
[i
].res
);
223 static void __exit
clps_destroy_mtd(struct clps_info
*clps
, struct mtd_info
*mtd
)
227 mtd_device_unregister(mtd
);
229 if (mtd
!= clps
[0].mtd
)
230 mtd_concat_destroy(mtd
);
232 for (i
= NR_SUBMTD
; i
>= 0; i
--) {
234 map_destroy(clps
[i
].mtd
);
236 iounmap(clps
[i
].vbase
);
238 release_resource(clps
[i
].res
);
244 * We define the memory space, size, and width for the flash memory
248 static int __init
clps_setup_flash(void)
252 #ifdef CONFIG_ARCH_CEIVA
253 if (machine_is_ceiva()) {
254 info
[0].base
= CS0_PHYS_BASE
;
255 info
[0].size
= SZ_32M
;
256 info
[0].width
= CEIVA_FLASH_WIDTH
;
257 info
[1].base
= CS1_PHYS_BASE
;
258 info
[1].size
= SZ_32M
;
259 info
[1].width
= CEIVA_FLASH_WIDTH
;
266 static struct mtd_partition
*parsed_parts
;
267 static const char *probes
[] = { "cmdlinepart", "RedBoot", NULL
};
269 static void __init
clps_locate_partitions(struct mtd_info
*mtd
)
271 const char *part_type
= NULL
;
275 * Partition selection stuff.
277 nr_parts
= parse_mtd_partitions(mtd
, probes
, &parsed_parts
, 0);
279 part_type
= "command line";
282 #ifdef CONFIG_MTD_CEIVA_STATICMAP
283 nr_parts
= clps_static_partitions(&parsed_parts
);
285 part_type
= "static";
288 printk("found: %d partitions\n", nr_parts
);
293 printk(KERN_NOTICE
"clps flash: no partition info "
294 "available, registering whole flash\n");
295 mtd_device_register(mtd
, NULL
, 0);
297 printk(KERN_NOTICE
"clps flash: using %s partition "
298 "definition\n", part_type
);
299 mtd_device_register(mtd
, parsed_parts
, nr_parts
);
302 /* Always succeeds. */
305 static void __exit
clps_destroy_partitions(void)
310 static struct mtd_info
*mymtd
;
312 static int __init
clps_mtd_init(void)
317 nr
= clps_setup_flash();
321 ret
= clps_setup_mtd(info
, nr
, &mymtd
);
325 clps_locate_partitions(mymtd
);
330 static void __exit
clps_mtd_cleanup(void)
332 clps_destroy_mtd(info
, mymtd
);
333 clps_destroy_partitions();
336 module_init(clps_mtd_init
);
337 module_exit(clps_mtd_cleanup
);
339 MODULE_AUTHOR("Rob Scott");
340 MODULE_DESCRIPTION("Cirrus Logic JEDEC map driver");
341 MODULE_LICENSE("GPL");