Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Flash partitions described by the OF (or flattened) device tree |
| 3 | * |
David Woodhouse | a1452a3 | 2010-08-08 20:58:20 +0100 | [diff] [blame] | 4 | * Copyright © 2006 MontaVista Software Inc. |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 5 | * Author: Vitaly Wool <vwool@ru.mvista.com> |
| 6 | * |
| 7 | * Revised to handle newer style flash binding by: |
David Woodhouse | a1452a3 | 2010-08-08 20:58:20 +0100 | [diff] [blame] | 8 | * Copyright © 2007 David Gibson, IBM Corporation. |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 9 | * |
| 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. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/of.h> |
| 19 | #include <linux/mtd/mtd.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 21 | #include <linux/mtd/partitions.h> |
| 22 | |
Josh Wu | e79265b | 2013-08-05 19:14:38 +0800 | [diff] [blame] | 23 | static bool node_has_compatible(struct device_node *pp) |
| 24 | { |
| 25 | return of_get_property(pp, "compatible", NULL); |
| 26 | } |
| 27 | |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 28 | static int parse_ofpart_partitions(struct mtd_info *master, |
Brian Norris | b9adf46 | 2015-12-04 15:25:14 -0800 | [diff] [blame] | 29 | const struct mtd_partition **pparts, |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 30 | struct mtd_part_parser_data *data) |
| 31 | { |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 32 | struct mtd_partition *parts; |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 33 | struct device_node *mtd_node; |
| 34 | struct device_node *ofpart_node; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 35 | const char *partname; |
| 36 | struct device_node *pp; |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 37 | int nr_parts, i, ret = 0; |
| 38 | bool dedicated = true; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 39 | |
Dmitry Eremin-Solenikov | 628376f | 2011-05-30 01:05:33 +0400 | [diff] [blame] | 40 | |
Brian Norris | e270bca | 2015-10-30 20:33:29 -0700 | [diff] [blame] | 41 | /* Pull of_node from the master device node */ |
| 42 | mtd_node = mtd_get_of_node(master); |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 43 | if (!mtd_node) |
Dmitry Eremin-Solenikov | 628376f | 2011-05-30 01:05:33 +0400 | [diff] [blame] | 44 | return 0; |
| 45 | |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 46 | ofpart_node = of_get_child_by_name(mtd_node, "partitions"); |
| 47 | if (!ofpart_node) { |
Brian Norris | 8c62b4e | 2015-12-03 14:26:52 -0800 | [diff] [blame] | 48 | /* |
| 49 | * We might get here even when ofpart isn't used at all (e.g., |
| 50 | * when using another parser), so don't be louder than |
| 51 | * KERN_DEBUG |
| 52 | */ |
| 53 | pr_debug("%s: 'partitions' subnode not found on %s. Trying to parse direct subnodes as partitions.\n", |
| 54 | master->name, mtd_node->full_name); |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 55 | ofpart_node = mtd_node; |
| 56 | dedicated = false; |
Brian Norris | e488ca9 | 2015-12-03 14:47:32 -0800 | [diff] [blame] | 57 | } else if (!of_device_is_compatible(ofpart_node, "fixed-partitions")) { |
| 58 | /* The 'partitions' subnode might be used by another parser */ |
| 59 | return 0; |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 62 | /* First count the subnodes */ |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 63 | nr_parts = 0; |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 64 | for_each_child_of_node(ofpart_node, pp) { |
| 65 | if (!dedicated && node_has_compatible(pp)) |
Josh Wu | e79265b | 2013-08-05 19:14:38 +0800 | [diff] [blame] | 66 | continue; |
| 67 | |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 68 | nr_parts++; |
Josh Wu | e79265b | 2013-08-05 19:14:38 +0800 | [diff] [blame] | 69 | } |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 70 | |
| 71 | if (nr_parts == 0) |
| 72 | return 0; |
| 73 | |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 74 | parts = kzalloc(nr_parts * sizeof(*parts), GFP_KERNEL); |
| 75 | if (!parts) |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 76 | return -ENOMEM; |
| 77 | |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 78 | i = 0; |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 79 | for_each_child_of_node(ofpart_node, pp) { |
Ian Munsie | 766f271 | 2010-10-01 17:06:08 +1000 | [diff] [blame] | 80 | const __be32 *reg; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 81 | int len; |
Joe Schaack | 05ff8c2 | 2013-02-21 16:29:45 -0600 | [diff] [blame] | 82 | int a_cells, s_cells; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 83 | |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 84 | if (!dedicated && node_has_compatible(pp)) |
Josh Wu | e79265b | 2013-08-05 19:14:38 +0800 | [diff] [blame] | 85 | continue; |
| 86 | |
Benjamin Krill | ebd5a74 | 2009-08-25 15:52:41 +0200 | [diff] [blame] | 87 | reg = of_get_property(pp, "reg", &len); |
| 88 | if (!reg) { |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 89 | if (dedicated) { |
| 90 | pr_debug("%s: ofpart partition %s (%s) missing reg property.\n", |
| 91 | master->name, pp->full_name, |
| 92 | mtd_node->full_name); |
| 93 | goto ofpart_fail; |
| 94 | } else { |
| 95 | nr_parts--; |
| 96 | continue; |
| 97 | } |
Benjamin Krill | 4b08e14 | 2009-01-23 17:18:05 +0100 | [diff] [blame] | 98 | } |
| 99 | |
Joe Schaack | 05ff8c2 | 2013-02-21 16:29:45 -0600 | [diff] [blame] | 100 | a_cells = of_n_addr_cells(pp); |
| 101 | s_cells = of_n_size_cells(pp); |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 102 | if (len / 4 != a_cells + s_cells) { |
| 103 | pr_debug("%s: ofpart partition %s (%s) error parsing reg property.\n", |
| 104 | master->name, pp->full_name, |
| 105 | mtd_node->full_name); |
| 106 | goto ofpart_fail; |
| 107 | } |
| 108 | |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 109 | parts[i].offset = of_read_number(reg, a_cells); |
| 110 | parts[i].size = of_read_number(reg + a_cells, s_cells); |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 111 | |
| 112 | partname = of_get_property(pp, "label", &len); |
| 113 | if (!partname) |
| 114 | partname = of_get_property(pp, "name", &len); |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 115 | parts[i].name = partname; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 116 | |
| 117 | if (of_get_property(pp, "read-only", &len)) |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 118 | parts[i].mask_flags |= MTD_WRITEABLE; |
Josh Radel | ab0b00b | 2012-11-14 14:11:32 -0800 | [diff] [blame] | 119 | |
| 120 | if (of_get_property(pp, "lock", &len)) |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 121 | parts[i].mask_flags |= MTD_POWERUP_LOCK; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 122 | |
| 123 | i++; |
| 124 | } |
| 125 | |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 126 | if (!nr_parts) |
| 127 | goto ofpart_none; |
Benjamin Krill | ebd5a74 | 2009-08-25 15:52:41 +0200 | [diff] [blame] | 128 | |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 129 | *pparts = parts; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 130 | return nr_parts; |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 131 | |
| 132 | ofpart_fail: |
| 133 | pr_err("%s: error parsing ofpart partition %s (%s)\n", |
| 134 | master->name, pp->full_name, mtd_node->full_name); |
| 135 | ret = -EINVAL; |
| 136 | ofpart_none: |
| 137 | of_node_put(pp); |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 138 | kfree(parts); |
Michal Suchanek | 5cfdedb | 2015-08-18 15:34:09 +0000 | [diff] [blame] | 139 | return ret; |
Scott Wood | 9a310d2 | 2008-01-15 17:54:43 -0600 | [diff] [blame] | 140 | } |
Adrian Bunk | 950bcb2 | 2008-04-14 17:19:46 +0300 | [diff] [blame] | 141 | |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 142 | static struct mtd_part_parser ofpart_parser = { |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 143 | .parse_fn = parse_ofpart_partitions, |
| 144 | .name = "ofpart", |
| 145 | }; |
| 146 | |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 147 | static int parse_ofoldpart_partitions(struct mtd_info *master, |
Brian Norris | b9adf46 | 2015-12-04 15:25:14 -0800 | [diff] [blame] | 148 | const struct mtd_partition **pparts, |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 149 | struct mtd_part_parser_data *data) |
| 150 | { |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 151 | struct mtd_partition *parts; |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 152 | struct device_node *dp; |
| 153 | int i, plen, nr_parts; |
| 154 | const struct { |
| 155 | __be32 offset, len; |
| 156 | } *part; |
| 157 | const char *names; |
| 158 | |
Brian Norris | e270bca | 2015-10-30 20:33:29 -0700 | [diff] [blame] | 159 | /* Pull of_node from the master device node */ |
| 160 | dp = mtd_get_of_node(master); |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 161 | if (!dp) |
| 162 | return 0; |
| 163 | |
| 164 | part = of_get_property(dp, "partitions", &plen); |
| 165 | if (!part) |
| 166 | return 0; /* No partitions found */ |
| 167 | |
| 168 | pr_warning("Device tree uses obsolete partition map binding: %s\n", |
| 169 | dp->full_name); |
| 170 | |
| 171 | nr_parts = plen / sizeof(part[0]); |
| 172 | |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 173 | parts = kzalloc(nr_parts * sizeof(*parts), GFP_KERNEL); |
| 174 | if (!parts) |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 175 | return -ENOMEM; |
| 176 | |
| 177 | names = of_get_property(dp, "partition-names", &plen); |
| 178 | |
| 179 | for (i = 0; i < nr_parts; i++) { |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 180 | parts[i].offset = be32_to_cpu(part->offset); |
| 181 | parts[i].size = be32_to_cpu(part->len) & ~1; |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 182 | /* bit 0 set signifies read only partition */ |
| 183 | if (be32_to_cpu(part->len) & 1) |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 184 | parts[i].mask_flags = MTD_WRITEABLE; |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 185 | |
| 186 | if (names && (plen > 0)) { |
| 187 | int len = strlen(names) + 1; |
| 188 | |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 189 | parts[i].name = names; |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 190 | plen -= len; |
| 191 | names += len; |
| 192 | } else { |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 193 | parts[i].name = "unnamed"; |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | part++; |
| 197 | } |
| 198 | |
Brian Norris | c3168d2 | 2015-12-04 15:25:13 -0800 | [diff] [blame] | 199 | *pparts = parts; |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 200 | return nr_parts; |
| 201 | } |
| 202 | |
| 203 | static struct mtd_part_parser ofoldpart_parser = { |
Dmitry Eremin-Solenikov | fbcf62a | 2011-05-30 01:26:17 +0400 | [diff] [blame] | 204 | .parse_fn = parse_ofoldpart_partitions, |
| 205 | .name = "ofoldpart", |
| 206 | }; |
| 207 | |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 208 | static int __init ofpart_parser_init(void) |
| 209 | { |
Axel Lin | 6e14a61 | 2013-12-01 19:01:06 +0800 | [diff] [blame] | 210 | register_mtd_parser(&ofpart_parser); |
| 211 | register_mtd_parser(&ofoldpart_parser); |
| 212 | return 0; |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 213 | } |
| 214 | |
Lubomir Rintel | 422f389 | 2013-01-16 02:12:50 +0100 | [diff] [blame] | 215 | static void __exit ofpart_parser_exit(void) |
| 216 | { |
| 217 | deregister_mtd_parser(&ofpart_parser); |
| 218 | deregister_mtd_parser(&ofoldpart_parser); |
| 219 | } |
| 220 | |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 221 | module_init(ofpart_parser_init); |
Lubomir Rintel | 422f389 | 2013-01-16 02:12:50 +0100 | [diff] [blame] | 222 | module_exit(ofpart_parser_exit); |
Dmitry Eremin-Solenikov | d26c87d | 2011-05-29 21:32:33 +0400 | [diff] [blame] | 223 | |
Adrian Bunk | 950bcb2 | 2008-04-14 17:19:46 +0300 | [diff] [blame] | 224 | MODULE_LICENSE("GPL"); |
Dmitry Eremin-Solenikov | d6137ba | 2011-06-27 01:02:59 +0400 | [diff] [blame] | 225 | MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree"); |
| 226 | MODULE_AUTHOR("Vitaly Wool, David Gibson"); |
Dmitry Eremin-Solenikov | 9786f6e | 2011-06-27 16:34:46 +0400 | [diff] [blame] | 227 | /* |
| 228 | * When MTD core cannot find the requested parser, it tries to load the module |
| 229 | * with the same name. Since we provide the ofoldpart parser, we should have |
| 230 | * the corresponding alias. |
| 231 | */ |
| 232 | MODULE_ALIAS("ofoldpart"); |