blob: fbe2c8a22e1c3a61609895428c7265141af25b1e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Simple MTD partitioning layer
3 *
David Woodhousea1452a32010-08-08 20:58:20 +01004 * Copyright © 2000 Nicolas Pitre <nico@fluxnic.net>
5 * Copyright © 2002 Thomas Gleixner <gleixner@linutronix.de>
6 * Copyright © 2000-2010 David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
David Woodhousea1452a32010-08-08 20:58:20 +01008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
David Woodhousea1452a32010-08-08 20:58:20 +010013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 *
Thomas Gleixner97894cd2005-11-07 11:15:26 +000022 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <linux/module.h>
25#include <linux/types.h>
26#include <linux/kernel.h>
27#include <linux/slab.h>
28#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kmod.h>
30#include <linux/mtd/mtd.h>
31#include <linux/mtd/partitions.h>
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +030032#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jamie Ileseea72d52011-05-23 10:23:42 +010034#include "mtdcore.h"
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* Our partition linked list */
37static LIST_HEAD(mtd_partitions);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +030038static DEFINE_MUTEX(mtd_partitions_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* Our partition node structure */
41struct mtd_part {
42 struct mtd_info mtd;
43 struct mtd_info *master;
Adrian Hunter69423d92008-12-10 13:37:21 +000044 uint64_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
48/*
49 * Given a pointer to the MTD object in the mtd_part structure, we can retrieve
50 * the pointer to that structure with this macro.
51 */
52#define PART(x) ((struct mtd_part *)(x))
53
Thomas Gleixner97894cd2005-11-07 11:15:26 +000054
55/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * MTD methods which simply translate the effective address and pass through
57 * to the _real_ device.
58 */
59
Atsushi Nemotob33a2882008-07-19 01:00:33 +090060static int part_read(struct mtd_info *mtd, loff_t from, size_t len,
61 size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 struct mtd_part *part = PART(mtd);
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020064 struct mtd_ecc_stats stats;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020065 int res;
66
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020067 stats = part->master->ecc_stats;
Artem Bityutskiy329ad392011-12-23 17:30:16 +020068 res = mtd_read(part->master, from + part->offset, len, retlen, buf);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020069 if (unlikely(res)) {
Brian Norrisd57f40542011-09-20 18:34:25 -070070 if (mtd_is_bitflip(res))
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020071 mtd->ecc_stats.corrected += part->master->ecc_stats.corrected - stats.corrected;
Brian Norrisd57f40542011-09-20 18:34:25 -070072 if (mtd_is_eccerr(res))
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020073 mtd->ecc_stats.failed += part->master->ecc_stats.failed - stats.failed;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020074 }
75 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Atsushi Nemotob33a2882008-07-19 01:00:33 +090078static int part_point(struct mtd_info *mtd, loff_t from, size_t len,
79 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 struct mtd_part *part = PART(mtd);
Artem Bityutskiy5def4892012-02-03 16:23:52 +020082
Artem Bityutskiyd35ea202011-12-23 17:00:37 +020083 return mtd_point(part->master, from + part->offset, len, retlen,
84 virt, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
Thomas Gleixner9223a452006-05-23 17:21:03 +020086
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020087static int part_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 struct mtd_part *part = PART(mtd);
90
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020091 return mtd_unpoint(part->master, from + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
David Howells402d3262009-02-12 10:40:00 +000094static unsigned long part_get_unmapped_area(struct mtd_info *mtd,
95 unsigned long len,
96 unsigned long offset,
97 unsigned long flags)
98{
99 struct mtd_part *part = PART(mtd);
100
101 offset += part->offset;
Artem Bityutskiy04c601b2011-12-23 17:10:15 +0200102 return mtd_get_unmapped_area(part->master, len, offset, flags);
David Howells402d3262009-02-12 10:40:00 +0000103}
104
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200105static int part_read_oob(struct mtd_info *mtd, loff_t from,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900106 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 struct mtd_part *part = PART(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200109 int res;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (from >= mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200112 return -EINVAL;
Vitaly Wool70145682006-11-03 18:20:38 +0300113 if (ops->datbuf && from + ops->len > mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200114 return -EINVAL;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200115
Artem Bityutskiy154bf892011-01-16 17:50:54 +0200116 /*
117 * If OOB is also requested, make sure that we do not read past the end
118 * of this partition.
119 */
120 if (ops->oobbuf) {
121 size_t len, pages;
122
Brian Norris0612b9d2011-08-30 18:45:40 -0700123 if (ops->mode == MTD_OPS_AUTO_OOB)
Artem Bityutskiy154bf892011-01-16 17:50:54 +0200124 len = mtd->oobavail;
125 else
126 len = mtd->oobsize;
127 pages = mtd_div_by_ws(mtd->size, mtd);
128 pages -= mtd_div_by_ws(from, mtd);
129 if (ops->ooboffs + ops->ooblen > pages * len)
130 return -EINVAL;
131 }
132
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200133 res = mtd_read_oob(part->master, from + part->offset, ops);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200134 if (unlikely(res)) {
Brian Norrisd57f40542011-09-20 18:34:25 -0700135 if (mtd_is_bitflip(res))
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200136 mtd->ecc_stats.corrected++;
Brian Norrisd57f40542011-09-20 18:34:25 -0700137 if (mtd_is_eccerr(res))
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200138 mtd->ecc_stats.failed++;
139 }
140 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900143static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
144 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct mtd_part *part = PART(mtd);
Artem Bityutskiy4ea1cab2011-12-23 18:47:59 +0200147 return mtd_read_user_prot_reg(part->master, from, len, retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900150static int part_get_user_prot_info(struct mtd_info *mtd,
151 struct otp_info *buf, size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000152{
153 struct mtd_part *part = PART(mtd);
Artem Bityutskiy855e5d82011-12-23 18:45:11 +0200154 return mtd_get_user_prot_info(part->master, buf, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000155}
156
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900157static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
158 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 struct mtd_part *part = PART(mtd);
Artem Bityutskiyd264f722011-12-23 18:40:06 +0200161 return mtd_read_fact_prot_reg(part->master, from, len, retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900164static int part_get_fact_prot_info(struct mtd_info *mtd, struct otp_info *buf,
165 size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000166{
167 struct mtd_part *part = PART(mtd);
Artem Bityutskiya750b5c2011-12-23 18:33:28 +0200168 return mtd_get_fact_prot_info(part->master, buf, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000169}
170
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900171static int part_write(struct mtd_info *mtd, loff_t to, size_t len,
172 size_t *retlen, const u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 struct mtd_part *part = PART(mtd);
175 if (!(mtd->flags & MTD_WRITEABLE))
176 return -EROFS;
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200177 return mtd_write(part->master, to + part->offset, len, retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900180static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
181 size_t *retlen, const u_char *buf)
Richard Purdie388bbb02008-02-06 10:17:15 +0000182{
183 struct mtd_part *part = PART(mtd);
184 if (!(mtd->flags & MTD_WRITEABLE))
185 return -EROFS;
Artem Bityutskiy7ae79d72011-12-23 18:03:17 +0200186 return mtd_panic_write(part->master, to + part->offset, len, retlen,
187 buf);
Richard Purdie388bbb02008-02-06 10:17:15 +0000188}
189
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200190static int part_write_oob(struct mtd_info *mtd, loff_t to,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900191 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct mtd_part *part = PART(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (!(mtd->flags & MTD_WRITEABLE))
196 return -EROFS;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (to >= mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200199 return -EINVAL;
Vitaly Wool70145682006-11-03 18:20:38 +0300200 if (ops->datbuf && to + ops->len > mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200201 return -EINVAL;
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200202 return mtd_write_oob(part->master, to + part->offset, ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900205static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
206 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 struct mtd_part *part = PART(mtd);
Artem Bityutskiy482b43a2011-12-23 18:50:04 +0200209 return mtd_write_user_prot_reg(part->master, from, len, retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900212static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
213 size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000214{
215 struct mtd_part *part = PART(mtd);
Artem Bityutskiy4403dbfb2011-12-23 18:55:49 +0200216 return mtd_lock_user_prot_reg(part->master, from, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000217}
218
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900219static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
220 unsigned long count, loff_t to, size_t *retlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 struct mtd_part *part = PART(mtd);
223 if (!(mtd->flags & MTD_WRITEABLE))
224 return -EROFS;
Artem Bityutskiyb0a31f72011-12-23 18:59:12 +0200225 return mtd_writev(part->master, vecs, count, to + part->offset,
226 retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900229static int part_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 struct mtd_part *part = PART(mtd);
232 int ret;
233 if (!(mtd->flags & MTD_WRITEABLE))
234 return -EROFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 instr->addr += part->offset;
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +0200236 ret = mtd_erase(part->master, instr);
Adrian Hunter74641d72007-03-08 12:20:12 +0200237 if (ret) {
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300238 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Adrian Hunter74641d72007-03-08 12:20:12 +0200239 instr->fail_addr -= part->offset;
240 instr->addr -= part->offset;
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return ret;
243}
244
245void mtd_erase_callback(struct erase_info *instr)
246{
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200247 if (instr->mtd->_erase == part_erase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 struct mtd_part *part = PART(instr->mtd);
249
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300250 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 instr->fail_addr -= part->offset;
252 instr->addr -= part->offset;
253 }
254 if (instr->callback)
255 instr->callback(instr);
256}
257EXPORT_SYMBOL_GPL(mtd_erase_callback);
258
Adrian Hunter69423d92008-12-10 13:37:21 +0000259static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 struct mtd_part *part = PART(mtd);
Artem Bityutskiy7799f9a2011-12-23 19:15:39 +0200262 return mtd_lock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Adrian Hunter69423d92008-12-10 13:37:21 +0000265static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct mtd_part *part = PART(mtd);
Artem Bityutskiyb66005c2011-12-23 19:18:22 +0200268 return mtd_unlock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Richard Cochran99384242010-06-14 18:10:33 +0200271static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
272{
273 struct mtd_part *part = PART(mtd);
Artem Bityutskiye95e9782011-12-23 19:21:16 +0200274 return mtd_is_locked(part->master, ofs + part->offset, len);
Richard Cochran99384242010-06-14 18:10:33 +0200275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static void part_sync(struct mtd_info *mtd)
278{
279 struct mtd_part *part = PART(mtd);
Artem Bityutskiy85f2f2a2011-12-23 19:03:12 +0200280 mtd_sync(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283static int part_suspend(struct mtd_info *mtd)
284{
285 struct mtd_part *part = PART(mtd);
Artem Bityutskiy3fe4bae2011-12-23 19:25:16 +0200286 return mtd_suspend(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289static void part_resume(struct mtd_info *mtd)
290{
291 struct mtd_part *part = PART(mtd);
Artem Bityutskiyead995f2011-12-23 19:31:25 +0200292 mtd_resume(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900295static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct mtd_part *part = PART(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 ofs += part->offset;
Artem Bityutskiy7086c192011-12-23 19:35:30 +0200299 return mtd_block_isbad(part->master, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900302static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct mtd_part *part = PART(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200305 int res;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!(mtd->flags & MTD_WRITEABLE))
308 return -EROFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 ofs += part->offset;
Artem Bityutskiy5942ddb2011-12-23 19:37:38 +0200310 res = mtd_block_markbad(part->master, ofs);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200311 if (!res)
312 mtd->ecc_stats.badblocks++;
313 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300316static inline void free_partition(struct mtd_part *p)
317{
318 kfree(p->mtd.name);
319 kfree(p);
320}
321
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000322/*
323 * This function unregisters and destroy all slave MTD objects which are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * attached to the given master MTD object.
325 */
326
327int del_mtd_partitions(struct mtd_info *master)
328{
Chris Malley71a928c2008-05-19 20:11:50 +0100329 struct mtd_part *slave, *next;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300330 int ret, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300332 mutex_lock(&mtd_partitions_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100333 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (slave->master == master) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300335 ret = del_mtd_device(&slave->mtd);
336 if (ret < 0) {
337 err = ret;
338 continue;
339 }
Chris Malley71a928c2008-05-19 20:11:50 +0100340 list_del(&slave->list);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300341 free_partition(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300343 mutex_unlock(&mtd_partitions_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300345 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300348static struct mtd_part *allocate_partition(struct mtd_info *master,
349 const struct mtd_partition *part, int partno,
350 uint64_t cur_offset)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900351{
352 struct mtd_part *slave;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300353 char *name;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900354
355 /* allocate the partition structure */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900356 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300357 name = kstrdup(part->name, GFP_KERNEL);
358 if (!name || !slave) {
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900359 printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300360 master->name);
361 kfree(name);
362 kfree(slave);
363 return ERR_PTR(-ENOMEM);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900364 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900365
366 /* set up the MTD object for this partition */
367 slave->mtd.type = master->type;
368 slave->mtd.flags = master->flags & ~part->mask_flags;
369 slave->mtd.size = part->size;
370 slave->mtd.writesize = master->writesize;
Anatolij Gustschin7fa33ac2010-12-16 23:42:18 +0100371 slave->mtd.writebufsize = master->writebufsize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900372 slave->mtd.oobsize = master->oobsize;
373 slave->mtd.oobavail = master->oobavail;
374 slave->mtd.subpage_sft = master->subpage_sft;
375
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300376 slave->mtd.name = name;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900377 slave->mtd.owner = master->owner;
David Howells402d3262009-02-12 10:40:00 +0000378 slave->mtd.backing_dev_info = master->backing_dev_info;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900379
David Brownell1f24b5a2009-03-26 00:42:41 -0700380 /* NOTE: we don't arrange MTDs as a tree; it'd be error-prone
381 * to have the same data be in two different partitions.
382 */
383 slave->mtd.dev.parent = master->dev.parent;
384
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200385 slave->mtd._read = part_read;
386 slave->mtd._write = part_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900387
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200388 if (master->_panic_write)
389 slave->mtd._panic_write = part_panic_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900390
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200391 if (master->_point && master->_unpoint) {
392 slave->mtd._point = part_point;
393 slave->mtd._unpoint = part_unpoint;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900394 }
395
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200396 if (master->_get_unmapped_area)
397 slave->mtd._get_unmapped_area = part_get_unmapped_area;
398 if (master->_read_oob)
399 slave->mtd._read_oob = part_read_oob;
400 if (master->_write_oob)
401 slave->mtd._write_oob = part_write_oob;
402 if (master->_read_user_prot_reg)
403 slave->mtd._read_user_prot_reg = part_read_user_prot_reg;
404 if (master->_read_fact_prot_reg)
405 slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg;
406 if (master->_write_user_prot_reg)
407 slave->mtd._write_user_prot_reg = part_write_user_prot_reg;
408 if (master->_lock_user_prot_reg)
409 slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg;
410 if (master->_get_user_prot_info)
411 slave->mtd._get_user_prot_info = part_get_user_prot_info;
412 if (master->_get_fact_prot_info)
413 slave->mtd._get_fact_prot_info = part_get_fact_prot_info;
414 if (master->_sync)
415 slave->mtd._sync = part_sync;
416 if (!partno && !master->dev.class && master->_suspend &&
417 master->_resume) {
418 slave->mtd._suspend = part_suspend;
419 slave->mtd._resume = part_resume;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900420 }
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200421 if (master->_writev)
422 slave->mtd._writev = part_writev;
423 if (master->_lock)
424 slave->mtd._lock = part_lock;
425 if (master->_unlock)
426 slave->mtd._unlock = part_unlock;
427 if (master->_is_locked)
428 slave->mtd._is_locked = part_is_locked;
429 if (master->_block_isbad)
430 slave->mtd._block_isbad = part_block_isbad;
431 if (master->_block_markbad)
432 slave->mtd._block_markbad = part_block_markbad;
433 slave->mtd._erase = part_erase;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900434 slave->master = master;
435 slave->offset = part->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900436
437 if (slave->offset == MTDPART_OFS_APPEND)
438 slave->offset = cur_offset;
439 if (slave->offset == MTDPART_OFS_NXTBLK) {
440 slave->offset = cur_offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000441 if (mtd_mod_by_eb(cur_offset, master) != 0) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900442 /* Round up to next erasesize */
Adrian Hunter69423d92008-12-10 13:37:21 +0000443 slave->offset = (mtd_div_by_eb(cur_offset, master) + 1) * master->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900444 printk(KERN_NOTICE "Moving partition %d: "
Adrian Hunter69423d92008-12-10 13:37:21 +0000445 "0x%012llx -> 0x%012llx\n", partno,
446 (unsigned long long)cur_offset, (unsigned long long)slave->offset);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900447 }
448 }
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400449 if (slave->offset == MTDPART_OFS_RETAIN) {
450 slave->offset = cur_offset;
451 if (master->size - slave->offset >= slave->mtd.size) {
452 slave->mtd.size = master->size - slave->offset
453 - slave->mtd.size;
454 } else {
455 printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n",
456 part->name, master->size - slave->offset,
457 slave->mtd.size);
458 /* register to preserve ordering */
459 goto out_register;
460 }
461 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900462 if (slave->mtd.size == MTDPART_SIZ_FULL)
463 slave->mtd.size = master->size - slave->offset;
464
Adrian Hunter69423d92008-12-10 13:37:21 +0000465 printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset,
466 (unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900467
468 /* let's do some sanity checks */
469 if (slave->offset >= master->size) {
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900470 /* let's register it anyway to preserve ordering */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900471 slave->offset = 0;
472 slave->mtd.size = 0;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900473 printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900474 part->name);
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900475 goto out_register;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900476 }
477 if (slave->offset + slave->mtd.size > master->size) {
478 slave->mtd.size = master->size - slave->offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000479 printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n",
480 part->name, master->name, (unsigned long long)slave->mtd.size);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900481 }
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900482 if (master->numeraseregions > 1) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900483 /* Deal with variable erase size stuff */
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900484 int i, max = master->numeraseregions;
Adrian Hunter69423d92008-12-10 13:37:21 +0000485 u64 end = slave->offset + slave->mtd.size;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900486 struct mtd_erase_region_info *regions = master->eraseregions;
487
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900488 /* Find the first erase regions which is part of this
489 * partition. */
490 for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900491 ;
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900492 /* The loop searched for the region _behind_ the first one */
Roel Kluina57ca042009-09-18 12:51:50 -0700493 if (i > 0)
494 i--;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900495
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900496 /* Pick biggest erasesize */
497 for (; i < max && regions[i].offset < end; i++) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900498 if (slave->mtd.erasesize < regions[i].erasesize) {
499 slave->mtd.erasesize = regions[i].erasesize;
500 }
501 }
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900502 BUG_ON(slave->mtd.erasesize == 0);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900503 } else {
504 /* Single erase size */
505 slave->mtd.erasesize = master->erasesize;
506 }
507
508 if ((slave->mtd.flags & MTD_WRITEABLE) &&
Adrian Hunter69423d92008-12-10 13:37:21 +0000509 mtd_mod_by_eb(slave->offset, &slave->mtd)) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900510 /* Doesn't start on a boundary of major erase size */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900511 /* FIXME: Let it be writable if it is on a boundary of
512 * _minor_ erase size though */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900513 slave->mtd.flags &= ~MTD_WRITEABLE;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900514 printk(KERN_WARNING"mtd: partition \"%s\" doesn't start on an erase block boundary -- force read-only\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900515 part->name);
516 }
517 if ((slave->mtd.flags & MTD_WRITEABLE) &&
Adrian Hunter69423d92008-12-10 13:37:21 +0000518 mtd_mod_by_eb(slave->mtd.size, &slave->mtd)) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900519 slave->mtd.flags &= ~MTD_WRITEABLE;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900520 printk(KERN_WARNING"mtd: partition \"%s\" doesn't end on an erase block -- force read-only\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900521 part->name);
522 }
523
524 slave->mtd.ecclayout = master->ecclayout;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200525 if (master->_block_isbad) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000526 uint64_t offs = 0;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900527
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900528 while (offs < slave->mtd.size) {
Artem Bityutskiy7086c192011-12-23 19:35:30 +0200529 if (mtd_block_isbad(master, offs + slave->offset))
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900530 slave->mtd.ecc_stats.badblocks++;
531 offs += slave->mtd.erasesize;
532 }
533 }
534
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900535out_register:
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900536 return slave;
537}
538
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300539int mtd_add_partition(struct mtd_info *master, char *name,
540 long long offset, long long length)
541{
542 struct mtd_partition part;
543 struct mtd_part *p, *new;
544 uint64_t start, end;
545 int ret = 0;
546
547 /* the direct offset is expected */
548 if (offset == MTDPART_OFS_APPEND ||
549 offset == MTDPART_OFS_NXTBLK)
550 return -EINVAL;
551
552 if (length == MTDPART_SIZ_FULL)
553 length = master->size - offset;
554
555 if (length <= 0)
556 return -EINVAL;
557
558 part.name = name;
559 part.size = length;
560 part.offset = offset;
561 part.mask_flags = 0;
562 part.ecclayout = NULL;
563
564 new = allocate_partition(master, &part, -1, offset);
565 if (IS_ERR(new))
566 return PTR_ERR(new);
567
568 start = offset;
569 end = offset + length;
570
571 mutex_lock(&mtd_partitions_mutex);
572 list_for_each_entry(p, &mtd_partitions, list)
573 if (p->master == master) {
574 if ((start >= p->offset) &&
575 (start < (p->offset + p->mtd.size)))
576 goto err_inv;
577
578 if ((end >= p->offset) &&
579 (end < (p->offset + p->mtd.size)))
580 goto err_inv;
581 }
582
583 list_add(&new->list, &mtd_partitions);
584 mutex_unlock(&mtd_partitions_mutex);
585
586 add_mtd_device(&new->mtd);
587
588 return ret;
589err_inv:
590 mutex_unlock(&mtd_partitions_mutex);
591 free_partition(new);
592 return -EINVAL;
593}
594EXPORT_SYMBOL_GPL(mtd_add_partition);
595
596int mtd_del_partition(struct mtd_info *master, int partno)
597{
598 struct mtd_part *slave, *next;
599 int ret = -EINVAL;
600
601 mutex_lock(&mtd_partitions_mutex);
602 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
603 if ((slave->master == master) &&
604 (slave->mtd.index == partno)) {
605 ret = del_mtd_device(&slave->mtd);
606 if (ret < 0)
607 break;
608
609 list_del(&slave->list);
610 free_partition(slave);
611 break;
612 }
613 mutex_unlock(&mtd_partitions_mutex);
614
615 return ret;
616}
617EXPORT_SYMBOL_GPL(mtd_del_partition);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/*
620 * This function, given a master MTD object and a partition table, creates
621 * and registers slave MTD objects which are bound to the master according to
622 * the partition definitions.
David Brownell1f24b5a2009-03-26 00:42:41 -0700623 *
624 * We don't register the master, or expect the caller to have done so,
625 * for reasons of data integrity.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 */
627
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000628int add_mtd_partitions(struct mtd_info *master,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 const struct mtd_partition *parts,
630 int nbparts)
631{
632 struct mtd_part *slave;
Adrian Hunter69423d92008-12-10 13:37:21 +0000633 uint64_t cur_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 int i;
635
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900636 printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 for (i = 0; i < nbparts; i++) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300639 slave = allocate_partition(master, parts + i, i, cur_offset);
640 if (IS_ERR(slave))
641 return PTR_ERR(slave);
642
643 mutex_lock(&mtd_partitions_mutex);
644 list_add(&slave->list, &mtd_partitions);
645 mutex_unlock(&mtd_partitions_mutex);
646
647 add_mtd_device(&slave->mtd);
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 cur_offset = slave->offset + slave->mtd.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
652 return 0;
653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655static DEFINE_SPINLOCK(part_parser_lock);
656static LIST_HEAD(part_parsers);
657
658static struct mtd_part_parser *get_partition_parser(const char *name)
659{
Chris Malley71a928c2008-05-19 20:11:50 +0100660 struct mtd_part_parser *p, *ret = NULL;
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 spin_lock(&part_parser_lock);
663
Chris Malley71a928c2008-05-19 20:11:50 +0100664 list_for_each_entry(p, &part_parsers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (!strcmp(p->name, name) && try_module_get(p->owner)) {
666 ret = p;
667 break;
668 }
Chris Malley71a928c2008-05-19 20:11:50 +0100669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 spin_unlock(&part_parser_lock);
671
672 return ret;
673}
674
Dmitry Eremin-Solenikov953b3bd2011-06-23 15:26:14 +0400675#define put_partition_parser(p) do { module_put((p)->owner); } while (0)
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677int register_mtd_parser(struct mtd_part_parser *p)
678{
679 spin_lock(&part_parser_lock);
680 list_add(&p->list, &part_parsers);
681 spin_unlock(&part_parser_lock);
682
683 return 0;
684}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900685EXPORT_SYMBOL_GPL(register_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687int deregister_mtd_parser(struct mtd_part_parser *p)
688{
689 spin_lock(&part_parser_lock);
690 list_del(&p->list);
691 spin_unlock(&part_parser_lock);
692 return 0;
693}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900694EXPORT_SYMBOL_GPL(deregister_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300696/*
697 * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you
698 * are changing this array!
699 */
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400700static const char *default_mtd_part_types[] = {
701 "cmdlinepart",
702 "ofpart",
703 NULL
704};
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400705
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300706/**
707 * parse_mtd_partitions - parse MTD partitions
708 * @master: the master partition (describes whole MTD device)
709 * @types: names of partition parsers to try or %NULL
710 * @pparts: array of partitions found is returned here
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400711 * @data: MTD partition parser-specific data
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300712 *
713 * This function tries to find partition on MTD device @master. It uses MTD
714 * partition parsers, specified in @types. However, if @types is %NULL, then
715 * the default list of parsers is used. The default list contains only the
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400716 * "cmdlinepart" and "ofpart" parsers ATM.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300717 *
718 * This function may return:
719 * o a negative error code in case of failure
720 * o zero if no partitions were found
721 * o a positive number of found partitions, in which case on exit @pparts will
722 * point to an array containing this number of &struct mtd_info objects.
723 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000724int parse_mtd_partitions(struct mtd_info *master, const char **types,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400725 struct mtd_partition **pparts,
726 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 struct mtd_part_parser *parser;
729 int ret = 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000730
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400731 if (!types)
732 types = default_mtd_part_types;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 for ( ; ret <= 0 && *types; types++) {
735 parser = get_partition_parser(*types);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (!parser && !request_module("%s", *types))
Stefan Roese58edc902012-01-25 11:24:36 +0100737 parser = get_partition_parser(*types);
Artem Bityutskiy7c802fb2011-05-17 11:13:17 +0300738 if (!parser)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 continue;
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400740 ret = (*parser->parse_fn)(master, pparts, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (ret > 0) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000742 printk(KERN_NOTICE "%d %s partitions found on MTD device %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 ret, parser->name, master->name);
744 }
745 put_partition_parser(parser);
746 }
747 return ret;
748}
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300749
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200750int mtd_is_partition(struct mtd_info *mtd)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300751{
752 struct mtd_part *part;
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200753 int ispart = 0;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300754
755 mutex_lock(&mtd_partitions_mutex);
756 list_for_each_entry(part, &mtd_partitions, list)
757 if (&part->mtd == mtd) {
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200758 ispart = 1;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300759 break;
760 }
761 mutex_unlock(&mtd_partitions_mutex);
762
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200763 return ispart;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300764}
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200765EXPORT_SYMBOL_GPL(mtd_is_partition);