blob: bcec72148d0b5434ea07314febcf63a07fbc6dd8 [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
Brian Norris25245342015-11-19 19:28:39 -080050 * the pointer to that structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
Brian Norris25245342015-11-19 19:28:39 -080052static inline struct mtd_part *mtd_to_part(const struct mtd_info *mtd)
53{
54 return container_of(mtd, struct mtd_part, mtd);
55}
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Thomas Gleixner97894cd2005-11-07 11:15:26 +000057
58/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * MTD methods which simply translate the effective address and pass through
60 * to the _real_ device.
61 */
62
Atsushi Nemotob33a2882008-07-19 01:00:33 +090063static int part_read(struct mtd_info *mtd, loff_t from, size_t len,
64 size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Brian Norris25245342015-11-19 19:28:39 -080066 struct mtd_part *part = mtd_to_part(mtd);
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020067 struct mtd_ecc_stats stats;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020068 int res;
69
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020070 stats = part->master->ecc_stats;
Mike Dunn994c8402012-03-03 13:13:06 -080071 res = part->master->_read(part->master, from + part->offset, len,
72 retlen, buf);
Mike Dunnedbc45402012-04-25 12:06:11 -070073 if (unlikely(mtd_is_eccerr(res)))
74 mtd->ecc_stats.failed +=
75 part->master->ecc_stats.failed - stats.failed;
76 else
77 mtd->ecc_stats.corrected +=
78 part->master->ecc_stats.corrected - stats.corrected;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020079 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
Atsushi Nemotob33a2882008-07-19 01:00:33 +090082static int part_point(struct mtd_info *mtd, loff_t from, size_t len,
83 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Brian Norris25245342015-11-19 19:28:39 -080085 struct mtd_part *part = mtd_to_part(mtd);
Artem Bityutskiy5def4892012-02-03 16:23:52 +020086
Mike Dunn994c8402012-03-03 13:13:06 -080087 return part->master->_point(part->master, from + part->offset, len,
88 retlen, virt, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
Thomas Gleixner9223a452006-05-23 17:21:03 +020090
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020091static int part_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Brian Norris25245342015-11-19 19:28:39 -080093 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Mike Dunn994c8402012-03-03 13:13:06 -080095 return part->master->_unpoint(part->master, from + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
David Howells402d3262009-02-12 10:40:00 +000098static unsigned long part_get_unmapped_area(struct mtd_info *mtd,
99 unsigned long len,
100 unsigned long offset,
101 unsigned long flags)
102{
Brian Norris25245342015-11-19 19:28:39 -0800103 struct mtd_part *part = mtd_to_part(mtd);
David Howells402d3262009-02-12 10:40:00 +0000104
105 offset += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800106 return part->master->_get_unmapped_area(part->master, len, offset,
107 flags);
David Howells402d3262009-02-12 10:40:00 +0000108}
109
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200110static int part_read_oob(struct mtd_info *mtd, loff_t from,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900111 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Brian Norris25245342015-11-19 19:28:39 -0800113 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200114 int res;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (from >= mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200117 return -EINVAL;
Vitaly Wool70145682006-11-03 18:20:38 +0300118 if (ops->datbuf && from + ops->len > mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200119 return -EINVAL;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200120
Artem Bityutskiy154bf892011-01-16 17:50:54 +0200121 /*
122 * If OOB is also requested, make sure that we do not read past the end
123 * of this partition.
124 */
125 if (ops->oobbuf) {
126 size_t len, pages;
127
Boris BREZILLON29f10582016-03-07 10:46:52 +0100128 len = mtd_oobavail(mtd, ops);
Artem Bityutskiy154bf892011-01-16 17:50:54 +0200129 pages = mtd_div_by_ws(mtd->size, mtd);
130 pages -= mtd_div_by_ws(from, mtd);
131 if (ops->ooboffs + ops->ooblen > pages * len)
132 return -EINVAL;
133 }
134
Mike Dunn994c8402012-03-03 13:13:06 -0800135 res = part->master->_read_oob(part->master, from + part->offset, ops);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200136 if (unlikely(res)) {
Brian Norrisd57f40542011-09-20 18:34:25 -0700137 if (mtd_is_bitflip(res))
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200138 mtd->ecc_stats.corrected++;
Brian Norrisd57f40542011-09-20 18:34:25 -0700139 if (mtd_is_eccerr(res))
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200140 mtd->ecc_stats.failed++;
141 }
142 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900145static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
146 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Brian Norris25245342015-11-19 19:28:39 -0800148 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800149 return part->master->_read_user_prot_reg(part->master, from, len,
150 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Christian Riesch4b78fc42014-01-28 09:29:44 +0100153static int part_get_user_prot_info(struct mtd_info *mtd, size_t len,
154 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000155{
Brian Norris25245342015-11-19 19:28:39 -0800156 struct mtd_part *part = mtd_to_part(mtd);
Christian Riesch4b78fc42014-01-28 09:29:44 +0100157 return part->master->_get_user_prot_info(part->master, len, retlen,
158 buf);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000159}
160
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900161static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
162 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Brian Norris25245342015-11-19 19:28:39 -0800164 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800165 return part->master->_read_fact_prot_reg(part->master, from, len,
166 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Christian Riesch4b78fc42014-01-28 09:29:44 +0100169static int part_get_fact_prot_info(struct mtd_info *mtd, size_t len,
170 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000171{
Brian Norris25245342015-11-19 19:28:39 -0800172 struct mtd_part *part = mtd_to_part(mtd);
Christian Riesch4b78fc42014-01-28 09:29:44 +0100173 return part->master->_get_fact_prot_info(part->master, len, retlen,
174 buf);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000175}
176
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900177static int part_write(struct mtd_info *mtd, loff_t to, size_t len,
178 size_t *retlen, const u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Brian Norris25245342015-11-19 19:28:39 -0800180 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800181 return part->master->_write(part->master, to + part->offset, len,
182 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900185static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
186 size_t *retlen, const u_char *buf)
Richard Purdie388bbb02008-02-06 10:17:15 +0000187{
Brian Norris25245342015-11-19 19:28:39 -0800188 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800189 return part->master->_panic_write(part->master, to + part->offset, len,
190 retlen, buf);
Richard Purdie388bbb02008-02-06 10:17:15 +0000191}
192
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200193static int part_write_oob(struct mtd_info *mtd, loff_t to,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900194 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Brian Norris25245342015-11-19 19:28:39 -0800196 struct mtd_part *part = mtd_to_part(mtd);
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;
Mike Dunn994c8402012-03-03 13:13:06 -0800202 return part->master->_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{
Brian Norris25245342015-11-19 19:28:39 -0800208 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800209 return part->master->_write_user_prot_reg(part->master, from, len,
210 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900213static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
214 size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000215{
Brian Norris25245342015-11-19 19:28:39 -0800216 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800217 return part->master->_lock_user_prot_reg(part->master, from, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000218}
219
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900220static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
221 unsigned long count, loff_t to, size_t *retlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Brian Norris25245342015-11-19 19:28:39 -0800223 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800224 return part->master->_writev(part->master, vecs, count,
225 to + part->offset, retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900228static int part_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Brian Norris25245342015-11-19 19:28:39 -0800230 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 int ret;
Artem Bityutskiy664addc2012-02-03 18:13:23 +0200232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 instr->addr += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800234 ret = part->master->_erase(part->master, instr);
Adrian Hunter74641d72007-03-08 12:20:12 +0200235 if (ret) {
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300236 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Adrian Hunter74641d72007-03-08 12:20:12 +0200237 instr->fail_addr -= part->offset;
238 instr->addr -= part->offset;
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return ret;
241}
242
243void mtd_erase_callback(struct erase_info *instr)
244{
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200245 if (instr->mtd->_erase == part_erase) {
Brian Norris25245342015-11-19 19:28:39 -0800246 struct mtd_part *part = mtd_to_part(instr->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300248 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 instr->fail_addr -= part->offset;
250 instr->addr -= part->offset;
251 }
252 if (instr->callback)
253 instr->callback(instr);
254}
255EXPORT_SYMBOL_GPL(mtd_erase_callback);
256
Adrian Hunter69423d92008-12-10 13:37:21 +0000257static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Brian Norris25245342015-11-19 19:28:39 -0800259 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800260 return part->master->_lock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Adrian Hunter69423d92008-12-10 13:37:21 +0000263static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Brian Norris25245342015-11-19 19:28:39 -0800265 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800266 return part->master->_unlock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Richard Cochran99384242010-06-14 18:10:33 +0200269static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
270{
Brian Norris25245342015-11-19 19:28:39 -0800271 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800272 return part->master->_is_locked(part->master, ofs + part->offset, len);
Richard Cochran99384242010-06-14 18:10:33 +0200273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static void part_sync(struct mtd_info *mtd)
276{
Brian Norris25245342015-11-19 19:28:39 -0800277 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800278 part->master->_sync(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static int part_suspend(struct mtd_info *mtd)
282{
Brian Norris25245342015-11-19 19:28:39 -0800283 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800284 return part->master->_suspend(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287static void part_resume(struct mtd_info *mtd)
288{
Brian Norris25245342015-11-19 19:28:39 -0800289 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800290 part->master->_resume(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300293static int part_block_isreserved(struct mtd_info *mtd, loff_t ofs)
294{
Brian Norris25245342015-11-19 19:28:39 -0800295 struct mtd_part *part = mtd_to_part(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300296 ofs += part->offset;
297 return part->master->_block_isreserved(part->master, ofs);
298}
299
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900300static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Brian Norris25245342015-11-19 19:28:39 -0800302 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 ofs += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800304 return part->master->_block_isbad(part->master, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900307static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Brian Norris25245342015-11-19 19:28:39 -0800309 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200310 int res;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 ofs += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800313 res = part->master->_block_markbad(part->master, ofs);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200314 if (!res)
315 mtd->ecc_stats.badblocks++;
316 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Richard Weinberger5e149072016-09-21 11:43:56 +0200319static int part_get_device(struct mtd_info *mtd)
320{
321 struct mtd_part *part = mtd_to_part(mtd);
322 return part->master->_get_device(part->master);
323}
324
325static void part_put_device(struct mtd_info *mtd)
326{
327 struct mtd_part *part = mtd_to_part(mtd);
328 part->master->_put_device(part->master);
329}
330
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100331static int part_ooblayout_ecc(struct mtd_info *mtd, int section,
332 struct mtd_oob_region *oobregion)
333{
334 struct mtd_part *part = mtd_to_part(mtd);
335
336 return mtd_ooblayout_ecc(part->master, section, oobregion);
337}
338
339static int part_ooblayout_free(struct mtd_info *mtd, int section,
340 struct mtd_oob_region *oobregion)
341{
342 struct mtd_part *part = mtd_to_part(mtd);
343
344 return mtd_ooblayout_free(part->master, section, oobregion);
345}
346
347static const struct mtd_ooblayout_ops part_ooblayout_ops = {
348 .ecc = part_ooblayout_ecc,
349 .free = part_ooblayout_free,
350};
351
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600352static int part_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
353{
354 struct mtd_part *part = mtd_to_part(mtd);
355
356 return part->master->_max_bad_blocks(part->master,
357 ofs + part->offset, len);
358}
359
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300360static inline void free_partition(struct mtd_part *p)
361{
362 kfree(p->mtd.name);
363 kfree(p);
364}
365
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300366static struct mtd_part *allocate_partition(struct mtd_info *master,
367 const struct mtd_partition *part, int partno,
368 uint64_t cur_offset)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900369{
Chris Packham1eeef2d2017-06-09 15:58:31 +1200370 int wr_alignment = (master->flags & MTD_NO_ERASE) ? master->writesize:
371 master->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900372 struct mtd_part *slave;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200373 u32 remainder;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300374 char *name;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200375 u64 tmp;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900376
377 /* allocate the partition structure */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900378 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300379 name = kstrdup(part->name, GFP_KERNEL);
380 if (!name || !slave) {
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900381 printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300382 master->name);
383 kfree(name);
384 kfree(slave);
385 return ERR_PTR(-ENOMEM);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900386 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900387
388 /* set up the MTD object for this partition */
389 slave->mtd.type = master->type;
390 slave->mtd.flags = master->flags & ~part->mask_flags;
391 slave->mtd.size = part->size;
392 slave->mtd.writesize = master->writesize;
Anatolij Gustschin7fa33ac2010-12-16 23:42:18 +0100393 slave->mtd.writebufsize = master->writebufsize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900394 slave->mtd.oobsize = master->oobsize;
395 slave->mtd.oobavail = master->oobavail;
396 slave->mtd.subpage_sft = master->subpage_sft;
Boris Brezillon477b0222015-11-16 15:53:13 +0100397 slave->mtd.pairing = master->pairing;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900398
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300399 slave->mtd.name = name;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900400 slave->mtd.owner = master->owner;
401
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700402 /* NOTE: Historically, we didn't arrange MTDs as a tree out of
403 * concern for showing the same data in multiple partitions.
404 * However, it is very useful to have the master node present,
405 * so the MTD_PARTITIONED_MASTER option allows that. The master
406 * will have device nodes etc only if this is set, so make the
407 * parent conditional on that option. Note, this is a way to
408 * distinguish between the master and the partition in sysfs.
David Brownell1f24b5a2009-03-26 00:42:41 -0700409 */
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700410 slave->mtd.dev.parent = IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER) ?
411 &master->dev :
412 master->dev.parent;
Sascha Hauer42e94012017-02-09 11:50:24 +0100413 slave->mtd.dev.of_node = part->of_node;
David Brownell1f24b5a2009-03-26 00:42:41 -0700414
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200415 slave->mtd._read = part_read;
416 slave->mtd._write = part_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900417
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200418 if (master->_panic_write)
419 slave->mtd._panic_write = part_panic_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900420
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200421 if (master->_point && master->_unpoint) {
422 slave->mtd._point = part_point;
423 slave->mtd._unpoint = part_unpoint;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900424 }
425
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200426 if (master->_get_unmapped_area)
427 slave->mtd._get_unmapped_area = part_get_unmapped_area;
428 if (master->_read_oob)
429 slave->mtd._read_oob = part_read_oob;
430 if (master->_write_oob)
431 slave->mtd._write_oob = part_write_oob;
432 if (master->_read_user_prot_reg)
433 slave->mtd._read_user_prot_reg = part_read_user_prot_reg;
434 if (master->_read_fact_prot_reg)
435 slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg;
436 if (master->_write_user_prot_reg)
437 slave->mtd._write_user_prot_reg = part_write_user_prot_reg;
438 if (master->_lock_user_prot_reg)
439 slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg;
440 if (master->_get_user_prot_info)
441 slave->mtd._get_user_prot_info = part_get_user_prot_info;
442 if (master->_get_fact_prot_info)
443 slave->mtd._get_fact_prot_info = part_get_fact_prot_info;
444 if (master->_sync)
445 slave->mtd._sync = part_sync;
446 if (!partno && !master->dev.class && master->_suspend &&
447 master->_resume) {
448 slave->mtd._suspend = part_suspend;
449 slave->mtd._resume = part_resume;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900450 }
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200451 if (master->_writev)
452 slave->mtd._writev = part_writev;
453 if (master->_lock)
454 slave->mtd._lock = part_lock;
455 if (master->_unlock)
456 slave->mtd._unlock = part_unlock;
457 if (master->_is_locked)
458 slave->mtd._is_locked = part_is_locked;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300459 if (master->_block_isreserved)
460 slave->mtd._block_isreserved = part_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200461 if (master->_block_isbad)
462 slave->mtd._block_isbad = part_block_isbad;
463 if (master->_block_markbad)
464 slave->mtd._block_markbad = part_block_markbad;
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600465 if (master->_max_bad_blocks)
466 slave->mtd._max_bad_blocks = part_max_bad_blocks;
Richard Weinberger5e149072016-09-21 11:43:56 +0200467
468 if (master->_get_device)
469 slave->mtd._get_device = part_get_device;
470 if (master->_put_device)
471 slave->mtd._put_device = part_put_device;
472
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200473 slave->mtd._erase = part_erase;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900474 slave->master = master;
475 slave->offset = part->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900476
477 if (slave->offset == MTDPART_OFS_APPEND)
478 slave->offset = cur_offset;
479 if (slave->offset == MTDPART_OFS_NXTBLK) {
Chris Packham1eeef2d2017-06-09 15:58:31 +1200480 tmp = cur_offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900481 slave->offset = cur_offset;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200482 remainder = do_div(tmp, wr_alignment);
483 if (remainder) {
484 slave->offset += wr_alignment - remainder;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900485 printk(KERN_NOTICE "Moving partition %d: "
Adrian Hunter69423d92008-12-10 13:37:21 +0000486 "0x%012llx -> 0x%012llx\n", partno,
487 (unsigned long long)cur_offset, (unsigned long long)slave->offset);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900488 }
489 }
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400490 if (slave->offset == MTDPART_OFS_RETAIN) {
491 slave->offset = cur_offset;
492 if (master->size - slave->offset >= slave->mtd.size) {
493 slave->mtd.size = master->size - slave->offset
494 - slave->mtd.size;
495 } else {
496 printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n",
497 part->name, master->size - slave->offset,
498 slave->mtd.size);
499 /* register to preserve ordering */
500 goto out_register;
501 }
502 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900503 if (slave->mtd.size == MTDPART_SIZ_FULL)
504 slave->mtd.size = master->size - slave->offset;
505
Adrian Hunter69423d92008-12-10 13:37:21 +0000506 printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset,
507 (unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900508
509 /* let's do some sanity checks */
510 if (slave->offset >= master->size) {
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900511 /* let's register it anyway to preserve ordering */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900512 slave->offset = 0;
513 slave->mtd.size = 0;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900514 printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900515 part->name);
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900516 goto out_register;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900517 }
518 if (slave->offset + slave->mtd.size > master->size) {
519 slave->mtd.size = master->size - slave->offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000520 printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n",
521 part->name, master->name, (unsigned long long)slave->mtd.size);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900522 }
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900523 if (master->numeraseregions > 1) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900524 /* Deal with variable erase size stuff */
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900525 int i, max = master->numeraseregions;
Adrian Hunter69423d92008-12-10 13:37:21 +0000526 u64 end = slave->offset + slave->mtd.size;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900527 struct mtd_erase_region_info *regions = master->eraseregions;
528
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900529 /* Find the first erase regions which is part of this
530 * partition. */
531 for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900532 ;
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900533 /* The loop searched for the region _behind_ the first one */
Roel Kluina57ca042009-09-18 12:51:50 -0700534 if (i > 0)
535 i--;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900536
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900537 /* Pick biggest erasesize */
538 for (; i < max && regions[i].offset < end; i++) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900539 if (slave->mtd.erasesize < regions[i].erasesize) {
540 slave->mtd.erasesize = regions[i].erasesize;
541 }
542 }
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900543 BUG_ON(slave->mtd.erasesize == 0);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900544 } else {
545 /* Single erase size */
546 slave->mtd.erasesize = master->erasesize;
547 }
548
Chris Packham1eeef2d2017-06-09 15:58:31 +1200549 tmp = slave->offset;
550 remainder = do_div(tmp, wr_alignment);
551 if ((slave->mtd.flags & MTD_WRITEABLE) && remainder) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900552 /* Doesn't start on a boundary of major erase size */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900553 /* FIXME: Let it be writable if it is on a boundary of
554 * _minor_ erase size though */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900555 slave->mtd.flags &= ~MTD_WRITEABLE;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200556 printk(KERN_WARNING"mtd: partition \"%s\" doesn't start on an erase/write block boundary -- force read-only\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900557 part->name);
558 }
Chris Packham1eeef2d2017-06-09 15:58:31 +1200559
560 tmp = slave->mtd.size;
561 remainder = do_div(tmp, wr_alignment);
562 if ((slave->mtd.flags & MTD_WRITEABLE) && remainder) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900563 slave->mtd.flags &= ~MTD_WRITEABLE;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200564 printk(KERN_WARNING"mtd: partition \"%s\" doesn't end on an erase/write block -- force read-only\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900565 part->name);
566 }
567
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100568 mtd_set_ooblayout(&slave->mtd, &part_ooblayout_ops);
Huang Shijiebdf69c42013-08-16 10:10:06 +0800569 slave->mtd.ecc_step_size = master->ecc_step_size;
Mike Dunn6a918ba2012-03-11 14:21:11 -0700570 slave->mtd.ecc_strength = master->ecc_strength;
Mike Dunnd062d4e2012-04-25 12:06:08 -0700571 slave->mtd.bitflip_threshold = master->bitflip_threshold;
572
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200573 if (master->_block_isbad) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000574 uint64_t offs = 0;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900575
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900576 while (offs < slave->mtd.size) {
Ezequiel Garciafdf43a42014-03-21 08:57:44 -0300577 if (mtd_block_isreserved(master, offs + slave->offset))
578 slave->mtd.ecc_stats.bbtblocks++;
579 else if (mtd_block_isbad(master, offs + slave->offset))
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900580 slave->mtd.ecc_stats.badblocks++;
581 offs += slave->mtd.erasesize;
582 }
583 }
584
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900585out_register:
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900586 return slave;
587}
588
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700589static ssize_t mtd_partition_offset_show(struct device *dev,
590 struct device_attribute *attr, char *buf)
591{
592 struct mtd_info *mtd = dev_get_drvdata(dev);
Brian Norris25245342015-11-19 19:28:39 -0800593 struct mtd_part *part = mtd_to_part(mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700594 return snprintf(buf, PAGE_SIZE, "%lld\n", part->offset);
595}
596
597static DEVICE_ATTR(offset, S_IRUGO, mtd_partition_offset_show, NULL);
598
599static const struct attribute *mtd_partition_attrs[] = {
600 &dev_attr_offset.attr,
601 NULL
602};
603
604static int mtd_add_partition_attrs(struct mtd_part *new)
605{
606 int ret = sysfs_create_files(&new->mtd.dev.kobj, mtd_partition_attrs);
607 if (ret)
608 printk(KERN_WARNING
609 "mtd: failed to create partition attrs, err=%d\n", ret);
610 return ret;
611}
612
Geert Uytterhoeven26a6d242013-11-12 20:11:26 +0100613int mtd_add_partition(struct mtd_info *master, const char *name,
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300614 long long offset, long long length)
615{
616 struct mtd_partition part;
Dan Ehrenberg3a434f62015-04-02 15:15:12 -0700617 struct mtd_part *new;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300618 int ret = 0;
619
620 /* the direct offset is expected */
621 if (offset == MTDPART_OFS_APPEND ||
622 offset == MTDPART_OFS_NXTBLK)
623 return -EINVAL;
624
625 if (length == MTDPART_SIZ_FULL)
626 length = master->size - offset;
627
628 if (length <= 0)
629 return -EINVAL;
630
Brian Norris93867232015-11-11 16:47:52 -0800631 memset(&part, 0, sizeof(part));
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300632 part.name = name;
633 part.size = length;
634 part.offset = offset;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300635
636 new = allocate_partition(master, &part, -1, offset);
637 if (IS_ERR(new))
638 return PTR_ERR(new);
639
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300640 mutex_lock(&mtd_partitions_mutex);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300641 list_add(&new->list, &mtd_partitions);
642 mutex_unlock(&mtd_partitions_mutex);
643
644 add_mtd_device(&new->mtd);
645
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700646 mtd_add_partition_attrs(new);
647
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300648 return ret;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300649}
650EXPORT_SYMBOL_GPL(mtd_add_partition);
651
Rafał Miłecki08263a92017-06-21 08:26:42 +0200652/**
653 * __mtd_del_partition - delete MTD partition
654 *
655 * @priv: internal MTD struct for partition to be deleted
656 *
657 * This function must be called with the partitions mutex locked.
658 */
659static int __mtd_del_partition(struct mtd_part *priv)
660{
661 int err;
662
663 err = del_mtd_device(&priv->mtd);
664 if (err)
665 return err;
666
667 list_del(&priv->list);
668 free_partition(priv);
669
670 return 0;
671}
672
673/*
674 * This function unregisters and destroy all slave MTD objects which are
675 * attached to the given master MTD object.
676 */
677int del_mtd_partitions(struct mtd_info *master)
678{
679 struct mtd_part *slave, *next;
680 int ret, err = 0;
681
682 mutex_lock(&mtd_partitions_mutex);
683 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
684 if (slave->master == master) {
685 ret = __mtd_del_partition(slave);
686 if (ret < 0)
687 err = ret;
688 }
689 mutex_unlock(&mtd_partitions_mutex);
690
691 return err;
692}
693
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300694int mtd_del_partition(struct mtd_info *master, int partno)
695{
696 struct mtd_part *slave, *next;
697 int ret = -EINVAL;
698
699 mutex_lock(&mtd_partitions_mutex);
700 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
701 if ((slave->master == master) &&
702 (slave->mtd.index == partno)) {
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700703 sysfs_remove_files(&slave->mtd.dev.kobj,
704 mtd_partition_attrs);
Rafał Miłecki08263a92017-06-21 08:26:42 +0200705 ret = __mtd_del_partition(slave);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300706 break;
707 }
708 mutex_unlock(&mtd_partitions_mutex);
709
710 return ret;
711}
712EXPORT_SYMBOL_GPL(mtd_del_partition);
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
715 * This function, given a master MTD object and a partition table, creates
716 * and registers slave MTD objects which are bound to the master according to
717 * the partition definitions.
David Brownell1f24b5a2009-03-26 00:42:41 -0700718 *
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700719 * For historical reasons, this function's caller only registers the master
720 * if the MTD_PARTITIONED_MASTER config option is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 */
722
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000723int add_mtd_partitions(struct mtd_info *master,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 const struct mtd_partition *parts,
725 int nbparts)
726{
727 struct mtd_part *slave;
Adrian Hunter69423d92008-12-10 13:37:21 +0000728 uint64_t cur_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 int i;
730
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900731 printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 for (i = 0; i < nbparts; i++) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300734 slave = allocate_partition(master, parts + i, i, cur_offset);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200735 if (IS_ERR(slave)) {
736 del_mtd_partitions(master);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300737 return PTR_ERR(slave);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200738 }
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300739
740 mutex_lock(&mtd_partitions_mutex);
741 list_add(&slave->list, &mtd_partitions);
742 mutex_unlock(&mtd_partitions_mutex);
743
744 add_mtd_device(&slave->mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700745 mtd_add_partition_attrs(slave);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 cur_offset = slave->offset + slave->mtd.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
750 return 0;
751}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753static DEFINE_SPINLOCK(part_parser_lock);
754static LIST_HEAD(part_parsers);
755
Brian Norris5531ae42015-12-04 15:25:15 -0800756static struct mtd_part_parser *mtd_part_parser_get(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Chris Malley71a928c2008-05-19 20:11:50 +0100758 struct mtd_part_parser *p, *ret = NULL;
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 spin_lock(&part_parser_lock);
761
Chris Malley71a928c2008-05-19 20:11:50 +0100762 list_for_each_entry(p, &part_parsers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!strcmp(p->name, name) && try_module_get(p->owner)) {
764 ret = p;
765 break;
766 }
Chris Malley71a928c2008-05-19 20:11:50 +0100767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 spin_unlock(&part_parser_lock);
769
770 return ret;
771}
772
Brian Norris5531ae42015-12-04 15:25:15 -0800773static inline void mtd_part_parser_put(const struct mtd_part_parser *p)
774{
775 module_put(p->owner);
776}
Dmitry Eremin-Solenikov953b3bd2011-06-23 15:26:14 +0400777
Brian Norrisadc83bf2015-12-09 10:24:03 -0800778/*
779 * Many partition parsers just expected the core to kfree() all their data in
780 * one chunk. Do that by default.
781 */
782static void mtd_part_parser_cleanup_default(const struct mtd_partition *pparts,
783 int nr_parts)
784{
785 kfree(pparts);
786}
787
Brian Norrisb9eab012015-11-11 19:13:29 -0800788int __register_mtd_parser(struct mtd_part_parser *p, struct module *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Brian Norrisb9eab012015-11-11 19:13:29 -0800790 p->owner = owner;
791
Brian Norrisadc83bf2015-12-09 10:24:03 -0800792 if (!p->cleanup)
793 p->cleanup = &mtd_part_parser_cleanup_default;
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 spin_lock(&part_parser_lock);
796 list_add(&p->list, &part_parsers);
797 spin_unlock(&part_parser_lock);
Brian Norrisb9eab012015-11-11 19:13:29 -0800798
799 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
Brian Norrisb9eab012015-11-11 19:13:29 -0800801EXPORT_SYMBOL_GPL(__register_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Axel Lincf3b2b12013-12-01 18:59:15 +0800803void deregister_mtd_parser(struct mtd_part_parser *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 spin_lock(&part_parser_lock);
806 list_del(&p->list);
807 spin_unlock(&part_parser_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900809EXPORT_SYMBOL_GPL(deregister_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300811/*
812 * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you
813 * are changing this array!
814 */
Artem Bityutskiyccef4dc2013-03-12 10:51:35 +0200815static const char * const default_mtd_part_types[] = {
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400816 "cmdlinepart",
817 "ofpart",
818 NULL
819};
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400820
Brian Norris01f9c722017-05-23 07:30:20 +0200821static int mtd_part_do_parse(struct mtd_part_parser *parser,
822 struct mtd_info *master,
823 struct mtd_partitions *pparts,
824 struct mtd_part_parser_data *data)
825{
826 int ret;
827
828 ret = (*parser->parse_fn)(master, &pparts->parts, data);
829 pr_debug("%s: parser %s: %i\n", master->name, parser->name, ret);
830 if (ret <= 0)
831 return ret;
832
833 pr_notice("%d %s partitions found on MTD device %s\n", ret,
834 parser->name, master->name);
835
836 pparts->nr_parts = ret;
837 pparts->parser = parser;
838
839 return ret;
840}
841
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300842/**
843 * parse_mtd_partitions - parse MTD partitions
844 * @master: the master partition (describes whole MTD device)
845 * @types: names of partition parsers to try or %NULL
Brian Norris07fd2f82015-12-04 15:25:17 -0800846 * @pparts: info about partitions found is returned here
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400847 * @data: MTD partition parser-specific data
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300848 *
849 * This function tries to find partition on MTD device @master. It uses MTD
850 * partition parsers, specified in @types. However, if @types is %NULL, then
851 * the default list of parsers is used. The default list contains only the
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400852 * "cmdlinepart" and "ofpart" parsers ATM.
Huang Shijiec51803d2012-08-18 13:07:41 -0400853 * Note: If there are more then one parser in @types, the kernel only takes the
854 * partitions parsed out by the first parser.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300855 *
856 * This function may return:
857 * o a negative error code in case of failure
Brian Norris07fd2f82015-12-04 15:25:17 -0800858 * o zero otherwise, and @pparts will describe the partitions, number of
Brian Norrisadc83bf2015-12-09 10:24:03 -0800859 * partitions, and the parser which parsed them. Caller must release
860 * resources with mtd_part_parser_cleanup() when finished with the returned
861 * data.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300862 */
Artem Bityutskiy26a47342013-03-11 15:38:48 +0200863int parse_mtd_partitions(struct mtd_info *master, const char *const *types,
Brian Norris07fd2f82015-12-04 15:25:17 -0800864 struct mtd_partitions *pparts,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400865 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 struct mtd_part_parser *parser;
Brian Norris5a2415b2015-10-11 13:03:47 -0700868 int ret, err = 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000869
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400870 if (!types)
871 types = default_mtd_part_types;
872
Brian Norris5a2415b2015-10-11 13:03:47 -0700873 for ( ; *types; types++) {
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000874 pr_debug("%s: parsing partitions %s\n", master->name, *types);
Brian Norris5531ae42015-12-04 15:25:15 -0800875 parser = mtd_part_parser_get(*types);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (!parser && !request_module("%s", *types))
Brian Norris5531ae42015-12-04 15:25:15 -0800877 parser = mtd_part_parser_get(*types);
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000878 pr_debug("%s: got parser %s\n", master->name,
879 parser ? parser->name : NULL);
Artem Bityutskiy7c802fb2011-05-17 11:13:17 +0300880 if (!parser)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 continue;
Brian Norris01f9c722017-05-23 07:30:20 +0200882 ret = mtd_part_do_parse(parser, master, pparts, data);
883 /* Found partitions! */
884 if (ret > 0)
Brian Norris07fd2f82015-12-04 15:25:17 -0800885 return 0;
Brian Norrisadc83bf2015-12-09 10:24:03 -0800886 mtd_part_parser_put(parser);
Brian Norris5a2415b2015-10-11 13:03:47 -0700887 /*
888 * Stash the first error we see; only report it if no parser
889 * succeeds
890 */
891 if (ret < 0 && !err)
892 err = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Brian Norris5a2415b2015-10-11 13:03:47 -0700894 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300896
Brian Norrisadc83bf2015-12-09 10:24:03 -0800897void mtd_part_parser_cleanup(struct mtd_partitions *parts)
898{
899 const struct mtd_part_parser *parser;
900
901 if (!parts)
902 return;
903
904 parser = parts->parser;
905 if (parser) {
906 if (parser->cleanup)
907 parser->cleanup(parts->parts, parts->nr_parts);
908
909 mtd_part_parser_put(parser);
910 }
911}
912
Richard Genoud5dee4672012-07-10 18:23:39 +0200913int mtd_is_partition(const struct mtd_info *mtd)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300914{
915 struct mtd_part *part;
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200916 int ispart = 0;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300917
918 mutex_lock(&mtd_partitions_mutex);
919 list_for_each_entry(part, &mtd_partitions, list)
920 if (&part->mtd == mtd) {
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200921 ispart = 1;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300922 break;
923 }
924 mutex_unlock(&mtd_partitions_mutex);
925
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200926 return ispart;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300927}
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200928EXPORT_SYMBOL_GPL(mtd_is_partition);
Richard Genoud62082e52012-07-10 18:23:40 +0200929
930/* Returns the size of the entire flash chip */
931uint64_t mtd_get_device_size(const struct mtd_info *mtd)
932{
933 if (!mtd_is_partition(mtd))
934 return mtd->size;
935
Brian Norris25245342015-11-19 19:28:39 -0800936 return mtd_to_part(mtd)->master->size;
Richard Genoud62082e52012-07-10 18:23:40 +0200937}
938EXPORT_SYMBOL_GPL(mtd_get_device_size);