mtdpart.c 21.0 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 void 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
	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 265 266 267
	return ret;
}

void mtd_erase_callback(struct erase_info *instr)
{
	if (instr->mtd->erase == part_erase) {
		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 339 340 341
	res = part->master->block_markbad(part->master, ofs);
	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 415 416 417 418
	slave->mtd.read = part_read;
	slave->mtd.write = part_write;

	if (master->panic_write)
		slave->mtd.panic_write = part_panic_write;

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

424 425
	if (master->get_unmapped_area)
		slave->mtd.get_unmapped_area = part_get_unmapped_area;
426 427 428 429
	if (master->read_oob)
		slave->mtd.read_oob = part_read_oob;
	if (master->write_oob)
		slave->mtd.write_oob = part_write_oob;
430
	if (master->read_user_prot_reg)
431
		slave->mtd.read_user_prot_reg = part_read_user_prot_reg;
432
	if (master->read_fact_prot_reg)
433
		slave->mtd.read_fact_prot_reg = part_read_fact_prot_reg;
434
	if (master->write_user_prot_reg)
435
		slave->mtd.write_user_prot_reg = part_write_user_prot_reg;
436
	if (master->lock_user_prot_reg)
437
		slave->mtd.lock_user_prot_reg = part_lock_user_prot_reg;
438
	if (master->get_user_prot_info)
439
		slave->mtd.get_user_prot_info = part_get_user_prot_info;
440
	if (master->get_fact_prot_info)
441 442 443
		slave->mtd.get_fact_prot_info = part_get_fact_prot_info;
	if (master->sync)
		slave->mtd.sync = part_sync;
444
	if (!partno && !master->dev.class && master->suspend && master->resume) {
445 446 447 448 449 450 451 452 453
			slave->mtd.suspend = part_suspend;
			slave->mtd.resume = part_resume;
	}
	if (master->writev)
		slave->mtd.writev = part_writev;
	if (master->lock)
		slave->mtd.lock = part_lock;
	if (master->unlock)
		slave->mtd.unlock = part_unlock;
454 455
	if (master->is_locked)
		slave->mtd.is_locked = part_is_locked;
456 457 458 459 460 461 462 463 464 465 466 467
	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;
	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;
468
		if (mtd_mod_by_eb(cur_offset, master) != 0) {
469
			/* Round up to next erasesize */
470
			slave->offset = (mtd_div_by_eb(cur_offset, master) + 1) * master->erasesize;
471
			printk(KERN_NOTICE "Moving partition %d: "
472 473
			       "0x%012llx -> 0x%012llx\n", partno,
			       (unsigned long long)cur_offset, (unsigned long long)slave->offset);
474 475
		}
	}
476 477 478 479 480 481 482 483 484 485 486 487 488
	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;
		}
	}
489 490 491
	if (slave->mtd.size == MTDPART_SIZ_FULL)
		slave->mtd.size = master->size - slave->offset;

492 493
	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);
494 495 496

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

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

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

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

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

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

562
out_register:
563 564 565
	return slave;
}

566 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
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 已提交
646 647 648 649
/*
 * 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 已提交
650 651 652
 *
 * We don't register the master, or expect the caller to have done so,
 * for reasons of data integrity.
L
Linus Torvalds 已提交
653 654
 */

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

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

	for (i = 0; i < nbparts; i++) {
666 667 668 669 670 671 672 673 674 675
		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 已提交
676 677 678 679 680 681 682 683 684 685 686
		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)
{
687
	struct mtd_part_parser *p, *ret = NULL;
L
Linus Torvalds 已提交
688

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

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

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

	return ret;
}

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

L
Linus Torvalds 已提交
704 705 706 707 708 709 710 711
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;
}
712
EXPORT_SYMBOL_GPL(register_mtd_parser);
L
Linus Torvalds 已提交
713 714 715 716 717 718 719 720

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;
}
721
EXPORT_SYMBOL_GPL(deregister_mtd_parser);
L
Linus Torvalds 已提交
722

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

733 734 735 736 737
/**
 * 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
738
 * @data: MTD partition parser-specific data
739 740 741 742
 *
 * 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
743
 * "cmdlinepart" and "ofpart" parsers ATM.
744 745 746 747 748 749 750
 *
 * 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.
 */
751
int parse_mtd_partitions(struct mtd_info *master, const char **types,
752 753
			 struct mtd_partition **pparts,
			 struct mtd_part_parser_data *data)
L
Linus Torvalds 已提交
754 755 756
{
	struct mtd_part_parser *parser;
	int ret = 0;
757

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

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

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

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

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