ofpart.c 5.4 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 33
	struct device_node *mtd_node;
	struct device_node *ofpart_node;
34 35
	const char *partname;
	struct device_node *pp;
36 37
	int nr_parts, i, ret = 0;
	bool dedicated = true;
38

39 40 41 42

	if (!data)
		return 0;

43 44
	mtd_node = data->of_node;
	if (!mtd_node)
45 46
		return 0;

47 48
	ofpart_node = of_get_child_by_name(mtd_node, "partitions");
	if (!ofpart_node) {
49 50 51 52 53 54 55
		/*
		 * We might get here even when ofpart isn't used at all (e.g.,
		 * when using another parser), so don't be louder than
		 * KERN_DEBUG
		 */
		pr_debug("%s: 'partitions' subnode not found on %s. Trying to parse direct subnodes as partitions.\n",
			 master->name, mtd_node->full_name);
56 57 58 59
		ofpart_node = mtd_node;
		dedicated = false;
	}

60 61
	/* First count the subnodes */
	nr_parts = 0;
62 63
	for_each_child_of_node(ofpart_node,  pp) {
		if (!dedicated && node_has_compatible(pp))
64 65
			continue;

66
		nr_parts++;
67
	}
68 69 70 71 72 73 74 75 76

	if (nr_parts == 0)
		return 0;

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

	i = 0;
77
	for_each_child_of_node(ofpart_node,  pp) {
78
		const __be32 *reg;
79
		int len;
80
		int a_cells, s_cells;
81

82
		if (!dedicated && node_has_compatible(pp))
83 84
			continue;

85 86
		reg = of_get_property(pp, "reg", &len);
		if (!reg) {
87 88 89 90 91 92 93 94 95
			if (dedicated) {
				pr_debug("%s: ofpart partition %s (%s) missing reg property.\n",
					 master->name, pp->full_name,
					 mtd_node->full_name);
				goto ofpart_fail;
			} else {
				nr_parts--;
				continue;
			}
96 97
		}

98 99
		a_cells = of_n_addr_cells(pp);
		s_cells = of_n_size_cells(pp);
100 101 102 103 104 105 106
		if (len / 4 != a_cells + s_cells) {
			pr_debug("%s: ofpart partition %s (%s) error parsing reg property.\n",
				 master->name, pp->full_name,
				 mtd_node->full_name);
			goto ofpart_fail;
		}

107 108
		(*pparts)[i].offset = of_read_number(reg, a_cells);
		(*pparts)[i].size = of_read_number(reg + a_cells, s_cells);
109 110 111 112

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

		if (of_get_property(pp, "read-only", &len))
116 117 118 119
			(*pparts)[i].mask_flags |= MTD_WRITEABLE;

		if (of_get_property(pp, "lock", &len))
			(*pparts)[i].mask_flags |= MTD_POWERUP_LOCK;
120 121 122 123

		i++;
	}

124 125
	if (!nr_parts)
		goto ofpart_none;
126

127
	return nr_parts;
128 129 130 131 132 133 134 135 136 137

ofpart_fail:
	pr_err("%s: error parsing ofpart partition %s (%s)\n",
	       master->name, pp->full_name, mtd_node->full_name);
	ret = -EINVAL;
ofpart_none:
	of_node_put(pp);
	kfree(*pparts);
	*pparts = NULL;
	return ret;
138
}
139

140 141 142 143 144 145
static struct mtd_part_parser ofpart_parser = {
	.owner = THIS_MODULE,
	.parse_fn = parse_ofpart_partitions,
	.name = "ofpart",
};

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
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);
174
	if (!*pparts)
175 176 177 178 179 180 181 182 183 184 185 186 187 188
		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;

189
			(*pparts)[i].name = names;
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
			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",
};

208 209
static int __init ofpart_parser_init(void)
{
210 211 212
	register_mtd_parser(&ofpart_parser);
	register_mtd_parser(&ofoldpart_parser);
	return 0;
213 214
}

215 216 217 218 219 220
static void __exit ofpart_parser_exit(void)
{
	deregister_mtd_parser(&ofpart_parser);
	deregister_mtd_parser(&ofoldpart_parser);
}

221
module_init(ofpart_parser_init);
222
module_exit(ofpart_parser_exit);
223

224
MODULE_LICENSE("GPL");
225 226
MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
MODULE_AUTHOR("Vitaly Wool, David Gibson");
227 228 229 230 231 232
/*
 * 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");