ofpart.c 5.3 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 49 50 51 52 53 54
	ofpart_node = of_get_child_by_name(mtd_node, "partitions");
	if (!ofpart_node) {
		pr_warn("%s: 'partitions' subnode not found on %s. Trying to parse direct subnodes as partitions.\n",
			master->name, mtd_node->full_name);
		ofpart_node = mtd_node;
		dedicated = false;
	}

55 56
	/* First count the subnodes */
	nr_parts = 0;
57 58
	for_each_child_of_node(ofpart_node,  pp) {
		if (!dedicated && node_has_compatible(pp))
59 60
			continue;

61
		nr_parts++;
62
	}
63 64 65 66 67 68 69 70 71

	if (nr_parts == 0)
		return 0;

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

	i = 0;
72
	for_each_child_of_node(ofpart_node,  pp) {
73
		const __be32 *reg;
74
		int len;
75
		int a_cells, s_cells;
76

77
		if (!dedicated && node_has_compatible(pp))
78 79
			continue;

80 81
		reg = of_get_property(pp, "reg", &len);
		if (!reg) {
82 83 84 85 86 87 88 89 90
			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;
			}
91 92
		}

93 94
		a_cells = of_n_addr_cells(pp);
		s_cells = of_n_size_cells(pp);
95 96 97 98 99 100 101
		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;
		}

102 103
		(*pparts)[i].offset = of_read_number(reg, a_cells);
		(*pparts)[i].size = of_read_number(reg + a_cells, s_cells);
104 105 106 107

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

		if (of_get_property(pp, "read-only", &len))
111 112 113 114
			(*pparts)[i].mask_flags |= MTD_WRITEABLE;

		if (of_get_property(pp, "lock", &len))
			(*pparts)[i].mask_flags |= MTD_POWERUP_LOCK;
115 116 117 118

		i++;
	}

119 120
	if (!nr_parts)
		goto ofpart_none;
121

122
	return nr_parts;
123 124 125 126 127 128 129 130 131 132

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;
133
}
134

135 136 137 138 139 140
static struct mtd_part_parser ofpart_parser = {
	.owner = THIS_MODULE,
	.parse_fn = parse_ofpart_partitions,
	.name = "ofpart",
};

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
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);
169
	if (!*pparts)
170 171 172 173 174 175 176 177 178 179 180 181 182 183
		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;

184
			(*pparts)[i].name = names;
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
			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",
};

203 204
static int __init ofpart_parser_init(void)
{
205 206 207
	register_mtd_parser(&ofpart_parser);
	register_mtd_parser(&ofoldpart_parser);
	return 0;
208 209
}

210 211 212 213 214 215
static void __exit ofpart_parser_exit(void)
{
	deregister_mtd_parser(&ofpart_parser);
	deregister_mtd_parser(&ofoldpart_parser);
}

216
module_init(ofpart_parser_init);
217
module_exit(ofpart_parser_exit);
218

219
MODULE_LICENSE("GPL");
220 221
MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
MODULE_AUTHOR("Vitaly Wool, David Gibson");
222 223 224 225 226 227
/*
 * 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");