blob: 2312412962e95cc470f1e806f14588c293c17e56 [file] [log] [blame]
Scott Wood9a310d22008-01-15 17:54:43 -06001/*
2 * Flash partitions described by the OF (or flattened) device tree
3 *
David Woodhousea1452a32010-08-08 20:58:20 +01004 * Copyright © 2006 MontaVista Software Inc.
Scott Wood9a310d22008-01-15 17:54:43 -06005 * Author: Vitaly Wool <vwool@ru.mvista.com>
6 *
7 * Revised to handle newer style flash binding by:
David Woodhousea1452a32010-08-08 20:58:20 +01008 * Copyright © 2007 David Gibson, IBM Corporation.
Scott Wood9a310d22008-01-15 17:54:43 -06009 *
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 Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Scott Wood9a310d22008-01-15 17:54:43 -060021#include <linux/mtd/partitions.h>
22
Josh Wue79265b2013-08-05 19:14:38 +080023static bool node_has_compatible(struct device_node *pp)
24{
25 return of_get_property(pp, "compatible", NULL);
26}
27
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +040028static int parse_ofpart_partitions(struct mtd_info *master,
Brian Norrisb9adf462015-12-04 15:25:14 -080029 const struct mtd_partition **pparts,
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +040030 struct mtd_part_parser_data *data)
31{
Brian Norrisc3168d22015-12-04 15:25:13 -080032 struct mtd_partition *parts;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000033 struct device_node *mtd_node;
34 struct device_node *ofpart_node;
Scott Wood9a310d22008-01-15 17:54:43 -060035 const char *partname;
36 struct device_node *pp;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000037 int nr_parts, i, ret = 0;
38 bool dedicated = true;
Scott Wood9a310d22008-01-15 17:54:43 -060039
Dmitry Eremin-Solenikov628376f2011-05-30 01:05:33 +040040
Brian Norrise270bca2015-10-30 20:33:29 -070041 /* Pull of_node from the master device node */
42 mtd_node = mtd_get_of_node(master);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000043 if (!mtd_node)
Dmitry Eremin-Solenikov628376f2011-05-30 01:05:33 +040044 return 0;
45
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000046 ofpart_node = of_get_child_by_name(mtd_node, "partitions");
47 if (!ofpart_node) {
Brian Norris8c62b4e2015-12-03 14:26:52 -080048 /*
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 Suchanek5cfdedb2015-08-18 15:34:09 +000055 ofpart_node = mtd_node;
56 dedicated = false;
Brian Norrise488ca92015-12-03 14:47:32 -080057 } else if (!of_device_is_compatible(ofpart_node, "fixed-partitions")) {
58 /* The 'partitions' subnode might be used by another parser */
59 return 0;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000060 }
61
Scott Wood9a310d22008-01-15 17:54:43 -060062 /* First count the subnodes */
Scott Wood9a310d22008-01-15 17:54:43 -060063 nr_parts = 0;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000064 for_each_child_of_node(ofpart_node, pp) {
65 if (!dedicated && node_has_compatible(pp))
Josh Wue79265b2013-08-05 19:14:38 +080066 continue;
67
Scott Wood9a310d22008-01-15 17:54:43 -060068 nr_parts++;
Josh Wue79265b2013-08-05 19:14:38 +080069 }
Scott Wood9a310d22008-01-15 17:54:43 -060070
71 if (nr_parts == 0)
72 return 0;
73
Brian Norrisc3168d22015-12-04 15:25:13 -080074 parts = kzalloc(nr_parts * sizeof(*parts), GFP_KERNEL);
75 if (!parts)
Scott Wood9a310d22008-01-15 17:54:43 -060076 return -ENOMEM;
77
Scott Wood9a310d22008-01-15 17:54:43 -060078 i = 0;
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000079 for_each_child_of_node(ofpart_node, pp) {
Ian Munsie766f2712010-10-01 17:06:08 +100080 const __be32 *reg;
Scott Wood9a310d22008-01-15 17:54:43 -060081 int len;
Joe Schaack05ff8c22013-02-21 16:29:45 -060082 int a_cells, s_cells;
Scott Wood9a310d22008-01-15 17:54:43 -060083
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000084 if (!dedicated && node_has_compatible(pp))
Josh Wue79265b2013-08-05 19:14:38 +080085 continue;
86
Benjamin Krillebd5a742009-08-25 15:52:41 +020087 reg = of_get_property(pp, "reg", &len);
88 if (!reg) {
Michal Suchanek5cfdedb2015-08-18 15:34:09 +000089 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 Krill4b08e142009-01-23 17:18:05 +010098 }
99
Joe Schaack05ff8c22013-02-21 16:29:45 -0600100 a_cells = of_n_addr_cells(pp);
101 s_cells = of_n_size_cells(pp);
Michal Suchanek5cfdedb2015-08-18 15:34:09 +0000102 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 Norrisc3168d22015-12-04 15:25:13 -0800109 parts[i].offset = of_read_number(reg, a_cells);
110 parts[i].size = of_read_number(reg + a_cells, s_cells);
Scott Wood9a310d22008-01-15 17:54:43 -0600111
112 partname = of_get_property(pp, "label", &len);
113 if (!partname)
114 partname = of_get_property(pp, "name", &len);
Sahitya Tummala88c3522c2017-06-05 15:59:36 +0530115 parts[i].name = (char *)partname;
Scott Wood9a310d22008-01-15 17:54:43 -0600116
117 if (of_get_property(pp, "read-only", &len))
Brian Norrisc3168d22015-12-04 15:25:13 -0800118 parts[i].mask_flags |= MTD_WRITEABLE;
Josh Radelab0b00b2012-11-14 14:11:32 -0800119
120 if (of_get_property(pp, "lock", &len))
Brian Norrisc3168d22015-12-04 15:25:13 -0800121 parts[i].mask_flags |= MTD_POWERUP_LOCK;
Scott Wood9a310d22008-01-15 17:54:43 -0600122
123 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:
133 pr_err("%s: error parsing ofpart partition %s (%s)\n",
134 master->name, pp->full_name, mtd_node->full_name);
135 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
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400142static struct mtd_part_parser ofpart_parser = {
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400143 .parse_fn = parse_ofpart_partitions,
144 .name = "ofpart",
145};
146
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400147static int parse_ofoldpart_partitions(struct mtd_info *master,
Brian Norrisb9adf462015-12-04 15:25:14 -0800148 const struct mtd_partition **pparts,
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400149 struct mtd_part_parser_data *data)
150{
Brian Norrisc3168d22015-12-04 15:25:13 -0800151 struct mtd_partition *parts;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400152 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 Norrise270bca2015-10-30 20:33:29 -0700159 /* Pull of_node from the master device node */
160 dp = mtd_get_of_node(master);
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400161 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 Norrisc3168d22015-12-04 15:25:13 -0800173 parts = kzalloc(nr_parts * sizeof(*parts), GFP_KERNEL);
174 if (!parts)
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400175 return -ENOMEM;
176
177 names = of_get_property(dp, "partition-names", &plen);
178
179 for (i = 0; i < nr_parts; i++) {
Brian Norrisc3168d22015-12-04 15:25:13 -0800180 parts[i].offset = be32_to_cpu(part->offset);
181 parts[i].size = be32_to_cpu(part->len) & ~1;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400182 /* bit 0 set signifies read only partition */
183 if (be32_to_cpu(part->len) & 1)
Brian Norrisc3168d22015-12-04 15:25:13 -0800184 parts[i].mask_flags = MTD_WRITEABLE;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400185
186 if (names && (plen > 0)) {
187 int len = strlen(names) + 1;
188
Sahitya Tummala88c3522c2017-06-05 15:59:36 +0530189 parts[i].name = (char *)names;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400190 plen -= len;
191 names += len;
192 } else {
Brian Norrisc3168d22015-12-04 15:25:13 -0800193 parts[i].name = "unnamed";
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400194 }
195
196 part++;
197 }
198
Brian Norrisc3168d22015-12-04 15:25:13 -0800199 *pparts = parts;
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400200 return nr_parts;
201}
202
203static struct mtd_part_parser ofoldpart_parser = {
Dmitry Eremin-Solenikovfbcf62a2011-05-30 01:26:17 +0400204 .parse_fn = parse_ofoldpart_partitions,
205 .name = "ofoldpart",
206};
207
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400208static int __init ofpart_parser_init(void)
209{
Axel Lin6e14a612013-12-01 19:01:06 +0800210 register_mtd_parser(&ofpart_parser);
211 register_mtd_parser(&ofoldpart_parser);
212 return 0;
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400213}
214
Lubomir Rintel422f3892013-01-16 02:12:50 +0100215static void __exit ofpart_parser_exit(void)
216{
217 deregister_mtd_parser(&ofpart_parser);
218 deregister_mtd_parser(&ofoldpart_parser);
219}
220
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400221module_init(ofpart_parser_init);
Lubomir Rintel422f3892013-01-16 02:12:50 +0100222module_exit(ofpart_parser_exit);
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400223
Adrian Bunk950bcb22008-04-14 17:19:46 +0300224MODULE_LICENSE("GPL");
Dmitry Eremin-Solenikovd6137ba2011-06-27 01:02:59 +0400225MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
226MODULE_AUTHOR("Vitaly Wool, David Gibson");
Dmitry Eremin-Solenikov9786f6e2011-06-27 16:34:46 +0400227/*
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 */
232MODULE_ALIAS("ofoldpart");