1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Flash partitions described by the OF (or flattened) device tree
5 * Copyright © 2006 MontaVista Software Inc.
6 * Author: Vitaly Wool <vwool@ru.mvista.com>
8 * Revised to handle newer style flash binding by:
9 * Copyright © 2007 David Gibson, IBM Corporation.
12 #include <linux/module.h>
13 #include <linux/init.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/slab.h>
17 #include <linux/mtd/partitions.h>
19 #include "ofpart_bcm4908.h"
20 #include "ofpart_linksys_ns.h"
22 struct fixed_partitions_quirks
{
23 int (*post_parse
)(struct mtd_info
*mtd
, struct mtd_partition
*parts
, int nr_parts
);
26 static struct fixed_partitions_quirks bcm4908_partitions_quirks
= {
27 .post_parse
= bcm4908_partitions_post_parse
,
30 static struct fixed_partitions_quirks linksys_ns_partitions_quirks
= {
31 .post_parse
= linksys_ns_partitions_post_parse
,
34 static const struct of_device_id parse_ofpart_match_table
[];
36 static bool node_has_compatible(struct device_node
*pp
)
38 return of_get_property(pp
, "compatible", NULL
);
41 static int parse_fixed_partitions(struct mtd_info
*master
,
42 const struct mtd_partition
**pparts
,
43 struct mtd_part_parser_data
*data
)
45 const struct fixed_partitions_quirks
*quirks
;
46 const struct of_device_id
*of_id
;
47 struct mtd_partition
*parts
;
48 struct device_node
*mtd_node
;
49 struct device_node
*ofpart_node
;
51 struct device_node
*pp
;
52 int nr_parts
, i
, ret
= 0;
53 bool dedicated
= true;
55 /* Pull of_node from the master device node */
56 mtd_node
= mtd_get_of_node(master
);
60 if (!master
->parent
) { /* Master */
61 ofpart_node
= of_get_child_by_name(mtd_node
, "partitions");
64 * We might get here even when ofpart isn't used at all (e.g.,
65 * when using another parser), so don't be louder than
68 pr_debug("%s: 'partitions' subnode not found on %pOF. Trying to parse direct subnodes as partitions.\n",
69 master
->name
, mtd_node
);
70 ofpart_node
= mtd_node
;
73 } else { /* Partition */
74 ofpart_node
= mtd_node
;
77 of_id
= of_match_node(parse_ofpart_match_table
, ofpart_node
);
78 if (dedicated
&& !of_id
) {
79 /* The 'partitions' subnode might be used by another parser */
83 quirks
= of_id
? of_id
->data
: NULL
;
85 /* First count the subnodes */
87 for_each_child_of_node(ofpart_node
, pp
) {
88 if (!dedicated
&& node_has_compatible(pp
))
97 parts
= kcalloc(nr_parts
, sizeof(*parts
), GFP_KERNEL
);
102 for_each_child_of_node(ofpart_node
, pp
) {
105 int a_cells
, s_cells
;
107 if (!dedicated
&& node_has_compatible(pp
))
110 reg
= of_get_property(pp
, "reg", &len
);
113 pr_debug("%s: ofpart partition %pOF (%pOF) missing reg property.\n",
123 a_cells
= of_n_addr_cells(pp
);
124 s_cells
= of_n_size_cells(pp
);
125 if (!dedicated
&& s_cells
== 0) {
127 * This is a ugly workaround to not create
128 * regression on devices that are still creating
129 * partitions as direct children of the nand controller.
130 * This can happen in case the nand controller node has
131 * #size-cells equal to 0 and the firmware (e.g.
132 * U-Boot) just add the partitions there assuming
135 * If you get this warning your firmware and/or DTS
136 * should be really fixed.
138 * This is working only for devices smaller than 4GiB.
140 pr_warn("%s: ofpart partition %pOF (%pOF) #size-cells is wrongly set to <0>, assuming <1> for parsing partitions.\n",
141 master
->name
, pp
, mtd_node
);
144 if (len
/ 4 != a_cells
+ s_cells
) {
145 pr_debug("%s: ofpart partition %pOF (%pOF) error parsing reg property.\n",
151 parts
[i
].offset
= of_read_number(reg
, a_cells
);
152 parts
[i
].size
= of_read_number(reg
+ a_cells
, s_cells
);
153 parts
[i
].of_node
= pp
;
155 partname
= of_get_property(pp
, "label", &len
);
157 partname
= of_get_property(pp
, "name", &len
);
158 parts
[i
].name
= partname
;
160 if (of_property_read_bool(pp
, "read-only"))
161 parts
[i
].mask_flags
|= MTD_WRITEABLE
;
163 if (of_property_read_bool(pp
, "lock"))
164 parts
[i
].mask_flags
|= MTD_POWERUP_LOCK
;
166 if (of_property_read_bool(pp
, "slc-mode"))
167 parts
[i
].add_flags
|= MTD_SLC_ON_MLC_EMULATION
;
175 if (quirks
&& quirks
->post_parse
)
176 quirks
->post_parse(master
, parts
, nr_parts
);
182 pr_err("%s: error parsing ofpart partition %pOF (%pOF)\n",
183 master
->name
, pp
, mtd_node
);
191 static const struct of_device_id parse_ofpart_match_table
[] = {
193 { .compatible
= "fixed-partitions" },
195 { .compatible
= "brcm,bcm4908-partitions", .data
= &bcm4908_partitions_quirks
, },
196 { .compatible
= "linksys,ns-partitions", .data
= &linksys_ns_partitions_quirks
, },
199 MODULE_DEVICE_TABLE(of
, parse_ofpart_match_table
);
201 static struct mtd_part_parser ofpart_parser
= {
202 .parse_fn
= parse_fixed_partitions
,
203 .name
= "fixed-partitions",
204 .of_match_table
= parse_ofpart_match_table
,
207 static int parse_ofoldpart_partitions(struct mtd_info
*master
,
208 const struct mtd_partition
**pparts
,
209 struct mtd_part_parser_data
*data
)
211 struct mtd_partition
*parts
;
212 struct device_node
*dp
;
213 int i
, plen
, nr_parts
;
219 /* Pull of_node from the master device node */
220 dp
= mtd_get_of_node(master
);
224 part
= of_get_property(dp
, "partitions", &plen
);
226 return 0; /* No partitions found */
228 pr_warn("Device tree uses obsolete partition map binding: %pOF\n", dp
);
230 nr_parts
= plen
/ sizeof(part
[0]);
232 parts
= kcalloc(nr_parts
, sizeof(*parts
), GFP_KERNEL
);
236 names
= of_get_property(dp
, "partition-names", &plen
);
238 for (i
= 0; i
< nr_parts
; i
++) {
239 parts
[i
].offset
= be32_to_cpu(part
->offset
);
240 parts
[i
].size
= be32_to_cpu(part
->len
) & ~1;
241 /* bit 0 set signifies read only partition */
242 if (be32_to_cpu(part
->len
) & 1)
243 parts
[i
].mask_flags
= MTD_WRITEABLE
;
245 if (names
&& (plen
> 0)) {
246 int len
= strlen(names
) + 1;
248 parts
[i
].name
= names
;
252 parts
[i
].name
= "unnamed";
262 static struct mtd_part_parser ofoldpart_parser
= {
263 .parse_fn
= parse_ofoldpart_partitions
,
267 static int __init
ofpart_parser_init(void)
269 register_mtd_parser(&ofpart_parser
);
270 register_mtd_parser(&ofoldpart_parser
);
274 static void __exit
ofpart_parser_exit(void)
276 deregister_mtd_parser(&ofpart_parser
);
277 deregister_mtd_parser(&ofoldpart_parser
);
280 module_init(ofpart_parser_init
);
281 module_exit(ofpart_parser_exit
);
283 MODULE_LICENSE("GPL");
284 MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
285 MODULE_AUTHOR("Vitaly Wool, David Gibson");
287 * When MTD core cannot find the requested parser, it tries to load the module
288 * with the same name. Since we provide the ofoldpart parser, we should have
289 * the corresponding alias.
291 MODULE_ALIAS("fixed-partitions");
292 MODULE_ALIAS("ofoldpart");