mtdpart.c 21.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * Simple MTD partitioning layer
 *
D
David Woodhouse 已提交
4 5 6
 * Copyright © 2000 Nicolas Pitre <nico@fluxnic.net>
 * Copyright © 2002 Thomas Gleixner <gleixner@linutronix.de>
 * Copyright © 2000-2010 David Woodhouse <dwmw2@infradead.org>
L
Linus Torvalds 已提交
7
 *
D
David Woodhouse 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
21
 *
22
 */
L
Linus Torvalds 已提交
23 24 25 26 27 28 29 30 31

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/kmod.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
32
#include <linux/err.h>
L
Linus Torvalds 已提交
33

34 35
#include "mtdcore.h"

L
Linus Torvalds 已提交
36 37
/* Our partition linked list */
static LIST_HEAD(mtd_partitions);
38
static DEFINE_MUTEX(mtd_partitions_mutex);
L
Linus Torvalds 已提交
39 40 41 42 43

/* Our partition node structure */
struct mtd_part {
	struct mtd_info mtd;
	struct mtd_info *master;
44
	uint64_t offset;
L
Linus Torvalds 已提交
45 46 47 48 49 50 51 52 53
	struct list_head list;
};

/*
 * Given a pointer to the MTD object in the mtd_part structure, we can retrieve
 * the pointer to that structure with this macro.
 */
#define PART(x)  ((struct mtd_part *)(x))

54 55

/*
L
Linus Torvalds 已提交
56 57 58 59
 * MTD methods which simply translate the effective address and pass through
 * to the _real_ device.
 */

60 61
static int part_read(struct mtd_info *mtd, loff_t from, size_t len,
		size_t *retlen, u_char *buf)
L
Linus Torvalds 已提交
62 63
{
	struct mtd_part *part = PART(mtd);
64
	struct mtd_ecc_stats stats;
65 66
	int res;

67 68
	stats = part->master->ecc_stats;

L
Linus Torvalds 已提交
69 70 71 72
	if (from >= mtd->size)
		len = 0;
	else if (from + len > mtd->size)
		len = mtd->size - from;
73
	res = mtd_read(part->master, from + part->offset, len, retlen, buf);
74
	if (unlikely(res)) {
75
		if (mtd_is_bitflip(res))
76
			mtd->ecc_stats.corrected += part->master->ecc_stats.corrected - stats.corrected;
77
		if (mtd_is_eccerr(res))
78
			mtd->ecc_stats.failed += part->master->ecc_stats.failed - stats.failed;
79 80
	}
	return res;
L
Linus Torvalds 已提交
81 82
}

83 84
static int part_point(struct mtd_info *mtd, loff_t from, size_t len,
		size_t *retlen, void **virt, resource_size_t *phys)
L
Linus Torvalds 已提交
85 86 87 88 89 90
{
	struct mtd_part *part = PART(mtd);
	if (from >= mtd->size)
		len = 0;
	else if (from + len > mtd->size)
		len = mtd->size - from;
91 92
	return mtd_point(part->master, from + part->offset, len, retlen,
			 virt, phys);
L
Linus Torvalds 已提交
93
}
94

95
static int part_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
L
Linus Torvalds 已提交
96 97 98
{
	struct mtd_part *part = PART(mtd);

99
	return mtd_unpoint(part->master, from + part->offset, len);
L
Linus Torvalds 已提交
100 101
}

102 103 104 105 106 107 108 109
static unsigned long part_get_unmapped_area(struct mtd_info *mtd,
					    unsigned long len,
					    unsigned long offset,
					    unsigned long flags)
{
	struct mtd_part *part = PART(mtd);

	offset += part->offset;
110
	return mtd_get_unmapped_area(part->master, len, offset, flags);
111 112
}

113
static int part_read_oob(struct mtd_info *mtd, loff_t from,
114
		struct mtd_oob_ops *ops)
L
Linus Torvalds 已提交
115 116
{
	struct mtd_part *part = PART(mtd);
117
	int res;
118

L
Linus Torvalds 已提交
119
	if (from >= mtd->size)
120
		return -EINVAL;
121
	if (ops->datbuf && from + ops->len > mtd->size)
122
		return -EINVAL;
123

124 125 126 127 128 129 130
	/*
	 * If OOB is also requested, make sure that we do not read past the end
	 * of this partition.
	 */
	if (ops->oobbuf) {
		size_t len, pages;

131
		if (ops->mode == MTD_OPS_AUTO_OOB)
132 133 134 135 136 137 138 139 140
			len = mtd->oobavail;
		else
			len = mtd->oobsize;
		pages = mtd_div_by_ws(mtd->size, mtd);
		pages -= mtd_div_by_ws(from, mtd);
		if (ops->ooboffs + ops->ooblen > pages * len)
			return -EINVAL;
	}

141
	res = mtd_read_oob(part->master, from + part->offset, ops);
142
	if (unlikely(res)) {
143
		if (mtd_is_bitflip(res))
144
			mtd->ecc_stats.corrected++;
145
		if (mtd_is_eccerr(res))
146 147 148
			mtd->ecc_stats.failed++;
	}
	return res;
L
Linus Torvalds 已提交
149 150
}

151 152
static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
		size_t len, size_t *retlen, u_char *buf)
L
Linus Torvalds 已提交
153 154
{
	struct mtd_part *part = PART(mtd);
155
	return mtd_read_user_prot_reg(part->master, from, len, retlen, buf);
L
Linus Torvalds 已提交
156 157
}

158 159
static int part_get_user_prot_info(struct mtd_info *mtd,
		struct otp_info *buf, size_t len)
160 161
{
	struct mtd_part *part = PART(mtd);
162
	return mtd_get_user_prot_info(part->master, buf, len);
163 164
}

165 166
static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
		size_t len, size_t *retlen, u_char *buf)
L
Linus Torvalds 已提交
167 168
{
	struct mtd_part *part = PART(mtd);
169
	return mtd_read_fact_prot_reg(part->master, from, len, retlen, buf);
L
Linus Torvalds 已提交
170 171
}

172 173
static int part_get_fact_prot_info(struct mtd_info *mtd, struct otp_info *buf,
		size_t len)
174 175
{
	struct mtd_part *part = PART(mtd);
176
	return mtd_get_fact_prot_info(part->master, buf, len);
177 178
}

179 180
static int part_write(struct mtd_info *mtd, loff_t to, size_t len,
		size_t *retlen, const u_char *buf)
L
Linus Torvalds 已提交
181 182 183 184 185 186 187 188
{
	struct mtd_part *part = PART(mtd);
	if (!(mtd->flags & MTD_WRITEABLE))
		return -EROFS;
	if (to >= mtd->size)
		len = 0;
	else if (to + len > mtd->size)
		len = mtd->size - to;
189
	return mtd_write(part->master, to + part->offset, len, retlen, buf);
L
Linus Torvalds 已提交
190 191
}

192 193
static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
		size_t *retlen, const u_char *buf)
194 195 196 197 198 199 200 201
{
	struct mtd_part *part = PART(mtd);
	if (!(mtd->flags & MTD_WRITEABLE))
		return -EROFS;
	if (to >= mtd->size)
		len = 0;
	else if (to + len > mtd->size)
		len = mtd->size - to;
202 203
	return mtd_panic_write(part->master, to + part->offset, len, retlen,
			       buf);
204 205
}

206
static int part_write_oob(struct mtd_info *mtd, loff_t to,
207
		struct mtd_oob_ops *ops)
L
Linus Torvalds 已提交
208 209
{
	struct mtd_part *part = PART(mtd);
210

L
Linus Torvalds 已提交
211 212
	if (!(mtd->flags & MTD_WRITEABLE))
		return -EROFS;
213

L
Linus Torvalds 已提交
214
	if (to >= mtd->size)
215
		return -EINVAL;
216
	if (ops->datbuf && to + ops->len > mtd->size)
217
		return -EINVAL;
218
	return mtd_write_oob(part->master, to + part->offset, ops);
L
Linus Torvalds 已提交
219 220
}

221 222
static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
		size_t len, size_t *retlen, u_char *buf)
L
Linus Torvalds 已提交
223 224
{
	struct mtd_part *part = PART(mtd);
225
	return mtd_write_user_prot_reg(part->master, from, len, retlen, buf);
L
Linus Torvalds 已提交
226 227
}

228 229
static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
		size_t len)
230 231
{
	struct mtd_part *part = PART(mtd);
232
	return mtd_lock_user_prot_reg(part->master, from, len);
233 234
}

235 236
static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
		unsigned long count, loff_t to, size_t *retlen)
L
Linus Torvalds 已提交
237 238 239 240
{
	struct mtd_part *part = PART(mtd);
	if (!(mtd->flags & MTD_WRITEABLE))
		return -EROFS;
241 242
	return mtd_writev(part->master, vecs, count, to + part->offset,
			  retlen);
L
Linus Torvalds 已提交
243 244
}

245
static int part_erase(struct mtd_info *mtd, struct erase_info *instr)
L
Linus Torvalds 已提交
246 247 248 249 250 251 252 253
{
	struct mtd_part *part = PART(mtd);
	int ret;
	if (!(mtd->flags & MTD_WRITEABLE))
		return -EROFS;
	if (instr->addr >= mtd->size)
		return -EINVAL;
	instr->addr += part->offset;
254
	ret = mtd_erase(part->master, instr);
255
	if (ret) {
256
		if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
257 258 259
			instr->fail_addr -= part->offset;
		instr->addr -= part->offset;
	}
L
Linus Torvalds 已提交
260 261 262 263 264
	return ret;
}

void mtd_erase_callback(struct erase_info *instr)
{
265
	if (instr->mtd->_erase == part_erase) {
L
Linus Torvalds 已提交
266 267
		struct mtd_part *part = PART(instr->mtd);

268
		if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
L
Linus Torvalds 已提交
269 270 271 272 273 274 275 276
			instr->fail_addr -= part->offset;
		instr->addr -= part->offset;
	}
	if (instr->callback)
		instr->callback(instr);
}
EXPORT_SYMBOL_GPL(mtd_erase_callback);

277
static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
L
Linus Torvalds 已提交
278 279
{
	struct mtd_part *part = PART(mtd);
280
	if ((len + ofs) > mtd->size)
L
Linus Torvalds 已提交
281
		return -EINVAL;
282
	return mtd_lock(part->master, ofs + part->offset, len);
L
Linus Torvalds 已提交
283 284
}

285
static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
L
Linus Torvalds 已提交
286 287
{
	struct mtd_part *part = PART(mtd);
288
	if ((len + ofs) > mtd->size)
L
Linus Torvalds 已提交
289
		return -EINVAL;
290
	return mtd_unlock(part->master, ofs + part->offset, len);
L
Linus Torvalds 已提交
291 292
}

293 294 295 296 297
static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
{
	struct mtd_part *part = PART(mtd);
	if ((len + ofs) > mtd->size)
		return -EINVAL;
298
	return mtd_is_locked(part->master, ofs + part->offset, len);
299 300
}

L
Linus Torvalds 已提交
301 302 303
static void part_sync(struct mtd_info *mtd)
{
	struct mtd_part *part = PART(mtd);
304
	mtd_sync(part->master);
L
Linus Torvalds 已提交
305 306 307 308 309
}

static int part_suspend(struct mtd_info *mtd)
{
	struct mtd_part *part = PART(mtd);
310
	return mtd_suspend(part->master);
L
Linus Torvalds 已提交
311 312 313 314 315
}

static void part_resume(struct mtd_info *mtd)
{
	struct mtd_part *part = PART(mtd);
316
	mtd_resume(part->master);
L
Linus Torvalds 已提交
317 318
}

319
static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
L
Linus Torvalds 已提交
320 321 322 323 324
{
	struct mtd_part *part = PART(mtd);
	if (ofs >= mtd->size)
		return -EINVAL;
	ofs += part->offset;
325
	return mtd_block_isbad(part->master, ofs);
L
Linus Torvalds 已提交
326 327
}

328
static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
L
Linus Torvalds 已提交
329 330
{
	struct mtd_part *part = PART(mtd);
331 332
	int res;

L
Linus Torvalds 已提交
333 334 335 336 337
	if (!(mtd->flags & MTD_WRITEABLE))
		return -EROFS;
	if (ofs >= mtd->size)
		return -EINVAL;
	ofs += part->offset;
338
	res = mtd_block_markbad(part->master, ofs);
339 340 341
	if (!res)
		mtd->ecc_stats.badblocks++;
	return res;
L
Linus Torvalds 已提交
342 343
}

344 345 346 347 348 349
static inline void free_partition(struct mtd_part *p)
{
	kfree(p->mtd.name);
	kfree(p);
}

350 351
/*
 * This function unregisters and destroy all slave MTD objects which are
L
Linus Torvalds 已提交
352 353 354 355 356
 * attached to the given master MTD object.
 */

int del_mtd_partitions(struct mtd_info *master)
{
357
	struct mtd_part *slave, *next;
358
	int ret, err = 0;
L
Linus Torvalds 已提交
359

360
	mutex_lock(&mtd_partitions_mutex);
361
	list_for_each_entry_safe(slave, next, &mtd_partitions, list)
L
Linus Torvalds 已提交
362
		if (slave->master == master) {
363 364 365 366 367
			ret = del_mtd_device(&slave->mtd);
			if (ret < 0) {
				err = ret;
				continue;
			}
368
			list_del(&slave->list);
369
			free_partition(slave);
L
Linus Torvalds 已提交
370
		}
371
	mutex_unlock(&mtd_partitions_mutex);
L
Linus Torvalds 已提交
372

373
	return err;
L
Linus Torvalds 已提交
374 375
}

376 377 378
static struct mtd_part *allocate_partition(struct mtd_info *master,
			const struct mtd_partition *part, int partno,
			uint64_t cur_offset)
379 380
{
	struct mtd_part *slave;
381
	char *name;
382 383

	/* allocate the partition structure */
384
	slave = kzalloc(sizeof(*slave), GFP_KERNEL);
385 386
	name = kstrdup(part->name, GFP_KERNEL);
	if (!name || !slave) {
387
		printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
388 389 390 391
		       master->name);
		kfree(name);
		kfree(slave);
		return ERR_PTR(-ENOMEM);
392 393 394 395 396 397 398
	}

	/* set up the MTD object for this partition */
	slave->mtd.type = master->type;
	slave->mtd.flags = master->flags & ~part->mask_flags;
	slave->mtd.size = part->size;
	slave->mtd.writesize = master->writesize;
399
	slave->mtd.writebufsize = master->writebufsize;
400 401 402 403
	slave->mtd.oobsize = master->oobsize;
	slave->mtd.oobavail = master->oobavail;
	slave->mtd.subpage_sft = master->subpage_sft;

404
	slave->mtd.name = name;
405
	slave->mtd.owner = master->owner;
406
	slave->mtd.backing_dev_info = master->backing_dev_info;
407

D
David Brownell 已提交
408 409 410 411 412
	/* NOTE:  we don't arrange MTDs as a tree; it'd be error-prone
	 * to have the same data be in two different partitions.
	 */
	slave->mtd.dev.parent = master->dev.parent;

413 414
	slave->mtd._read = part_read;
	slave->mtd._write = part_write;
415

416 417
	if (master->_panic_write)
		slave->mtd._panic_write = part_panic_write;
418

419 420 421
	if (master->_point && master->_unpoint) {
		slave->mtd._point = part_point;
		slave->mtd._unpoint = part_unpoint;
422 423
	}

424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
	if (master->_get_unmapped_area)
		slave->mtd._get_unmapped_area = part_get_unmapped_area;
	if (master->_read_oob)
		slave->mtd._read_oob = part_read_oob;
	if (master->_write_oob)
		slave->mtd._write_oob = part_write_oob;
	if (master->_read_user_prot_reg)
		slave->mtd._read_user_prot_reg = part_read_user_prot_reg;
	if (master->_read_fact_prot_reg)
		slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg;
	if (master->_write_user_prot_reg)
		slave->mtd._write_user_prot_reg = part_write_user_prot_reg;
	if (master->_lock_user_prot_reg)
		slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg;
	if (master->_get_user_prot_info)
		slave->mtd._get_user_prot_info = part_get_user_prot_info;
	if (master->_get_fact_prot_info)
		slave->mtd._get_fact_prot_info = part_get_fact_prot_info;
	if (master->_sync)
		slave->mtd._sync = part_sync;
	if (!partno && !master->dev.class && master->_suspend &&
	    master->_resume) {
			slave->mtd._suspend = part_suspend;
			slave->mtd._resume = part_resume;
448
	}
449 450 451 452 453 454 455 456 457 458 459 460 461
	if (master->_writev)
		slave->mtd._writev = part_writev;
	if (master->_lock)
		slave->mtd._lock = part_lock;
	if (master->_unlock)
		slave->mtd._unlock = part_unlock;
	if (master->_is_locked)
		slave->mtd._is_locked = part_is_locked;
	if (master->_block_isbad)
		slave->mtd._block_isbad = part_block_isbad;
	if (master->_block_markbad)
		slave->mtd._block_markbad = part_block_markbad;
	slave->mtd._erase = part_erase;
462 463 464 465 466 467 468
	slave->master = master;
	slave->offset = part->offset;

	if (slave->offset == MTDPART_OFS_APPEND)
		slave->offset = cur_offset;
	if (slave->offset == MTDPART_OFS_NXTBLK) {
		slave->offset = cur_offset;
469
		if (mtd_mod_by_eb(cur_offset, master) != 0) {
470
			/* Round up to next erasesize */
471
			slave->offset = (mtd_div_by_eb(cur_offset, master) + 1) * master->erasesize;
472
			printk(KERN_NOTICE "Moving partition %d: "
473 474
			       "0x%012llx -> 0x%012llx\n", partno,
			       (unsigned long long)cur_offset, (unsigned long long)slave->offset);
475 476
		}
	}
477 478 479 480 481 482 483 484 485 486 487 488 489
	if (slave->offset == MTDPART_OFS_RETAIN) {
		slave->offset = cur_offset;
		if (master->size - slave->offset >= slave->mtd.size) {
			slave->mtd.size = master->size - slave->offset
							- slave->mtd.size;
		} else {
			printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n",
				part->name, master->size - slave->offset,
				slave->mtd.size);
			/* register to preserve ordering */
			goto out_register;
		}
	}
490 491 492
	if (slave->mtd.size == MTDPART_SIZ_FULL)
		slave->mtd.size = master->size - slave->offset;

493 494
	printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset,
		(unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name);
495 496 497

	/* let's do some sanity checks */
	if (slave->offset >= master->size) {
498
		/* let's register it anyway to preserve ordering */
499 500
		slave->offset = 0;
		slave->mtd.size = 0;
501
		printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
502
			part->name);
503
		goto out_register;
504 505 506
	}
	if (slave->offset + slave->mtd.size > master->size) {
		slave->mtd.size = master->size - slave->offset;
507 508
		printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n",
			part->name, master->name, (unsigned long long)slave->mtd.size);
509
	}
510
	if (master->numeraseregions > 1) {
511
		/* Deal with variable erase size stuff */
512
		int i, max = master->numeraseregions;
513
		u64 end = slave->offset + slave->mtd.size;
514 515
		struct mtd_erase_region_info *regions = master->eraseregions;

516 517 518
		/* Find the first erase regions which is part of this
		 * partition. */
		for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
519
			;
520
		/* The loop searched for the region _behind_ the first one */
521 522
		if (i > 0)
			i--;
523

524 525
		/* Pick biggest erasesize */
		for (; i < max && regions[i].offset < end; i++) {
526 527 528 529
			if (slave->mtd.erasesize < regions[i].erasesize) {
				slave->mtd.erasesize = regions[i].erasesize;
			}
		}
530
		BUG_ON(slave->mtd.erasesize == 0);
531 532 533 534 535 536
	} else {
		/* Single erase size */
		slave->mtd.erasesize = master->erasesize;
	}

	if ((slave->mtd.flags & MTD_WRITEABLE) &&
537
	    mtd_mod_by_eb(slave->offset, &slave->mtd)) {
538
		/* Doesn't start on a boundary of major erase size */
539 540
		/* FIXME: Let it be writable if it is on a boundary of
		 * _minor_ erase size though */
541
		slave->mtd.flags &= ~MTD_WRITEABLE;
542
		printk(KERN_WARNING"mtd: partition \"%s\" doesn't start on an erase block boundary -- force read-only\n",
543 544 545
			part->name);
	}
	if ((slave->mtd.flags & MTD_WRITEABLE) &&
546
	    mtd_mod_by_eb(slave->mtd.size, &slave->mtd)) {
547
		slave->mtd.flags &= ~MTD_WRITEABLE;
548
		printk(KERN_WARNING"mtd: partition \"%s\" doesn't end on an erase block -- force read-only\n",
549 550 551 552
			part->name);
	}

	slave->mtd.ecclayout = master->ecclayout;
553
	if (master->_block_isbad) {
554
		uint64_t offs = 0;
555

556
		while (offs < slave->mtd.size) {
557
			if (mtd_block_isbad(master, offs + slave->offset))
558 559 560 561 562
				slave->mtd.ecc_stats.badblocks++;
			offs += slave->mtd.erasesize;
		}
	}

563
out_register:
564 565 566
	return slave;
}

567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
int mtd_add_partition(struct mtd_info *master, char *name,
		      long long offset, long long length)
{
	struct mtd_partition part;
	struct mtd_part *p, *new;
	uint64_t start, end;
	int ret = 0;

	/* the direct offset is expected */
	if (offset == MTDPART_OFS_APPEND ||
	    offset == MTDPART_OFS_NXTBLK)
		return -EINVAL;

	if (length == MTDPART_SIZ_FULL)
		length = master->size - offset;

	if (length <= 0)
		return -EINVAL;

	part.name = name;
	part.size = length;
	part.offset = offset;
	part.mask_flags = 0;
	part.ecclayout = NULL;

	new = allocate_partition(master, &part, -1, offset);
	if (IS_ERR(new))
		return PTR_ERR(new);

	start = offset;
	end = offset + length;

	mutex_lock(&mtd_partitions_mutex);
	list_for_each_entry(p, &mtd_partitions, list)
		if (p->master == master) {
			if ((start >= p->offset) &&
			    (start < (p->offset + p->mtd.size)))
				goto err_inv;

			if ((end >= p->offset) &&
			    (end < (p->offset + p->mtd.size)))
				goto err_inv;
		}

	list_add(&new->list, &mtd_partitions);
	mutex_unlock(&mtd_partitions_mutex);

	add_mtd_device(&new->mtd);

	return ret;
err_inv:
	mutex_unlock(&mtd_partitions_mutex);
	free_partition(new);
	return -EINVAL;
}
EXPORT_SYMBOL_GPL(mtd_add_partition);

int mtd_del_partition(struct mtd_info *master, int partno)
{
	struct mtd_part *slave, *next;
	int ret = -EINVAL;

	mutex_lock(&mtd_partitions_mutex);
	list_for_each_entry_safe(slave, next, &mtd_partitions, list)
		if ((slave->master == master) &&
		    (slave->mtd.index == partno)) {
			ret = del_mtd_device(&slave->mtd);
			if (ret < 0)
				break;

			list_del(&slave->list);
			free_partition(slave);
			break;
		}
	mutex_unlock(&mtd_partitions_mutex);

	return ret;
}
EXPORT_SYMBOL_GPL(mtd_del_partition);

L
Linus Torvalds 已提交
647 648 649 650
/*
 * This function, given a master MTD object and a partition table, creates
 * and registers slave MTD objects which are bound to the master according to
 * the partition definitions.
D
David Brownell 已提交
651 652 653
 *
 * We don't register the master, or expect the caller to have done so,
 * for reasons of data integrity.
L
Linus Torvalds 已提交
654 655
 */

656
int add_mtd_partitions(struct mtd_info *master,
L
Linus Torvalds 已提交
657 658 659 660
		       const struct mtd_partition *parts,
		       int nbparts)
{
	struct mtd_part *slave;
661
	uint64_t cur_offset = 0;
L
Linus Torvalds 已提交
662 663
	int i;

664
	printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name);
L
Linus Torvalds 已提交
665 666

	for (i = 0; i < nbparts; i++) {
667 668 669 670 671 672 673 674 675 676
		slave = allocate_partition(master, parts + i, i, cur_offset);
		if (IS_ERR(slave))
			return PTR_ERR(slave);

		mutex_lock(&mtd_partitions_mutex);
		list_add(&slave->list, &mtd_partitions);
		mutex_unlock(&mtd_partitions_mutex);

		add_mtd_device(&slave->mtd);

L
Linus Torvalds 已提交
677 678 679 680 681 682 683 684 685 686 687
		cur_offset = slave->offset + slave->mtd.size;
	}

	return 0;
}

static DEFINE_SPINLOCK(part_parser_lock);
static LIST_HEAD(part_parsers);

static struct mtd_part_parser *get_partition_parser(const char *name)
{
688
	struct mtd_part_parser *p, *ret = NULL;
L
Linus Torvalds 已提交
689

690
	spin_lock(&part_parser_lock);
L
Linus Torvalds 已提交
691

692
	list_for_each_entry(p, &part_parsers, list)
L
Linus Torvalds 已提交
693 694 695 696
		if (!strcmp(p->name, name) && try_module_get(p->owner)) {
			ret = p;
			break;
		}
697

L
Linus Torvalds 已提交
698 699 700 701 702
	spin_unlock(&part_parser_lock);

	return ret;
}

703 704
#define put_partition_parser(p) do { module_put((p)->owner); } while (0)

L
Linus Torvalds 已提交
705 706 707 708 709 710 711 712
int register_mtd_parser(struct mtd_part_parser *p)
{
	spin_lock(&part_parser_lock);
	list_add(&p->list, &part_parsers);
	spin_unlock(&part_parser_lock);

	return 0;
}
713
EXPORT_SYMBOL_GPL(register_mtd_parser);
L
Linus Torvalds 已提交
714 715 716 717 718 719 720 721

int deregister_mtd_parser(struct mtd_part_parser *p)
{
	spin_lock(&part_parser_lock);
	list_del(&p->list);
	spin_unlock(&part_parser_lock);
	return 0;
}
722
EXPORT_SYMBOL_GPL(deregister_mtd_parser);
L
Linus Torvalds 已提交
723

724 725 726 727
/*
 * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you
 * are changing this array!
 */
728 729 730 731 732
static const char *default_mtd_part_types[] = {
	"cmdlinepart",
	"ofpart",
	NULL
};
733

734 735 736 737 738
/**
 * parse_mtd_partitions - parse MTD partitions
 * @master: the master partition (describes whole MTD device)
 * @types: names of partition parsers to try or %NULL
 * @pparts: array of partitions found is returned here
739
 * @data: MTD partition parser-specific data
740 741 742 743
 *
 * This function tries to find partition on MTD device @master. It uses MTD
 * partition parsers, specified in @types. However, if @types is %NULL, then
 * the default list of parsers is used. The default list contains only the
744
 * "cmdlinepart" and "ofpart" parsers ATM.
745 746 747 748 749 750 751
 *
 * This function may return:
 * o a negative error code in case of failure
 * o zero if no partitions were found
 * o a positive number of found partitions, in which case on exit @pparts will
 *   point to an array containing this number of &struct mtd_info objects.
 */
752
int parse_mtd_partitions(struct mtd_info *master, const char **types,
753 754
			 struct mtd_partition **pparts,
			 struct mtd_part_parser_data *data)
L
Linus Torvalds 已提交
755 756 757
{
	struct mtd_part_parser *parser;
	int ret = 0;
758

759 760 761
	if (!types)
		types = default_mtd_part_types;

L
Linus Torvalds 已提交
762 763 764
	for ( ; ret <= 0 && *types; types++) {
		parser = get_partition_parser(*types);
		if (!parser && !request_module("%s", *types))
765
			parser = get_partition_parser(*types);
766
		if (!parser)
L
Linus Torvalds 已提交
767
			continue;
768
		ret = (*parser->parse_fn)(master, pparts, data);
L
Linus Torvalds 已提交
769
		if (ret > 0) {
770
			printk(KERN_NOTICE "%d %s partitions found on MTD device %s\n",
L
Linus Torvalds 已提交
771 772 773 774 775 776
			       ret, parser->name, master->name);
		}
		put_partition_parser(parser);
	}
	return ret;
}
777

778
int mtd_is_partition(struct mtd_info *mtd)
779 780
{
	struct mtd_part *part;
781
	int ispart = 0;
782 783 784 785

	mutex_lock(&mtd_partitions_mutex);
	list_for_each_entry(part, &mtd_partitions, list)
		if (&part->mtd == mtd) {
786
			ispart = 1;
787 788 789 790
			break;
		}
	mutex_unlock(&mtd_partitions_mutex);

791
	return ispart;
792
}
793
EXPORT_SYMBOL_GPL(mtd_is_partition);