2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* MTD partitioning layer definitions
|
|
|
|
*
|
2009-09-14 15:25:28 +08:00
|
|
|
* (C) 2000 Nicolas Pitre <nico@fluxnic.net>
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* This code is GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MTD_PARTITIONS_H
|
|
|
|
#define MTD_PARTITIONS_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Partition definition structure:
|
2005-11-07 19:15:31 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* An array of struct partition is passed along with a MTD object to
|
2011-05-24 00:15:46 +08:00
|
|
|
* mtd_device_register() to create them.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* For each partition, these fields are available:
|
|
|
|
* name: string that will be used to label the partition's MTD device.
|
2005-11-07 19:15:31 +08:00
|
|
|
* size: the partition size; if defined as MTDPART_SIZ_FULL, the partition
|
2005-04-17 06:20:36 +08:00
|
|
|
* will extend to the end of the master MTD device.
|
2005-11-07 19:15:31 +08:00
|
|
|
* offset: absolute starting position within the master MTD device; if
|
|
|
|
* defined as MTDPART_OFS_APPEND, the partition will start where the
|
2011-06-06 22:04:14 +08:00
|
|
|
* previous one ended; if MTDPART_OFS_NXTBLK, at the next erase block;
|
|
|
|
* if MTDPART_OFS_RETAIN, consume as much as possible, leaving size
|
|
|
|
* after the end of partition.
|
2005-11-07 19:15:31 +08:00
|
|
|
* mask_flags: contains flags that have to be masked (removed) from the
|
2005-04-17 06:20:36 +08:00
|
|
|
* master MTD flag set for the corresponding MTD partition.
|
2005-11-07 19:15:31 +08:00
|
|
|
* For example, to force a read-only partition, simply adding
|
2005-04-17 06:20:36 +08:00
|
|
|
* MTD_WRITEABLE to the mask_flags will do the trick.
|
|
|
|
*
|
2005-11-07 19:15:31 +08:00
|
|
|
* Note: writeable partitions require their size and offset be
|
2005-04-17 06:20:36 +08:00
|
|
|
* erasesize aligned (e.g. use MTDPART_OFS_NEXTBLK).
|
2005-11-07 19:15:31 +08:00
|
|
|
*/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct mtd_partition {
|
2013-11-13 03:11:26 +08:00
|
|
|
const char *name; /* identifier string */
|
2008-12-10 21:37:21 +08:00
|
|
|
uint64_t size; /* partition size */
|
|
|
|
uint64_t offset; /* offset within the master MTD space */
|
2008-12-10 22:08:12 +08:00
|
|
|
uint32_t mask_flags; /* master MTD flags to mask out for this partition */
|
2010-08-25 09:12:00 +08:00
|
|
|
struct nand_ecclayout *ecclayout; /* out of band layout for this partition (NAND only) */
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2011-06-06 22:04:14 +08:00
|
|
|
#define MTDPART_OFS_RETAIN (-3)
|
2005-04-17 06:20:36 +08:00
|
|
|
#define MTDPART_OFS_NXTBLK (-2)
|
|
|
|
#define MTDPART_OFS_APPEND (-1)
|
|
|
|
#define MTDPART_SIZ_FULL (0)
|
|
|
|
|
|
|
|
|
2009-06-15 13:10:18 +08:00
|
|
|
struct mtd_info;
|
2011-05-30 01:32:33 +08:00
|
|
|
struct device_node;
|
2009-06-15 13:10:18 +08:00
|
|
|
|
2011-06-10 22:18:28 +08:00
|
|
|
/**
|
|
|
|
* struct mtd_part_parser_data - used to pass data to MTD partition parsers.
|
|
|
|
* @origin: for RedBoot, start address of MTD device
|
2011-05-30 01:32:33 +08:00
|
|
|
* @of_node: for OF parsers, device node containing partitioning information
|
2011-06-10 22:18:28 +08:00
|
|
|
*/
|
|
|
|
struct mtd_part_parser_data {
|
|
|
|
unsigned long origin;
|
2011-05-30 01:32:33 +08:00
|
|
|
struct device_node *of_node;
|
2011-06-10 22:18:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Functions dealing with the various ways of partitioning the space
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct mtd_part_parser {
|
|
|
|
struct list_head list;
|
|
|
|
struct module *owner;
|
|
|
|
const char *name;
|
2011-06-10 22:18:28 +08:00
|
|
|
int (*parse_fn)(struct mtd_info *, struct mtd_partition **,
|
|
|
|
struct mtd_part_parser_data *);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2013-12-01 19:01:06 +08:00
|
|
|
extern void register_mtd_parser(struct mtd_part_parser *parser);
|
2013-12-01 18:59:15 +08:00
|
|
|
extern void deregister_mtd_parser(struct mtd_part_parser *parser);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-07-11 00:23:39 +08:00
|
|
|
int mtd_is_partition(const struct mtd_info *mtd);
|
2013-11-13 03:11:26 +08:00
|
|
|
int mtd_add_partition(struct mtd_info *master, const char *name,
|
2010-09-17 18:31:41 +08:00
|
|
|
long long offset, long long length);
|
|
|
|
int mtd_del_partition(struct mtd_info *master, int partno);
|
2012-07-11 00:23:40 +08:00
|
|
|
uint64_t mtd_get_device_size(const struct mtd_info *mtd);
|
2010-09-17 18:31:41 +08:00
|
|
|
|
2008-01-16 07:54:43 +08:00
|
|
|
#endif
|