2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* MTD partitioning layer definitions
|
|
|
|
*
|
2009-09-14 07:25:28 +00:00
|
|
|
* (C) 2000 Nicolas Pitre <nico@fluxnic.net>
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* This code is GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MTD_PARTITIONS_H
|
|
|
|
#define MTD_PARTITIONS_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Partition definition structure:
|
2005-11-07 11:15:31 +00:00
|
|
|
*
|
2005-04-16 22:20:36 +00:00
|
|
|
* An array of struct partition is passed along with a MTD object to
|
2011-05-23 16:15:46 +00:00
|
|
|
* mtd_device_register() to create them.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* For each partition, these fields are available:
|
|
|
|
* name: string that will be used to label the partition's MTD device.
|
2017-06-21 06:26:46 +00:00
|
|
|
* types: some partitions can be containers using specific format to describe
|
|
|
|
* embedded subpartitions / volumes. E.g. many home routers use "firmware"
|
|
|
|
* partition that contains at least kernel and rootfs. In such case an
|
|
|
|
* extra parser is needed that will detect these dynamic partitions and
|
|
|
|
* report them to the MTD subsystem. If set this property stores an array
|
|
|
|
* of parser names to use when looking for subpartitions.
|
2005-11-07 11:15:31 +00:00
|
|
|
* size: the partition size; if defined as MTDPART_SIZ_FULL, the partition
|
2005-04-16 22:20:36 +00:00
|
|
|
* will extend to the end of the master MTD device.
|
2005-11-07 11:15:31 +00: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 14:04:14 +00: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 11:15:31 +00:00
|
|
|
* mask_flags: contains flags that have to be masked (removed) from the
|
2005-04-16 22:20:36 +00:00
|
|
|
* master MTD flag set for the corresponding MTD partition.
|
2005-11-07 11:15:31 +00:00
|
|
|
* For example, to force a read-only partition, simply adding
|
2005-04-16 22:20:36 +00:00
|
|
|
* MTD_WRITEABLE to the mask_flags will do the trick.
|
2020-05-03 15:53:37 +00:00
|
|
|
* add_flags: contains flags to add to the parent flags
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-11-07 11:15:31 +00:00
|
|
|
* Note: writeable partitions require their size and offset be
|
2005-04-16 22:20:36 +00:00
|
|
|
* erasesize aligned (e.g. use MTDPART_OFS_NEXTBLK).
|
2005-11-07 11:15:31 +00:00
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct mtd_partition {
|
2013-11-12 19:11:26 +00:00
|
|
|
const char *name; /* identifier string */
|
2017-06-21 06:26:46 +00:00
|
|
|
const char *const *types; /* names of parsers to use if any */
|
2008-12-10 13:37:21 +00:00
|
|
|
uint64_t size; /* partition size */
|
|
|
|
uint64_t offset; /* offset within the master MTD space */
|
2008-12-10 14:08:12 +00:00
|
|
|
uint32_t mask_flags; /* master MTD flags to mask out for this partition */
|
2020-05-03 15:53:37 +00:00
|
|
|
uint32_t add_flags; /* flags to add to the partition */
|
2017-02-09 10:50:24 +00:00
|
|
|
struct device_node *of_node;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2011-06-06 14:04:14 +00:00
|
|
|
#define MTDPART_OFS_RETAIN (-3)
|
2005-04-16 22:20:36 +00:00
|
|
|
#define MTDPART_OFS_NXTBLK (-2)
|
|
|
|
#define MTDPART_OFS_APPEND (-1)
|
|
|
|
#define MTDPART_SIZ_FULL (0)
|
|
|
|
|
|
|
|
|
2009-06-15 05:10:18 +00:00
|
|
|
struct mtd_info;
|
2011-05-29 17:32:33 +00:00
|
|
|
struct device_node;
|
2009-06-15 05:10:18 +00:00
|
|
|
|
2011-06-10 14:18:28 +00:00
|
|
|
/**
|
|
|
|
* struct mtd_part_parser_data - used to pass data to MTD partition parsers.
|
|
|
|
* @origin: for RedBoot, start address of MTD device
|
|
|
|
*/
|
|
|
|
struct mtd_part_parser_data {
|
|
|
|
unsigned long origin;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-16 22:20:36 +00: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;
|
2018-03-14 12:10:42 +00:00
|
|
|
const struct of_device_id *of_match_table;
|
2015-12-04 23:25:14 +00:00
|
|
|
int (*parse_fn)(struct mtd_info *, const struct mtd_partition **,
|
2011-06-10 14:18:28 +00:00
|
|
|
struct mtd_part_parser_data *);
|
2015-12-09 18:24:03 +00:00
|
|
|
void (*cleanup)(const struct mtd_partition *pparts, int nr_parts);
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2015-12-04 23:25:17 +00:00
|
|
|
/* Container for passing around a set of parsed partitions */
|
|
|
|
struct mtd_partitions {
|
|
|
|
const struct mtd_partition *parts;
|
|
|
|
int nr_parts;
|
|
|
|
const struct mtd_part_parser *parser;
|
|
|
|
};
|
|
|
|
|
2015-11-12 03:13:29 +00:00
|
|
|
extern int __register_mtd_parser(struct mtd_part_parser *parser,
|
|
|
|
struct module *owner);
|
|
|
|
#define register_mtd_parser(parser) __register_mtd_parser(parser, THIS_MODULE)
|
|
|
|
|
2013-12-01 10:59:15 +00:00
|
|
|
extern void deregister_mtd_parser(struct mtd_part_parser *parser);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-11-12 03:13:29 +00:00
|
|
|
/*
|
|
|
|
* module_mtd_part_parser() - Helper macro for MTD partition parsers that don't
|
|
|
|
* do anything special in module init/exit. Each driver may only use this macro
|
|
|
|
* once, and calling it replaces module_init() and module_exit().
|
|
|
|
*/
|
|
|
|
#define module_mtd_part_parser(__mtd_part_parser) \
|
|
|
|
module_driver(__mtd_part_parser, register_mtd_parser, \
|
|
|
|
deregister_mtd_parser)
|
|
|
|
|
2013-11-12 19:11:26 +00:00
|
|
|
int mtd_add_partition(struct mtd_info *master, const char *name,
|
2010-09-17 10:31:41 +00:00
|
|
|
long long offset, long long length);
|
|
|
|
int mtd_del_partition(struct mtd_info *master, int partno);
|
2012-07-10 16:23:40 +00:00
|
|
|
uint64_t mtd_get_device_size(const struct mtd_info *mtd);
|
2010-09-17 10:31:41 +00:00
|
|
|
|
2008-01-15 23:54:43 +00:00
|
|
|
#endif
|