blob: c29205ee82e20a2893658a4c8cdf610a5f0fdc5b [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>]
Christopher Cordahiea8b8e22012-12-18 16:11:51 -050025 * <partdef> := <size>[@<offset>][<name>][ro][lk]
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * <mtd-id> := unique name used in mapping driver/device (mtd->name)
27 * <size> := standard linux memsize OR "-" to denote all remaining space
Christopher Cordahiea8b8e22012-12-18 16:11:51 -050028 * size is automatically truncated at end of device
Geert Uytterhoeven29f63f62014-06-29 12:21:37 +020029 * if specified or truncated size is 0 the part is skipped
Christopher Cordahiea8b8e22012-12-18 16:11:51 -050030 * <offset> := standard linux memsize
31 * if omitted the part will immediately follow the previous part
32 * or 0 if the first part
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * <name> := '(' NAME ')'
Christopher Cordahibd6ce5e2012-12-18 16:11:52 -050034 * NAME will appear in /proc/mtd
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
Brian Norrisecb43e02015-06-19 13:10:07 -070051#define pr_fmt(fmt) "mtd: " fmt
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/kernel.h>
54#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/mtd/mtd.h>
56#include <linux/mtd/partitions.h>
Paul Gortmakera0e5cc52011-07-03 15:17:31 -040057#include <linux/module.h>
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +030058#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* debug macro */
61#if 0
62#define dbg(x) do { printk("DEBUG-CMDLINE-PART: "); printk x; } while(0)
63#else
64#define dbg(x)
65#endif
66
67
68/* special size referring to all the remaining space in a partition */
Huang Shijie6f9f59e2012-11-01 13:58:17 +080069#define SIZE_REMAINING ULLONG_MAX
70#define OFFSET_CONTINUOUS ULLONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72struct cmdline_mtd_partition {
73 struct cmdline_mtd_partition *next;
74 char *mtd_id;
75 int num_parts;
76 struct mtd_partition *parts;
77};
78
79/* mtdpart_setup() parses into here */
80static struct cmdline_mtd_partition *partitions;
81
Peter Meerwald8abc0d42012-04-25 15:14:17 +020082/* the command line passed to mtdpart_setup() */
Lubomir Rintelf5f172d2013-01-16 02:12:49 +010083static char *mtdparts;
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);
Brian Norrisd855d232015-06-19 13:10:06 -0700117 if (!size) {
Brian Norrisecb43e02015-06-19 13:10:07 -0700118 pr_err("partition has size 0\n");
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300119 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121 }
122
123 /* fetch partition name and flags */
124 mask_flags = 0; /* this is going to be a regular partition */
125 delim = 0;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300126
127 /* check for offset */
128 if (*s == '@') {
129 s++;
130 offset = memparse(s, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000132
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300133 /* now look for name */
134 if (*s == '(')
135 delim = ')';
136
137 if (delim) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 char *p;
139
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300140 name = ++s;
Adrian Bunked262c42008-04-14 17:20:04 +0300141 p = strchr(name, delim);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300142 if (!p) {
Brian Norrisecb43e02015-06-19 13:10:07 -0700143 pr_err("no closing %c found in partition name\n", delim);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300144 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146 name_len = p - name;
147 s = p + 1;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300148 } else {
149 name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 name_len = 13; /* Partition_000 */
151 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* record name length for memory allocation later */
154 extra_mem_size += name_len + 1;
155
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300156 /* test for options */
157 if (strncmp(s, "ro", 2) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 mask_flags |= MTD_WRITEABLE;
159 s += 2;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300162 /* if lk is found do NOT unlock the MTD partition*/
163 if (strncmp(s, "lk", 2) == 0) {
Justin Treone619a752008-01-30 10:25:49 -0800164 mask_flags |= MTD_POWERUP_LOCK;
165 s += 2;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300166 }
Justin Treone619a752008-01-30 10:25:49 -0800167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 /* test if more partitions are following */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300169 if (*s == ',') {
170 if (size == SIZE_REMAINING) {
Brian Norrisecb43e02015-06-19 13:10:07 -0700171 pr_err("no partitions allowed after a fill-up partition\n");
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300172 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174 /* more partitions follow, parse them */
Adrian Bunked262c42008-04-14 17:20:04 +0300175 parts = newpart(s + 1, &s, num_parts, this_part + 1,
176 &extra_mem, extra_mem_size);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300177 if (IS_ERR(parts))
178 return parts;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300179 } else {
180 /* this is the last partition: allocate space for all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int alloc_size;
182
183 *num_parts = this_part + 1;
184 alloc_size = *num_parts * sizeof(struct mtd_partition) +
185 extra_mem_size;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300186
Burman Yan95b93a02006-11-15 21:10:29 +0200187 parts = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!parts)
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300189 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 extra_mem = (unsigned char *)(parts + *num_parts);
191 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300192
Geert Uytterhoeven34c81902018-05-22 17:07:53 +0200193 /*
194 * enter this partition (offset will be calculated later if it is
195 * OFFSET_CONTINUOUS at this point)
196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 parts[this_part].size = size;
198 parts[this_part].offset = offset;
199 parts[this_part].mask_flags = mask_flags;
200 if (name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 strlcpy(extra_mem, name, name_len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 sprintf(extra_mem, "Partition_%03d", this_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 parts[this_part].name = extra_mem;
205 extra_mem += name_len + 1;
206
Thadeu Lima de Souza Cascardo342ba102009-06-24 18:39:09 -0300207 dbg(("partition %d: name <%s>, offset %llx, size %llx, mask flags %x\n",
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300208 this_part, parts[this_part].name, parts[this_part].offset,
209 parts[this_part].size, parts[this_part].mask_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 /* return (updated) pointer to extra_mem memory */
212 if (extra_mem_ptr)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300213 *extra_mem_ptr = extra_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* return (updated) pointer command line string */
216 *retptr = s;
217
218 /* return partition table */
219 return parts;
220}
221
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000222/*
223 * Parse the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 */
225static int mtdpart_setup_real(char *s)
226{
227 cmdline_parsed = 1;
228
229 for( ; s != NULL; )
230 {
231 struct cmdline_mtd_partition *this_mtd;
232 struct mtd_partition *parts;
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300233 int mtd_id_len, num_parts;
Boris Brezillon9a59dfd2020-04-29 09:53:47 -0700234 char *p, *mtd_id, *semicol;
235
236 /*
237 * Replace the first ';' by a NULL char so strrchr can work
238 * properly.
239 */
240 semicol = strchr(s, ';');
241 if (semicol)
242 *semicol = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300244 mtd_id = s;
245
Boris Brezillon9a59dfd2020-04-29 09:53:47 -0700246 /*
247 * fetch <mtd-id>. We use strrchr to ignore all ':' that could
248 * be present in the MTD name, only the last one is interpreted
249 * as an <mtd-id>/<part-definition> separator.
250 */
251 p = strrchr(s, ':');
252
253 /* Restore the ';' now. */
254 if (semicol)
255 *semicol = ';';
256
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300257 if (!p) {
Brian Norrisecb43e02015-06-19 13:10:07 -0700258 pr_err("no mtd-id\n");
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300259 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261 mtd_id_len = p - mtd_id;
262
263 dbg(("parsing <%s>\n", p+1));
264
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000265 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * parse one mtd. have it reserve memory for the
267 * struct cmdline_mtd_partition and the mtd-id string.
268 */
269 parts = newpart(p + 1, /* cmdline */
270 &s, /* out: updated cmdline ptr */
271 &num_parts, /* out: number of parts */
272 0, /* first partition */
273 (unsigned char**)&this_mtd, /* out: extra mem */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000274 mtd_id_len + 1 + sizeof(*this_mtd) +
Joern Engelbe76c5f2005-06-07 16:04:29 +0100275 sizeof(void*)-1 /*alignment*/);
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300276 if (IS_ERR(parts)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
278 * An error occurred. We're either:
279 * a) out of memory, or
280 * b) in the middle of the partition spec
281 * Either way, this mtd is hosed and we're
282 * unlikely to succeed in parsing any more
283 */
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300284 return PTR_ERR(parts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
Joern Engelbe76c5f2005-06-07 16:04:29 +0100287 /* align this_mtd */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000288 this_mtd = (struct cmdline_mtd_partition *)
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300289 ALIGN((unsigned long)this_mtd, sizeof(void *));
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000290 /* enter results */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 this_mtd->parts = parts;
292 this_mtd->num_parts = num_parts;
293 this_mtd->mtd_id = (char*)(this_mtd + 1);
294 strlcpy(this_mtd->mtd_id, mtd_id, mtd_id_len + 1);
295
296 /* link into chain */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000297 this_mtd->next = partitions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 partitions = this_mtd;
299
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000300 dbg(("mtdid=<%s> num_parts=<%d>\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 this_mtd->mtd_id, this_mtd->num_parts));
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* EOS - we're done */
305 if (*s == 0)
306 break;
307
308 /* does another spec follow? */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300309 if (*s != ';') {
Brian Norrisecb43e02015-06-19 13:10:07 -0700310 pr_err("bad character after partition (%c)\n", *s);
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313 s++;
314 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300315
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319/*
320 * Main function to be called from the MTD mapping driver/device to
321 * obtain the partitioning information. At this point the command line
322 * arguments will actually be parsed and turned to struct mtd_partition
323 * information. It returns partitions for the requested mtd device, or
324 * the first one in the chain if a NULL mtd_id is passed in.
325 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000326static int parse_cmdline_partitions(struct mtd_info *master,
Brian Norrisb9adf462015-12-04 15:25:14 -0800327 const struct mtd_partition **pparts,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400328 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Huang Shijie6f9f59e2012-11-01 13:58:17 +0800330 unsigned long long offset;
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300331 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 struct cmdline_mtd_partition *part;
David Howells36560d22008-07-08 17:09:03 +0100333 const char *mtd_id = master->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /* parse command line */
Artem Bityutskiy9e0606f2012-09-02 13:54:14 +0300336 if (!cmdline_parsed) {
337 err = mtdpart_setup_real(cmdline);
338 if (err)
339 return err;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200342 /*
343 * Search for the partition definition matching master->name.
344 * If master->name is not set, stop at first partition definition.
345 */
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300346 for (part = partitions; part; part = part->next) {
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200347 if ((!mtd_id) || (!strcmp(part->mtd_id, mtd_id)))
348 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Artem Bityutskiyfac00772012-09-03 09:33:32 +0300350
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200351 if (!part)
352 return 0;
353
354 for (i = 0, offset = 0; i < part->num_parts; i++) {
355 if (part->parts[i].offset == OFFSET_CONTINUOUS)
356 part->parts[i].offset = offset;
357 else
358 offset = part->parts[i].offset;
359
360 if (part->parts[i].size == SIZE_REMAINING)
361 part->parts[i].size = master->size - offset;
362
Christopher Cordahiebf4f072012-12-16 19:59:30 -0500363 if (offset + part->parts[i].size > master->size) {
Brian Norrisecb43e02015-06-19 13:10:07 -0700364 pr_warn("%s: partitioning exceeds flash size, truncating\n",
365 part->mtd_id);
Christopher Cordahiebf4f072012-12-16 19:59:30 -0500366 part->parts[i].size = master->size - offset;
367 }
368 offset += part->parts[i].size;
369
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200370 if (part->parts[i].size == 0) {
Brian Norrisecb43e02015-06-19 13:10:07 -0700371 pr_warn("%s: skipping zero sized partition\n",
372 part->mtd_id);
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200373 part->num_parts--;
374 memmove(&part->parts[i], &part->parts[i + 1],
375 sizeof(*part->parts) * (part->num_parts - i));
Christopher Cordahie25e0a42012-12-16 19:59:29 -0500376 i--;
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200377 }
Shmulik Ladkani438db5a2012-09-23 09:52:29 +0200378 }
379
380 *pparts = kmemdup(part->parts, sizeof(*part->parts) * part->num_parts,
381 GFP_KERNEL);
382 if (!*pparts)
383 return -ENOMEM;
384
385 return part->num_parts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000389/*
390 * This is the handler for our kernel parameter, called from
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 * main.c::checksetup(). Note that we can not yet kmalloc() anything,
392 * so we only save the commandline for later processing.
393 *
394 * This function needs to be visible for bootloaders.
395 */
Lubomir Rintelf5f172d2013-01-16 02:12:49 +0100396static int __init mtdpart_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 cmdline = s;
399 return 1;
400}
401
402__setup("mtdparts=", mtdpart_setup);
403
404static struct mtd_part_parser cmdline_parser = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .parse_fn = parse_cmdline_partitions,
406 .name = "cmdlinepart",
407};
408
409static int __init cmdline_parser_init(void)
410{
Lubomir Rintelf5f172d2013-01-16 02:12:49 +0100411 if (mtdparts)
412 mtdpart_setup(mtdparts);
Axel Lin6e14a612013-12-01 19:01:06 +0800413 register_mtd_parser(&cmdline_parser);
414 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Lubomir Rintel422f3892013-01-16 02:12:50 +0100417static void __exit cmdline_parser_exit(void)
418{
419 deregister_mtd_parser(&cmdline_parser);
420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422module_init(cmdline_parser_init);
Lubomir Rintel422f3892013-01-16 02:12:50 +0100423module_exit(cmdline_parser_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Lubomir Rintelf5f172d2013-01-16 02:12:49 +0100425MODULE_PARM_DESC(mtdparts, "Partitioning specification");
426module_param(mtdparts, charp, 0);
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428MODULE_LICENSE("GPL");
429MODULE_AUTHOR("Marius Groeger <mag@sysgo.de>");
430MODULE_DESCRIPTION("Command line configuration of MTD partitions");