blob: 8d4a16661649ac0c8f767e7644eb6f045470205a [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
Christopher Cordahiea8b8e22012-12-18 16:11:51 -050026 * <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
Christopher Cordahiea8b8e22012-12-18 16:11:51 -050029 * size is automatically truncated at end of device
30 * if specified or trucated size is 0 the part is skipped
31 * <offset> := standard linux memsize
32 * if omitted the part will immediately follow the previous part
33 * or 0 if the first part
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * <name> := '(' NAME ')'
Thomas Gleixner97894cd2005-11-07 11:15:26 +000035 *
Christopher Cordahiea8b8e22012-12-18 16:11:51 -050036 * <size> and <offset> can be specified such that the parts are out of order
37 * in physical memory and may even overlap.
38 *
39 * The parts are assigned MTD numbers in the order they are specified in the
40 * command line regardless of their order in physical memory.
41 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * Examples:
Thomas Gleixner97894cd2005-11-07 11:15:26 +000043 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * 1 NOR Flash, with 1 single writable partition:
45 * edb7312-nor:-
Thomas Gleixner97894cd2005-11-07 11:15:26 +000046 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * 1 NOR Flash with 2 partitions, 1 NAND with one
48 * edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home)
49 */
50
51#include <linux/kernel.h>
52#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/mtd/mtd.h>
54#include <linux/mtd/partitions.h>
Paul Gortmakera0e5cc52011-07-03 15:17:31 -040055#include <linux/module.h>
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +030056#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* error message prefix */
59#define ERRP "mtd: "
60
61/* debug macro */
62#if 0
63#define dbg(x) do { printk("DEBUG-CMDLINE-PART: "); printk x; } while(0)
64#else
65#define dbg(x)
66#endif
67
68
69/* special size referring to all the remaining space in a partition */
Huang Shijie6f9f59e2012-11-01 13:58:17 +080070#define SIZE_REMAINING ULLONG_MAX
71#define OFFSET_CONTINUOUS ULLONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73struct cmdline_mtd_partition {
74 struct cmdline_mtd_partition *next;
75 char *mtd_id;
76 int num_parts;
77 struct mtd_partition *parts;
78};
79
80/* mtdpart_setup() parses into here */
81static struct cmdline_mtd_partition *partitions;
82
Peter Meerwald8abc0d42012-04-25 15:14:17 +020083/* the command line passed to mtdpart_setup() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static char *cmdline;
Artem Bityutskiyaa3c5dc2012-08-31 16:10:02 +030085static int cmdline_parsed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/*
88 * Parse one partition definition for an MTD. Since there can be many
Thomas Gleixner97894cd2005-11-07 11:15:26 +000089 * comma separated partition definitions, this function calls itself
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * recursively until no more partition definitions are found. Nice side
91 * effect: the memory to keep the mtd_partition structs and the names
92 * is allocated upon the last definition being found. At that point the
93 * syntax has been verified ok.
94 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +000095static struct mtd_partition * newpart(char *s,
Artem Bityutskiyfac00772012-09-03 09:33:32 +030096 char **retptr,
97 int *num_parts,
98 int this_part,
99 unsigned char **extra_mem_ptr,
100 int extra_mem_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 struct mtd_partition *parts;
Huang Shijie6f9f59e2012-11-01 13:58:17 +0800103 unsigned long long size, offset = OFFSET_CONTINUOUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 char *name;
105 int name_len;
106 unsigned char *extra_mem;
107 char delim;
108 unsigned int mask_flags;
109
110 /* fetch the partition size */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300111 if (*s == '-') {
112 /* assign all remaining space to this partition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 size = SIZE_REMAINING;
114 s++;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300115 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 size = memparse(s, &s);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300117 if (size < PAGE_SIZE) {
Huang Shijie6f9f59e2012-11-01 13:58:17 +0800118 printk(KERN_ERR ERRP "partition size too small (%llx)\n",
119 size);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300120 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122 }
123
124 /* fetch partition name and flags */
125 mask_flags = 0; /* this is going to be a regular partition */
126 delim = 0;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300127
128 /* check for offset */
129 if (*s == '@') {
130 s++;
131 offset = memparse(s, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000133
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300134 /* now look for name */
135 if (*s == '(')
136 delim = ')';
137
138 if (delim) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 char *p;
140
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300141 name = ++s;
Adrian Bunked262c42008-04-14 17:20:04 +0300142 p = strchr(name, delim);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300143 if (!p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 printk(KERN_ERR ERRP "no closing %c found in partition name\n", delim);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300145 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147 name_len = p - name;
148 s = p + 1;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300149 } else {
150 name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 name_len = 13; /* Partition_000 */
152 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* record name length for memory allocation later */
155 extra_mem_size += name_len + 1;
156
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300157 /* test for options */
158 if (strncmp(s, "ro", 2) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 mask_flags |= MTD_WRITEABLE;
160 s += 2;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300163 /* if lk is found do NOT unlock the MTD partition*/
164 if (strncmp(s, "lk", 2) == 0) {
Justin Treone619a752008-01-30 10:25:49 -0800165 mask_flags |= MTD_POWERUP_LOCK;
166 s += 2;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300167 }
Justin Treone619a752008-01-30 10:25:49 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 /* test if more partitions are following */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300170 if (*s == ',') {
171 if (size == SIZE_REMAINING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 printk(KERN_ERR ERRP "no partitions allowed after a fill-up partition\n");
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300173 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175 /* more partitions follow, parse them */
Adrian Bunked262c42008-04-14 17:20:04 +0300176 parts = newpart(s + 1, &s, num_parts, this_part + 1,
177 &extra_mem, extra_mem_size);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300178 if (IS_ERR(parts))
179 return parts;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300180 } else {
181 /* this is the last partition: allocate space for all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 int alloc_size;
183
184 *num_parts = this_part + 1;
185 alloc_size = *num_parts * sizeof(struct mtd_partition) +
186 extra_mem_size;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300187
Burman Yan95b93a02006-11-15 21:10:29 +0200188 parts = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!parts)
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300190 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 extra_mem = (unsigned char *)(parts + *num_parts);
192 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /* enter this partition (offset will be calculated later if it is zero at this point) */
195 parts[this_part].size = size;
196 parts[this_part].offset = offset;
197 parts[this_part].mask_flags = mask_flags;
198 if (name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 strlcpy(extra_mem, name, name_len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 sprintf(extra_mem, "Partition_%03d", this_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 parts[this_part].name = extra_mem;
203 extra_mem += name_len + 1;
204
Thadeu Lima de Souza Cascardo342ba102009-06-24 18:39:09 -0300205 dbg(("partition %d: name <%s>, offset %llx, size %llx, mask flags %x\n",
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300206 this_part, parts[this_part].name, parts[this_part].offset,
207 parts[this_part].size, parts[this_part].mask_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* return (updated) pointer to extra_mem memory */
210 if (extra_mem_ptr)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300211 *extra_mem_ptr = extra_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* return (updated) pointer command line string */
214 *retptr = s;
215
216 /* return partition table */
217 return parts;
218}
219
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000220/*
221 * Parse the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
223static int mtdpart_setup_real(char *s)
224{
225 cmdline_parsed = 1;
226
227 for( ; s != NULL; )
228 {
229 struct cmdline_mtd_partition *this_mtd;
230 struct mtd_partition *parts;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300231 int mtd_id_len, num_parts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 char *p, *mtd_id;
233
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300234 mtd_id = s;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* fetch <mtd-id> */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300237 p = strchr(s, ':');
238 if (!p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 printk(KERN_ERR ERRP "no mtd-id\n");
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300240 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242 mtd_id_len = p - mtd_id;
243
244 dbg(("parsing <%s>\n", p+1));
245
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000246 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * parse one mtd. have it reserve memory for the
248 * struct cmdline_mtd_partition and the mtd-id string.
249 */
250 parts = newpart(p + 1, /* cmdline */
251 &s, /* out: updated cmdline ptr */
252 &num_parts, /* out: number of parts */
253 0, /* first partition */
254 (unsigned char**)&this_mtd, /* out: extra mem */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000255 mtd_id_len + 1 + sizeof(*this_mtd) +
Joern Engelbe76c5f2005-06-07 16:04:29 +0100256 sizeof(void*)-1 /*alignment*/);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300257 if (IS_ERR(parts)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /*
259 * An error occurred. We're either:
260 * a) out of memory, or
261 * b) in the middle of the partition spec
262 * Either way, this mtd is hosed and we're
263 * unlikely to succeed in parsing any more
264 */
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300265 return PTR_ERR(parts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
Joern Engelbe76c5f2005-06-07 16:04:29 +0100268 /* align this_mtd */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000269 this_mtd = (struct cmdline_mtd_partition *)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300270 ALIGN((unsigned long)this_mtd, sizeof(void *));
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000271 /* enter results */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 this_mtd->parts = parts;
273 this_mtd->num_parts = num_parts;
274 this_mtd->mtd_id = (char*)(this_mtd + 1);
275 strlcpy(this_mtd->mtd_id, mtd_id, mtd_id_len + 1);
276
277 /* link into chain */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000278 this_mtd->next = partitions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 partitions = this_mtd;
280
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000281 dbg(("mtdid=<%s> num_parts=<%d>\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 this_mtd->mtd_id, this_mtd->num_parts));
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* EOS - we're done */
286 if (*s == 0)
287 break;
288
289 /* does another spec follow? */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300290 if (*s != ';') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 printk(KERN_ERR ERRP "bad character after partition (%c)\n", *s);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300292 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294 s++;
295 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300296
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300/*
301 * Main function to be called from the MTD mapping driver/device to
302 * obtain the partitioning information. At this point the command line
303 * arguments will actually be parsed and turned to struct mtd_partition
304 * information. It returns partitions for the requested mtd device, or
305 * the first one in the chain if a NULL mtd_id is passed in.
306 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000307static int parse_cmdline_partitions(struct mtd_info *master,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400308 struct mtd_partition **pparts,
309 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Huang Shijie6f9f59e2012-11-01 13:58:17 +0800311 unsigned long long offset;
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300312 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct cmdline_mtd_partition *part;
David Howells36560d22008-07-08 17:09:03 +0100314 const char *mtd_id = master->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* parse command line */
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300317 if (!cmdline_parsed) {
318 err = mtdpart_setup_real(cmdline);
319 if (err)
320 return err;
321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200323 /*
324 * Search for the partition definition matching master->name.
325 * If master->name is not set, stop at first partition definition.
326 */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300327 for (part = partitions; part; part = part->next) {
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200328 if ((!mtd_id) || (!strcmp(part->mtd_id, mtd_id)))
329 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300331
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200332 if (!part)
333 return 0;
334
335 for (i = 0, offset = 0; i < part->num_parts; i++) {
336 if (part->parts[i].offset == OFFSET_CONTINUOUS)
337 part->parts[i].offset = offset;
338 else
339 offset = part->parts[i].offset;
340
341 if (part->parts[i].size == SIZE_REMAINING)
342 part->parts[i].size = master->size - offset;
343
Christopher Cordahiebf4f072012-12-16 19:59:30 -0500344 if (offset + part->parts[i].size > master->size) {
345 printk(KERN_WARNING ERRP
346 "%s: partitioning exceeds flash size, truncating\n",
347 part->mtd_id);
348 part->parts[i].size = master->size - offset;
349 }
350 offset += part->parts[i].size;
351
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200352 if (part->parts[i].size == 0) {
353 printk(KERN_WARNING ERRP
354 "%s: skipping zero sized partition\n",
355 part->mtd_id);
356 part->num_parts--;
357 memmove(&part->parts[i], &part->parts[i + 1],
358 sizeof(*part->parts) * (part->num_parts - i));
Christopher Cordahie25e0a42012-12-16 19:59:29 -0500359 i--;
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200360 }
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200361 }
362
363 *pparts = kmemdup(part->parts, sizeof(*part->parts) * part->num_parts,
364 GFP_KERNEL);
365 if (!*pparts)
366 return -ENOMEM;
367
368 return part->num_parts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000372/*
373 * This is the handler for our kernel parameter, called from
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * main.c::checksetup(). Note that we can not yet kmalloc() anything,
375 * so we only save the commandline for later processing.
376 *
377 * This function needs to be visible for bootloaders.
378 */
Adrian Bunkddacff12006-11-25 20:15:41 +0100379static int mtdpart_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 cmdline = s;
382 return 1;
383}
384
385__setup("mtdparts=", mtdpart_setup);
386
387static struct mtd_part_parser cmdline_parser = {
388 .owner = THIS_MODULE,
389 .parse_fn = parse_cmdline_partitions,
390 .name = "cmdlinepart",
391};
392
393static int __init cmdline_parser_init(void)
394{
395 return register_mtd_parser(&cmdline_parser);
396}
397
398module_init(cmdline_parser_init);
399
400MODULE_LICENSE("GPL");
401MODULE_AUTHOR("Marius Groeger <mag@sysgo.de>");
402MODULE_DESCRIPTION("Command line configuration of MTD partitions");