blob: aed1b8a63c9feee71caceccc93842b188349f349 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Read flash partition table from command line
3 *
David Woodhousea1452a32010-08-08 20:58:20 +01004 * Copyright © 2002 SYSGO Real-Time Solutions GmbH
5 * Copyright © 2002-2010 David Woodhouse <dwmw2@infradead.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 *
21 * The format for the command line is as follows:
Thomas Gleixner97894cd2005-11-07 11:15:26 +000022 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * mtdparts=<mtddef>[;<mtddef]
24 * <mtddef> := <mtd-id>:<partdef>[,<partdef>]
Philip Rakitya0ee24a2008-10-08 16:32:11 -070025 * where <mtd-id> is the name from the "cat /proc/mtd" command
Justin Treone619a752008-01-30 10:25:49 -080026 * <partdef> := <size>[@offset][<name>][ro][lk]
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * <mtd-id> := unique name used in mapping driver/device (mtd->name)
28 * <size> := standard linux memsize OR "-" to denote all remaining space
29 * <name> := '(' NAME ')'
Thomas Gleixner97894cd2005-11-07 11:15:26 +000030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * Examples:
Thomas Gleixner97894cd2005-11-07 11:15:26 +000032 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * 1 NOR Flash, with 1 single writable partition:
34 * edb7312-nor:-
Thomas Gleixner97894cd2005-11-07 11:15:26 +000035 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * 1 NOR Flash with 2 partitions, 1 NAND with one
37 * edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home)
38 */
39
40#include <linux/kernel.h>
41#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/mtd/mtd.h>
43#include <linux/mtd/partitions.h>
Paul Gortmakera0e5cc52011-07-03 15:17:31 -040044#include <linux/module.h>
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +030045#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/* error message prefix */
48#define ERRP "mtd: "
49
50/* debug macro */
51#if 0
52#define dbg(x) do { printk("DEBUG-CMDLINE-PART: "); printk x; } while(0)
53#else
54#define dbg(x)
55#endif
56
57
58/* special size referring to all the remaining space in a partition */
Atsushi Nemotob175d032006-03-31 02:29:46 -080059#define SIZE_REMAINING UINT_MAX
60#define OFFSET_CONTINUOUS UINT_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62struct cmdline_mtd_partition {
63 struct cmdline_mtd_partition *next;
64 char *mtd_id;
65 int num_parts;
66 struct mtd_partition *parts;
67};
68
69/* mtdpart_setup() parses into here */
70static struct cmdline_mtd_partition *partitions;
71
Peter Meerwald8abc0d42012-04-25 15:14:17 +020072/* the command line passed to mtdpart_setup() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static char *cmdline;
Artem Bityutskiyaa3c5dc2012-08-31 16:10:02 +030074static int cmdline_parsed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/*
77 * Parse one partition definition for an MTD. Since there can be many
Thomas Gleixner97894cd2005-11-07 11:15:26 +000078 * comma separated partition definitions, this function calls itself
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * recursively until no more partition definitions are found. Nice side
80 * effect: the memory to keep the mtd_partition structs and the names
81 * is allocated upon the last definition being found. At that point the
82 * syntax has been verified ok.
83 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +000084static struct mtd_partition * newpart(char *s,
Artem Bityutskiyfac00772012-09-03 09:33:32 +030085 char **retptr,
86 int *num_parts,
87 int this_part,
88 unsigned char **extra_mem_ptr,
89 int extra_mem_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 struct mtd_partition *parts;
Artem Bityutskiyfac00772012-09-03 09:33:32 +030092 unsigned long size, offset = OFFSET_CONTINUOUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 char *name;
94 int name_len;
95 unsigned char *extra_mem;
96 char delim;
97 unsigned int mask_flags;
98
99 /* fetch the partition size */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300100 if (*s == '-') {
101 /* assign all remaining space to this partition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 size = SIZE_REMAINING;
103 s++;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300104 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 size = memparse(s, &s);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300106 if (size < PAGE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 printk(KERN_ERR ERRP "partition size too small (%lx)\n", size);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300108 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110 }
111
112 /* fetch partition name and flags */
113 mask_flags = 0; /* this is going to be a regular partition */
114 delim = 0;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300115
116 /* check for offset */
117 if (*s == '@') {
118 s++;
119 offset = memparse(s, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000121
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300122 /* now look for name */
123 if (*s == '(')
124 delim = ')';
125
126 if (delim) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 char *p;
128
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300129 name = ++s;
Adrian Bunked262c42008-04-14 17:20:04 +0300130 p = strchr(name, delim);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300131 if (!p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 printk(KERN_ERR ERRP "no closing %c found in partition name\n", delim);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300133 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135 name_len = p - name;
136 s = p + 1;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300137 } else {
138 name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 name_len = 13; /* Partition_000 */
140 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 /* record name length for memory allocation later */
143 extra_mem_size += name_len + 1;
144
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300145 /* test for options */
146 if (strncmp(s, "ro", 2) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 mask_flags |= MTD_WRITEABLE;
148 s += 2;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300151 /* if lk is found do NOT unlock the MTD partition*/
152 if (strncmp(s, "lk", 2) == 0) {
Justin Treone619a752008-01-30 10:25:49 -0800153 mask_flags |= MTD_POWERUP_LOCK;
154 s += 2;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300155 }
Justin Treone619a752008-01-30 10:25:49 -0800156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 /* test if more partitions are following */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300158 if (*s == ',') {
159 if (size == SIZE_REMAINING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 printk(KERN_ERR ERRP "no partitions allowed after a fill-up partition\n");
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300161 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163 /* more partitions follow, parse them */
Adrian Bunked262c42008-04-14 17:20:04 +0300164 parts = newpart(s + 1, &s, num_parts, this_part + 1,
165 &extra_mem, extra_mem_size);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300166 if (IS_ERR(parts))
167 return parts;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300168 } else {
169 /* this is the last partition: allocate space for all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 int alloc_size;
171
172 *num_parts = this_part + 1;
173 alloc_size = *num_parts * sizeof(struct mtd_partition) +
174 extra_mem_size;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300175
Burman Yan95b93a02006-11-15 21:10:29 +0200176 parts = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (!parts)
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300178 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 extra_mem = (unsigned char *)(parts + *num_parts);
180 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* enter this partition (offset will be calculated later if it is zero at this point) */
183 parts[this_part].size = size;
184 parts[this_part].offset = offset;
185 parts[this_part].mask_flags = mask_flags;
186 if (name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 strlcpy(extra_mem, name, name_len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 sprintf(extra_mem, "Partition_%03d", this_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 parts[this_part].name = extra_mem;
191 extra_mem += name_len + 1;
192
Thadeu Lima de Souza Cascardo342ba102009-06-24 18:39:09 -0300193 dbg(("partition %d: name <%s>, offset %llx, size %llx, mask flags %x\n",
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300194 this_part, parts[this_part].name, parts[this_part].offset,
195 parts[this_part].size, parts[this_part].mask_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /* return (updated) pointer to extra_mem memory */
198 if (extra_mem_ptr)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300199 *extra_mem_ptr = extra_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /* return (updated) pointer command line string */
202 *retptr = s;
203
204 /* return partition table */
205 return parts;
206}
207
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000208/*
209 * Parse the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 */
211static int mtdpart_setup_real(char *s)
212{
213 cmdline_parsed = 1;
214
215 for( ; s != NULL; )
216 {
217 struct cmdline_mtd_partition *this_mtd;
218 struct mtd_partition *parts;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300219 int mtd_id_len, num_parts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 char *p, *mtd_id;
221
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300222 mtd_id = s;
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* fetch <mtd-id> */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300225 p = strchr(s, ':');
226 if (!p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 printk(KERN_ERR ERRP "no mtd-id\n");
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300228 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230 mtd_id_len = p - mtd_id;
231
232 dbg(("parsing <%s>\n", p+1));
233
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000234 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * parse one mtd. have it reserve memory for the
236 * struct cmdline_mtd_partition and the mtd-id string.
237 */
238 parts = newpart(p + 1, /* cmdline */
239 &s, /* out: updated cmdline ptr */
240 &num_parts, /* out: number of parts */
241 0, /* first partition */
242 (unsigned char**)&this_mtd, /* out: extra mem */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000243 mtd_id_len + 1 + sizeof(*this_mtd) +
Joern Engelbe76c5f2005-06-07 16:04:29 +0100244 sizeof(void*)-1 /*alignment*/);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300245 if (IS_ERR(parts)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /*
247 * An error occurred. We're either:
248 * a) out of memory, or
249 * b) in the middle of the partition spec
250 * Either way, this mtd is hosed and we're
251 * unlikely to succeed in parsing any more
252 */
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300253 return PTR_ERR(parts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Joern Engelbe76c5f2005-06-07 16:04:29 +0100256 /* align this_mtd */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000257 this_mtd = (struct cmdline_mtd_partition *)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300258 ALIGN((unsigned long)this_mtd, sizeof(void *));
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000259 /* enter results */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 this_mtd->parts = parts;
261 this_mtd->num_parts = num_parts;
262 this_mtd->mtd_id = (char*)(this_mtd + 1);
263 strlcpy(this_mtd->mtd_id, mtd_id, mtd_id_len + 1);
264
265 /* link into chain */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000266 this_mtd->next = partitions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 partitions = this_mtd;
268
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000269 dbg(("mtdid=<%s> num_parts=<%d>\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 this_mtd->mtd_id, this_mtd->num_parts));
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /* EOS - we're done */
274 if (*s == 0)
275 break;
276
277 /* does another spec follow? */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300278 if (*s != ';') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 printk(KERN_ERR ERRP "bad character after partition (%c)\n", *s);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300280 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 s++;
283 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300284
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300285 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
288/*
289 * Main function to be called from the MTD mapping driver/device to
290 * obtain the partitioning information. At this point the command line
291 * arguments will actually be parsed and turned to struct mtd_partition
292 * information. It returns partitions for the requested mtd device, or
293 * the first one in the chain if a NULL mtd_id is passed in.
294 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000295static int parse_cmdline_partitions(struct mtd_info *master,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400296 struct mtd_partition **pparts,
297 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 unsigned long offset;
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300300 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct cmdline_mtd_partition *part;
David Howells36560d22008-07-08 17:09:03 +0100302 const char *mtd_id = master->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* parse command line */
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300305 if (!cmdline_parsed) {
306 err = mtdpart_setup_real(cmdline);
307 if (err)
308 return err;
309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300311 for (part = partitions; part; part = part->next) {
312 if ((!mtd_id) || (!strcmp(part->mtd_id, mtd_id))) {
313 for (i = 0, offset = 0; i < part->num_parts; i++) {
Atsushi Nemotob175d032006-03-31 02:29:46 -0800314 if (part->parts[i].offset == OFFSET_CONTINUOUS)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300315 part->parts[i].offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 else
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300317 offset = part->parts[i].offset;
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (part->parts[i].size == SIZE_REMAINING)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300320 part->parts[i].size = master->size - offset;
321
Shmulik Ladkani7baf0422012-09-05 08:30:20 +0300322 if (part->parts[i].size == 0) {
323 printk(KERN_WARNING ERRP
324 "%s: skipping zero sized partition\n",
325 part->mtd_id);
326 part->num_parts--;
327 memmove(&part->parts[i],
328 &part->parts[i + 1],
329 sizeof(*part->parts) * (part->num_parts - i));
330 continue;
331 }
332
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300333 if (offset + part->parts[i].size > master->size) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000334 printk(KERN_WARNING ERRP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 "%s: partitioning exceeds flash size, truncating\n",
336 part->mtd_id);
337 part->parts[i].size = master->size - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 offset += part->parts[i].size;
340 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300341
Atsushi Nemoto17b536c2009-03-06 20:01:08 +0900342 *pparts = kmemdup(part->parts,
343 sizeof(*part->parts) * part->num_parts,
344 GFP_KERNEL);
345 if (!*pparts)
346 return -ENOMEM;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return part->num_parts;
349 }
350 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300351
Peter Korsgaardb0d06af2008-02-14 17:00:10 +0100352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000356/*
357 * This is the handler for our kernel parameter, called from
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * main.c::checksetup(). Note that we can not yet kmalloc() anything,
359 * so we only save the commandline for later processing.
360 *
361 * This function needs to be visible for bootloaders.
362 */
Adrian Bunkddacff12006-11-25 20:15:41 +0100363static int mtdpart_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 cmdline = s;
366 return 1;
367}
368
369__setup("mtdparts=", mtdpart_setup);
370
371static struct mtd_part_parser cmdline_parser = {
372 .owner = THIS_MODULE,
373 .parse_fn = parse_cmdline_partitions,
374 .name = "cmdlinepart",
375};
376
377static int __init cmdline_parser_init(void)
378{
379 return register_mtd_parser(&cmdline_parser);
380}
381
382module_init(cmdline_parser_init);
383
384MODULE_LICENSE("GPL");
385MODULE_AUTHOR("Marius Groeger <mag@sysgo.de>");
386MODULE_DESCRIPTION("Command line configuration of MTD partitions");