2 * Read flash partition table from command line
4 * Copyright © 2002 SYSGO Real-Time Solutions GmbH
5 * Copyright © 2002-2010 David Woodhouse <dwmw2@infradead.org>
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.
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.
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
21 * The format for the command line is as follows:
23 * mtdparts=<mtddef>[;<mtddef]
24 * <mtddef> := <mtd-id>:<partdef>[,<partdef>]
25 * where <mtd-id> is the name from the "cat /proc/mtd" command
26 * <partdef> := <size>[@offset][<name>][ro][lk]
27 * <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 ')'
33 * 1 NOR Flash, with 1 single writable partition:
36 * 1 NOR Flash with 2 partitions, 1 NAND with one
37 * edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home)
40 #include <linux/kernel.h>
41 #include <linux/slab.h>
43 #include <linux/mtd/mtd.h>
44 #include <linux/mtd/partitions.h>
45 #include <linux/bootmem.h>
46 #include <linux/module.h>
48 /* error message prefix */
53 #define dbg(x) do { printk("DEBUG-CMDLINE-PART: "); printk x; } while(0)
59 /* special size referring to all the remaining space in a partition */
60 #define SIZE_REMAINING UINT_MAX
61 #define OFFSET_CONTINUOUS UINT_MAX
63 struct cmdline_mtd_partition
{
64 struct cmdline_mtd_partition
*next
;
67 struct mtd_partition
*parts
;
70 /* mtdpart_setup() parses into here */
71 static struct cmdline_mtd_partition
*partitions
;
73 /* the command line passed to mtdpart_setupd() */
75 static int cmdline_parsed
= 0;
78 * Parse one partition definition for an MTD. Since there can be many
79 * comma separated partition definitions, this function calls itself
80 * recursively until no more partition definitions are found. Nice side
81 * effect: the memory to keep the mtd_partition structs and the names
82 * is allocated upon the last definition being found. At that point the
83 * syntax has been verified ok.
85 static struct mtd_partition
* newpart(char *s
,
89 unsigned char **extra_mem_ptr
,
92 struct mtd_partition
*parts
;
94 unsigned long offset
= OFFSET_CONTINUOUS
;
97 unsigned char *extra_mem
;
99 unsigned int mask_flags
;
101 /* fetch the partition size */
103 { /* assign all remaining space to this partition */
104 size
= SIZE_REMAINING
;
109 size
= memparse(s
, &s
);
110 if (size
< PAGE_SIZE
)
112 printk(KERN_ERR ERRP
"partition size too small (%lx)\n", size
);
117 /* fetch partition name and flags */
118 mask_flags
= 0; /* this is going to be a regular partition */
120 /* check for offset */
124 offset
= memparse(s
, &s
);
126 /* now look for name */
137 p
= strchr(name
, delim
);
140 printk(KERN_ERR ERRP
"no closing %c found in partition name\n", delim
);
149 name_len
= 13; /* Partition_000 */
152 /* record name length for memory allocation later */
153 extra_mem_size
+= name_len
+ 1;
155 /* test for options */
156 if (strncmp(s
, "ro", 2) == 0)
158 mask_flags
|= MTD_WRITEABLE
;
162 /* if lk is found do NOT unlock the MTD partition*/
163 if (strncmp(s
, "lk", 2) == 0)
165 mask_flags
|= MTD_POWERUP_LOCK
;
169 /* test if more partitions are following */
172 if (size
== SIZE_REMAINING
)
174 printk(KERN_ERR ERRP
"no partitions allowed after a fill-up partition\n");
177 /* more partitions follow, parse them */
178 parts
= newpart(s
+ 1, &s
, num_parts
, this_part
+ 1,
179 &extra_mem
, extra_mem_size
);
184 { /* this is the last partition: allocate space for all */
187 *num_parts
= this_part
+ 1;
188 alloc_size
= *num_parts
* sizeof(struct mtd_partition
) +
190 parts
= kzalloc(alloc_size
, GFP_KERNEL
);
193 printk(KERN_ERR ERRP
"out of memory\n");
196 extra_mem
= (unsigned char *)(parts
+ *num_parts
);
198 /* enter this partition (offset will be calculated later if it is zero at this point) */
199 parts
[this_part
].size
= size
;
200 parts
[this_part
].offset
= offset
;
201 parts
[this_part
].mask_flags
= mask_flags
;
204 strlcpy(extra_mem
, name
, name_len
+ 1);
208 sprintf(extra_mem
, "Partition_%03d", this_part
);
210 parts
[this_part
].name
= extra_mem
;
211 extra_mem
+= name_len
+ 1;
213 dbg(("partition %d: name <%s>, offset %llx, size %llx, mask flags %x\n",
215 parts
[this_part
].name
,
216 parts
[this_part
].offset
,
217 parts
[this_part
].size
,
218 parts
[this_part
].mask_flags
));
220 /* return (updated) pointer to extra_mem memory */
222 *extra_mem_ptr
= extra_mem
;
224 /* return (updated) pointer command line string */
227 /* return partition table */
232 * Parse the command line.
234 static int mtdpart_setup_real(char *s
)
240 struct cmdline_mtd_partition
*this_mtd
;
241 struct mtd_partition
*parts
;
248 if (!(p
= strchr(s
, ':')))
250 printk(KERN_ERR ERRP
"no mtd-id\n");
253 mtd_id_len
= p
- mtd_id
;
255 dbg(("parsing <%s>\n", p
+1));
258 * parse one mtd. have it reserve memory for the
259 * struct cmdline_mtd_partition and the mtd-id string.
261 parts
= newpart(p
+ 1, /* cmdline */
262 &s
, /* out: updated cmdline ptr */
263 &num_parts
, /* out: number of parts */
264 0, /* first partition */
265 (unsigned char**)&this_mtd
, /* out: extra mem */
266 mtd_id_len
+ 1 + sizeof(*this_mtd
) +
267 sizeof(void*)-1 /*alignment*/);
271 * An error occurred. We're either:
272 * a) out of memory, or
273 * b) in the middle of the partition spec
274 * Either way, this mtd is hosed and we're
275 * unlikely to succeed in parsing any more
281 this_mtd
= (struct cmdline_mtd_partition
*)
282 ALIGN((unsigned long)this_mtd
, sizeof(void*));
284 this_mtd
->parts
= parts
;
285 this_mtd
->num_parts
= num_parts
;
286 this_mtd
->mtd_id
= (char*)(this_mtd
+ 1);
287 strlcpy(this_mtd
->mtd_id
, mtd_id
, mtd_id_len
+ 1);
289 /* link into chain */
290 this_mtd
->next
= partitions
;
291 partitions
= this_mtd
;
293 dbg(("mtdid=<%s> num_parts=<%d>\n",
294 this_mtd
->mtd_id
, this_mtd
->num_parts
));
297 /* EOS - we're done */
301 /* does another spec follow? */
304 printk(KERN_ERR ERRP
"bad character after partition (%c)\n", *s
);
313 * Main function to be called from the MTD mapping driver/device to
314 * obtain the partitioning information. At this point the command line
315 * arguments will actually be parsed and turned to struct mtd_partition
316 * information. It returns partitions for the requested mtd device, or
317 * the first one in the chain if a NULL mtd_id is passed in.
319 static int parse_cmdline_partitions(struct mtd_info
*master
,
320 struct mtd_partition
**pparts
,
321 unsigned long origin
)
323 unsigned long offset
;
325 struct cmdline_mtd_partition
*part
;
326 const char *mtd_id
= master
->name
;
328 /* parse command line */
330 mtdpart_setup_real(cmdline
);
332 for(part
= partitions
; part
; part
= part
->next
)
334 if ((!mtd_id
) || (!strcmp(part
->mtd_id
, mtd_id
)))
336 for(i
= 0, offset
= 0; i
< part
->num_parts
; i
++)
338 if (part
->parts
[i
].offset
== OFFSET_CONTINUOUS
)
339 part
->parts
[i
].offset
= offset
;
341 offset
= part
->parts
[i
].offset
;
342 if (part
->parts
[i
].size
== SIZE_REMAINING
)
343 part
->parts
[i
].size
= master
->size
- offset
;
344 if (offset
+ part
->parts
[i
].size
> master
->size
)
346 printk(KERN_WARNING ERRP
347 "%s: partitioning exceeds flash size, truncating\n",
349 part
->parts
[i
].size
= master
->size
- offset
;
352 offset
+= part
->parts
[i
].size
;
354 *pparts
= kmemdup(part
->parts
,
355 sizeof(*part
->parts
) * part
->num_parts
,
359 return part
->num_parts
;
367 * This is the handler for our kernel parameter, called from
368 * main.c::checksetup(). Note that we can not yet kmalloc() anything,
369 * so we only save the commandline for later processing.
371 * This function needs to be visible for bootloaders.
373 static int mtdpart_setup(char *s
)
379 __setup("mtdparts=", mtdpart_setup
);
381 static struct mtd_part_parser cmdline_parser
= {
382 .owner
= THIS_MODULE
,
383 .parse_fn
= parse_cmdline_partitions
,
384 .name
= "cmdlinepart",
387 static int __init
cmdline_parser_init(void)
389 return register_mtd_parser(&cmdline_parser
);
392 module_init(cmdline_parser_init
);
394 MODULE_LICENSE("GPL");
395 MODULE_AUTHOR("Marius Groeger <mag@sysgo.de>");
396 MODULE_DESCRIPTION("Command line configuration of MTD partitions");