blob: 76cd21d1171b51bb22dd843519db716591649f93 [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
Boris Brezillond020fc82018-01-09 09:50:33 +0100111 stats = part->parent->ecc_stats;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200112 res = part->parent->_read_oob(part->parent, from + part->offset, ops);
Boris Brezillond020fc82018-01-09 09:50:33 +0100113 if (unlikely(mtd_is_eccerr(res)))
114 mtd->ecc_stats.failed +=
115 part->parent->ecc_stats.failed - stats.failed;
116 else
117 mtd->ecc_stats.corrected +=
118 part->parent->ecc_stats.corrected - stats.corrected;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200119 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900122static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
123 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Brian Norris25245342015-11-19 19:28:39 -0800125 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200126 return part->parent->_read_user_prot_reg(part->parent, from, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800127 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Christian Riesch4b78fc42014-01-28 09:29:44 +0100130static int part_get_user_prot_info(struct mtd_info *mtd, size_t len,
131 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000132{
Brian Norris25245342015-11-19 19:28:39 -0800133 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200134 return part->parent->_get_user_prot_info(part->parent, len, retlen,
Christian Riesch4b78fc42014-01-28 09:29:44 +0100135 buf);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000136}
137
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900138static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
139 size_t len, size_t *retlen, u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Brian Norris25245342015-11-19 19:28:39 -0800141 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200142 return part->parent->_read_fact_prot_reg(part->parent, from, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800143 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Christian Riesch4b78fc42014-01-28 09:29:44 +0100146static int part_get_fact_prot_info(struct mtd_info *mtd, size_t len,
147 size_t *retlen, struct otp_info *buf)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000148{
Brian Norris25245342015-11-19 19:28:39 -0800149 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200150 return part->parent->_get_fact_prot_info(part->parent, len, retlen,
Christian Riesch4b78fc42014-01-28 09:29:44 +0100151 buf);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000152}
153
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900154static int part_write(struct mtd_info *mtd, loff_t to, size_t len,
155 size_t *retlen, const u_char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Brian Norris25245342015-11-19 19:28:39 -0800157 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200158 return part->parent->_write(part->parent, to + part->offset, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800159 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900162static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
163 size_t *retlen, const u_char *buf)
Richard Purdie388bbb02008-02-06 10:17:15 +0000164{
Brian Norris25245342015-11-19 19:28:39 -0800165 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200166 return part->parent->_panic_write(part->parent, to + part->offset, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800167 retlen, buf);
Richard Purdie388bbb02008-02-06 10:17:15 +0000168}
169
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200170static int part_write_oob(struct mtd_info *mtd, loff_t to,
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900171 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Brian Norris25245342015-11-19 19:28:39 -0800173 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200174
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200175 return part->parent->_write_oob(part->parent, to + part->offset, ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900178static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
179 size_t len, size_t *retlen, 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);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200182 return part->parent->_write_user_prot_reg(part->parent, from, len,
Mike Dunn994c8402012-03-03 13:13:06 -0800183 retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900186static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
187 size_t len)
Nicolas Pitref77814d2005-02-08 17:11:19 +0000188{
Brian Norris25245342015-11-19 19:28:39 -0800189 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200190 return part->parent->_lock_user_prot_reg(part->parent, from, len);
Nicolas Pitref77814d2005-02-08 17:11:19 +0000191}
192
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900193static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
194 unsigned long count, loff_t to, size_t *retlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Brian Norris25245342015-11-19 19:28:39 -0800196 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200197 return part->parent->_writev(part->parent, vecs, count,
Mike Dunn994c8402012-03-03 13:13:06 -0800198 to + part->offset, retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900201static int part_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Brian Norris25245342015-11-19 19:28:39 -0800203 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int ret;
Artem Bityutskiy664addc2012-02-03 18:13:23 +0200205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 instr->addr += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200207 ret = part->parent->_erase(part->parent, instr);
Adrian Hunter74641d72007-03-08 12:20:12 +0200208 if (ret) {
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300209 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Adrian Hunter74641d72007-03-08 12:20:12 +0200210 instr->fail_addr -= part->offset;
211 instr->addr -= part->offset;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return ret;
214}
215
216void mtd_erase_callback(struct erase_info *instr)
217{
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200218 if (instr->mtd->_erase == part_erase) {
Brian Norris25245342015-11-19 19:28:39 -0800219 struct mtd_part *part = mtd_to_part(instr->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Adrian Hunterbb0eb212008-08-12 12:40:50 +0300221 if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 instr->fail_addr -= part->offset;
223 instr->addr -= part->offset;
224 }
225 if (instr->callback)
226 instr->callback(instr);
227}
228EXPORT_SYMBOL_GPL(mtd_erase_callback);
229
Adrian Hunter69423d92008-12-10 13:37:21 +0000230static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Brian Norris25245342015-11-19 19:28:39 -0800232 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200233 return part->parent->_lock(part->parent, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Adrian Hunter69423d92008-12-10 13:37:21 +0000236static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Brian Norris25245342015-11-19 19:28:39 -0800238 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200239 return part->parent->_unlock(part->parent, ofs + part->offset, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Richard Cochran99384242010-06-14 18:10:33 +0200242static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
243{
Brian Norris25245342015-11-19 19:28:39 -0800244 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200245 return part->parent->_is_locked(part->parent, ofs + part->offset, len);
Richard Cochran99384242010-06-14 18:10:33 +0200246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248static void part_sync(struct mtd_info *mtd)
249{
Brian Norris25245342015-11-19 19:28:39 -0800250 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200251 part->parent->_sync(part->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254static int part_suspend(struct mtd_info *mtd)
255{
Brian Norris25245342015-11-19 19:28:39 -0800256 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200257 return part->parent->_suspend(part->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260static void part_resume(struct mtd_info *mtd)
261{
Brian Norris25245342015-11-19 19:28:39 -0800262 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200263 part->parent->_resume(part->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300266static int part_block_isreserved(struct mtd_info *mtd, loff_t ofs)
267{
Brian Norris25245342015-11-19 19:28:39 -0800268 struct mtd_part *part = mtd_to_part(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300269 ofs += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200270 return part->parent->_block_isreserved(part->parent, ofs);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300271}
272
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900273static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Brian Norris25245342015-11-19 19:28:39 -0800275 struct mtd_part *part = mtd_to_part(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 ofs += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200277 return part->parent->_block_isbad(part->parent, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900280static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Brian Norris25245342015-11-19 19:28:39 -0800282 struct mtd_part *part = mtd_to_part(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200283 int res;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 ofs += part->offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200286 res = part->parent->_block_markbad(part->parent, ofs);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200287 if (!res)
288 mtd->ecc_stats.badblocks++;
289 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Richard Weinberger5e149072016-09-21 11:43:56 +0200292static int part_get_device(struct mtd_info *mtd)
293{
294 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200295 return part->parent->_get_device(part->parent);
Richard Weinberger5e149072016-09-21 11:43:56 +0200296}
297
298static void part_put_device(struct mtd_info *mtd)
299{
300 struct mtd_part *part = mtd_to_part(mtd);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200301 part->parent->_put_device(part->parent);
Richard Weinberger5e149072016-09-21 11:43:56 +0200302}
303
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100304static int part_ooblayout_ecc(struct mtd_info *mtd, int section,
305 struct mtd_oob_region *oobregion)
306{
307 struct mtd_part *part = mtd_to_part(mtd);
308
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200309 return mtd_ooblayout_ecc(part->parent, section, oobregion);
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100310}
311
312static int part_ooblayout_free(struct mtd_info *mtd, int section,
313 struct mtd_oob_region *oobregion)
314{
315 struct mtd_part *part = mtd_to_part(mtd);
316
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200317 return mtd_ooblayout_free(part->parent, section, oobregion);
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100318}
319
320static const struct mtd_ooblayout_ops part_ooblayout_ops = {
321 .ecc = part_ooblayout_ecc,
322 .free = part_ooblayout_free,
323};
324
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600325static int part_max_bad_blocks(struct mtd_info *mtd, loff_t ofs, size_t len)
326{
327 struct mtd_part *part = mtd_to_part(mtd);
328
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200329 return part->parent->_max_bad_blocks(part->parent,
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600330 ofs + part->offset, len);
331}
332
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300333static inline void free_partition(struct mtd_part *p)
334{
335 kfree(p->mtd.name);
336 kfree(p);
337}
338
Rafał Miłecki1a0915b2017-06-21 08:26:46 +0200339/**
340 * mtd_parse_part - parse MTD partition looking for subpartitions
341 *
342 * @slave: part that is supposed to be a container and should be parsed
343 * @types: NULL-terminated array with names of partition parsers to try
344 *
345 * Some partitions are kind of containers with extra subpartitions (volumes).
346 * There can be various formats of such containers. This function tries to use
347 * specified parsers to analyze given partition and registers found
348 * subpartitions on success.
349 */
350static int mtd_parse_part(struct mtd_part *slave, const char *const *types)
351{
352 struct mtd_partitions parsed;
353 int err;
354
355 err = parse_mtd_partitions(&slave->mtd, types, &parsed, NULL);
356 if (err)
357 return err;
358 else if (!parsed.nr_parts)
359 return -ENOENT;
360
361 err = add_mtd_partitions(&slave->mtd, parsed.parts, parsed.nr_parts);
362
363 mtd_part_parser_cleanup(&parsed);
364
365 return err;
366}
367
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200368static struct mtd_part *allocate_partition(struct mtd_info *parent,
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300369 const struct mtd_partition *part, int partno,
370 uint64_t cur_offset)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900371{
Brian Norrisc169e3d2017-06-22 14:09:18 -0700372 int wr_alignment = (parent->flags & MTD_NO_ERASE) ? parent->writesize :
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200373 parent->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900374 struct mtd_part *slave;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200375 u32 remainder;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300376 char *name;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200377 u64 tmp;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900378
379 /* allocate the partition structure */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900380 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300381 name = kstrdup(part->name, GFP_KERNEL);
382 if (!name || !slave) {
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900383 printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200384 parent->name);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300385 kfree(name);
386 kfree(slave);
387 return ERR_PTR(-ENOMEM);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900388 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900389
390 /* set up the MTD object for this partition */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200391 slave->mtd.type = parent->type;
392 slave->mtd.flags = parent->flags & ~part->mask_flags;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900393 slave->mtd.size = part->size;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200394 slave->mtd.writesize = parent->writesize;
395 slave->mtd.writebufsize = parent->writebufsize;
396 slave->mtd.oobsize = parent->oobsize;
397 slave->mtd.oobavail = parent->oobavail;
398 slave->mtd.subpage_sft = parent->subpage_sft;
399 slave->mtd.pairing = parent->pairing;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900400
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300401 slave->mtd.name = name;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200402 slave->mtd.owner = parent->owner;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900403
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 */
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200412 slave->mtd.dev.parent = IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER) || mtd_is_partition(parent) ?
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200413 &parent->dev :
414 parent->dev.parent;
Sascha Hauer42e94012017-02-09 11:50:24 +0100415 slave->mtd.dev.of_node = part->of_node;
David Brownell1f24b5a2009-03-26 00:42:41 -0700416
Boris Brezillon24ff1292018-01-09 09:50:34 +0100417 if (parent->_read)
418 slave->mtd._read = part_read;
419 if (parent->_write)
420 slave->mtd._write = part_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900421
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200422 if (parent->_panic_write)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200423 slave->mtd._panic_write = part_panic_write;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900424
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200425 if (parent->_point && parent->_unpoint) {
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200426 slave->mtd._point = part_point;
427 slave->mtd._unpoint = part_unpoint;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900428 }
429
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200430 if (parent->_read_oob)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200431 slave->mtd._read_oob = part_read_oob;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200432 if (parent->_write_oob)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200433 slave->mtd._write_oob = part_write_oob;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200434 if (parent->_read_user_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200435 slave->mtd._read_user_prot_reg = part_read_user_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200436 if (parent->_read_fact_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200437 slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200438 if (parent->_write_user_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200439 slave->mtd._write_user_prot_reg = part_write_user_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200440 if (parent->_lock_user_prot_reg)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200441 slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200442 if (parent->_get_user_prot_info)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200443 slave->mtd._get_user_prot_info = part_get_user_prot_info;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200444 if (parent->_get_fact_prot_info)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200445 slave->mtd._get_fact_prot_info = part_get_fact_prot_info;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200446 if (parent->_sync)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200447 slave->mtd._sync = part_sync;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200448 if (!partno && !parent->dev.class && parent->_suspend &&
449 parent->_resume) {
Brian Norrisc169e3d2017-06-22 14:09:18 -0700450 slave->mtd._suspend = part_suspend;
451 slave->mtd._resume = part_resume;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900452 }
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200453 if (parent->_writev)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200454 slave->mtd._writev = part_writev;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200455 if (parent->_lock)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200456 slave->mtd._lock = part_lock;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200457 if (parent->_unlock)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200458 slave->mtd._unlock = part_unlock;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200459 if (parent->_is_locked)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200460 slave->mtd._is_locked = part_is_locked;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200461 if (parent->_block_isreserved)
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300462 slave->mtd._block_isreserved = part_block_isreserved;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200463 if (parent->_block_isbad)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200464 slave->mtd._block_isbad = part_block_isbad;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200465 if (parent->_block_markbad)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200466 slave->mtd._block_markbad = part_block_markbad;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200467 if (parent->_max_bad_blocks)
Jeff Westfahl6080ef62017-01-10 13:30:17 -0600468 slave->mtd._max_bad_blocks = part_max_bad_blocks;
Richard Weinberger5e149072016-09-21 11:43:56 +0200469
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200470 if (parent->_get_device)
Richard Weinberger5e149072016-09-21 11:43:56 +0200471 slave->mtd._get_device = part_get_device;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200472 if (parent->_put_device)
Richard Weinberger5e149072016-09-21 11:43:56 +0200473 slave->mtd._put_device = part_put_device;
474
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200475 slave->mtd._erase = part_erase;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200476 slave->parent = parent;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900477 slave->offset = part->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900478
479 if (slave->offset == MTDPART_OFS_APPEND)
480 slave->offset = cur_offset;
481 if (slave->offset == MTDPART_OFS_NXTBLK) {
Chris Packham1eeef2d2017-06-09 15:58:31 +1200482 tmp = cur_offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900483 slave->offset = cur_offset;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200484 remainder = do_div(tmp, wr_alignment);
485 if (remainder) {
486 slave->offset += wr_alignment - remainder;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900487 printk(KERN_NOTICE "Moving partition %d: "
Adrian Hunter69423d92008-12-10 13:37:21 +0000488 "0x%012llx -> 0x%012llx\n", partno,
489 (unsigned long long)cur_offset, (unsigned long long)slave->offset);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900490 }
491 }
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400492 if (slave->offset == MTDPART_OFS_RETAIN) {
493 slave->offset = cur_offset;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200494 if (parent->size - slave->offset >= slave->mtd.size) {
495 slave->mtd.size = parent->size - slave->offset
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400496 - slave->mtd.size;
497 } else {
498 printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n",
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200499 part->name, parent->size - slave->offset,
Dmitry Eremin-Solenikov1a313682011-06-06 18:04:14 +0400500 slave->mtd.size);
501 /* register to preserve ordering */
502 goto out_register;
503 }
504 }
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900505 if (slave->mtd.size == MTDPART_SIZ_FULL)
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200506 slave->mtd.size = parent->size - slave->offset;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900507
Adrian Hunter69423d92008-12-10 13:37:21 +0000508 printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset,
509 (unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900510
511 /* let's do some sanity checks */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200512 if (slave->offset >= parent->size) {
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900513 /* let's register it anyway to preserve ordering */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900514 slave->offset = 0;
515 slave->mtd.size = 0;
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900516 printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900517 part->name);
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900518 goto out_register;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900519 }
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200520 if (slave->offset + slave->mtd.size > parent->size) {
521 slave->mtd.size = parent->size - slave->offset;
Adrian Hunter69423d92008-12-10 13:37:21 +0000522 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 +0200523 part->name, parent->name, (unsigned long long)slave->mtd.size);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900524 }
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200525 if (parent->numeraseregions > 1) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900526 /* Deal with variable erase size stuff */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200527 int i, max = parent->numeraseregions;
Adrian Hunter69423d92008-12-10 13:37:21 +0000528 u64 end = slave->offset + slave->mtd.size;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200529 struct mtd_erase_region_info *regions = parent->eraseregions;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900530
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900531 /* Find the first erase regions which is part of this
532 * partition. */
533 for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900534 ;
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900535 /* The loop searched for the region _behind_ the first one */
Roel Kluina57ca042009-09-18 12:51:50 -0700536 if (i > 0)
537 i--;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900538
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900539 /* Pick biggest erasesize */
540 for (; i < max && regions[i].offset < end; i++) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900541 if (slave->mtd.erasesize < regions[i].erasesize) {
542 slave->mtd.erasesize = regions[i].erasesize;
543 }
544 }
Atsushi Nemoto6910c132008-07-19 01:00:57 +0900545 BUG_ON(slave->mtd.erasesize == 0);
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900546 } else {
547 /* Single erase size */
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200548 slave->mtd.erasesize = parent->erasesize;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900549 }
550
Boris Brezillon7e439682017-09-25 10:19:57 +0200551 /*
552 * Slave erasesize might differ from the master one if the master
553 * exposes several regions with different erasesize. Adjust
554 * wr_alignment accordingly.
555 */
556 if (!(slave->mtd.flags & MTD_NO_ERASE))
557 wr_alignment = slave->mtd.erasesize;
558
Chris Packham1eeef2d2017-06-09 15:58:31 +1200559 tmp = slave->offset;
560 remainder = do_div(tmp, wr_alignment);
561 if ((slave->mtd.flags & MTD_WRITEABLE) && remainder) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900562 /* Doesn't start on a boundary of major erase size */
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900563 /* FIXME: Let it be writable if it is on a boundary of
564 * _minor_ erase size though */
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900565 slave->mtd.flags &= ~MTD_WRITEABLE;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200566 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 +0900567 part->name);
568 }
Chris Packham1eeef2d2017-06-09 15:58:31 +1200569
570 tmp = slave->mtd.size;
571 remainder = do_div(tmp, wr_alignment);
572 if ((slave->mtd.flags & MTD_WRITEABLE) && remainder) {
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900573 slave->mtd.flags &= ~MTD_WRITEABLE;
Chris Packham1eeef2d2017-06-09 15:58:31 +1200574 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 +0900575 part->name);
576 }
577
Boris Brezillonadbbc3b2016-02-03 19:01:31 +0100578 mtd_set_ooblayout(&slave->mtd, &part_ooblayout_ops);
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200579 slave->mtd.ecc_step_size = parent->ecc_step_size;
580 slave->mtd.ecc_strength = parent->ecc_strength;
581 slave->mtd.bitflip_threshold = parent->bitflip_threshold;
Mike Dunnd062d4e2012-04-25 12:06:08 -0700582
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200583 if (parent->_block_isbad) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000584 uint64_t offs = 0;
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900585
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900586 while (offs < slave->mtd.size) {
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200587 if (mtd_block_isreserved(parent, offs + slave->offset))
Ezequiel Garciafdf43a42014-03-21 08:57:44 -0300588 slave->mtd.ecc_stats.bbtblocks++;
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200589 else if (mtd_block_isbad(parent, offs + slave->offset))
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900590 slave->mtd.ecc_stats.badblocks++;
591 offs += slave->mtd.erasesize;
592 }
593 }
594
Atsushi Nemotof636ffb2008-07-19 01:01:22 +0900595out_register:
Atsushi Nemoto7788ba72008-07-19 01:00:18 +0900596 return slave;
597}
598
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700599static ssize_t mtd_partition_offset_show(struct device *dev,
600 struct device_attribute *attr, char *buf)
601{
602 struct mtd_info *mtd = dev_get_drvdata(dev);
Brian Norris25245342015-11-19 19:28:39 -0800603 struct mtd_part *part = mtd_to_part(mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700604 return snprintf(buf, PAGE_SIZE, "%lld\n", part->offset);
605}
606
607static DEVICE_ATTR(offset, S_IRUGO, mtd_partition_offset_show, NULL);
608
609static const struct attribute *mtd_partition_attrs[] = {
610 &dev_attr_offset.attr,
611 NULL
612};
613
614static int mtd_add_partition_attrs(struct mtd_part *new)
615{
616 int ret = sysfs_create_files(&new->mtd.dev.kobj, mtd_partition_attrs);
617 if (ret)
618 printk(KERN_WARNING
619 "mtd: failed to create partition attrs, err=%d\n", ret);
620 return ret;
621}
622
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200623int mtd_add_partition(struct mtd_info *parent, const char *name,
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300624 long long offset, long long length)
625{
626 struct mtd_partition part;
Dan Ehrenberg3a434f62015-04-02 15:15:12 -0700627 struct mtd_part *new;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300628 int ret = 0;
629
630 /* the direct offset is expected */
631 if (offset == MTDPART_OFS_APPEND ||
632 offset == MTDPART_OFS_NXTBLK)
633 return -EINVAL;
634
635 if (length == MTDPART_SIZ_FULL)
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200636 length = parent->size - offset;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300637
638 if (length <= 0)
639 return -EINVAL;
640
Brian Norris93867232015-11-11 16:47:52 -0800641 memset(&part, 0, sizeof(part));
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300642 part.name = name;
643 part.size = length;
644 part.offset = offset;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300645
Rafał Miłecki0a9d72b2017-06-21 08:26:44 +0200646 new = allocate_partition(parent, &part, -1, offset);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300647 if (IS_ERR(new))
648 return PTR_ERR(new);
649
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300650 mutex_lock(&mtd_partitions_mutex);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300651 list_add(&new->list, &mtd_partitions);
652 mutex_unlock(&mtd_partitions_mutex);
653
654 add_mtd_device(&new->mtd);
655
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700656 mtd_add_partition_attrs(new);
657
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300658 return ret;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300659}
660EXPORT_SYMBOL_GPL(mtd_add_partition);
661
Rafał Miłecki08263a92017-06-21 08:26:42 +0200662/**
663 * __mtd_del_partition - delete MTD partition
664 *
665 * @priv: internal MTD struct for partition to be deleted
666 *
667 * This function must be called with the partitions mutex locked.
668 */
669static int __mtd_del_partition(struct mtd_part *priv)
670{
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200671 struct mtd_part *child, *next;
Rafał Miłecki08263a92017-06-21 08:26:42 +0200672 int err;
673
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200674 list_for_each_entry_safe(child, next, &mtd_partitions, list) {
675 if (child->parent == &priv->mtd) {
676 err = __mtd_del_partition(child);
677 if (err)
678 return err;
679 }
680 }
681
Rafał Miłeckic5ceaba2017-06-21 08:26:43 +0200682 sysfs_remove_files(&priv->mtd.dev.kobj, mtd_partition_attrs);
683
Rafał Miłecki08263a92017-06-21 08:26:42 +0200684 err = del_mtd_device(&priv->mtd);
685 if (err)
686 return err;
687
688 list_del(&priv->list);
689 free_partition(priv);
690
691 return 0;
692}
693
694/*
695 * This function unregisters and destroy all slave MTD objects which are
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200696 * attached to the given MTD object.
Rafał Miłecki08263a92017-06-21 08:26:42 +0200697 */
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200698int del_mtd_partitions(struct mtd_info *mtd)
Rafał Miłecki08263a92017-06-21 08:26:42 +0200699{
700 struct mtd_part *slave, *next;
701 int ret, err = 0;
702
703 mutex_lock(&mtd_partitions_mutex);
704 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200705 if (slave->parent == mtd) {
Rafał Miłecki08263a92017-06-21 08:26:42 +0200706 ret = __mtd_del_partition(slave);
707 if (ret < 0)
708 err = ret;
709 }
710 mutex_unlock(&mtd_partitions_mutex);
711
712 return err;
713}
714
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200715int mtd_del_partition(struct mtd_info *mtd, int partno)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300716{
717 struct mtd_part *slave, *next;
718 int ret = -EINVAL;
719
720 mutex_lock(&mtd_partitions_mutex);
721 list_for_each_entry_safe(slave, next, &mtd_partitions, list)
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200722 if ((slave->parent == mtd) &&
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300723 (slave->mtd.index == partno)) {
Rafał Miłecki08263a92017-06-21 08:26:42 +0200724 ret = __mtd_del_partition(slave);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300725 break;
726 }
727 mutex_unlock(&mtd_partitions_mutex);
728
729 return ret;
730}
731EXPORT_SYMBOL_GPL(mtd_del_partition);
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733/*
734 * This function, given a master MTD object and a partition table, creates
735 * and registers slave MTD objects which are bound to the master according to
736 * the partition definitions.
David Brownell1f24b5a2009-03-26 00:42:41 -0700737 *
Dan Ehrenberg727dc612015-04-02 15:15:10 -0700738 * For historical reasons, this function's caller only registers the master
739 * if the MTD_PARTITIONED_MASTER config option is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
741
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000742int add_mtd_partitions(struct mtd_info *master,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 const struct mtd_partition *parts,
744 int nbparts)
745{
746 struct mtd_part *slave;
Adrian Hunter69423d92008-12-10 13:37:21 +0000747 uint64_t cur_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int i;
749
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900750 printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 for (i = 0; i < nbparts; i++) {
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300753 slave = allocate_partition(master, parts + i, i, cur_offset);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200754 if (IS_ERR(slave)) {
755 del_mtd_partitions(master);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300756 return PTR_ERR(slave);
Boris BREZILLONe5bae862015-07-30 12:18:03 +0200757 }
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300758
759 mutex_lock(&mtd_partitions_mutex);
760 list_add(&slave->list, &mtd_partitions);
761 mutex_unlock(&mtd_partitions_mutex);
762
763 add_mtd_device(&slave->mtd);
Dan Ehrenberga62c24d2015-04-02 15:15:11 -0700764 mtd_add_partition_attrs(slave);
Rafał Miłecki1a0915b2017-06-21 08:26:46 +0200765 if (parts[i].types)
766 mtd_parse_part(slave, parts[i].types);
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 cur_offset = slave->offset + slave->mtd.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
771 return 0;
772}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774static DEFINE_SPINLOCK(part_parser_lock);
775static LIST_HEAD(part_parsers);
776
Brian Norris5531ae42015-12-04 15:25:15 -0800777static struct mtd_part_parser *mtd_part_parser_get(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Chris Malley71a928c2008-05-19 20:11:50 +0100779 struct mtd_part_parser *p, *ret = NULL;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 spin_lock(&part_parser_lock);
782
Chris Malley71a928c2008-05-19 20:11:50 +0100783 list_for_each_entry(p, &part_parsers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!strcmp(p->name, name) && try_module_get(p->owner)) {
785 ret = p;
786 break;
787 }
Chris Malley71a928c2008-05-19 20:11:50 +0100788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 spin_unlock(&part_parser_lock);
790
791 return ret;
792}
793
Brian Norris5531ae42015-12-04 15:25:15 -0800794static inline void mtd_part_parser_put(const struct mtd_part_parser *p)
795{
796 module_put(p->owner);
797}
Dmitry Eremin-Solenikov953b3bd2011-06-23 15:26:14 +0400798
Brian Norrisadc83bf2015-12-09 10:24:03 -0800799/*
800 * Many partition parsers just expected the core to kfree() all their data in
801 * one chunk. Do that by default.
802 */
803static void mtd_part_parser_cleanup_default(const struct mtd_partition *pparts,
804 int nr_parts)
805{
806 kfree(pparts);
807}
808
Brian Norrisb9eab012015-11-11 19:13:29 -0800809int __register_mtd_parser(struct mtd_part_parser *p, struct module *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Brian Norrisb9eab012015-11-11 19:13:29 -0800811 p->owner = owner;
812
Brian Norrisadc83bf2015-12-09 10:24:03 -0800813 if (!p->cleanup)
814 p->cleanup = &mtd_part_parser_cleanup_default;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 spin_lock(&part_parser_lock);
817 list_add(&p->list, &part_parsers);
818 spin_unlock(&part_parser_lock);
Brian Norrisb9eab012015-11-11 19:13:29 -0800819
820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
Brian Norrisb9eab012015-11-11 19:13:29 -0800822EXPORT_SYMBOL_GPL(__register_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Axel Lincf3b2b12013-12-01 18:59:15 +0800824void deregister_mtd_parser(struct mtd_part_parser *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 spin_lock(&part_parser_lock);
827 list_del(&p->list);
828 spin_unlock(&part_parser_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
Atsushi Nemotob33a2882008-07-19 01:00:33 +0900830EXPORT_SYMBOL_GPL(deregister_mtd_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300832/*
833 * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you
834 * are changing this array!
835 */
Artem Bityutskiyccef4dc2013-03-12 10:51:35 +0200836static const char * const default_mtd_part_types[] = {
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400837 "cmdlinepart",
838 "ofpart",
839 NULL
840};
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400841
Brian Norris01f9c722017-05-23 07:30:20 +0200842static int mtd_part_do_parse(struct mtd_part_parser *parser,
843 struct mtd_info *master,
844 struct mtd_partitions *pparts,
845 struct mtd_part_parser_data *data)
846{
847 int ret;
848
849 ret = (*parser->parse_fn)(master, &pparts->parts, data);
850 pr_debug("%s: parser %s: %i\n", master->name, parser->name, ret);
851 if (ret <= 0)
852 return ret;
853
854 pr_notice("%d %s partitions found on MTD device %s\n", ret,
855 parser->name, master->name);
856
857 pparts->nr_parts = ret;
858 pparts->parser = parser;
859
860 return ret;
861}
862
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300863/**
864 * parse_mtd_partitions - parse MTD partitions
865 * @master: the master partition (describes whole MTD device)
866 * @types: names of partition parsers to try or %NULL
Brian Norris07fd2f82015-12-04 15:25:17 -0800867 * @pparts: info about partitions found is returned here
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400868 * @data: MTD partition parser-specific data
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300869 *
870 * This function tries to find partition on MTD device @master. It uses MTD
871 * partition parsers, specified in @types. However, if @types is %NULL, then
872 * the default list of parsers is used. The default list contains only the
Dmitry Eremin-Solenikovd26c87d2011-05-29 21:32:33 +0400873 * "cmdlinepart" and "ofpart" parsers ATM.
Huang Shijiec51803d2012-08-18 13:07:41 -0400874 * Note: If there are more then one parser in @types, the kernel only takes the
875 * partitions parsed out by the first parser.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300876 *
877 * This function may return:
878 * o a negative error code in case of failure
Brian Norris07fd2f82015-12-04 15:25:17 -0800879 * o zero otherwise, and @pparts will describe the partitions, number of
Brian Norrisadc83bf2015-12-09 10:24:03 -0800880 * partitions, and the parser which parsed them. Caller must release
881 * resources with mtd_part_parser_cleanup() when finished with the returned
882 * data.
Artem Bityutskiyad274ce2011-06-08 11:42:27 +0300883 */
Artem Bityutskiy26a47342013-03-11 15:38:48 +0200884int parse_mtd_partitions(struct mtd_info *master, const char *const *types,
Brian Norris07fd2f82015-12-04 15:25:17 -0800885 struct mtd_partitions *pparts,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +0400886 struct mtd_part_parser_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
888 struct mtd_part_parser *parser;
Brian Norris5a2415b2015-10-11 13:03:47 -0700889 int ret, err = 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000890
Dmitry Eremin-Solenikov5c4eefb2011-06-02 18:51:16 +0400891 if (!types)
892 types = default_mtd_part_types;
893
Brian Norris5a2415b2015-10-11 13:03:47 -0700894 for ( ; *types; types++) {
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000895 pr_debug("%s: parsing partitions %s\n", master->name, *types);
Brian Norris5531ae42015-12-04 15:25:15 -0800896 parser = mtd_part_parser_get(*types);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (!parser && !request_module("%s", *types))
Brian Norris5531ae42015-12-04 15:25:15 -0800898 parser = mtd_part_parser_get(*types);
Michal Suchanek8e2c9922015-08-18 15:34:07 +0000899 pr_debug("%s: got parser %s\n", master->name,
900 parser ? parser->name : NULL);
Artem Bityutskiy7c802fb2011-05-17 11:13:17 +0300901 if (!parser)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 continue;
Brian Norris01f9c722017-05-23 07:30:20 +0200903 ret = mtd_part_do_parse(parser, master, pparts, data);
904 /* Found partitions! */
905 if (ret > 0)
Brian Norris07fd2f82015-12-04 15:25:17 -0800906 return 0;
Brian Norrisadc83bf2015-12-09 10:24:03 -0800907 mtd_part_parser_put(parser);
Brian Norris5a2415b2015-10-11 13:03:47 -0700908 /*
909 * Stash the first error we see; only report it if no parser
910 * succeeds
911 */
912 if (ret < 0 && !err)
913 err = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
Brian Norris5a2415b2015-10-11 13:03:47 -0700915 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300917
Brian Norrisadc83bf2015-12-09 10:24:03 -0800918void mtd_part_parser_cleanup(struct mtd_partitions *parts)
919{
920 const struct mtd_part_parser *parser;
921
922 if (!parts)
923 return;
924
925 parser = parts->parser;
926 if (parser) {
927 if (parser->cleanup)
928 parser->cleanup(parts->parts, parts->nr_parts);
929
930 mtd_part_parser_put(parser);
931 }
932}
933
Richard Genoud5dee4672012-07-10 18:23:39 +0200934int mtd_is_partition(const struct mtd_info *mtd)
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300935{
936 struct mtd_part *part;
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200937 int ispart = 0;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300938
939 mutex_lock(&mtd_partitions_mutex);
940 list_for_each_entry(part, &mtd_partitions, list)
941 if (&part->mtd == mtd) {
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200942 ispart = 1;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300943 break;
944 }
945 mutex_unlock(&mtd_partitions_mutex);
946
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200947 return ispart;
Roman Tereshonkov5daa7b22010-09-17 13:31:41 +0300948}
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200949EXPORT_SYMBOL_GPL(mtd_is_partition);
Richard Genoud62082e52012-07-10 18:23:40 +0200950
951/* Returns the size of the entire flash chip */
952uint64_t mtd_get_device_size(const struct mtd_info *mtd)
953{
954 if (!mtd_is_partition(mtd))
955 return mtd->size;
956
Rafał Miłecki97519dc2017-06-21 08:26:45 +0200957 return mtd_get_device_size(mtd_to_part(mtd)->parent);
Richard Genoud62082e52012-07-10 18:23:40 +0200958}
959EXPORT_SYMBOL_GPL(mtd_get_device_size);