Blame view

drivers/mtd/bcm63xxpart.c 8.44 KB
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
1
2
3
4
5
6
  /*
   * BCM63XX CFE image tag parser
   *
   * Copyright © 2006-2008  Florian Fainelli <florian@openwrt.org>
   *			  Mike Albon <malbon@openwrt.org>
   * Copyright © 2009-2010  Daniel Dickinson <openwrt@cshore.neomailbox.net>
d085eea16   Jonas Gorski   mtd: bcm63xxpart:...
7
   * Copyright © 2011-2013  Jonas Gorski <jonas.gorski@gmail.com>
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
   *
   * 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.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
   *
   */
  
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
26
  #include <linux/bcm963xx_nvram.h>
8fce60b8d   Simon Arlott   MIPS: bcm963xx: M...
27
  #include <linux/bcm963xx_tag.h>
f98872fc1   Jonas Gorski   mtd: bcm63xxpart:...
28
  #include <linux/crc32.h>
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
29
30
  #include <linux/module.h>
  #include <linux/kernel.h>
c88fd9d97   Jonas Gorski   mtd: bcm63xxpart:...
31
  #include <linux/sizes.h>
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
32
33
34
35
  #include <linux/slab.h>
  #include <linux/vmalloc.h>
  #include <linux/mtd/mtd.h>
  #include <linux/mtd/partitions.h>
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
36
  #define BCM963XX_CFE_BLOCK_SIZE		SZ_64K	/* always at least 64KiB */
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
37

436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
38
39
40
  #define BCM963XX_CFE_MAGIC_OFFSET	0x4e0
  #define BCM963XX_CFE_VERSION_OFFSET	0x570
  #define BCM963XX_NVRAM_OFFSET		0x580
f2d9739b8   Jonas Gorski   mtd: bcm63xxpart:...
41

7fffa694a   Simon Arlott   mtd: bcm63xxpart:...
42
43
44
  /* Ensure strings read from flash structs are null terminated */
  #define STR_NULL_TERMINATE(x) \
  	do { char *_str = (x); _str[sizeof(x) - 1] = 0; } while (0)
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
45
46
  static int bcm63xx_detect_cfe(struct mtd_info *master)
  {
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
47
48
49
  	char buf[9];
  	int ret;
  	size_t retlen;
329ad399a   Artem Bityutskiy   mtd: introduce mt...
50
51
  	ret = mtd_read(master, BCM963XX_CFE_VERSION_OFFSET, 5, &retlen,
  		       (void *)buf);
f2d9739b8   Jonas Gorski   mtd: bcm63xxpart:...
52
53
54
55
56
57
58
59
60
  	buf[retlen] = 0;
  
  	if (ret)
  		return ret;
  
  	if (strncmp("cfe-v", buf, 5) == 0)
  		return 0;
  
  	/* very old CFE's do not have the cfe-v string, so check for magic */
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
61
  	ret = mtd_read(master, BCM963XX_CFE_MAGIC_OFFSET, 8, &retlen,
329ad399a   Artem Bityutskiy   mtd: introduce mt...
62
  		       (void *)buf);
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
63
  	buf[retlen] = 0;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
64

f2d9739b8   Jonas Gorski   mtd: bcm63xxpart:...
65
  	return strncmp("CFE1CFE1", buf, 8);
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
66
  }
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  static int bcm63xx_read_nvram(struct mtd_info *master,
  	struct bcm963xx_nvram *nvram)
  {
  	u32 actual_crc, expected_crc;
  	size_t retlen;
  	int ret;
  
  	/* extract nvram data */
  	ret = mtd_read(master, BCM963XX_NVRAM_OFFSET, BCM963XX_NVRAM_V5_SIZE,
  			&retlen, (void *)nvram);
  	if (ret)
  		return ret;
  
  	ret = bcm963xx_nvram_checksum(nvram, &expected_crc, &actual_crc);
  	if (ret)
  		pr_warn("nvram checksum failed, contents may be invalid (expected %08x, got %08x)
  ",
  			expected_crc, actual_crc);
  
  	if (!nvram->psi_size)
  		nvram->psi_size = BCM963XX_DEFAULT_PSI_SIZE;
  
  	return 0;
  }
7fffa694a   Simon Arlott   mtd: bcm63xxpart:...
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
  static int bcm63xx_read_image_tag(struct mtd_info *master, const char *name,
  	loff_t tag_offset, struct bcm_tag *buf)
  {
  	int ret;
  	size_t retlen;
  	u32 computed_crc;
  
  	ret = mtd_read(master, tag_offset, sizeof(*buf), &retlen, (void *)buf);
  	if (ret)
  		return ret;
  
  	if (retlen != sizeof(*buf))
  		return -EIO;
  
  	computed_crc = crc32_le(IMAGETAG_CRC_START, (u8 *)buf,
  				offsetof(struct bcm_tag, header_crc));
  	if (computed_crc == buf->header_crc) {
  		STR_NULL_TERMINATE(buf->board_id);
  		STR_NULL_TERMINATE(buf->tag_version);
  
  		pr_info("%s: CFE image tag found at 0x%llx with version %s, board type %s
  ",
  			name, tag_offset, buf->tag_version, buf->board_id);
  
  		return 0;
  	}
  
  	pr_warn("%s: CFE image tag at 0x%llx CRC invalid (expected %08x, actual %08x)
  ",
  		name, tag_offset, buf->header_crc, computed_crc);
  	return 1;
  }
4110fdd29   Simon Arlott   mtd: bcm63xxpart:...
123
124
  static int bcm63xx_parse_cfe_nor_partitions(struct mtd_info *master,
  	const struct mtd_partition **pparts, struct bcm963xx_nvram *nvram)
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
125
126
127
  {
  	/* CFE, NVRAM and global Linux are always present */
  	int nrparts = 3, curpart = 0;
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
128
  	struct bcm_tag *buf = NULL;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
129
130
  	struct mtd_partition *parts;
  	int ret;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
131
132
  	unsigned int rootfsaddr, kerneladdr, spareaddr;
  	unsigned int rootfslen, kernellen, sparelen, totallen;
678eb9bb8   Jonas Gorski   mtd: bcm63xxpart:...
133
  	unsigned int cfelen, nvramlen;
4e4fb6395   Jonas Gorski   mtd: bcm63xxpart:...
134
  	unsigned int cfe_erasesize;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
135
  	int i;
5329d67cc   Jonas Gorski   mtd: bcm63xxpart:...
136
  	bool rootfs_first = false;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
137

4e4fb6395   Jonas Gorski   mtd: bcm63xxpart:...
138
  	cfe_erasesize = max_t(uint32_t, master->erasesize,
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
139
  			      BCM963XX_CFE_BLOCK_SIZE);
4e4fb6395   Jonas Gorski   mtd: bcm63xxpart:...
140
141
  
  	cfelen = cfe_erasesize;
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
142
  	nvramlen = nvram->psi_size * SZ_1K;
d085eea16   Jonas Gorski   mtd: bcm63xxpart:...
143
  	nvramlen = roundup(nvramlen, cfe_erasesize);
678eb9bb8   Jonas Gorski   mtd: bcm63xxpart:...
144

70a3c167c   Jonas Gorski   mtd: maps: bcm963...
145
  	buf = vmalloc(sizeof(struct bcm_tag));
4110fdd29   Simon Arlott   mtd: bcm63xxpart:...
146
147
  	if (!buf)
  		return -ENOMEM;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
148
149
  
  	/* Get the tag */
7fffa694a   Simon Arlott   mtd: bcm63xxpart:...
150
151
  	ret = bcm63xx_read_image_tag(master, "rootfs", cfelen, buf);
  	if (!ret) {
2c4fd433f   Simon Arlott   mtd: bcm63xxpart:...
152
153
154
155
156
  		STR_NULL_TERMINATE(buf->flash_image_start);
  		if (kstrtouint(buf->flash_image_start, 10, &rootfsaddr) ||
  				rootfsaddr < BCM963XX_EXTENDED_SIZE) {
  			pr_err("invalid rootfs address: %*ph
  ",
3707b2c3d   Brian Norris   mtd: bcm63xxpart:...
157
  				(int)sizeof(buf->flash_image_start),
2c4fd433f   Simon Arlott   mtd: bcm63xxpart:...
158
159
160
161
162
163
164
165
166
  				buf->flash_image_start);
  			goto invalid_tag;
  		}
  
  		STR_NULL_TERMINATE(buf->kernel_address);
  		if (kstrtouint(buf->kernel_address, 10, &kerneladdr) ||
  				kerneladdr < BCM963XX_EXTENDED_SIZE) {
  			pr_err("invalid kernel address: %*ph
  ",
3707b2c3d   Brian Norris   mtd: bcm63xxpart:...
167
  				(int)sizeof(buf->kernel_address),
2c4fd433f   Simon Arlott   mtd: bcm63xxpart:...
168
169
170
171
172
173
174
175
  				buf->kernel_address);
  			goto invalid_tag;
  		}
  
  		STR_NULL_TERMINATE(buf->kernel_length);
  		if (kstrtouint(buf->kernel_length, 10, &kernellen)) {
  			pr_err("invalid kernel length: %*ph
  ",
3707b2c3d   Brian Norris   mtd: bcm63xxpart:...
176
  				(int)sizeof(buf->kernel_length),
2c4fd433f   Simon Arlott   mtd: bcm63xxpart:...
177
178
179
180
181
182
183
184
  				buf->kernel_length);
  			goto invalid_tag;
  		}
  
  		STR_NULL_TERMINATE(buf->total_length);
  		if (kstrtouint(buf->total_length, 10, &totallen)) {
  			pr_err("invalid total length: %*ph
  ",
3707b2c3d   Brian Norris   mtd: bcm63xxpart:...
185
  				(int)sizeof(buf->total_length),
2c4fd433f   Simon Arlott   mtd: bcm63xxpart:...
186
187
188
  				buf->total_length);
  			goto invalid_tag;
  		}
f98872fc1   Jonas Gorski   mtd: bcm63xxpart:...
189

1f29cb19c   Simon Arlott   MIPS: bcm963xx: M...
190
191
  		kerneladdr = kerneladdr - BCM963XX_EXTENDED_SIZE;
  		rootfsaddr = rootfsaddr - BCM963XX_EXTENDED_SIZE;
f98872fc1   Jonas Gorski   mtd: bcm63xxpart:...
192
  		spareaddr = roundup(totallen, master->erasesize) + cfelen;
5329d67cc   Jonas Gorski   mtd: bcm63xxpart:...
193
194
195
196
197
198
199
200
201
202
  
  		if (rootfsaddr < kerneladdr) {
  			/* default Broadcom layout */
  			rootfslen = kerneladdr - rootfsaddr;
  			rootfs_first = true;
  		} else {
  			/* OpenWrt layout */
  			rootfsaddr = kerneladdr + kernellen;
  			rootfslen = spareaddr - rootfsaddr;
  		}
7fffa694a   Simon Arlott   mtd: bcm63xxpart:...
203
  	} else if (ret > 0) {
2c4fd433f   Simon Arlott   mtd: bcm63xxpart:...
204
  invalid_tag:
f98872fc1   Jonas Gorski   mtd: bcm63xxpart:...
205
206
207
208
  		kernellen = 0;
  		rootfslen = 0;
  		rootfsaddr = 0;
  		spareaddr = cfelen;
7fffa694a   Simon Arlott   mtd: bcm63xxpart:...
209
210
  	} else {
  		goto out;
f98872fc1   Jonas Gorski   mtd: bcm63xxpart:...
211
  	}
e190401ba   Jonas Gorski   mtd: bcm63xxpart:...
212
  	sparelen = master->size - spareaddr - nvramlen;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
213
214
  
  	/* Determine number of partitions */
fafc3d688   Jonas Gorski   mtd: bcm63xxpart:...
215
  	if (rootfslen > 0)
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
216
  		nrparts++;
fafc3d688   Jonas Gorski   mtd: bcm63xxpart:...
217
218
  
  	if (kernellen > 0)
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
219
  		nrparts++;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
220

70a3c167c   Jonas Gorski   mtd: maps: bcm963...
221
222
  	parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL);
  	if (!parts) {
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
223
224
  		ret = -ENOMEM;
  		goto out;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
225
226
227
228
229
  	}
  
  	/* Start building partition list */
  	parts[curpart].name = "CFE";
  	parts[curpart].offset = 0;
678eb9bb8   Jonas Gorski   mtd: bcm63xxpart:...
230
  	parts[curpart].size = cfelen;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
231
232
233
  	curpart++;
  
  	if (kernellen > 0) {
5329d67cc   Jonas Gorski   mtd: bcm63xxpart:...
234
235
236
237
238
239
240
  		int kernelpart = curpart;
  
  		if (rootfslen > 0 && rootfs_first)
  			kernelpart++;
  		parts[kernelpart].name = "kernel";
  		parts[kernelpart].offset = kerneladdr;
  		parts[kernelpart].size = kernellen;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
241
242
243
244
  		curpart++;
  	}
  
  	if (rootfslen > 0) {
5329d67cc   Jonas Gorski   mtd: bcm63xxpart:...
245
246
247
248
249
250
251
252
253
  		int rootfspart = curpart;
  
  		if (kernellen > 0 && rootfs_first)
  			rootfspart--;
  		parts[rootfspart].name = "rootfs";
  		parts[rootfspart].offset = rootfsaddr;
  		parts[rootfspart].size = rootfslen;
  		if (sparelen > 0  && !rootfs_first)
  			parts[rootfspart].size += sparelen;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
254
255
256
257
  		curpart++;
  	}
  
  	parts[curpart].name = "nvram";
678eb9bb8   Jonas Gorski   mtd: bcm63xxpart:...
258
259
  	parts[curpart].offset = master->size - nvramlen;
  	parts[curpart].size = nvramlen;
f3f9a5dac   Jonas Gorski   mtd: bcm63xxpart:...
260
  	curpart++;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
261
262
  
  	/* Global partition "linux" to make easy firmware upgrade */
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
263
  	parts[curpart].name = "linux";
327c62c55   Jonas Gorski   mtd: bcm63xxpart:...
264
265
  	parts[curpart].offset = cfelen;
  	parts[curpart].size = master->size - cfelen - nvramlen;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
266
267
  
  	for (i = 0; i < nrparts; i++)
60768368b   Jonas Gorski   mtd: bcm63xxpart:...
268
269
270
  		pr_info("Partition %d is %s offset %llx and length %llx
  ", i,
  			parts[i].name, parts[i].offset,	parts[i].size);
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
271
272
273
274
275
276
  
  	pr_info("Spare partition is offset %x and length %x
  ",	spareaddr,
  		sparelen);
  
  	*pparts = parts;
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
277
278
279
  	ret = 0;
  
  out:
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
280
  	vfree(buf);
436e94a6f   Simon Arlott   mtd: bcm63xxpart:...
281
282
  	if (ret)
  		return ret;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
283
  	return nrparts;
4110fdd29   Simon Arlott   mtd: bcm63xxpart:...
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
  }
  
  static int bcm63xx_parse_cfe_partitions(struct mtd_info *master,
  					const struct mtd_partition **pparts,
  					struct mtd_part_parser_data *data)
  {
  	struct bcm963xx_nvram *nvram = NULL;
  	int ret;
  
  	if (bcm63xx_detect_cfe(master))
  		return -EINVAL;
  
  	nvram = vzalloc(sizeof(*nvram));
  	if (!nvram)
  		return -ENOMEM;
  
  	ret = bcm63xx_read_nvram(master, nvram);
  	if (ret)
  		goto out;
  
  	if (!mtd_type_is_nand(master))
  		ret = bcm63xx_parse_cfe_nor_partitions(master, pparts, nvram);
  	else
  		ret = -EINVAL;
  
  out:
  	vfree(nvram);
  	return ret;
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
312
313
314
  };
  
  static struct mtd_part_parser bcm63xx_cfe_parser = {
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
315
316
317
  	.parse_fn = bcm63xx_parse_cfe_partitions,
  	.name = "bcm63xxpart",
  };
b8f70badb   Brian Norris   mtd: kill off MTD...
318
  module_mtd_part_parser(bcm63xx_cfe_parser);
70a3c167c   Jonas Gorski   mtd: maps: bcm963...
319
320
321
322
323
324
325
  
  MODULE_LICENSE("GPL");
  MODULE_AUTHOR("Daniel Dickinson <openwrt@cshore.neomailbox.net>");
  MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
  MODULE_AUTHOR("Mike Albon <malbon@openwrt.org>");
  MODULE_AUTHOR("Jonas Gorski <jonas.gorski@gmail.com");
  MODULE_DESCRIPTION("MTD partitioning for BCM63XX CFE bootloaders");