2 * Flash mappings described by the OF (or flattened) device tree
4 * Copyright (C) 2006 MontaVista Software Inc.
5 * Author: Vitaly Wool <vwool@ru.mvista.com>
7 * Revised to handle newer style flash binding by:
8 * Copyright (C) 2007 David Gibson, IBM Corporation.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/module.h>
17 #include <linux/types.h>
18 #include <linux/init.h>
19 #include <linux/device.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/mtd/map.h>
22 #include <linux/mtd/partitions.h>
24 #include <linux/of_platform.h>
30 #ifdef CONFIG_MTD_PARTITIONS
31 struct mtd_partition *parts;
35 #ifdef CONFIG_MTD_PARTITIONS
36 #define OF_FLASH_PARTS(info) ((info)->parts)
38 static int parse_obsolete_partitions(struct of_device *dev,
39 struct of_flash *info,
40 struct device_node *dp)
42 int i, plen, nr_parts;
48 part = of_get_property(dp, "partitions", &plen);
50 return 0; /* No partitions found */
52 dev_warn(&dev->dev, "Device tree uses obsolete partition map binding\n");
54 nr_parts = plen / sizeof(part[0]);
56 info->parts = kzalloc(nr_parts * sizeof(*info->parts), GFP_KERNEL);
60 names = of_get_property(dp, "partition-names", &plen);
62 for (i = 0; i < nr_parts; i++) {
63 info->parts[i].offset = part->offset;
64 info->parts[i].size = part->len & ~1;
65 if (part->len & 1) /* bit 0 set signifies read only partition */
66 info->parts[i].mask_flags = MTD_WRITEABLE;
68 if (names && (plen > 0)) {
69 int len = strlen(names) + 1;
71 info->parts[i].name = (char *)names;
75 info->parts[i].name = "unnamed";
84 static int __devinit parse_partitions(struct of_flash *info,
85 struct of_device *dev)
88 static const char *part_probe_types[]
89 = { "cmdlinepart", "RedBoot", NULL };
90 struct device_node *dp = dev->node, *pp;
93 /* First look for RedBoot table or partitions on the command
94 * line, these take precedence over device tree information */
95 nr_parts = parse_mtd_partitions(info->mtd, part_probe_types,
100 /* First count the subnodes */
102 for (pp = of_get_next_child(dp, NULL); pp;
103 pp = of_get_next_child(dp, pp))
107 return parse_obsolete_partitions(dev, info, dp);
109 info->parts = kzalloc(nr_parts * sizeof(*info->parts),
114 for (pp = of_get_next_child(dp, NULL), i = 0; pp;
115 pp = of_get_next_child(dp, pp), i++) {
119 reg = of_get_property(pp, "reg", &len);
120 if (!reg || (len != 2*sizeof(u32))) {
122 dev_err(&dev->dev, "Invalid 'reg' on %s\n",
128 info->parts[i].offset = reg[0];
129 info->parts[i].size = reg[1];
131 partname = of_get_property(pp, "label", &len);
133 partname = of_get_property(pp, "name", &len);
134 info->parts[i].name = (char *)partname;
136 if (of_get_property(pp, "read-only", &len))
137 info->parts[i].mask_flags = MTD_WRITEABLE;
142 #else /* MTD_PARTITIONS */
143 #define OF_FLASH_PARTS(info) (0)
144 #define parse_partitions(info, dev) (0)
145 #endif /* MTD_PARTITIONS */
147 static int of_flash_remove(struct of_device *dev)
149 struct of_flash *info;
151 info = dev_get_drvdata(&dev->dev);
154 dev_set_drvdata(&dev->dev, NULL);
157 if (OF_FLASH_PARTS(info)) {
158 del_mtd_partitions(info->mtd);
159 kfree(OF_FLASH_PARTS(info));
161 del_mtd_device(info->mtd);
163 map_destroy(info->mtd);
167 iounmap(info->map.virt);
170 release_resource(info->res);
177 /* Helper function to handle probing of the obsolete "direct-mapped"
178 * compatible binding, which has an extra "probe-type" property
179 * describing the type of flash probe necessary. */
180 static struct mtd_info * __devinit obsolete_probe(struct of_device *dev,
181 struct map_info *map)
183 struct device_node *dp = dev->node;
184 const char *of_probe;
185 struct mtd_info *mtd;
186 static const char *rom_probe_types[]
187 = { "cfi_probe", "jedec_probe", "map_rom"};
190 dev_warn(&dev->dev, "Device tree uses obsolete \"direct-mapped\" "
193 of_probe = of_get_property(dp, "probe-type", NULL);
195 for (i = 0; i < ARRAY_SIZE(rom_probe_types); i++) {
196 mtd = do_map_probe(rom_probe_types[i], map);
201 } else if (strcmp(of_probe, "CFI") == 0) {
202 return do_map_probe("cfi_probe", map);
203 } else if (strcmp(of_probe, "JEDEC") == 0) {
204 return do_map_probe("jedec_probe", map);
206 if (strcmp(of_probe, "ROM") != 0)
207 dev_warn(&dev->dev, "obsolete_probe: don't know probe "
208 "type '%s', mapping as rom\n", of_probe);
209 return do_map_probe("mtd_rom", map);
213 static int __devinit of_flash_probe(struct of_device *dev,
214 const struct of_device_id *match)
216 struct device_node *dp = dev->node;
218 struct of_flash *info;
219 const char *probe_type = match->data;
224 if (of_address_to_resource(dp, 0, &res)) {
225 dev_err(&dev->dev, "Can't get IO address from device tree\n");
229 dev_dbg(&dev->dev, "of_flash device: %.8llx-%.8llx\n",
230 (unsigned long long)res.start, (unsigned long long)res.end);
233 info = kzalloc(sizeof(*info), GFP_KERNEL);
237 dev_set_drvdata(&dev->dev, info);
240 info->res = request_mem_region(res.start, res.end - res.start + 1,
246 width = of_get_property(dp, "bank-width", NULL);
248 dev_err(&dev->dev, "Can't get bank width from device tree\n");
252 info->map.name = dev->dev.bus_id;
253 info->map.phys = res.start;
254 info->map.size = res.end - res.start + 1;
255 info->map.bankwidth = *width;
258 info->map.virt = ioremap(info->map.phys, info->map.size);
259 if (!info->map.virt) {
260 dev_err(&dev->dev, "Failed to ioremap() flash region\n");
264 simple_map_init(&info->map);
267 info->mtd = do_map_probe(probe_type, &info->map);
269 info->mtd = obsolete_probe(dev, &info->map);
273 dev_err(&dev->dev, "do_map_probe() failed\n");
276 info->mtd->owner = THIS_MODULE;
278 err = parse_partitions(info, dev);
283 add_mtd_partitions(info->mtd, OF_FLASH_PARTS(info), err);
285 add_mtd_device(info->mtd);
290 of_flash_remove(dev);
294 static struct of_device_id of_flash_match[] = {
296 .compatible = "cfi-flash",
297 .data = (void *)"cfi_probe",
300 /* FIXME: JEDEC chips can't be safely and reliably
301 * probed, although the mtd code gets it right in
302 * practice most of the time. We should use the
303 * vendor and device ids specified by the binding to
304 * bypass the heuristic probe code, but the mtd layer
305 * provides, at present, no interface for doing so
307 .compatible = "jedec-flash",
308 .data = (void *)"jedec_probe",
312 .compatible = "direct-mapped"
316 MODULE_DEVICE_TABLE(of, of_flash_match);
318 static struct of_platform_driver of_flash_driver = {
320 .match_table = of_flash_match,
321 .probe = of_flash_probe,
322 .remove = of_flash_remove,
325 static int __init of_flash_init(void)
327 return of_register_platform_driver(&of_flash_driver);
330 static void __exit of_flash_exit(void)
332 of_unregister_platform_driver(&of_flash_driver);
335 module_init(of_flash_init);
336 module_exit(of_flash_exit);
338 MODULE_LICENSE("GPL");
339 MODULE_AUTHOR("Vitaly Wool <vwool@ru.mvista.com>");
340 MODULE_DESCRIPTION("Device tree based MTD map driver");