blob: dd28cb0de2c89f5c95d445165fd3213f968485c4 [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
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +020040/**
41 * struct mtd_part - our partition node structure
42 *
43 * @mtd: struct holding partition details
44 * @parent: parent mtd - flash device or another partition
45 * @offset: partition offset relative to the *flash device*
46 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047struct mtd_part {
48 struct mtd_info mtd;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +020049 struct mtd_info *parent;
Adrian Hunter69423d92008-12-10 13:37:21 +000050 uint64_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
54/*
55 * Given a pointer to the MTD object in the mtd_part structure, we can retrieve
Brian Norris25245342015-11-19 19:28:39 -080056 * the pointer to that structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 */
Brian Norris25245342015-11-19 19:28:39 -080058static inline struct mtd_part *mtd_to_part(const struct mtd_info *mtd)
59{
60 return container_of(mtd, struct mtd_part, mtd);
61}
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Thomas Gleixner97894cd2005-11-07 11:15:26 +000063
64/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * MTD methods which simply translate the effective address and pass through
66 * to the _real_ device.
67 */
68
Atsushi Nemotob33a2882008-07-19 01:00:33 +090069static int part_read(struct mtd_info *mtd, loff_t from, size_t len,
70 size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Brian Norris25245342015-11-19 19:28:39 -080072 struct mtd_part *part = mtd_to_part(mtd);
Yauhen Kharuzhyd8877f12009-03-27 00:41:09 +020073 struct mtd_ecc_stats stats;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020074 int res;
75
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +020076 stats = part->parent->ecc_stats;
77 res = part->parent->_read(part->parent, from + part->offset, len,
Mike Dunn994c8402012-03-03 13:13:06 -080078 retlen, buf);
Mike Dunnedbc45402012-04-25 12:06:11 -070079 if (unlikely(mtd_is_eccerr(res)))
80 mtd->ecc_stats.failed +=
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +020081 part->parent->ecc_stats.failed - stats.failed;
Mike Dunnedbc45402012-04-25 12:06:11 -070082 else
83 mtd->ecc_stats.corrected +=
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +020084 part->parent->ecc_stats.corrected - stats.corrected;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020085 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Atsushi Nemotob33a2882008-07-19 01:00:33 +090088static int part_point(struct mtd_info *mtd, loff_t from, size_t len,
89 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Brian Norris25245342015-11-19 19:28:39 -080091 struct mtd_part *part = mtd_to_part(mtd);
Artem Bityutskiy5def4892012-02-03 16:23:52 +020092
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +020093 return part->parent->_point(part->parent, from + part->offset, len,
Mike Dunn994c8402012-03-03 13:13:06 -080094 retlen, virt, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
Thomas Gleixner9223a452006-05-23 17:21:03 +020096
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020097static int part_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Brian Norris25245342015-11-19 19:28:39 -080099 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200101 return part->parent->_unpoint(part->parent, from + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200104static int part_read_oob(struct mtd_info *mtd, loff_t from,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900105 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Brian Norris25245342015-11-19 19:28:39 -0800107 struct mtd_part *part = mtd_to_part(mtd);
Boris Brezillond020fc82018-01-09 09:50:33 +0100108 struct mtd_ecc_stats stats;
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
Boris BREZILLON29f10582016-03-07 10:46:52 +0100123 len = mtd_oobavail(mtd, ops);
Artem Bityutskiy154bf892011-01-16 17:50:54 +0200124 pages = mtd_div_by_ws(mtd->size, mtd);
125 pages -= mtd_div_by_ws(from, mtd);
126 if (ops->ooboffs + ops->ooblen > pages * len)
127 return -EINVAL;
128 }
129
Boris Brezillond020fc82018-01-09 09:50:33 +0100130 stats = part->parent->ecc_stats;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200131 res = part->parent->_read_oob(part->parent, from + part->offset, ops);
Boris Brezillond020fc82018-01-09 09:50:33 +0100132 if (unlikely(mtd_is_eccerr(res)))
133 mtd->ecc_stats.failed +=
134 part->parent->ecc_stats.failed - stats.failed;
135 else
136 mtd->ecc_stats.corrected +=
137 part->parent->ecc_stats.corrected - stats.corrected;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200138 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900141static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
142 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Brian Norris25245342015-11-19 19:28:39 -0800144 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200145 return part->parent->_read_user_prot_reg(part->parent, from, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800146 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Christian Riesch4b78fc42f2014-01-28 09:29:44 +0100149static int part_get_user_prot_info(struct mtd_info *mtd, size_t len,
150 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000151{
Brian Norris25245342015-11-19 19:28:39 -0800152 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200153 return part->parent->_get_user_prot_info(part->parent, len, retlen,
Christian Riesch4b78fc42f2014-01-28 09:29:44 +0100154 buf);
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{
Brian Norris25245342015-11-19 19:28:39 -0800160 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200161 return part->parent->_read_fact_prot_reg(part->parent, from, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800162 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Christian Riesch4b78fc42f2014-01-28 09:29:44 +0100165static int part_get_fact_prot_info(struct mtd_info *mtd, size_t len,
166 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000167{
Brian Norris25245342015-11-19 19:28:39 -0800168 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200169 return part->parent->_get_fact_prot_info(part->parent, len, retlen,
Christian Riesch4b78fc42f2014-01-28 09:29:44 +0100170 buf);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000171}
172
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900173static int part_write(struct mtd_info *mtd, loff_t to, size_t len,
174 size_t *retlen, const u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Brian Norris25245342015-11-19 19:28:39 -0800176 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200177 return part->parent->_write(part->parent, to + part->offset, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800178 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900181static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
182 size_t *retlen, const u_char *buf)
Richard Purdie388bbb02008-02-06 10:17:15 +0000183{
Brian Norris25245342015-11-19 19:28:39 -0800184 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200185 return part->parent->_panic_write(part->parent, to + part->offset, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800186 retlen, buf);
Richard Purdie388bbb02008-02-06 10:17:15 +0000187}
188
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200189static int part_write_oob(struct mtd_info *mtd, loff_t to,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900190 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Brian Norris25245342015-11-19 19:28:39 -0800192 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (to >= mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200195 return -EINVAL;
Vitaly Wool70145682006-11-03 18:20:38 +0300196 if (ops->datbuf && to + ops->len > mtd->size)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200197 return -EINVAL;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200198 return part->parent->_write_oob(part->parent, to + part->offset, ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900201static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
202 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Brian Norris25245342015-11-19 19:28:39 -0800204 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200205 return part->parent->_write_user_prot_reg(part->parent, from, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800206 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900209static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
210 size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000211{
Brian Norris25245342015-11-19 19:28:39 -0800212 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200213 return part->parent->_lock_user_prot_reg(part->parent, from, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000214}
215
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900216static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
217 unsigned long count, loff_t to, size_t *retlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Brian Norris25245342015-11-19 19:28:39 -0800219 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200220 return part->parent->_writev(part->parent, vecs, count,
Mike Dunn994c8402012-03-03 13:13:06 -0800221 to + part->offset, retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900224static int part_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Brian Norris25245342015-11-19 19:28:39 -0800226 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int ret;
Artem Bityutskiy664addc2012-02-03 18:13:23 +0200228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 instr->addr += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200230 ret = part->parent->_erase(part->parent, instr);
Adrian Hunter74641d72007-03-08 12:20:12 +0200231 if (ret) {
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300232 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Adrian Hunter74641d72007-03-08 12:20:12 +0200233 instr->fail_addr -= part->offset;
234 instr->addr -= part->offset;
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return ret;
237}
238
239void mtd_erase_callback(struct erase_info *instr)
240{
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200241 if (instr->mtd->_erase == part_erase) {
Brian Norris25245342015-11-19 19:28:39 -0800242 struct mtd_part *part = mtd_to_part(instr->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300244 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 instr->fail_addr -= part->offset;
246 instr->addr -= part->offset;
247 }
248 if (instr->callback)
249 instr->callback(instr);
250}
251EXPORT_SYMBOL_GPL(mtd_erase_callback);
252
Adrian Hunter69423d92008-12-10 13:37:21 +0000253static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Brian Norris25245342015-11-19 19:28:39 -0800255 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200256 return part->parent->_lock(part->parent, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Adrian Hunter69423d92008-12-10 13:37:21 +0000259static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Brian Norris25245342015-11-19 19:28:39 -0800261 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200262 return part->parent->_unlock(part->parent, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Richard Cochran99384242010-06-14 18:10:33 +0200265static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
266{
Brian Norris25245342015-11-19 19:28:39 -0800267 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200268 return part->parent->_is_locked(part->parent, ofs + part->offset, len);
Richard Cochran99384242010-06-14 18:10:33 +0200269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271static void part_sync(struct mtd_info *mtd)
272{
Brian Norris25245342015-11-19 19:28:39 -0800273 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200274 part->parent->_sync(part->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277static int part_suspend(struct mtd_info *mtd)
278{
Brian Norris25245342015-11-19 19:28:39 -0800279 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200280 return part->parent->_suspend(part->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283static void part_resume(struct mtd_info *mtd)
284{
Brian Norris25245342015-11-19 19:28:39 -0800285 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200286 part->parent->_resume(part->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300289static int part_block_isreserved(struct mtd_info *mtd, loff_t ofs)
290{
Brian Norris25245342015-11-19 19:28:39 -0800291 struct mtd_part *part = mtd_to_part(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300292 ofs += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200293 return part->parent->_block_isreserved(part->parent, ofs);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300294}
295
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900296static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Brian Norris25245342015-11-19 19:28:39 -0800298 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 ofs += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200300 return part->parent->_block_isbad(part->parent, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900303static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Brian Norris25245342015-11-19 19:28:39 -0800305 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200306 int res;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 ofs += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200309 res = part->parent->_block_markbad(part->parent, ofs);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200310 if (!res)
311 mtd->ecc_stats.badblocks++;
312 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Richard Weinberger5e149072016-09-21 11:43:56 +0200315static int part_get_device(struct mtd_info *mtd)
316{
317 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200318 return part->parent->_get_device(part->parent);
Richard Weinberger5e149072016-09-21 11:43:56 +0200319}
320
321static void part_put_device(struct mtd_info *mtd)
322{
323 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200324 part->parent->_put_device(part->parent);
Richard Weinberger5e149072016-09-21 11:43:56 +0200325}
326
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100327static int part_ooblayout_ecc(struct mtd_info *mtd, int section,
328 struct mtd_oob_region *oobregion)
329{
330 struct mtd_part *part = mtd_to_part(mtd);
331
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200332 return mtd_ooblayout_ecc(part->parent, section, oobregion);
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100333}
334
335static int part_ooblayout_free(struct mtd_info *mtd, int section,
336 struct mtd_oob_region *oobregion)
337{
338 struct mtd_part *part = mtd_to_part(mtd);
339
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200340 return mtd_ooblayout_free(part->parent, section, oobregion);
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100341}
342
343static const struct mtd_ooblayout_ops part_ooblayout_ops = {
344 .ecc = part_ooblayout_ecc,
345 .free = part_ooblayout_free,
346};
347
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600348static int part_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
349{
350 struct mtd_part *part = mtd_to_part(mtd);
351
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200352 return part->parent->_max_bad_blocks(part->parent,
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600353 ofs + part->offset, len);
354}
355
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300356static inline void free_partition(struct mtd_part *p)
357{
358 kfree(p->mtd.name);
359 kfree(p);
360}
361
Rafał Miłecki1a0915b2017-06-21 08:26:46 +0200362/**
363 * mtd_parse_part - parse MTD partition looking for subpartitions
364 *
365 * @slave: part that is supposed to be a container and should be parsed
366 * @types: NULL-terminated array with names of partition parsers to try
367 *
368 * Some partitions are kind of containers with extra subpartitions (volumes).
369 * There can be various formats of such containers. This function tries to use
370 * specified parsers to analyze given partition and registers found
371 * subpartitions on success.
372 */
373static int mtd_parse_part(struct mtd_part *slave, const char *const *types)
374{
375 struct mtd_partitions parsed;
376 int err;
377
378 err = parse_mtd_partitions(&slave->mtd, types, &parsed, NULL);
379 if (err)
380 return err;
381 else if (!parsed.nr_parts)
382 return -ENOENT;
383
384 err = add_mtd_partitions(&slave->mtd, parsed.parts, parsed.nr_parts);
385
386 mtd_part_parser_cleanup(&parsed);
387
388 return err;
389}
390
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200391static struct mtd_part *allocate_partition(struct mtd_info *parent,
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300392 const struct mtd_partition *part, int partno,
393 uint64_t cur_offset)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900394{
Brian Norrisc169e3d2017-06-22 14:09:18 -0700395 int wr_alignment = (parent->flags & MTD_NO_ERASE) ? parent->writesize :
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200396 parent->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900397 struct mtd_part *slave;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200398 u32 remainder;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300399 char *name;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200400 u64 tmp;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900401
402 /* allocate the partition structure */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900403 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300404 name = kstrdup(part->name, GFP_KERNEL);
405 if (!name || !slave) {
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900406 printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200407 parent->name);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300408 kfree(name);
409 kfree(slave);
410 return ERR_PTR(-ENOMEM);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900411 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900412
413 /* set up the MTD object for this partition */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200414 slave->mtd.type = parent->type;
415 slave->mtd.flags = parent->flags & ~part->mask_flags;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900416 slave->mtd.size = part->size;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200417 slave->mtd.writesize = parent->writesize;
418 slave->mtd.writebufsize = parent->writebufsize;
419 slave->mtd.oobsize = parent->oobsize;
420 slave->mtd.oobavail = parent->oobavail;
421 slave->mtd.subpage_sft = parent->subpage_sft;
422 slave->mtd.pairing = parent->pairing;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900423
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300424 slave->mtd.name = name;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200425 slave->mtd.owner = parent->owner;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900426
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700427 /* NOTE: Historically, we didn't arrange MTDs as a tree out of
428 * concern for showing the same data in multiple partitions.
429 * However, it is very useful to have the master node present,
430 * so the MTD_PARTITIONED_MASTER option allows that. The master
431 * will have device nodes etc only if this is set, so make the
432 * parent conditional on that option. Note, this is a way to
433 * distinguish between the master and the partition in sysfs.
David Brownell1f24b5a2009-03-26 00:42:41 -0700434 */
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200435 slave->mtd.dev.parent = IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER) || mtd_is_partition(parent) ?
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200436 &parent->dev :
437 parent->dev.parent;
Sascha Hauer42e94012017-02-09 11:50:24 +0100438 slave->mtd.dev.of_node = part->of_node;
David Brownell1f24b5a2009-03-26 00:42:41 -0700439
Boris Brezillon24ff1292018-01-09 09:50:34 +0100440 if (parent->_read)
441 slave->mtd._read = part_read;
442 if (parent->_write)
443 slave->mtd._write = part_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900444
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200445 if (parent->_panic_write)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200446 slave->mtd._panic_write = part_panic_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900447
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200448 if (parent->_point && parent->_unpoint) {
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200449 slave->mtd._point = part_point;
450 slave->mtd._unpoint = part_unpoint;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900451 }
452
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200453 if (parent->_read_oob)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200454 slave->mtd._read_oob = part_read_oob;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200455 if (parent->_write_oob)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200456 slave->mtd._write_oob = part_write_oob;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200457 if (parent->_read_user_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200458 slave->mtd._read_user_prot_reg = part_read_user_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200459 if (parent->_read_fact_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200460 slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200461 if (parent->_write_user_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200462 slave->mtd._write_user_prot_reg = part_write_user_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200463 if (parent->_lock_user_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200464 slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200465 if (parent->_get_user_prot_info)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200466 slave->mtd._get_user_prot_info = part_get_user_prot_info;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200467 if (parent->_get_fact_prot_info)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200468 slave->mtd._get_fact_prot_info = part_get_fact_prot_info;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200469 if (parent->_sync)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200470 slave->mtd._sync = part_sync;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200471 if (!partno && !parent->dev.class && parent->_suspend &&
472 parent->_resume) {
Brian Norrisc169e3d2017-06-22 14:09:18 -0700473 slave->mtd._suspend = part_suspend;
474 slave->mtd._resume = part_resume;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900475 }
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200476 if (parent->_writev)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200477 slave->mtd._writev = part_writev;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200478 if (parent->_lock)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200479 slave->mtd._lock = part_lock;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200480 if (parent->_unlock)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200481 slave->mtd._unlock = part_unlock;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200482 if (parent->_is_locked)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200483 slave->mtd._is_locked = part_is_locked;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200484 if (parent->_block_isreserved)
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300485 slave->mtd._block_isreserved = part_block_isreserved;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200486 if (parent->_block_isbad)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200487 slave->mtd._block_isbad = part_block_isbad;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200488 if (parent->_block_markbad)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200489 slave->mtd._block_markbad = part_block_markbad;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200490 if (parent->_max_bad_blocks)
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600491 slave->mtd._max_bad_blocks = part_max_bad_blocks;
Richard Weinberger5e149072016-09-21 11:43:56 +0200492
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200493 if (parent->_get_device)
Richard Weinberger5e149072016-09-21 11:43:56 +0200494 slave->mtd._get_device = part_get_device;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200495 if (parent->_put_device)
Richard Weinberger5e149072016-09-21 11:43:56 +0200496 slave->mtd._put_device = part_put_device;
497
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200498 slave->mtd._erase = part_erase;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200499 slave->parent = parent;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900500 slave->offset = part->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900501
502 if (slave->offset == MTDPART_OFS_APPEND)
503 slave->offset = cur_offset;
504 if (slave->offset == MTDPART_OFS_NXTBLK) {
Chris Packham1eeef2d2017-06-09 15:58:31 +1200505 tmp = cur_offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900506 slave->offset = cur_offset;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200507 remainder = do_div(tmp, wr_alignment);
508 if (remainder) {
509 slave->offset += wr_alignment - remainder;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900510 printk(KERN_NOTICE "Moving partition %d: "
Adrian Hunter69423d92008-12-10 13:37:21 +0000511 "0x%012llx -> 0x%012llx\n", partno,
512 (unsigned long long)cur_offset, (unsigned long long)slave->offset);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900513 }
514 }
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400515 if (slave->offset == MTDPART_OFS_RETAIN) {
516 slave->offset = cur_offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200517 if (parent->size - slave->offset >= slave->mtd.size) {
518 slave->mtd.size = parent->size - slave->offset
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400519 - slave->mtd.size;
520 } else {
521 printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n",
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200522 part->name, parent->size - slave->offset,
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400523 slave->mtd.size);
524 /* register to preserve ordering */
525 goto out_register;
526 }
527 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900528 if (slave->mtd.size == MTDPART_SIZ_FULL)
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200529 slave->mtd.size = parent->size - slave->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900530
Adrian Hunter69423d92008-12-10 13:37:21 +0000531 printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset,
532 (unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900533
534 /* let's do some sanity checks */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200535 if (slave->offset >= parent->size) {
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900536 /* let's register it anyway to preserve ordering */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900537 slave->offset = 0;
538 slave->mtd.size = 0;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900539 printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900540 part->name);
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900541 goto out_register;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900542 }
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200543 if (slave->offset + slave->mtd.size > parent->size) {
544 slave->mtd.size = parent->size - slave->offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000545 printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n",
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200546 part->name, parent->name, (unsigned long long)slave->mtd.size);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900547 }
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200548 if (parent->numeraseregions > 1) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900549 /* Deal with variable erase size stuff */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200550 int i, max = parent->numeraseregions;
Adrian Hunter69423d92008-12-10 13:37:21 +0000551 u64 end = slave->offset + slave->mtd.size;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200552 struct mtd_erase_region_info *regions = parent->eraseregions;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900553
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900554 /* Find the first erase regions which is part of this
555 * partition. */
556 for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900557 ;
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900558 /* The loop searched for the region _behind_ the first one */
Roel Kluina57ca042009-09-18 12:51:50 -0700559 if (i > 0)
560 i--;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900561
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900562 /* Pick biggest erasesize */
563 for (; i < max && regions[i].offset < end; i++) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900564 if (slave->mtd.erasesize < regions[i].erasesize) {
565 slave->mtd.erasesize = regions[i].erasesize;
566 }
567 }
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900568 BUG_ON(slave->mtd.erasesize == 0);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900569 } else {
570 /* Single erase size */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200571 slave->mtd.erasesize = parent->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900572 }
573
Boris Brezillon7e439682017-09-25 10:19:57 +0200574 /*
575 * Slave erasesize might differ from the master one if the master
576 * exposes several regions with different erasesize. Adjust
577 * wr_alignment accordingly.
578 */
579 if (!(slave->mtd.flags & MTD_NO_ERASE))
580 wr_alignment = slave->mtd.erasesize;
581
Chris Packham1eeef2d2017-06-09 15:58:31 +1200582 tmp = slave->offset;
583 remainder = do_div(tmp, wr_alignment);
584 if ((slave->mtd.flags & MTD_WRITEABLE) && remainder) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900585 /* Doesn't start on a boundary of major erase size */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900586 /* FIXME: Let it be writable if it is on a boundary of
587 * _minor_ erase size though */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900588 slave->mtd.flags &= ~MTD_WRITEABLE;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200589 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 +0900590 part->name);
591 }
Chris Packham1eeef2d2017-06-09 15:58:31 +1200592
593 tmp = slave->mtd.size;
594 remainder = do_div(tmp, wr_alignment);
595 if ((slave->mtd.flags & MTD_WRITEABLE) && remainder) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900596 slave->mtd.flags &= ~MTD_WRITEABLE;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200597 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 +0900598 part->name);
599 }
600
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100601 mtd_set_ooblayout(&slave->mtd, &part_ooblayout_ops);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200602 slave->mtd.ecc_step_size = parent->ecc_step_size;
603 slave->mtd.ecc_strength = parent->ecc_strength;
604 slave->mtd.bitflip_threshold = parent->bitflip_threshold;
Mike Dunnd062d4e2012-04-25 12:06:08 -0700605
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200606 if (parent->_block_isbad) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000607 uint64_t offs = 0;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900608
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900609 while (offs < slave->mtd.size) {
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200610 if (mtd_block_isreserved(parent, offs + slave->offset))
Ezequiel Garciafdf43a42014-03-21 08:57:44 -0300611 slave->mtd.ecc_stats.bbtblocks++;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200612 else if (mtd_block_isbad(parent, offs + slave->offset))
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900613 slave->mtd.ecc_stats.badblocks++;
614 offs += slave->mtd.erasesize;
615 }
616 }
617
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900618out_register:
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900619 return slave;
620}
621
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700622static ssize_t mtd_partition_offset_show(struct device *dev,
623 struct device_attribute *attr, char *buf)
624{
625 struct mtd_info *mtd = dev_get_drvdata(dev);
Brian Norris25245342015-11-19 19:28:39 -0800626 struct mtd_part *part = mtd_to_part(mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700627 return snprintf(buf, PAGE_SIZE, "%lld\n", part->offset);
628}
629
630static DEVICE_ATTR(offset, S_IRUGO, mtd_partition_offset_show, NULL);
631
632static const struct attribute *mtd_partition_attrs[] = {
633 &dev_attr_offset.attr,
634 NULL
635};
636
637static int mtd_add_partition_attrs(struct mtd_part *new)
638{
639 int ret = sysfs_create_files(&new->mtd.dev.kobj, mtd_partition_attrs);
640 if (ret)
641 printk(KERN_WARNING
642 "mtd: failed to create partition attrs, err=%d\n", ret);
643 return ret;
644}
645
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200646int mtd_add_partition(struct mtd_info *parent, const char *name,
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300647 long long offset, long long length)
648{
649 struct mtd_partition part;
Dan Ehrenberg3a434f62015-04-02 15:15:12 -0700650 struct mtd_part *new;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300651 int ret = 0;
652
653 /* the direct offset is expected */
654 if (offset == MTDPART_OFS_APPEND ||
655 offset == MTDPART_OFS_NXTBLK)
656 return -EINVAL;
657
658 if (length == MTDPART_SIZ_FULL)
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200659 length = parent->size - offset;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300660
661 if (length <= 0)
662 return -EINVAL;
663
Brian Norris93867232015-11-11 16:47:52 -0800664 memset(&part, 0, sizeof(part));
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300665 part.name = name;
666 part.size = length;
667 part.offset = offset;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300668
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200669 new = allocate_partition(parent, &part, -1, offset);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300670 if (IS_ERR(new))
671 return PTR_ERR(new);
672
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300673 mutex_lock(&mtd_partitions_mutex);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300674 list_add(&new->list, &mtd_partitions);
675 mutex_unlock(&mtd_partitions_mutex);
676
677 add_mtd_device(&new->mtd);
678
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700679 mtd_add_partition_attrs(new);
680
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300681 return ret;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300682}
683EXPORT_SYMBOL_GPL(mtd_add_partition);
684
Rafał Miłecki08263a92017-06-21 08:26:42 +0200685/**
686 * __mtd_del_partition - delete MTD partition
687 *
688 * @priv: internal MTD struct for partition to be deleted
689 *
690 * This function must be called with the partitions mutex locked.
691 */
692static int __mtd_del_partition(struct mtd_part *priv)
693{
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200694 struct mtd_part *child, *next;
Rafał Miłecki08263a92017-06-21 08:26:42 +0200695 int err;
696
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200697 list_for_each_entry_safe(child, next, &mtd_partitions, list) {
698 if (child->parent == &priv->mtd) {
699 err = __mtd_del_partition(child);
700 if (err)
701 return err;
702 }
703 }
704
Rafał Miłeckic5ceaba2017-06-21 08:26:43 +0200705 sysfs_remove_files(&priv->mtd.dev.kobj, mtd_partition_attrs);
706
Rafał Miłecki08263a92017-06-21 08:26:42 +0200707 err = del_mtd_device(&priv->mtd);
708 if (err)
709 return err;
710
711 list_del(&priv->list);
712 free_partition(priv);
713
714 return 0;
715}
716
717/*
718 * This function unregisters and destroy all slave MTD objects which are
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200719 * attached to the given MTD object.
Rafał Miłecki08263a92017-06-21 08:26:42 +0200720 */
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200721int del_mtd_partitions(struct mtd_info *mtd)
Rafał Miłecki08263a92017-06-21 08:26:42 +0200722{
723 struct mtd_part *slave, *next;
724 int ret, err = 0;
725
726 mutex_lock(&mtd_partitions_mutex);
727 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200728 if (slave->parent == mtd) {
Rafał Miłecki08263a92017-06-21 08:26:42 +0200729 ret = __mtd_del_partition(slave);
730 if (ret < 0)
731 err = ret;
732 }
733 mutex_unlock(&mtd_partitions_mutex);
734
735 return err;
736}
737
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200738int mtd_del_partition(struct mtd_info *mtd, int partno)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300739{
740 struct mtd_part *slave, *next;
741 int ret = -EINVAL;
742
743 mutex_lock(&mtd_partitions_mutex);
744 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200745 if ((slave->parent == mtd) &&
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300746 (slave->mtd.index == partno)) {
Rafał Miłecki08263a92017-06-21 08:26:42 +0200747 ret = __mtd_del_partition(slave);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300748 break;
749 }
750 mutex_unlock(&mtd_partitions_mutex);
751
752 return ret;
753}
754EXPORT_SYMBOL_GPL(mtd_del_partition);
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/*
757 * This function, given a master MTD object and a partition table, creates
758 * and registers slave MTD objects which are bound to the master according to
759 * the partition definitions.
David Brownell1f24b5a2009-03-26 00:42:41 -0700760 *
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700761 * For historical reasons, this function's caller only registers the master
762 * if the MTD_PARTITIONED_MASTER config option is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 */
764
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000765int add_mtd_partitions(struct mtd_info *master,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 const struct mtd_partition *parts,
767 int nbparts)
768{
769 struct mtd_part *slave;
Adrian Hunter69423d92008-12-10 13:37:21 +0000770 uint64_t cur_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 int i;
772
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900773 printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 for (i = 0; i < nbparts; i++) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300776 slave = allocate_partition(master, parts + i, i, cur_offset);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200777 if (IS_ERR(slave)) {
778 del_mtd_partitions(master);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300779 return PTR_ERR(slave);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200780 }
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300781
782 mutex_lock(&mtd_partitions_mutex);
783 list_add(&slave->list, &mtd_partitions);
784 mutex_unlock(&mtd_partitions_mutex);
785
786 add_mtd_device(&slave->mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700787 mtd_add_partition_attrs(slave);
Rafał Miłecki1a0915b2017-06-21 08:26:46 +0200788 if (parts[i].types)
789 mtd_parse_part(slave, parts[i].types);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 cur_offset = slave->offset + slave->mtd.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
794 return 0;
795}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797static DEFINE_SPINLOCK(part_parser_lock);
798static LIST_HEAD(part_parsers);
799
Brian Norris5531ae42015-12-04 15:25:15 -0800800static struct mtd_part_parser *mtd_part_parser_get(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Chris Malley71a928c2008-05-19 20:11:50 +0100802 struct mtd_part_parser *p, *ret = NULL;
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 spin_lock(&part_parser_lock);
805
Chris Malley71a928c2008-05-19 20:11:50 +0100806 list_for_each_entry(p, &part_parsers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!strcmp(p->name, name) && try_module_get(p->owner)) {
808 ret = p;
809 break;
810 }
Chris Malley71a928c2008-05-19 20:11:50 +0100811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 spin_unlock(&part_parser_lock);
813
814 return ret;
815}
816
Brian Norris5531ae42015-12-04 15:25:15 -0800817static inline void mtd_part_parser_put(const struct mtd_part_parser *p)
818{
819 module_put(p->owner);
820}
Dmitry Eremin-Solenikov953b3bd2011-06-23 15:26:14 +0400821
Brian Norrisadc83bf2015-12-09 10:24:03 -0800822/*
823 * Many partition parsers just expected the core to kfree() all their data in
824 * one chunk. Do that by default.
825 */
826static void mtd_part_parser_cleanup_default(const struct mtd_partition *pparts,
827 int nr_parts)
828{
829 kfree(pparts);
830}
831
Brian Norrisb9eab012015-11-11 19:13:29 -0800832int __register_mtd_parser(struct mtd_part_parser *p, struct module *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Brian Norrisb9eab012015-11-11 19:13:29 -0800834 p->owner = owner;
835
Brian Norrisadc83bf2015-12-09 10:24:03 -0800836 if (!p->cleanup)
837 p->cleanup = &mtd_part_parser_cleanup_default;
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 spin_lock(&part_parser_lock);
840 list_add(&p->list, &part_parsers);
841 spin_unlock(&part_parser_lock);
Brian Norrisb9eab012015-11-11 19:13:29 -0800842
843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
Brian Norrisb9eab012015-11-11 19:13:29 -0800845EXPORT_SYMBOL_GPL(__register_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Axel Lincf3b2b12013-12-01 18:59:15 +0800847void deregister_mtd_parser(struct mtd_part_parser *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
849 spin_lock(&part_parser_lock);
850 list_del(&p->list);
851 spin_unlock(&part_parser_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900853EXPORT_SYMBOL_GPL(deregister_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300855/*
856 * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you
857 * are changing this array!
858 */
Artem Bityutskiyccef4dc2013-03-12 10:51:35 +0200859static const char * const default_mtd_part_types[] = {
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400860 "cmdlinepart",
861 "ofpart",
862 NULL
863};
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400864
Brian Norris01f9c722017-05-23 07:30:20 +0200865static int mtd_part_do_parse(struct mtd_part_parser *parser,
866 struct mtd_info *master,
867 struct mtd_partitions *pparts,
868 struct mtd_part_parser_data *data)
869{
870 int ret;
871
872 ret = (*parser->parse_fn)(master, &pparts->parts, data);
873 pr_debug("%s: parser %s: %i\n", master->name, parser->name, ret);
874 if (ret <= 0)
875 return ret;
876
877 pr_notice("%d %s partitions found on MTD device %s\n", ret,
878 parser->name, master->name);
879
880 pparts->nr_parts = ret;
881 pparts->parser = parser;
882
883 return ret;
884}
885
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300886/**
887 * parse_mtd_partitions - parse MTD partitions
888 * @master: the master partition (describes whole MTD device)
889 * @types: names of partition parsers to try or %NULL
Brian Norris07fd2f82015-12-04 15:25:17 -0800890 * @pparts: info about partitions found is returned here
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400891 * @data: MTD partition parser-specific data
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300892 *
893 * This function tries to find partition on MTD device @master. It uses MTD
894 * partition parsers, specified in @types. However, if @types is %NULL, then
895 * the default list of parsers is used. The default list contains only the
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400896 * "cmdlinepart" and "ofpart" parsers ATM.
Huang Shijiec51803d2012-08-18 13:07:41 -0400897 * Note: If there are more then one parser in @types, the kernel only takes the
898 * partitions parsed out by the first parser.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300899 *
900 * This function may return:
901 * o a negative error code in case of failure
Brian Norris07fd2f82015-12-04 15:25:17 -0800902 * o zero otherwise, and @pparts will describe the partitions, number of
Brian Norrisadc83bf2015-12-09 10:24:03 -0800903 * partitions, and the parser which parsed them. Caller must release
904 * resources with mtd_part_parser_cleanup() when finished with the returned
905 * data.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300906 */
Artem Bityutskiy26a47342013-03-11 15:38:48 +0200907int parse_mtd_partitions(struct mtd_info *master, const char *const *types,
Brian Norris07fd2f82015-12-04 15:25:17 -0800908 struct mtd_partitions *pparts,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400909 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
911 struct mtd_part_parser *parser;
Brian Norris5a2415b2015-10-11 13:03:47 -0700912 int ret, err = 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000913
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400914 if (!types)
915 types = default_mtd_part_types;
916
Brian Norris5a2415b2015-10-11 13:03:47 -0700917 for ( ; *types; types++) {
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000918 pr_debug("%s: parsing partitions %s\n", master->name, *types);
Brian Norris5531ae42015-12-04 15:25:15 -0800919 parser = mtd_part_parser_get(*types);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (!parser && !request_module("%s", *types))
Brian Norris5531ae42015-12-04 15:25:15 -0800921 parser = mtd_part_parser_get(*types);
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000922 pr_debug("%s: got parser %s\n", master->name,
923 parser ? parser->name : NULL);
Artem Bityutskiy7c802fb2011-05-17 11:13:17 +0300924 if (!parser)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 continue;
Brian Norris01f9c722017-05-23 07:30:20 +0200926 ret = mtd_part_do_parse(parser, master, pparts, data);
927 /* Found partitions! */
928 if (ret > 0)
Brian Norris07fd2f82015-12-04 15:25:17 -0800929 return 0;
Brian Norrisadc83bf2015-12-09 10:24:03 -0800930 mtd_part_parser_put(parser);
Brian Norris5a2415b2015-10-11 13:03:47 -0700931 /*
932 * Stash the first error we see; only report it if no parser
933 * succeeds
934 */
935 if (ret < 0 && !err)
936 err = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
Brian Norris5a2415b2015-10-11 13:03:47 -0700938 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300940
Brian Norrisadc83bf2015-12-09 10:24:03 -0800941void mtd_part_parser_cleanup(struct mtd_partitions *parts)
942{
943 const struct mtd_part_parser *parser;
944
945 if (!parts)
946 return;
947
948 parser = parts->parser;
949 if (parser) {
950 if (parser->cleanup)
951 parser->cleanup(parts->parts, parts->nr_parts);
952
953 mtd_part_parser_put(parser);
954 }
955}
956
Richard Genoud5dee4672012-07-10 18:23:39 +0200957int mtd_is_partition(const struct mtd_info *mtd)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300958{
959 struct mtd_part *part;
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200960 int ispart = 0;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300961
962 mutex_lock(&mtd_partitions_mutex);
963 list_for_each_entry(part, &mtd_partitions, list)
964 if (&part->mtd == mtd) {
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200965 ispart = 1;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300966 break;
967 }
968 mutex_unlock(&mtd_partitions_mutex);
969
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200970 return ispart;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300971}
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200972EXPORT_SYMBOL_GPL(mtd_is_partition);
Richard Genoud62082e562012-07-10 18:23:40 +0200973
974/* Returns the size of the entire flash chip */
975uint64_t mtd_get_device_size(const struct mtd_info *mtd)
976{
977 if (!mtd_is_partition(mtd))
978 return mtd->size;
979
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200980 return mtd_get_device_size(mtd_to_part(mtd)->parent);
Richard Genoud62082e562012-07-10 18:23:40 +0200981}
982EXPORT_SYMBOL_GPL(mtd_get_device_size);