/* allocate the partition structure */
child = kzalloc(sizeof(*child), GFP_KERNEL);
name = kstrdup(part->name, GFP_KERNEL); if (!name || !child) {
printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
parent->name);
kfree(name);
kfree(child); return ERR_PTR(-ENOMEM);
}
/* set up the MTD object for this partition */
child->type = parent->type;
child->part.flags = parent->flags & ~part->mask_flags;
child->part.flags |= part->add_flags;
child->flags = child->part.flags;
child->part.size = part->size;
child->writesize = parent->writesize;
child->writebufsize = parent->writebufsize;
child->oobsize = parent->oobsize;
child->oobavail = parent->oobavail;
child->subpage_sft = parent->subpage_sft;
child->name = name;
child->owner = parent->owner;
/* NOTE: Historically, we didn't arrange MTDs as a tree out of * concern for showing the same data in multiple partitions. * However, it is very useful to have the master node present, * so the MTD_PARTITIONED_MASTER option allows that. The master * will have device nodes etc only if this is set, so make the * parent conditional on that option. Note, this is a way to * distinguish between the parent and its partitions in sysfs.
*/
child->dev.parent = IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER) || mtd_is_partition(parent) ?
&parent->dev : parent->dev.parent;
child->dev.of_node = part->of_node;
child->parent = parent;
child->part.offset = part->offset;
INIT_LIST_HEAD(&child->partitions);
/* let's do some sanity checks */ if (child->part.offset >= parent_size) { /* let's register it anyway to preserve ordering */
child->part.offset = 0;
child->part.size = 0;
/* Initialize ->erasesize to make add_mtd_device() happy. */
child->erasesize = parent->erasesize;
printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n",
part->name); goto out_register;
} if (child->part.offset + child->part.size > parent->size) {
child->part.size = parent_size - child->part.offset;
printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n",
part->name, parent->name, child->part.size);
}
if (parent->numeraseregions > 1) { /* Deal with variable erase size stuff */ int i, max = parent->numeraseregions;
u64 end = child->part.offset + child->part.size; struct mtd_erase_region_info *regions = parent->eraseregions;
/* Find the first erase regions which is part of this
* partition. */ for (i = 0; i < max && regions[i].offset <= child->part.offset;
i++)
; /* The loop searched for the region _behind_ the first one */ if (i > 0)
i--;
/* Pick biggest erasesize */ for (; i < max && regions[i].offset < end; i++) { if (child->erasesize < regions[i].erasesize)
child->erasesize = regions[i].erasesize;
}
BUG_ON(child->erasesize == 0);
} else { /* Single erase size */
child->erasesize = master->erasesize;
}
/* * Child erasesize might differ from the parent one if the parent * exposes several regions with different erasesize. Adjust * wr_alignment accordingly.
*/ if (!(child->flags & MTD_NO_ERASE))
wr_alignment = child->erasesize;
tmp = mtd_get_master_ofs(child, 0);
remainder = do_div(tmp, wr_alignment); if ((child->flags & MTD_WRITEABLE) && remainder) { /* Doesn't start on a boundary of major erase size */ /* FIXME: Let it be writable if it is on a boundary of
* _minor_ erase size though */
child->flags &= ~MTD_WRITEABLE;
printk(KERN_WARNING"mtd: partition \"%s\" doesn't start on an erase/write block boundary -- force read-only\n",
part->name);
}
tmp = mtd_get_master_ofs(child, 0) + child->part.size;
remainder = do_div(tmp, wr_alignment); if ((child->flags & MTD_WRITEABLE) && remainder) {
child->flags &= ~MTD_WRITEABLE;
printk(KERN_WARNING"mtd: partition \"%s\" doesn't end on an erase/write block -- force read-only\n",
part->name);
}
/** * __mtd_del_partition - delete MTD partition * * @mtd: MTD structure to be deleted * * This function must be called with the partitions mutex locked.
*/ staticint __mtd_del_partition(struct mtd_info *mtd)
{ struct mtd_info *child, *next; int err;
list_del_init(&mtd->part.node);
err = del_mtd_device(mtd); if (err) return err;
return 0;
}
/* * This function unregisters and destroy all slave MTD objects which are * attached to the given MTD object, recursively.
*/ staticint __del_mtd_partitions(struct mtd_info *mtd)
{ struct mtd_info *child, *next; int ret, err = 0;
list_for_each_entry_safe(child, next, &mtd->partitions, part.node) { if (mtd_has_partitions(child))
__del_mtd_partitions(child);
pr_info("Deleting %s MTD partition\n", child->name);
list_del_init(&child->part.node);
ret = del_mtd_device(child); if (ret < 0) {
pr_err("Error when deleting partition \"%s\" (%d)\n",
child->name, ret);
err = ret; continue;
}
}
return err;
}
int del_mtd_partitions(struct mtd_info *mtd)
{ struct mtd_info *master = mtd_get_master(mtd); int ret;
pr_info("Deleting MTD partitions on \"%s\":\n", mtd->name);
mutex_lock(&master->master.partitions_lock);
ret = __del_mtd_partitions(mtd);
mutex_unlock(&master->master.partitions_lock);
return ret;
}
int mtd_del_partition(struct mtd_info *mtd, int partno)
{ struct mtd_info *child, *master = mtd_get_master(mtd); int ret = -EINVAL;
mutex_lock(&master->master.partitions_lock);
list_for_each_entry(child, &mtd->partitions, part.node) { if (child->index == partno) {
ret = __mtd_del_partition(child); break;
}
}
mutex_unlock(&master->master.partitions_lock);
/* * This function, given a parent MTD object and a partition table, creates * and registers the child MTD objects which are bound to the parent according * to the partition definitions. * * For historical reasons, this function's caller only registers the parent * if the MTD_PARTITIONED_MASTER config option is set.
*/
int add_mtd_partitions(struct mtd_info *parent, conststruct mtd_partition *parts, int nbparts)
{ struct mtd_info *child, *master = mtd_get_master(parent);
uint64_t cur_offset = 0; int i, ret;
printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n",
nbparts, parent->name);
for (i = 0; i < nbparts; i++) {
child = allocate_partition(parent, parts + i, i, cur_offset); if (IS_ERR(child)) {
ret = PTR_ERR(child); goto err_del_partitions;
}
ret = add_mtd_device(child); if (ret) {
mutex_lock(&master->master.partitions_lock);
list_del(&child->part.node);
mutex_unlock(&master->master.partitions_lock);
free_partition(child); goto err_del_partitions;
}
mtd_add_partition_attrs(child);
/* Look for subpartitions */
ret = parse_mtd_partitions(child, parts[i].types, NULL); if (ret < 0) {
pr_err("Failed to parse subpartitions: %d\n", ret); goto err_del_partitions;
}
/* * Many partition parsers just expected the core to kfree() all their data in * one chunk. Do that by default.
*/ staticvoid mtd_part_parser_cleanup_default(conststruct mtd_partition *pparts, int nr_parts)
{
kfree(pparts);
}
/* * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you * are changing this array!
*/ staticconstchar * const default_mtd_part_types[] = { "cmdlinepart", "ofpart",
NULL
};
/* Check DT only when looking for subpartitions. */ staticconstchar * const default_subpartition_types[] = { "ofpart",
NULL
};
ret = (*parser->parse_fn)(master, &pparts->parts, data);
pr_debug("%s: parser %s: %i\n", master->name, parser->name, ret); if (ret <= 0) return ret;
pr_notice("%d %s partitions found on MTD device %s\n", ret,
parser->name, master->name);
pparts->nr_parts = ret;
pparts->parser = parser;
return ret;
}
/** * mtd_part_get_compatible_parser - find MTD parser by a compatible string * * @compat: compatible string describing partitions in a device tree * * MTD parsers can specify supported partitions by providing a table of * compatibility strings. This function finds a parser that advertises support * for a passed value of "compatible".
*/ staticstruct mtd_part_parser *mtd_part_get_compatible_parser(constchar *compat)
{ struct mtd_part_parser *p, *ret = NULL;
dev = &master->dev; /* Use parent device (controller) if the top level MTD is not registered */ if (!IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER) && !mtd_is_partition(master))
dev = master->dev.parent;
/* * Don't create devices that are added to a bus but will never get * probed. That'll cause fw_devlink to block probing of consumers of * this partition until the partition device is probed.
*/
for_each_child_of_node(np, child) if (of_device_is_compatible(child, "nvmem-cells"))
of_node_set_flag(child, OF_POPULATED);
/* * For backward compatibility we have to try the "fixed-partitions" * parser. It supports old DT format with partitions specified as a * direct subnodes of a flash device DT node without any compatibility * specified we could match.
*/
parser = mtd_part_parser_get(fixed); if (!parser && !request_module("%s", fixed))
parser = mtd_part_parser_get(fixed); if (parser) {
ret = mtd_part_do_parse(parser, master, pparts, NULL); if (ret > 0) return ret;
mtd_part_parser_put(parser); if (ret < 0 && !err)
err = ret;
}
return err;
}
/** * parse_mtd_partitions - parse and register MTD partitions * * @master: the master partition (describes whole MTD device) * @types: names of partition parsers to try or %NULL * @data: MTD partition parser-specific data * * This function tries to find & register partitions 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 * "cmdlinepart" and "ofpart" parsers ATM. * Note: If there are more then one parser in @types, the kernel only takes the * partitions parsed out by the first parser. * * This function may return: * o a negative error code in case of failure * o number of found partitions otherwise
*/ int parse_mtd_partitions(struct mtd_info *master, constchar *const *types, struct mtd_part_parser_data *data)
{ struct mtd_partitions pparts = { }; struct mtd_part_parser *parser; int ret, err = 0;
if (!types)
types = mtd_is_partition(master) ? default_subpartition_types :
default_mtd_part_types;
for ( ; *types; types++) { /* * ofpart is a special type that means OF partitioning info * should be used. It requires a bit different logic so it is * handled in a separated function.
*/ if (!strcmp(*types, "ofpart")) {
ret = mtd_part_of_parse(master, &pparts);
} else {
pr_debug("%s: parsing partitions %s\n", master->name,
*types);
parser = mtd_part_parser_get(*types); if (!parser && !request_module("%s", *types))
parser = mtd_part_parser_get(*types); if (!parser) continue;
pr_debug("%s: got parser %s\n", master->name, parser->name);
ret = mtd_part_do_parse(parser, master, &pparts, data); if (ret <= 0)
mtd_part_parser_put(parser);
} /* Found partitions! */ if (ret > 0) {
err = add_mtd_partitions(master, pparts.parts,
pparts.nr_parts);
mtd_part_parser_cleanup(&pparts); return err ? err : pparts.nr_parts;
} /* * Stash the first error we see; only report it if no parser * succeeds
*/ if (ret < 0 && !err)
err = ret;
} return err;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.