blob: daf507c123e6fd4beedd06716ae5abb2f8508610 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Scott Wood9a310d22008-01-15 17:54:43 -06002/*
3 * Flash partitions described by the OF (or flattened) device tree
4 *
David Woodhousea1452a32010-08-08 20:58:20 +01005 * Copyright © 2006 MontaVista Software Inc.
Scott Wood9a310d22008-01-15 17:54:43 -06006 * Author: Vitaly Wool <vwool@ru.mvista.com>
7 *
8 * Revised to handle newer style flash binding by:
David Woodhousea1452a32010-08-08 20:58:20 +01009 * Copyright © 2007 David Gibson, IBM Corporation.
Scott Wood9a310d22008-01-15 17:54:43 -060010 */
11
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/of.h>
15#include <linux/mtd/mtd.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Scott Wood9a310d22008-01-15 17:54:43 -060017#include <linux/mtd/partitions.h>
18
Josh Wue79265b2013-08-05 19:14:38 +080019static bool node_has_compatible(struct device_node *pp)
20{
21 return of_get_property(pp, "compatible", NULL);
22}
23
Rafał Miłeckic0faf432018-03-14 13:10:43 +010024static int parse_fixed_partitions(struct mtd_info *master,
25 const struct mtd_partition **pparts,
26 struct mtd_part_parser_data *data)
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +040027{
Brian Norrisc3168d22015-12-04 15:25:13 -080028 struct mtd_partition *parts;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000029 struct device_node *mtd_node;
30 struct device_node *ofpart_node;
Scott Wood9a310d22008-01-15 17:54:43 -060031 const char *partname;
32 struct device_node *pp;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000033 int nr_parts, i, ret = 0;
34 bool dedicated = true;
Scott Wood9a310d22008-01-15 17:54:43 -060035
Dmitry Eremin-Solenikov628376f2011-05-30 01:05:33 +040036
Brian Norrise270bca2015-10-30 20:33:29 -070037 /* Pull of_node from the master device node */
38 mtd_node = mtd_get_of_node(master);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000039 if (!mtd_node)
Dmitry Eremin-Solenikov628376f2011-05-30 01:05:33 +040040 return 0;
41
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000042 ofpart_node = of_get_child_by_name(mtd_node, "partitions");
43 if (!ofpart_node) {
Brian Norris8c62b4e2015-12-03 14:26:52 -080044 /*
45 * We might get here even when ofpart isn't used at all (e.g.,
46 * when using another parser), so don't be louder than
47 * KERN_DEBUG
48 */
Rob Herring1d706072017-07-18 16:43:17 -050049 pr_debug("%s: 'partitions' subnode not found on %pOF. Trying to parse direct subnodes as partitions.\n",
50 master->name, mtd_node);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000051 ofpart_node = mtd_node;
52 dedicated = false;
Brian Norrise488ca92015-12-03 14:47:32 -080053 } else if (!of_device_is_compatible(ofpart_node, "fixed-partitions")) {
54 /* The 'partitions' subnode might be used by another parser */
55 return 0;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000056 }
57
Scott Wood9a310d22008-01-15 17:54:43 -060058 /* First count the subnodes */
Scott Wood9a310d22008-01-15 17:54:43 -060059 nr_parts = 0;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000060 for_each_child_of_node(ofpart_node, pp) {
61 if (!dedicated && node_has_compatible(pp))
Josh Wue79265b2013-08-05 19:14:38 +080062 continue;
63
Scott Wood9a310d22008-01-15 17:54:43 -060064 nr_parts++;
Josh Wue79265b2013-08-05 19:14:38 +080065 }
Scott Wood9a310d22008-01-15 17:54:43 -060066
67 if (nr_parts == 0)
68 return 0;
69
Kees Cook6396bb22018-06-12 14:03:40 -070070 parts = kcalloc(nr_parts, sizeof(*parts), GFP_KERNEL);
Brian Norrisc3168d22015-12-04 15:25:13 -080071 if (!parts)
Scott Wood9a310d22008-01-15 17:54:43 -060072 return -ENOMEM;
73
Scott Wood9a310d22008-01-15 17:54:43 -060074 i = 0;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000075 for_each_child_of_node(ofpart_node, pp) {
Ian Munsie766f2712010-10-01 17:06:08 +100076 const __be32 *reg;
Scott Wood9a310d22008-01-15 17:54:43 -060077 int len;
Joe Schaack05ff8c22013-02-21 16:29:45 -060078 int a_cells, s_cells;
Scott Wood9a310d22008-01-15 17:54:43 -060079
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000080 if (!dedicated && node_has_compatible(pp))
Josh Wue79265b2013-08-05 19:14:38 +080081 continue;
82
Benjamin Krillebd5a742009-08-25 15:52:41 +020083 reg = of_get_property(pp, "reg", &len);
84 if (!reg) {
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000085 if (dedicated) {
Rob Herring1d706072017-07-18 16:43:17 -050086 pr_debug("%s: ofpart partition %pOF (%pOF) missing reg property.\n",
87 master->name, pp,
88 mtd_node);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000089 goto ofpart_fail;
90 } else {
91 nr_parts--;
92 continue;
93 }
Benjamin Krill4b08e142009-01-23 17:18:05 +010094 }
95
Joe Schaack05ff8c22013-02-21 16:29:45 -060096 a_cells = of_n_addr_cells(pp);
97 s_cells = of_n_size_cells(pp);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000098 if (len / 4 != a_cells + s_cells) {
Rob Herring1d706072017-07-18 16:43:17 -050099 pr_debug("%s: ofpart partition %pOF (%pOF) error parsing reg property.\n",
100 master->name, pp,
101 mtd_node);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +0000102 goto ofpart_fail;
103 }
104
Brian Norrisc3168d22015-12-04 15:25:13 -0800105 parts[i].offset = of_read_number(reg, a_cells);
106 parts[i].size = of_read_number(reg + a_cells, s_cells);
Sascha Hauer42e94012017-02-09 11:50:24 +0100107 parts[i].of_node = pp;
Scott Wood9a310d22008-01-15 17:54:43 -0600108
109 partname = of_get_property(pp, "label", &len);
110 if (!partname)
111 partname = of_get_property(pp, "name", &len);
Brian Norrisc3168d22015-12-04 15:25:13 -0800112 parts[i].name = partname;
Scott Wood9a310d22008-01-15 17:54:43 -0600113
114 if (of_get_property(pp, "read-only", &len))
Brian Norrisc3168d22015-12-04 15:25:13 -0800115 parts[i].mask_flags |= MTD_WRITEABLE;
Josh Radelab0b00b2012-11-14 14:11:32 -0800116
117 if (of_get_property(pp, "lock", &len))
Brian Norrisc3168d22015-12-04 15:25:13 -0800118 parts[i].mask_flags |= MTD_POWERUP_LOCK;
Scott Wood9a310d22008-01-15 17:54:43 -0600119
Boris Brezillon19980532020-05-03 17:53:39 +0200120 if (of_property_read_bool(pp, "slc-mode"))
121 parts[i].add_flags |= MTD_SLC_ON_MLC_EMULATION;
122
Scott Wood9a310d22008-01-15 17:54:43 -0600123 i++;
124 }
125
Michal Suchanek5cfdedb2015-08-18 15:34:09 +0000126 if (!nr_parts)
127 goto ofpart_none;
Benjamin Krillebd5a742009-08-25 15:52:41 +0200128
Brian Norrisc3168d22015-12-04 15:25:13 -0800129 *pparts = parts;
Scott Wood9a310d22008-01-15 17:54:43 -0600130 return nr_parts;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +0000131
132ofpart_fail:
Rob Herring1d706072017-07-18 16:43:17 -0500133 pr_err("%s: error parsing ofpart partition %pOF (%pOF)\n",
134 master->name, pp, mtd_node);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +0000135 ret = -EINVAL;
136ofpart_none:
137 of_node_put(pp);
Brian Norrisc3168d22015-12-04 15:25:13 -0800138 kfree(parts);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +0000139 return ret;
Scott Wood9a310d22008-01-15 17:54:43 -0600140}
Adrian Bunk950bcb22008-04-14 17:19:46 +0300141
Rafał Miłecki97b0c7c2018-03-14 13:10:44 +0100142static const struct of_device_id parse_ofpart_match_table[] = {
143 { .compatible = "fixed-partitions" },
144 {},
145};
146MODULE_DEVICE_TABLE(of, parse_ofpart_match_table);
147
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400148static struct mtd_part_parser ofpart_parser = {
Rafał Miłeckic0faf432018-03-14 13:10:43 +0100149 .parse_fn = parse_fixed_partitions,
150 .name = "fixed-partitions",
Rafał Miłecki97b0c7c2018-03-14 13:10:44 +0100151 .of_match_table = parse_ofpart_match_table,
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400152};
153
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400154static int parse_ofoldpart_partitions(struct mtd_info *master,
Brian Norrisb9adf462015-12-04 15:25:14 -0800155 const struct mtd_partition **pparts,
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400156 struct mtd_part_parser_data *data)
157{
Brian Norrisc3168d22015-12-04 15:25:13 -0800158 struct mtd_partition *parts;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400159 struct device_node *dp;
160 int i, plen, nr_parts;
161 const struct {
162 __be32 offset, len;
163 } *part;
164 const char *names;
165
Brian Norrise270bca2015-10-30 20:33:29 -0700166 /* Pull of_node from the master device node */
167 dp = mtd_get_of_node(master);
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400168 if (!dp)
169 return 0;
170
171 part = of_get_property(dp, "partitions", &plen);
172 if (!part)
173 return 0; /* No partitions found */
174
Rob Herring1d706072017-07-18 16:43:17 -0500175 pr_warn("Device tree uses obsolete partition map binding: %pOF\n", dp);
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400176
177 nr_parts = plen / sizeof(part[0]);
178
Kees Cook6396bb22018-06-12 14:03:40 -0700179 parts = kcalloc(nr_parts, sizeof(*parts), GFP_KERNEL);
Brian Norrisc3168d22015-12-04 15:25:13 -0800180 if (!parts)
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400181 return -ENOMEM;
182
183 names = of_get_property(dp, "partition-names", &plen);
184
185 for (i = 0; i < nr_parts; i++) {
Brian Norrisc3168d22015-12-04 15:25:13 -0800186 parts[i].offset = be32_to_cpu(part->offset);
187 parts[i].size = be32_to_cpu(part->len) & ~1;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400188 /* bit 0 set signifies read only partition */
189 if (be32_to_cpu(part->len) & 1)
Brian Norrisc3168d22015-12-04 15:25:13 -0800190 parts[i].mask_flags = MTD_WRITEABLE;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400191
192 if (names && (plen > 0)) {
193 int len = strlen(names) + 1;
194
Brian Norrisc3168d22015-12-04 15:25:13 -0800195 parts[i].name = names;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400196 plen -= len;
197 names += len;
198 } else {
Brian Norrisc3168d22015-12-04 15:25:13 -0800199 parts[i].name = "unnamed";
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400200 }
201
202 part++;
203 }
204
Brian Norrisc3168d22015-12-04 15:25:13 -0800205 *pparts = parts;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400206 return nr_parts;
207}
208
209static struct mtd_part_parser ofoldpart_parser = {
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400210 .parse_fn = parse_ofoldpart_partitions,
211 .name = "ofoldpart",
212};
213
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400214static int __init ofpart_parser_init(void)
215{
Axel Lin6e14a612013-12-01 19:01:06 +0800216 register_mtd_parser(&ofpart_parser);
217 register_mtd_parser(&ofoldpart_parser);
218 return 0;
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400219}
220
Lubomir Rintel422f3892013-01-16 02:12:50 +0100221static void __exit ofpart_parser_exit(void)
222{
223 deregister_mtd_parser(&ofpart_parser);
224 deregister_mtd_parser(&ofoldpart_parser);
225}
226
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400227module_init(ofpart_parser_init);
Lubomir Rintel422f3892013-01-16 02:12:50 +0100228module_exit(ofpart_parser_exit);
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400229
Adrian Bunk950bcb22008-04-14 17:19:46 +0300230MODULE_LICENSE("GPL");
Dmitry Eremin-Solenikovd6137ba2011-06-27 01:02:59 +0400231MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
232MODULE_AUTHOR("Vitaly Wool, David Gibson");
Dmitry Eremin-Solenikov9786f6e2011-06-27 16:34:46 +0400233/*
234 * When MTD core cannot find the requested parser, it tries to load the module
235 * with the same name. Since we provide the ofoldpart parser, we should have
236 * the corresponding alias.
237 */
Rafał Miłeckic0faf432018-03-14 13:10:43 +0100238MODULE_ALIAS("fixed-partitions");
Dmitry Eremin-Solenikov9786f6e2011-06-27 16:34:46 +0400239MODULE_ALIAS("ofoldpart");