blob: 33d32c6f4f580e83947a9fb056fa8cb3b4a76e82 [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);
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200175 return mtd_write(part->master, to + part->offset, len, retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900178static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
179 size_t *retlen, const u_char *buf)
Richard Purdie388bbb02008-02-06 10:17:15 +0000180{
181 struct mtd_part *part = PART(mtd);
Artem Bityutskiy7ae79d72011-12-23 18:03:17 +0200182 return mtd_panic_write(part->master, to + part->offset, len, retlen,
183 buf);
Richard Purdie388bbb02008-02-06 10:17:15 +0000184}
185
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200186static int part_write_oob(struct mtd_info *mtd, loff_t to,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900187 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 struct mtd_part *part = PART(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (to >= mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200192 return -EINVAL;
Vitaly Wool70145682006-11-03 18:20:38 +0300193 if (ops->datbuf && to + ops->len > mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200194 return -EINVAL;
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200195 return mtd_write_oob(part->master, to + part->offset, ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900198static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
199 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 struct mtd_part *part = PART(mtd);
Artem Bityutskiy482b43a2011-12-23 18:50:04 +0200202 return mtd_write_user_prot_reg(part->master, from, len, retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900205static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
206 size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000207{
208 struct mtd_part *part = PART(mtd);
Artem Bityutskiy4403dbfb2011-12-23 18:55:49 +0200209 return mtd_lock_user_prot_reg(part->master, from, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000210}
211
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900212static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
213 unsigned long count, loff_t to, size_t *retlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 struct mtd_part *part = PART(mtd);
Artem Bityutskiyb0a31f72011-12-23 18:59:12 +0200216 return mtd_writev(part->master, vecs, count, to + part->offset,
217 retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900220static int part_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 struct mtd_part *part = PART(mtd);
223 int ret;
Artem Bityutskiy664addc2012-02-03 18:13:23 +0200224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 instr->addr += part->offset;
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +0200226 ret = mtd_erase(part->master, instr);
Adrian Hunter74641d72007-03-08 12:20:12 +0200227 if (ret) {
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300228 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Adrian Hunter74641d72007-03-08 12:20:12 +0200229 instr->fail_addr -= part->offset;
230 instr->addr -= part->offset;
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return ret;
233}
234
235void mtd_erase_callback(struct erase_info *instr)
236{
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200237 if (instr->mtd->_erase == part_erase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 struct mtd_part *part = PART(instr->mtd);
239
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300240 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 instr->fail_addr -= part->offset;
242 instr->addr -= part->offset;
243 }
244 if (instr->callback)
245 instr->callback(instr);
246}
247EXPORT_SYMBOL_GPL(mtd_erase_callback);
248
Adrian Hunter69423d92008-12-10 13:37:21 +0000249static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 struct mtd_part *part = PART(mtd);
Artem Bityutskiy7799f9a2011-12-23 19:15:39 +0200252 return mtd_lock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Adrian Hunter69423d92008-12-10 13:37:21 +0000255static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct mtd_part *part = PART(mtd);
Artem Bityutskiyb66005c2011-12-23 19:18:22 +0200258 return mtd_unlock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Richard Cochran99384242010-06-14 18:10:33 +0200261static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
262{
263 struct mtd_part *part = PART(mtd);
Artem Bityutskiye95e9782011-12-23 19:21:16 +0200264 return mtd_is_locked(part->master, ofs + part->offset, len);
Richard Cochran99384242010-06-14 18:10:33 +0200265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267static void part_sync(struct mtd_info *mtd)
268{
269 struct mtd_part *part = PART(mtd);
Artem Bityutskiy85f2f2a2011-12-23 19:03:12 +0200270 mtd_sync(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273static int part_suspend(struct mtd_info *mtd)
274{
275 struct mtd_part *part = PART(mtd);
Artem Bityutskiy3fe4bae2011-12-23 19:25:16 +0200276 return mtd_suspend(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279static void part_resume(struct mtd_info *mtd)
280{
281 struct mtd_part *part = PART(mtd);
Artem Bityutskiyead995f2011-12-23 19:31:25 +0200282 mtd_resume(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900285static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 struct mtd_part *part = PART(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 ofs += part->offset;
Artem Bityutskiy7086c192011-12-23 19:35:30 +0200289 return mtd_block_isbad(part->master, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900292static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 struct mtd_part *part = PART(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200295 int res;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 ofs += part->offset;
Artem Bityutskiy5942ddb2011-12-23 19:37:38 +0200298 res = mtd_block_markbad(part->master, ofs);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200299 if (!res)
300 mtd->ecc_stats.badblocks++;
301 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300304static inline void free_partition(struct mtd_part *p)
305{
306 kfree(p->mtd.name);
307 kfree(p);
308}
309
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000310/*
311 * This function unregisters and destroy all slave MTD objects which are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * attached to the given master MTD object.
313 */
314
315int del_mtd_partitions(struct mtd_info *master)
316{
Chris Malley71a928c2008-05-19 20:11:50 +0100317 struct mtd_part *slave, *next;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300318 int ret, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300320 mutex_lock(&mtd_partitions_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100321 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (slave->master == master) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300323 ret = del_mtd_device(&slave->mtd);
324 if (ret < 0) {
325 err = ret;
326 continue;
327 }
Chris Malley71a928c2008-05-19 20:11:50 +0100328 list_del(&slave->list);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300329 free_partition(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300331 mutex_unlock(&mtd_partitions_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300333 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300336static struct mtd_part *allocate_partition(struct mtd_info *master,
337 const struct mtd_partition *part, int partno,
338 uint64_t cur_offset)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900339{
340 struct mtd_part *slave;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300341 char *name;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900342
343 /* allocate the partition structure */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900344 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300345 name = kstrdup(part->name, GFP_KERNEL);
346 if (!name || !slave) {
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900347 printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300348 master->name);
349 kfree(name);
350 kfree(slave);
351 return ERR_PTR(-ENOMEM);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900352 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900353
354 /* set up the MTD object for this partition */
355 slave->mtd.type = master->type;
356 slave->mtd.flags = master->flags & ~part->mask_flags;
357 slave->mtd.size = part->size;
358 slave->mtd.writesize = master->writesize;
Anatolij Gustschin7fa33ac2010-12-16 23:42:18 +0100359 slave->mtd.writebufsize = master->writebufsize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900360 slave->mtd.oobsize = master->oobsize;
361 slave->mtd.oobavail = master->oobavail;
362 slave->mtd.subpage_sft = master->subpage_sft;
363
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300364 slave->mtd.name = name;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900365 slave->mtd.owner = master->owner;
David Howells402d3262009-02-12 10:40:00 +0000366 slave->mtd.backing_dev_info = master->backing_dev_info;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900367
David Brownell1f24b5a2009-03-26 00:42:41 -0700368 /* NOTE: we don't arrange MTDs as a tree; it'd be error-prone
369 * to have the same data be in two different partitions.
370 */
371 slave->mtd.dev.parent = master->dev.parent;
372
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200373 slave->mtd._read = part_read;
374 slave->mtd._write = part_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900375
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200376 if (master->_panic_write)
377 slave->mtd._panic_write = part_panic_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900378
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200379 if (master->_point && master->_unpoint) {
380 slave->mtd._point = part_point;
381 slave->mtd._unpoint = part_unpoint;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900382 }
383
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200384 if (master->_get_unmapped_area)
385 slave->mtd._get_unmapped_area = part_get_unmapped_area;
386 if (master->_read_oob)
387 slave->mtd._read_oob = part_read_oob;
388 if (master->_write_oob)
389 slave->mtd._write_oob = part_write_oob;
390 if (master->_read_user_prot_reg)
391 slave->mtd._read_user_prot_reg = part_read_user_prot_reg;
392 if (master->_read_fact_prot_reg)
393 slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg;
394 if (master->_write_user_prot_reg)
395 slave->mtd._write_user_prot_reg = part_write_user_prot_reg;
396 if (master->_lock_user_prot_reg)
397 slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg;
398 if (master->_get_user_prot_info)
399 slave->mtd._get_user_prot_info = part_get_user_prot_info;
400 if (master->_get_fact_prot_info)
401 slave->mtd._get_fact_prot_info = part_get_fact_prot_info;
402 if (master->_sync)
403 slave->mtd._sync = part_sync;
404 if (!partno && !master->dev.class && master->_suspend &&
405 master->_resume) {
406 slave->mtd._suspend = part_suspend;
407 slave->mtd._resume = part_resume;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900408 }
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200409 if (master->_writev)
410 slave->mtd._writev = part_writev;
411 if (master->_lock)
412 slave->mtd._lock = part_lock;
413 if (master->_unlock)
414 slave->mtd._unlock = part_unlock;
415 if (master->_is_locked)
416 slave->mtd._is_locked = part_is_locked;
417 if (master->_block_isbad)
418 slave->mtd._block_isbad = part_block_isbad;
419 if (master->_block_markbad)
420 slave->mtd._block_markbad = part_block_markbad;
421 slave->mtd._erase = part_erase;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900422 slave->master = master;
423 slave->offset = part->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900424
425 if (slave->offset == MTDPART_OFS_APPEND)
426 slave->offset = cur_offset;
427 if (slave->offset == MTDPART_OFS_NXTBLK) {
428 slave->offset = cur_offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000429 if (mtd_mod_by_eb(cur_offset, master) != 0) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900430 /* Round up to next erasesize */
Adrian Hunter69423d92008-12-10 13:37:21 +0000431 slave->offset = (mtd_div_by_eb(cur_offset, master) + 1) * master->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900432 printk(KERN_NOTICE "Moving partition %d: "
Adrian Hunter69423d92008-12-10 13:37:21 +0000433 "0x%012llx -> 0x%012llx\n", partno,
434 (unsigned long long)cur_offset, (unsigned long long)slave->offset);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900435 }
436 }
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400437 if (slave->offset == MTDPART_OFS_RETAIN) {
438 slave->offset = cur_offset;
439 if (master->size - slave->offset >= slave->mtd.size) {
440 slave->mtd.size = master->size - slave->offset
441 - slave->mtd.size;
442 } else {
443 printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n",
444 part->name, master->size - slave->offset,
445 slave->mtd.size);
446 /* register to preserve ordering */
447 goto out_register;
448 }
449 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900450 if (slave->mtd.size == MTDPART_SIZ_FULL)
451 slave->mtd.size = master->size - slave->offset;
452
Adrian Hunter69423d92008-12-10 13:37:21 +0000453 printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset,
454 (unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900455
456 /* let's do some sanity checks */
457 if (slave->offset >= master->size) {
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900458 /* let's register it anyway to preserve ordering */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900459 slave->offset = 0;
460 slave->mtd.size = 0;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900461 printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900462 part->name);
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900463 goto out_register;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900464 }
465 if (slave->offset + slave->mtd.size > master->size) {
466 slave->mtd.size = master->size - slave->offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000467 printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n",
468 part->name, master->name, (unsigned long long)slave->mtd.size);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900469 }
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900470 if (master->numeraseregions > 1) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900471 /* Deal with variable erase size stuff */
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900472 int i, max = master->numeraseregions;
Adrian Hunter69423d92008-12-10 13:37:21 +0000473 u64 end = slave->offset + slave->mtd.size;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900474 struct mtd_erase_region_info *regions = master->eraseregions;
475
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900476 /* Find the first erase regions which is part of this
477 * partition. */
478 for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900479 ;
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900480 /* The loop searched for the region _behind_ the first one */
Roel Kluina57ca042009-09-18 12:51:50 -0700481 if (i > 0)
482 i--;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900483
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900484 /* Pick biggest erasesize */
485 for (; i < max && regions[i].offset < end; i++) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900486 if (slave->mtd.erasesize < regions[i].erasesize) {
487 slave->mtd.erasesize = regions[i].erasesize;
488 }
489 }
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900490 BUG_ON(slave->mtd.erasesize == 0);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900491 } else {
492 /* Single erase size */
493 slave->mtd.erasesize = master->erasesize;
494 }
495
496 if ((slave->mtd.flags & MTD_WRITEABLE) &&
Adrian Hunter69423d92008-12-10 13:37:21 +0000497 mtd_mod_by_eb(slave->offset, &slave->mtd)) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900498 /* Doesn't start on a boundary of major erase size */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900499 /* FIXME: Let it be writable if it is on a boundary of
500 * _minor_ erase size though */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900501 slave->mtd.flags &= ~MTD_WRITEABLE;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900502 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 +0900503 part->name);
504 }
505 if ((slave->mtd.flags & MTD_WRITEABLE) &&
Adrian Hunter69423d92008-12-10 13:37:21 +0000506 mtd_mod_by_eb(slave->mtd.size, &slave->mtd)) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900507 slave->mtd.flags &= ~MTD_WRITEABLE;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900508 printk(KERN_WARNING"mtd: partition \"%s\" doesn't end on an erase block -- force read-only\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900509 part->name);
510 }
511
512 slave->mtd.ecclayout = master->ecclayout;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200513 if (master->_block_isbad) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000514 uint64_t offs = 0;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900515
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900516 while (offs < slave->mtd.size) {
Artem Bityutskiy7086c192011-12-23 19:35:30 +0200517 if (mtd_block_isbad(master, offs + slave->offset))
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900518 slave->mtd.ecc_stats.badblocks++;
519 offs += slave->mtd.erasesize;
520 }
521 }
522
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900523out_register:
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900524 return slave;
525}
526
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300527int mtd_add_partition(struct mtd_info *master, char *name,
528 long long offset, long long length)
529{
530 struct mtd_partition part;
531 struct mtd_part *p, *new;
532 uint64_t start, end;
533 int ret = 0;
534
535 /* the direct offset is expected */
536 if (offset == MTDPART_OFS_APPEND ||
537 offset == MTDPART_OFS_NXTBLK)
538 return -EINVAL;
539
540 if (length == MTDPART_SIZ_FULL)
541 length = master->size - offset;
542
543 if (length <= 0)
544 return -EINVAL;
545
546 part.name = name;
547 part.size = length;
548 part.offset = offset;
549 part.mask_flags = 0;
550 part.ecclayout = NULL;
551
552 new = allocate_partition(master, &part, -1, offset);
553 if (IS_ERR(new))
554 return PTR_ERR(new);
555
556 start = offset;
557 end = offset + length;
558
559 mutex_lock(&mtd_partitions_mutex);
560 list_for_each_entry(p, &mtd_partitions, list)
561 if (p->master == master) {
562 if ((start >= p->offset) &&
563 (start < (p->offset + p->mtd.size)))
564 goto err_inv;
565
566 if ((end >= p->offset) &&
567 (end < (p->offset + p->mtd.size)))
568 goto err_inv;
569 }
570
571 list_add(&new->list, &mtd_partitions);
572 mutex_unlock(&mtd_partitions_mutex);
573
574 add_mtd_device(&new->mtd);
575
576 return ret;
577err_inv:
578 mutex_unlock(&mtd_partitions_mutex);
579 free_partition(new);
580 return -EINVAL;
581}
582EXPORT_SYMBOL_GPL(mtd_add_partition);
583
584int mtd_del_partition(struct mtd_info *master, int partno)
585{
586 struct mtd_part *slave, *next;
587 int ret = -EINVAL;
588
589 mutex_lock(&mtd_partitions_mutex);
590 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
591 if ((slave->master == master) &&
592 (slave->mtd.index == partno)) {
593 ret = del_mtd_device(&slave->mtd);
594 if (ret < 0)
595 break;
596
597 list_del(&slave->list);
598 free_partition(slave);
599 break;
600 }
601 mutex_unlock(&mtd_partitions_mutex);
602
603 return ret;
604}
605EXPORT_SYMBOL_GPL(mtd_del_partition);
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/*
608 * This function, given a master MTD object and a partition table, creates
609 * and registers slave MTD objects which are bound to the master according to
610 * the partition definitions.
David Brownell1f24b5a2009-03-26 00:42:41 -0700611 *
612 * We don't register the master, or expect the caller to have done so,
613 * for reasons of data integrity.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
615
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000616int add_mtd_partitions(struct mtd_info *master,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 const struct mtd_partition *parts,
618 int nbparts)
619{
620 struct mtd_part *slave;
Adrian Hunter69423d92008-12-10 13:37:21 +0000621 uint64_t cur_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int i;
623
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900624 printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 for (i = 0; i < nbparts; i++) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300627 slave = allocate_partition(master, parts + i, i, cur_offset);
628 if (IS_ERR(slave))
629 return PTR_ERR(slave);
630
631 mutex_lock(&mtd_partitions_mutex);
632 list_add(&slave->list, &mtd_partitions);
633 mutex_unlock(&mtd_partitions_mutex);
634
635 add_mtd_device(&slave->mtd);
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 cur_offset = slave->offset + slave->mtd.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
640 return 0;
641}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643static DEFINE_SPINLOCK(part_parser_lock);
644static LIST_HEAD(part_parsers);
645
646static struct mtd_part_parser *get_partition_parser(const char *name)
647{
Chris Malley71a928c2008-05-19 20:11:50 +0100648 struct mtd_part_parser *p, *ret = NULL;
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 spin_lock(&part_parser_lock);
651
Chris Malley71a928c2008-05-19 20:11:50 +0100652 list_for_each_entry(p, &part_parsers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (!strcmp(p->name, name) && try_module_get(p->owner)) {
654 ret = p;
655 break;
656 }
Chris Malley71a928c2008-05-19 20:11:50 +0100657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 spin_unlock(&part_parser_lock);
659
660 return ret;
661}
662
Dmitry Eremin-Solenikov953b3bd2011-06-23 15:26:14 +0400663#define put_partition_parser(p) do { module_put((p)->owner); } while (0)
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665int register_mtd_parser(struct mtd_part_parser *p)
666{
667 spin_lock(&part_parser_lock);
668 list_add(&p->list, &part_parsers);
669 spin_unlock(&part_parser_lock);
670
671 return 0;
672}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900673EXPORT_SYMBOL_GPL(register_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675int deregister_mtd_parser(struct mtd_part_parser *p)
676{
677 spin_lock(&part_parser_lock);
678 list_del(&p->list);
679 spin_unlock(&part_parser_lock);
680 return 0;
681}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900682EXPORT_SYMBOL_GPL(deregister_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300684/*
685 * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you
686 * are changing this array!
687 */
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400688static const char *default_mtd_part_types[] = {
689 "cmdlinepart",
690 "ofpart",
691 NULL
692};
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400693
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300694/**
695 * parse_mtd_partitions - parse MTD partitions
696 * @master: the master partition (describes whole MTD device)
697 * @types: names of partition parsers to try or %NULL
698 * @pparts: array of partitions found is returned here
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400699 * @data: MTD partition parser-specific data
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300700 *
701 * This function tries to find partition on MTD device @master. It uses MTD
702 * partition parsers, specified in @types. However, if @types is %NULL, then
703 * the default list of parsers is used. The default list contains only the
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400704 * "cmdlinepart" and "ofpart" parsers ATM.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300705 *
706 * This function may return:
707 * o a negative error code in case of failure
708 * o zero if no partitions were found
709 * o a positive number of found partitions, in which case on exit @pparts will
710 * point to an array containing this number of &struct mtd_info objects.
711 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000712int parse_mtd_partitions(struct mtd_info *master, const char **types,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400713 struct mtd_partition **pparts,
714 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct mtd_part_parser *parser;
717 int ret = 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000718
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400719 if (!types)
720 types = default_mtd_part_types;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 for ( ; ret <= 0 && *types; types++) {
723 parser = get_partition_parser(*types);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (!parser && !request_module("%s", *types))
Stefan Roese58edc902012-01-25 11:24:36 +0100725 parser = get_partition_parser(*types);
Artem Bityutskiy7c802fb2011-05-17 11:13:17 +0300726 if (!parser)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 continue;
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400728 ret = (*parser->parse_fn)(master, pparts, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (ret > 0) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000730 printk(KERN_NOTICE "%d %s partitions found on MTD device %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 ret, parser->name, master->name);
732 }
733 put_partition_parser(parser);
734 }
735 return ret;
736}
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300737
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200738int mtd_is_partition(struct mtd_info *mtd)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300739{
740 struct mtd_part *part;
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200741 int ispart = 0;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300742
743 mutex_lock(&mtd_partitions_mutex);
744 list_for_each_entry(part, &mtd_partitions, list)
745 if (&part->mtd == mtd) {
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200746 ispart = 1;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300747 break;
748 }
749 mutex_unlock(&mtd_partitions_mutex);
750
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200751 return ispart;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300752}
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200753EXPORT_SYMBOL_GPL(mtd_is_partition);