ofpart.c 4.5 KB
Newer Older
1 2 3
/*
 * Flash partitions described by the OF (or flattened) device tree
 *
D
David Woodhouse 已提交
4
 * Copyright © 2006 MontaVista Software Inc.
5 6 7
 * Author: Vitaly Wool <vwool@ru.mvista.com>
 *
 * Revised to handle newer style flash binding by:
D
David Woodhouse 已提交
8
 *   Copyright © 2007 David Gibson, IBM Corporation.
9 10 11 12 13 14 15 16 17 18 19
 *
 * 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.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/of.h>
#include <linux/mtd/mtd.h>
20
#include <linux/slab.h>
21 22
#include <linux/mtd/partitions.h>

23 24 25 26 27
static bool node_has_compatible(struct device_node *pp)
{
	return of_get_property(pp, "compatible", NULL);
}

28 29 30 31
static int parse_ofpart_partitions(struct mtd_info *master,
				   struct mtd_partition **pparts,
				   struct mtd_part_parser_data *data)
{
32
	struct device_node *node;
33 34 35 36
	const char *partname;
	struct device_node *pp;
	int nr_parts, i;

37 38 39 40 41 42 43 44

	if (!data)
		return 0;

	node = data->of_node;
	if (!node)
		return 0;

45 46
	/* First count the subnodes */
	nr_parts = 0;
47
	for_each_child_of_node(node,  pp) {
48 49 50
		if (node_has_compatible(pp))
			continue;

51
		nr_parts++;
52
	}
53 54 55 56 57 58 59 60 61

	if (nr_parts == 0)
		return 0;

	*pparts = kzalloc(nr_parts * sizeof(**pparts), GFP_KERNEL);
	if (!*pparts)
		return -ENOMEM;

	i = 0;
62
	for_each_child_of_node(node,  pp) {
63
		const __be32 *reg;
64
		int len;
65
		int a_cells, s_cells;
66

67 68 69
		if (node_has_compatible(pp))
			continue;

70 71
		reg = of_get_property(pp, "reg", &len);
		if (!reg) {
72 73 74 75
			nr_parts--;
			continue;
		}

76 77 78 79
		a_cells = of_n_addr_cells(pp);
		s_cells = of_n_size_cells(pp);
		(*pparts)[i].offset = of_read_number(reg, a_cells);
		(*pparts)[i].size = of_read_number(reg + a_cells, s_cells);
80 81 82 83 84 85 86

		partname = of_get_property(pp, "label", &len);
		if (!partname)
			partname = of_get_property(pp, "name", &len);
		(*pparts)[i].name = (char *)partname;

		if (of_get_property(pp, "read-only", &len))
87 88 89 90
			(*pparts)[i].mask_flags |= MTD_WRITEABLE;

		if (of_get_property(pp, "lock", &len))
			(*pparts)[i].mask_flags |= MTD_POWERUP_LOCK;
91 92 93 94

		i++;
	}

95 96
	if (!i) {
		of_node_put(pp);
97
		pr_err("No valid partition found on %s\n", node->full_name);
98 99 100 101 102
		kfree(*pparts);
		*pparts = NULL;
		return -EINVAL;
	}

103 104
	return nr_parts;
}
105

106 107 108 109 110 111
static struct mtd_part_parser ofpart_parser = {
	.owner = THIS_MODULE,
	.parse_fn = parse_ofpart_partitions,
	.name = "ofpart",
};

112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
static int parse_ofoldpart_partitions(struct mtd_info *master,
				      struct mtd_partition **pparts,
				      struct mtd_part_parser_data *data)
{
	struct device_node *dp;
	int i, plen, nr_parts;
	const struct {
		__be32 offset, len;
	} *part;
	const char *names;

	if (!data)
		return 0;

	dp = data->of_node;
	if (!dp)
		return 0;

	part = of_get_property(dp, "partitions", &plen);
	if (!part)
		return 0; /* No partitions found */

	pr_warning("Device tree uses obsolete partition map binding: %s\n",
			dp->full_name);

	nr_parts = plen / sizeof(part[0]);

	*pparts = kzalloc(nr_parts * sizeof(*(*pparts)), GFP_KERNEL);
140
	if (!*pparts)
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
		return -ENOMEM;

	names = of_get_property(dp, "partition-names", &plen);

	for (i = 0; i < nr_parts; i++) {
		(*pparts)[i].offset = be32_to_cpu(part->offset);
		(*pparts)[i].size   = be32_to_cpu(part->len) & ~1;
		/* bit 0 set signifies read only partition */
		if (be32_to_cpu(part->len) & 1)
			(*pparts)[i].mask_flags = MTD_WRITEABLE;

		if (names && (plen > 0)) {
			int len = strlen(names) + 1;

			(*pparts)[i].name = (char *)names;
			plen -= len;
			names += len;
		} else {
			(*pparts)[i].name = "unnamed";
		}

		part++;
	}

	return nr_parts;
}

static struct mtd_part_parser ofoldpart_parser = {
	.owner = THIS_MODULE,
	.parse_fn = parse_ofoldpart_partitions,
	.name = "ofoldpart",
};

174 175
static int __init ofpart_parser_init(void)
{
176 177 178 179 180 181 182 183 184 185 186 187
	int rc;
	rc = register_mtd_parser(&ofpart_parser);
	if (rc)
		goto out;

	rc = register_mtd_parser(&ofoldpart_parser);
	if (!rc)
		return 0;

	deregister_mtd_parser(&ofoldpart_parser);
out:
	return rc;
188 189
}

190 191 192 193 194 195
static void __exit ofpart_parser_exit(void)
{
	deregister_mtd_parser(&ofpart_parser);
	deregister_mtd_parser(&ofoldpart_parser);
}

196
module_init(ofpart_parser_init);
197
module_exit(ofpart_parser_exit);
198

199
MODULE_LICENSE("GPL");
200 201
MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
MODULE_AUTHOR("Vitaly Wool, David Gibson");
202 203 204 205 206 207
/*
 * When MTD core cannot find the requested parser, it tries to load the module
 * with the same name. Since we provide the ofoldpart parser, we should have
 * the corresponding alias.
 */
MODULE_ALIAS("ofoldpart");