blob: 1f13e32556f869634146c102ef1f2b0aea8fe4f1 [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>
Dan Ehrenberg727dc612015-04-02 15:15:10 -070033#include <linux/kconfig.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jamie Ileseea72d52011-05-23 10:23:42 +010035#include "mtdcore.h"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/* Our partition linked list */
38static LIST_HEAD(mtd_partitions);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +030039static DEFINE_MUTEX(mtd_partitions_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Our partition node structure */
42struct mtd_part {
43 struct mtd_info mtd;
44 struct mtd_info *master;
Adrian Hunter69423d92008-12-10 13:37:21 +000045 uint64_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
49/*
50 * Given a pointer to the MTD object in the mtd_part structure, we can retrieve
Brian Norris25245342015-11-19 19:28:39 -080051 * the pointer to that structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
Brian Norris25245342015-11-19 19:28:39 -080053static inline struct mtd_part *mtd_to_part(const struct mtd_info *mtd)
54{
55 return container_of(mtd, struct mtd_part, mtd);
56}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Thomas Gleixner97894cd2005-11-07 11:15:26 +000058
59/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * MTD methods which simply translate the effective address and pass through
61 * to the _real_ device.
62 */
63
Atsushi Nemotob33a2882008-07-19 01:00:33 +090064static int part_read(struct mtd_info *mtd, loff_t from, size_t len,
65 size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Brian Norris25245342015-11-19 19:28:39 -080067 struct mtd_part *part = mtd_to_part(mtd);
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020068 struct mtd_ecc_stats stats;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020069 int res;
70
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020071 stats = part->master->ecc_stats;
Mike Dunn994c8402012-03-03 13:13:06 -080072 res = part->master->_read(part->master, from + part->offset, len,
73 retlen, buf);
Mike Dunnedbc45402012-04-25 12:06:11 -070074 if (unlikely(mtd_is_eccerr(res)))
75 mtd->ecc_stats.failed +=
76 part->master->ecc_stats.failed - stats.failed;
77 else
78 mtd->ecc_stats.corrected +=
79 part->master->ecc_stats.corrected - stats.corrected;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020080 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Atsushi Nemotob33a2882008-07-19 01:00:33 +090083static int part_point(struct mtd_info *mtd, loff_t from, size_t len,
84 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Brian Norris25245342015-11-19 19:28:39 -080086 struct mtd_part *part = mtd_to_part(mtd);
Artem Bityutskiy5def4892012-02-03 16:23:52 +020087
Mike Dunn994c8402012-03-03 13:13:06 -080088 return part->master->_point(part->master, from + part->offset, len,
89 retlen, virt, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
Thomas Gleixner9223a452006-05-23 17:21:03 +020091
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020092static int part_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Brian Norris25245342015-11-19 19:28:39 -080094 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Mike Dunn994c8402012-03-03 13:13:06 -080096 return part->master->_unpoint(part->master, from + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
David Howells402d3262009-02-12 10:40:00 +000099static unsigned long part_get_unmapped_area(struct mtd_info *mtd,
100 unsigned long len,
101 unsigned long offset,
102 unsigned long flags)
103{
Brian Norris25245342015-11-19 19:28:39 -0800104 struct mtd_part *part = mtd_to_part(mtd);
David Howells402d3262009-02-12 10:40:00 +0000105
106 offset += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800107 return part->master->_get_unmapped_area(part->master, len, offset,
108 flags);
David Howells402d3262009-02-12 10:40:00 +0000109}
110
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200111static int part_read_oob(struct mtd_info *mtd, loff_t from,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900112 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Brian Norris25245342015-11-19 19:28:39 -0800114 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200115 int res;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (from >= mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200118 return -EINVAL;
Vitaly Wool70145682006-11-03 18:20:38 +0300119 if (ops->datbuf && from + ops->len > mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200120 return -EINVAL;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200121
Artem Bityutskiy154bf892011-01-16 17:50:54 +0200122 /*
123 * If OOB is also requested, make sure that we do not read past the end
124 * of this partition.
125 */
126 if (ops->oobbuf) {
127 size_t len, pages;
128
Boris BREZILLON29f10582016-03-07 10:46:52 +0100129 len = mtd_oobavail(mtd, ops);
Artem Bityutskiy154bf892011-01-16 17:50:54 +0200130 pages = mtd_div_by_ws(mtd->size, mtd);
131 pages -= mtd_div_by_ws(from, mtd);
132 if (ops->ooboffs + ops->ooblen > pages * len)
133 return -EINVAL;
134 }
135
Mike Dunn994c8402012-03-03 13:13:06 -0800136 res = part->master->_read_oob(part->master, from + part->offset, ops);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200137 if (unlikely(res)) {
Brian Norrisd57f40542011-09-20 18:34:25 -0700138 if (mtd_is_bitflip(res))
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200139 mtd->ecc_stats.corrected++;
Brian Norrisd57f40542011-09-20 18:34:25 -0700140 if (mtd_is_eccerr(res))
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200141 mtd->ecc_stats.failed++;
142 }
143 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900146static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
147 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Brian Norris25245342015-11-19 19:28:39 -0800149 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800150 return part->master->_read_user_prot_reg(part->master, from, len,
151 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Christian Riesch4b78fc42014-01-28 09:29:44 +0100154static int part_get_user_prot_info(struct mtd_info *mtd, size_t len,
155 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000156{
Brian Norris25245342015-11-19 19:28:39 -0800157 struct mtd_part *part = mtd_to_part(mtd);
Christian Riesch4b78fc42014-01-28 09:29:44 +0100158 return part->master->_get_user_prot_info(part->master, len, retlen,
159 buf);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000160}
161
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900162static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
163 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Brian Norris25245342015-11-19 19:28:39 -0800165 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800166 return part->master->_read_fact_prot_reg(part->master, from, len,
167 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Christian Riesch4b78fc42014-01-28 09:29:44 +0100170static int part_get_fact_prot_info(struct mtd_info *mtd, size_t len,
171 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000172{
Brian Norris25245342015-11-19 19:28:39 -0800173 struct mtd_part *part = mtd_to_part(mtd);
Christian Riesch4b78fc42014-01-28 09:29:44 +0100174 return part->master->_get_fact_prot_info(part->master, len, retlen,
175 buf);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000176}
177
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900178static int part_write(struct mtd_info *mtd, loff_t to, size_t len,
179 size_t *retlen, const u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Brian Norris25245342015-11-19 19:28:39 -0800181 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800182 return part->master->_write(part->master, to + part->offset, len,
183 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900186static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
187 size_t *retlen, const u_char *buf)
Richard Purdie388bbb02008-02-06 10:17:15 +0000188{
Brian Norris25245342015-11-19 19:28:39 -0800189 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800190 return part->master->_panic_write(part->master, to + part->offset, len,
191 retlen, buf);
Richard Purdie388bbb02008-02-06 10:17:15 +0000192}
193
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200194static int part_write_oob(struct mtd_info *mtd, loff_t to,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900195 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Brian Norris25245342015-11-19 19:28:39 -0800197 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (to >= mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200200 return -EINVAL;
Vitaly Wool70145682006-11-03 18:20:38 +0300201 if (ops->datbuf && to + ops->len > mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200202 return -EINVAL;
Mike Dunn994c8402012-03-03 13:13:06 -0800203 return part->master->_write_oob(part->master, to + part->offset, ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900206static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
207 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Brian Norris25245342015-11-19 19:28:39 -0800209 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800210 return part->master->_write_user_prot_reg(part->master, from, len,
211 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900214static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
215 size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000216{
Brian Norris25245342015-11-19 19:28:39 -0800217 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800218 return part->master->_lock_user_prot_reg(part->master, from, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000219}
220
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900221static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
222 unsigned long count, loff_t to, size_t *retlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Brian Norris25245342015-11-19 19:28:39 -0800224 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800225 return part->master->_writev(part->master, vecs, count,
226 to + part->offset, 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{
Brian Norris25245342015-11-19 19:28:39 -0800231 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 int ret;
Artem Bityutskiy664addc2012-02-03 18:13:23 +0200233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 instr->addr += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800235 ret = part->master->_erase(part->master, instr);
Adrian Hunter74641d72007-03-08 12:20:12 +0200236 if (ret) {
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300237 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Adrian Hunter74641d72007-03-08 12:20:12 +0200238 instr->fail_addr -= part->offset;
239 instr->addr -= part->offset;
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return ret;
242}
243
244void mtd_erase_callback(struct erase_info *instr)
245{
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200246 if (instr->mtd->_erase == part_erase) {
Brian Norris25245342015-11-19 19:28:39 -0800247 struct mtd_part *part = mtd_to_part(instr->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300249 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 instr->fail_addr -= part->offset;
251 instr->addr -= part->offset;
252 }
253 if (instr->callback)
254 instr->callback(instr);
255}
256EXPORT_SYMBOL_GPL(mtd_erase_callback);
257
Adrian Hunter69423d92008-12-10 13:37:21 +0000258static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Brian Norris25245342015-11-19 19:28:39 -0800260 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800261 return part->master->_lock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Adrian Hunter69423d92008-12-10 13:37:21 +0000264static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Brian Norris25245342015-11-19 19:28:39 -0800266 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800267 return part->master->_unlock(part->master, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Richard Cochran99384242010-06-14 18:10:33 +0200270static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
271{
Brian Norris25245342015-11-19 19:28:39 -0800272 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800273 return part->master->_is_locked(part->master, ofs + part->offset, len);
Richard Cochran99384242010-06-14 18:10:33 +0200274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276static void part_sync(struct mtd_info *mtd)
277{
Brian Norris25245342015-11-19 19:28:39 -0800278 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800279 part->master->_sync(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static int part_suspend(struct mtd_info *mtd)
283{
Brian Norris25245342015-11-19 19:28:39 -0800284 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800285 return part->master->_suspend(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
288static void part_resume(struct mtd_info *mtd)
289{
Brian Norris25245342015-11-19 19:28:39 -0800290 struct mtd_part *part = mtd_to_part(mtd);
Mike Dunn994c8402012-03-03 13:13:06 -0800291 part->master->_resume(part->master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300294static int part_block_isreserved(struct mtd_info *mtd, loff_t ofs)
295{
Brian Norris25245342015-11-19 19:28:39 -0800296 struct mtd_part *part = mtd_to_part(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300297 ofs += part->offset;
298 return part->master->_block_isreserved(part->master, ofs);
299}
300
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900301static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Brian Norris25245342015-11-19 19:28:39 -0800303 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 ofs += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800305 return part->master->_block_isbad(part->master, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900308static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Brian Norris25245342015-11-19 19:28:39 -0800310 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200311 int res;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 ofs += part->offset;
Mike Dunn994c8402012-03-03 13:13:06 -0800314 res = part->master->_block_markbad(part->master, ofs);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200315 if (!res)
316 mtd->ecc_stats.badblocks++;
317 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100320static int part_ooblayout_ecc(struct mtd_info *mtd, int section,
321 struct mtd_oob_region *oobregion)
322{
323 struct mtd_part *part = mtd_to_part(mtd);
324
325 return mtd_ooblayout_ecc(part->master, section, oobregion);
326}
327
328static int part_ooblayout_free(struct mtd_info *mtd, int section,
329 struct mtd_oob_region *oobregion)
330{
331 struct mtd_part *part = mtd_to_part(mtd);
332
333 return mtd_ooblayout_free(part->master, section, oobregion);
334}
335
336static const struct mtd_ooblayout_ops part_ooblayout_ops = {
337 .ecc = part_ooblayout_ecc,
338 .free = part_ooblayout_free,
339};
340
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300341static inline void free_partition(struct mtd_part *p)
342{
343 kfree(p->mtd.name);
344 kfree(p);
345}
346
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000347/*
348 * This function unregisters and destroy all slave MTD objects which are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * attached to the given master MTD object.
350 */
351
352int del_mtd_partitions(struct mtd_info *master)
353{
Chris Malley71a928c2008-05-19 20:11:50 +0100354 struct mtd_part *slave, *next;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300355 int ret, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300357 mutex_lock(&mtd_partitions_mutex);
Chris Malley71a928c2008-05-19 20:11:50 +0100358 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (slave->master == master) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300360 ret = del_mtd_device(&slave->mtd);
361 if (ret < 0) {
362 err = ret;
363 continue;
364 }
Chris Malley71a928c2008-05-19 20:11:50 +0100365 list_del(&slave->list);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300366 free_partition(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300368 mutex_unlock(&mtd_partitions_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300370 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300373static struct mtd_part *allocate_partition(struct mtd_info *master,
374 const struct mtd_partition *part, int partno,
375 uint64_t cur_offset)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900376{
377 struct mtd_part *slave;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300378 char *name;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900379
380 /* allocate the partition structure */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900381 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300382 name = kstrdup(part->name, GFP_KERNEL);
383 if (!name || !slave) {
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900384 printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300385 master->name);
386 kfree(name);
387 kfree(slave);
388 return ERR_PTR(-ENOMEM);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900389 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900390
391 /* set up the MTD object for this partition */
392 slave->mtd.type = master->type;
393 slave->mtd.flags = master->flags & ~part->mask_flags;
394 slave->mtd.size = part->size;
395 slave->mtd.writesize = master->writesize;
Anatolij Gustschin7fa33ac2010-12-16 23:42:18 +0100396 slave->mtd.writebufsize = master->writebufsize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900397 slave->mtd.oobsize = master->oobsize;
398 slave->mtd.oobavail = master->oobavail;
399 slave->mtd.subpage_sft = master->subpage_sft;
400
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300401 slave->mtd.name = name;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900402 slave->mtd.owner = master->owner;
403
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700404 /* NOTE: Historically, we didn't arrange MTDs as a tree out of
405 * concern for showing the same data in multiple partitions.
406 * However, it is very useful to have the master node present,
407 * so the MTD_PARTITIONED_MASTER option allows that. The master
408 * will have device nodes etc only if this is set, so make the
409 * parent conditional on that option. Note, this is a way to
410 * distinguish between the master and the partition in sysfs.
David Brownell1f24b5a2009-03-26 00:42:41 -0700411 */
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700412 slave->mtd.dev.parent = IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER) ?
413 &master->dev :
414 master->dev.parent;
David Brownell1f24b5a2009-03-26 00:42:41 -0700415
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200416 slave->mtd._read = part_read;
417 slave->mtd._write = part_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900418
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200419 if (master->_panic_write)
420 slave->mtd._panic_write = part_panic_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900421
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200422 if (master->_point && master->_unpoint) {
423 slave->mtd._point = part_point;
424 slave->mtd._unpoint = part_unpoint;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900425 }
426
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200427 if (master->_get_unmapped_area)
428 slave->mtd._get_unmapped_area = part_get_unmapped_area;
429 if (master->_read_oob)
430 slave->mtd._read_oob = part_read_oob;
431 if (master->_write_oob)
432 slave->mtd._write_oob = part_write_oob;
433 if (master->_read_user_prot_reg)
434 slave->mtd._read_user_prot_reg = part_read_user_prot_reg;
435 if (master->_read_fact_prot_reg)
436 slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg;
437 if (master->_write_user_prot_reg)
438 slave->mtd._write_user_prot_reg = part_write_user_prot_reg;
439 if (master->_lock_user_prot_reg)
440 slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg;
441 if (master->_get_user_prot_info)
442 slave->mtd._get_user_prot_info = part_get_user_prot_info;
443 if (master->_get_fact_prot_info)
444 slave->mtd._get_fact_prot_info = part_get_fact_prot_info;
445 if (master->_sync)
446 slave->mtd._sync = part_sync;
447 if (!partno && !master->dev.class && master->_suspend &&
448 master->_resume) {
449 slave->mtd._suspend = part_suspend;
450 slave->mtd._resume = part_resume;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900451 }
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200452 if (master->_writev)
453 slave->mtd._writev = part_writev;
454 if (master->_lock)
455 slave->mtd._lock = part_lock;
456 if (master->_unlock)
457 slave->mtd._unlock = part_unlock;
458 if (master->_is_locked)
459 slave->mtd._is_locked = part_is_locked;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300460 if (master->_block_isreserved)
461 slave->mtd._block_isreserved = part_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200462 if (master->_block_isbad)
463 slave->mtd._block_isbad = part_block_isbad;
464 if (master->_block_markbad)
465 slave->mtd._block_markbad = part_block_markbad;
466 slave->mtd._erase = part_erase;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900467 slave->master = master;
468 slave->offset = part->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900469
470 if (slave->offset == MTDPART_OFS_APPEND)
471 slave->offset = cur_offset;
472 if (slave->offset == MTDPART_OFS_NXTBLK) {
473 slave->offset = cur_offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000474 if (mtd_mod_by_eb(cur_offset, master) != 0) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900475 /* Round up to next erasesize */
Adrian Hunter69423d92008-12-10 13:37:21 +0000476 slave->offset = (mtd_div_by_eb(cur_offset, master) + 1) * master->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900477 printk(KERN_NOTICE "Moving partition %d: "
Adrian Hunter69423d92008-12-10 13:37:21 +0000478 "0x%012llx -> 0x%012llx\n", partno,
479 (unsigned long long)cur_offset, (unsigned long long)slave->offset);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900480 }
481 }
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400482 if (slave->offset == MTDPART_OFS_RETAIN) {
483 slave->offset = cur_offset;
484 if (master->size - slave->offset >= slave->mtd.size) {
485 slave->mtd.size = master->size - slave->offset
486 - slave->mtd.size;
487 } else {
488 printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n",
489 part->name, master->size - slave->offset,
490 slave->mtd.size);
491 /* register to preserve ordering */
492 goto out_register;
493 }
494 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900495 if (slave->mtd.size == MTDPART_SIZ_FULL)
496 slave->mtd.size = master->size - slave->offset;
497
Adrian Hunter69423d92008-12-10 13:37:21 +0000498 printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset,
499 (unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900500
501 /* let's do some sanity checks */
502 if (slave->offset >= master->size) {
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900503 /* let's register it anyway to preserve ordering */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900504 slave->offset = 0;
505 slave->mtd.size = 0;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900506 printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900507 part->name);
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900508 goto out_register;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900509 }
510 if (slave->offset + slave->mtd.size > master->size) {
511 slave->mtd.size = master->size - slave->offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000512 printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n",
513 part->name, master->name, (unsigned long long)slave->mtd.size);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900514 }
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900515 if (master->numeraseregions > 1) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900516 /* Deal with variable erase size stuff */
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900517 int i, max = master->numeraseregions;
Adrian Hunter69423d92008-12-10 13:37:21 +0000518 u64 end = slave->offset + slave->mtd.size;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900519 struct mtd_erase_region_info *regions = master->eraseregions;
520
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900521 /* Find the first erase regions which is part of this
522 * partition. */
523 for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900524 ;
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900525 /* The loop searched for the region _behind_ the first one */
Roel Kluina57ca042009-09-18 12:51:50 -0700526 if (i > 0)
527 i--;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900528
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900529 /* Pick biggest erasesize */
530 for (; i < max && regions[i].offset < end; i++) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900531 if (slave->mtd.erasesize < regions[i].erasesize) {
532 slave->mtd.erasesize = regions[i].erasesize;
533 }
534 }
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900535 BUG_ON(slave->mtd.erasesize == 0);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900536 } else {
537 /* Single erase size */
538 slave->mtd.erasesize = master->erasesize;
539 }
540
541 if ((slave->mtd.flags & MTD_WRITEABLE) &&
Adrian Hunter69423d92008-12-10 13:37:21 +0000542 mtd_mod_by_eb(slave->offset, &slave->mtd)) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900543 /* Doesn't start on a boundary of major erase size */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900544 /* FIXME: Let it be writable if it is on a boundary of
545 * _minor_ erase size though */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900546 slave->mtd.flags &= ~MTD_WRITEABLE;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900547 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 +0900548 part->name);
549 }
550 if ((slave->mtd.flags & MTD_WRITEABLE) &&
Adrian Hunter69423d92008-12-10 13:37:21 +0000551 mtd_mod_by_eb(slave->mtd.size, &slave->mtd)) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900552 slave->mtd.flags &= ~MTD_WRITEABLE;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900553 printk(KERN_WARNING"mtd: partition \"%s\" doesn't end on an erase block -- force read-only\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900554 part->name);
555 }
556
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100557 mtd_set_ooblayout(&slave->mtd, &part_ooblayout_ops);
Huang Shijiebdf69c42013-08-16 10:10:06 +0800558 slave->mtd.ecc_step_size = master->ecc_step_size;
Mike Dunn6a918ba2012-03-11 14:21:11 -0700559 slave->mtd.ecc_strength = master->ecc_strength;
Mike Dunnd062d4e2012-04-25 12:06:08 -0700560 slave->mtd.bitflip_threshold = master->bitflip_threshold;
561
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200562 if (master->_block_isbad) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000563 uint64_t offs = 0;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900564
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900565 while (offs < slave->mtd.size) {
Ezequiel Garciafdf43a42014-03-21 08:57:44 -0300566 if (mtd_block_isreserved(master, offs + slave->offset))
567 slave->mtd.ecc_stats.bbtblocks++;
568 else if (mtd_block_isbad(master, offs + slave->offset))
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900569 slave->mtd.ecc_stats.badblocks++;
570 offs += slave->mtd.erasesize;
571 }
572 }
573
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900574out_register:
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900575 return slave;
576}
577
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700578static ssize_t mtd_partition_offset_show(struct device *dev,
579 struct device_attribute *attr, char *buf)
580{
581 struct mtd_info *mtd = dev_get_drvdata(dev);
Brian Norris25245342015-11-19 19:28:39 -0800582 struct mtd_part *part = mtd_to_part(mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700583 return snprintf(buf, PAGE_SIZE, "%lld\n", part->offset);
584}
585
586static DEVICE_ATTR(offset, S_IRUGO, mtd_partition_offset_show, NULL);
587
588static const struct attribute *mtd_partition_attrs[] = {
589 &dev_attr_offset.attr,
590 NULL
591};
592
593static int mtd_add_partition_attrs(struct mtd_part *new)
594{
595 int ret = sysfs_create_files(&new->mtd.dev.kobj, mtd_partition_attrs);
596 if (ret)
597 printk(KERN_WARNING
598 "mtd: failed to create partition attrs, err=%d\n", ret);
599 return ret;
600}
601
Geert Uytterhoeven26a6d242013-11-12 20:11:26 +0100602int mtd_add_partition(struct mtd_info *master, const char *name,
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300603 long long offset, long long length)
604{
605 struct mtd_partition part;
Dan Ehrenberg3a434f62015-04-02 15:15:12 -0700606 struct mtd_part *new;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300607 int ret = 0;
608
609 /* the direct offset is expected */
610 if (offset == MTDPART_OFS_APPEND ||
611 offset == MTDPART_OFS_NXTBLK)
612 return -EINVAL;
613
614 if (length == MTDPART_SIZ_FULL)
615 length = master->size - offset;
616
617 if (length <= 0)
618 return -EINVAL;
619
Brian Norris93867232015-11-11 16:47:52 -0800620 memset(&part, 0, sizeof(part));
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300621 part.name = name;
622 part.size = length;
623 part.offset = offset;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300624
625 new = allocate_partition(master, &part, -1, offset);
626 if (IS_ERR(new))
627 return PTR_ERR(new);
628
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300629 mutex_lock(&mtd_partitions_mutex);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300630 list_add(&new->list, &mtd_partitions);
631 mutex_unlock(&mtd_partitions_mutex);
632
633 add_mtd_device(&new->mtd);
634
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700635 mtd_add_partition_attrs(new);
636
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300637 return ret;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300638}
639EXPORT_SYMBOL_GPL(mtd_add_partition);
640
641int mtd_del_partition(struct mtd_info *master, int partno)
642{
643 struct mtd_part *slave, *next;
644 int ret = -EINVAL;
645
646 mutex_lock(&mtd_partitions_mutex);
647 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
648 if ((slave->master == master) &&
649 (slave->mtd.index == partno)) {
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700650 sysfs_remove_files(&slave->mtd.dev.kobj,
651 mtd_partition_attrs);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300652 ret = del_mtd_device(&slave->mtd);
653 if (ret < 0)
654 break;
655
656 list_del(&slave->list);
657 free_partition(slave);
658 break;
659 }
660 mutex_unlock(&mtd_partitions_mutex);
661
662 return ret;
663}
664EXPORT_SYMBOL_GPL(mtd_del_partition);
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666/*
667 * This function, given a master MTD object and a partition table, creates
668 * and registers slave MTD objects which are bound to the master according to
669 * the partition definitions.
David Brownell1f24b5a2009-03-26 00:42:41 -0700670 *
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700671 * For historical reasons, this function's caller only registers the master
672 * if the MTD_PARTITIONED_MASTER config option is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 */
674
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000675int add_mtd_partitions(struct mtd_info *master,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 const struct mtd_partition *parts,
677 int nbparts)
678{
679 struct mtd_part *slave;
Adrian Hunter69423d92008-12-10 13:37:21 +0000680 uint64_t cur_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 int i;
682
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900683 printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 for (i = 0; i < nbparts; i++) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300686 slave = allocate_partition(master, parts + i, i, cur_offset);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200687 if (IS_ERR(slave)) {
688 del_mtd_partitions(master);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300689 return PTR_ERR(slave);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200690 }
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300691
692 mutex_lock(&mtd_partitions_mutex);
693 list_add(&slave->list, &mtd_partitions);
694 mutex_unlock(&mtd_partitions_mutex);
695
696 add_mtd_device(&slave->mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700697 mtd_add_partition_attrs(slave);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 cur_offset = slave->offset + slave->mtd.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
702 return 0;
703}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705static DEFINE_SPINLOCK(part_parser_lock);
706static LIST_HEAD(part_parsers);
707
Brian Norris5531ae42015-12-04 15:25:15 -0800708static struct mtd_part_parser *mtd_part_parser_get(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Chris Malley71a928c2008-05-19 20:11:50 +0100710 struct mtd_part_parser *p, *ret = NULL;
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 spin_lock(&part_parser_lock);
713
Chris Malley71a928c2008-05-19 20:11:50 +0100714 list_for_each_entry(p, &part_parsers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (!strcmp(p->name, name) && try_module_get(p->owner)) {
716 ret = p;
717 break;
718 }
Chris Malley71a928c2008-05-19 20:11:50 +0100719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 spin_unlock(&part_parser_lock);
721
722 return ret;
723}
724
Brian Norris5531ae42015-12-04 15:25:15 -0800725static inline void mtd_part_parser_put(const struct mtd_part_parser *p)
726{
727 module_put(p->owner);
728}
Dmitry Eremin-Solenikov953b3bd2011-06-23 15:26:14 +0400729
Brian Norrisadc83bf2015-12-09 10:24:03 -0800730/*
731 * Many partition parsers just expected the core to kfree() all their data in
732 * one chunk. Do that by default.
733 */
734static void mtd_part_parser_cleanup_default(const struct mtd_partition *pparts,
735 int nr_parts)
736{
737 kfree(pparts);
738}
739
Brian Norrisb9eab012015-11-11 19:13:29 -0800740int __register_mtd_parser(struct mtd_part_parser *p, struct module *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Brian Norrisb9eab012015-11-11 19:13:29 -0800742 p->owner = owner;
743
Brian Norrisadc83bf2015-12-09 10:24:03 -0800744 if (!p->cleanup)
745 p->cleanup = &mtd_part_parser_cleanup_default;
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 spin_lock(&part_parser_lock);
748 list_add(&p->list, &part_parsers);
749 spin_unlock(&part_parser_lock);
Brian Norrisb9eab012015-11-11 19:13:29 -0800750
751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
Brian Norrisb9eab012015-11-11 19:13:29 -0800753EXPORT_SYMBOL_GPL(__register_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Axel Lincf3b2b12013-12-01 18:59:15 +0800755void deregister_mtd_parser(struct mtd_part_parser *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 spin_lock(&part_parser_lock);
758 list_del(&p->list);
759 spin_unlock(&part_parser_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900761EXPORT_SYMBOL_GPL(deregister_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300763/*
764 * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you
765 * are changing this array!
766 */
Artem Bityutskiyccef4dc2013-03-12 10:51:35 +0200767static const char * const default_mtd_part_types[] = {
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400768 "cmdlinepart",
769 "ofpart",
770 NULL
771};
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400772
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300773/**
774 * parse_mtd_partitions - parse MTD partitions
775 * @master: the master partition (describes whole MTD device)
776 * @types: names of partition parsers to try or %NULL
Brian Norris07fd2f82015-12-04 15:25:17 -0800777 * @pparts: info about partitions found is returned here
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400778 * @data: MTD partition parser-specific data
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300779 *
780 * This function tries to find partition on MTD device @master. It uses MTD
781 * partition parsers, specified in @types. However, if @types is %NULL, then
782 * the default list of parsers is used. The default list contains only the
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400783 * "cmdlinepart" and "ofpart" parsers ATM.
Huang Shijiec51803d2012-08-18 13:07:41 -0400784 * Note: If there are more then one parser in @types, the kernel only takes the
785 * partitions parsed out by the first parser.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300786 *
787 * This function may return:
788 * o a negative error code in case of failure
Brian Norris07fd2f82015-12-04 15:25:17 -0800789 * o zero otherwise, and @pparts will describe the partitions, number of
Brian Norrisadc83bf2015-12-09 10:24:03 -0800790 * partitions, and the parser which parsed them. Caller must release
791 * resources with mtd_part_parser_cleanup() when finished with the returned
792 * data.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300793 */
Artem Bityutskiy26a47342013-03-11 15:38:48 +0200794int parse_mtd_partitions(struct mtd_info *master, const char *const *types,
Brian Norris07fd2f82015-12-04 15:25:17 -0800795 struct mtd_partitions *pparts,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400796 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct mtd_part_parser *parser;
Brian Norris5a2415b2015-10-11 13:03:47 -0700799 int ret, err = 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000800
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400801 if (!types)
802 types = default_mtd_part_types;
803
Brian Norris5a2415b2015-10-11 13:03:47 -0700804 for ( ; *types; types++) {
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000805 pr_debug("%s: parsing partitions %s\n", master->name, *types);
Brian Norris5531ae42015-12-04 15:25:15 -0800806 parser = mtd_part_parser_get(*types);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!parser && !request_module("%s", *types))
Brian Norris5531ae42015-12-04 15:25:15 -0800808 parser = mtd_part_parser_get(*types);
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000809 pr_debug("%s: got parser %s\n", master->name,
810 parser ? parser->name : NULL);
Artem Bityutskiy7c802fb2011-05-17 11:13:17 +0300811 if (!parser)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 continue;
Brian Norris07fd2f82015-12-04 15:25:17 -0800813 ret = (*parser->parse_fn)(master, &pparts->parts, data);
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000814 pr_debug("%s: parser %s: %i\n",
815 master->name, parser->name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (ret > 0) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000817 printk(KERN_NOTICE "%d %s partitions found on MTD device %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 ret, parser->name, master->name);
Brian Norris07fd2f82015-12-04 15:25:17 -0800819 pparts->nr_parts = ret;
820 pparts->parser = parser;
821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Brian Norrisadc83bf2015-12-09 10:24:03 -0800823 mtd_part_parser_put(parser);
Brian Norris5a2415b2015-10-11 13:03:47 -0700824 /*
825 * Stash the first error we see; only report it if no parser
826 * succeeds
827 */
828 if (ret < 0 && !err)
829 err = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
Brian Norris5a2415b2015-10-11 13:03:47 -0700831 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300833
Brian Norrisadc83bf2015-12-09 10:24:03 -0800834void mtd_part_parser_cleanup(struct mtd_partitions *parts)
835{
836 const struct mtd_part_parser *parser;
837
838 if (!parts)
839 return;
840
841 parser = parts->parser;
842 if (parser) {
843 if (parser->cleanup)
844 parser->cleanup(parts->parts, parts->nr_parts);
845
846 mtd_part_parser_put(parser);
847 }
848}
849
Richard Genoud5dee4672012-07-10 18:23:39 +0200850int mtd_is_partition(const struct mtd_info *mtd)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300851{
852 struct mtd_part *part;
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200853 int ispart = 0;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300854
855 mutex_lock(&mtd_partitions_mutex);
856 list_for_each_entry(part, &mtd_partitions, list)
857 if (&part->mtd == mtd) {
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200858 ispart = 1;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300859 break;
860 }
861 mutex_unlock(&mtd_partitions_mutex);
862
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200863 return ispart;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300864}
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200865EXPORT_SYMBOL_GPL(mtd_is_partition);
Richard Genoud62082e52012-07-10 18:23:40 +0200866
867/* Returns the size of the entire flash chip */
868uint64_t mtd_get_device_size(const struct mtd_info *mtd)
869{
870 if (!mtd_is_partition(mtd))
871 return mtd->size;
872
Brian Norris25245342015-11-19 19:28:39 -0800873 return mtd_to_part(mtd)->master->size;
Richard Genoud62082e52012-07-10 18:23:40 +0200874}
875EXPORT_SYMBOL_GPL(mtd_get_device_size);