2 * BCM63XX CFE image tag parser
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27 #include <linux/bcm963xx_nvram.h>
28 #include <linux/bcm963xx_tag.h>
29 #include <linux/crc32.h>
30 #include <linux/module.h>
31 #include <linux/kernel.h>
32 #include <linux/sizes.h>
33 #include <linux/slab.h>
34 #include <linux/vmalloc.h>
35 #include <linux/mtd/mtd.h>
36 #include <linux/mtd/partitions.h>
38 #define BCM963XX_CFE_BLOCK_SIZE SZ_64K /* always at least 64KiB */
40 #define BCM963XX_CFE_MAGIC_OFFSET 0x4e0
41 #define BCM963XX_CFE_VERSION_OFFSET 0x570
42 #define BCM963XX_NVRAM_OFFSET 0x580
44 /* Ensure strings read from flash structs are null terminated */
45 #define STR_NULL_TERMINATE(x) \
46 do { char *_str = (x); _str[sizeof(x) - 1] = 0; } while (0)
48 static int bcm63xx_detect_cfe(struct mtd_info *master)
54 ret = mtd_read(master, BCM963XX_CFE_VERSION_OFFSET, 5, &retlen,
61 if (strncmp("cfe-v", buf, 5) == 0)
64 /* very old CFE's do not have the cfe-v string, so check for magic */
65 ret = mtd_read(master, BCM963XX_CFE_MAGIC_OFFSET, 8, &retlen,
69 return strncmp("CFE1CFE1", buf, 8);
72 static int bcm63xx_read_nvram(struct mtd_info *master,
73 struct bcm963xx_nvram *nvram)
75 u32 actual_crc, expected_crc;
79 /* extract nvram data */
80 ret = mtd_read(master, BCM963XX_NVRAM_OFFSET, BCM963XX_NVRAM_V5_SIZE,
81 &retlen, (void *)nvram);
85 ret = bcm963xx_nvram_checksum(nvram, &expected_crc, &actual_crc);
87 pr_warn("nvram checksum failed, contents may be invalid (expected %08x, got %08x)\n",
88 expected_crc, actual_crc);
91 nvram->psi_size = BCM963XX_DEFAULT_PSI_SIZE;
96 static int bcm63xx_read_image_tag(struct mtd_info *master, const char *name,
97 loff_t tag_offset, struct bcm_tag *buf)
103 ret = mtd_read(master, tag_offset, sizeof(*buf), &retlen, (void *)buf);
107 if (retlen != sizeof(*buf))
110 computed_crc = crc32_le(IMAGETAG_CRC_START, (u8 *)buf,
111 offsetof(struct bcm_tag, header_crc));
112 if (computed_crc == buf->header_crc) {
113 STR_NULL_TERMINATE(buf->board_id);
114 STR_NULL_TERMINATE(buf->tag_version);
116 pr_info("%s: CFE image tag found at 0x%llx with version %s, board type %s\n",
117 name, tag_offset, buf->tag_version, buf->board_id);
122 pr_warn("%s: CFE image tag at 0x%llx CRC invalid (expected %08x, actual %08x)\n",
123 name, tag_offset, buf->header_crc, computed_crc);
127 static int bcm63xx_parse_cfe_nor_partitions(struct mtd_info *master,
128 const struct mtd_partition **pparts, struct bcm963xx_nvram *nvram)
130 /* CFE, NVRAM and global Linux are always present */
131 int nrparts = 3, curpart = 0;
132 struct bcm_tag *buf = NULL;
133 struct mtd_partition *parts;
135 unsigned int rootfsaddr, kerneladdr, spareaddr;
136 unsigned int rootfslen, kernellen, sparelen, totallen;
137 unsigned int cfelen, nvramlen;
138 unsigned int cfe_erasesize;
140 bool rootfs_first = false;
142 cfe_erasesize = max_t(uint32_t, master->erasesize,
143 BCM963XX_CFE_BLOCK_SIZE);
145 cfelen = cfe_erasesize;
146 nvramlen = nvram->psi_size * SZ_1K;
147 nvramlen = roundup(nvramlen, cfe_erasesize);
149 buf = vmalloc(sizeof(struct bcm_tag));
154 ret = bcm63xx_read_image_tag(master, "rootfs", cfelen, buf);
156 STR_NULL_TERMINATE(buf->flash_image_start);
157 if (kstrtouint(buf->flash_image_start, 10, &rootfsaddr) ||
158 rootfsaddr < BCM963XX_EXTENDED_SIZE) {
159 pr_err("invalid rootfs address: %*ph\n",
160 (int)sizeof(buf->flash_image_start),
161 buf->flash_image_start);
165 STR_NULL_TERMINATE(buf->kernel_address);
166 if (kstrtouint(buf->kernel_address, 10, &kerneladdr) ||
167 kerneladdr < BCM963XX_EXTENDED_SIZE) {
168 pr_err("invalid kernel address: %*ph\n",
169 (int)sizeof(buf->kernel_address),
170 buf->kernel_address);
174 STR_NULL_TERMINATE(buf->kernel_length);
175 if (kstrtouint(buf->kernel_length, 10, &kernellen)) {
176 pr_err("invalid kernel length: %*ph\n",
177 (int)sizeof(buf->kernel_length),
182 STR_NULL_TERMINATE(buf->total_length);
183 if (kstrtouint(buf->total_length, 10, &totallen)) {
184 pr_err("invalid total length: %*ph\n",
185 (int)sizeof(buf->total_length),
190 kerneladdr = kerneladdr - BCM963XX_EXTENDED_SIZE;
191 rootfsaddr = rootfsaddr - BCM963XX_EXTENDED_SIZE;
192 spareaddr = roundup(totallen, master->erasesize) + cfelen;
194 if (rootfsaddr < kerneladdr) {
195 /* default Broadcom layout */
196 rootfslen = kerneladdr - rootfsaddr;
200 rootfsaddr = kerneladdr + kernellen;
201 rootfslen = spareaddr - rootfsaddr;
203 } else if (ret > 0) {
212 sparelen = master->size - spareaddr - nvramlen;
214 /* Determine number of partitions */
221 parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL);
227 /* Start building partition list */
228 parts[curpart].name = "CFE";
229 parts[curpart].offset = 0;
230 parts[curpart].size = cfelen;
234 int kernelpart = curpart;
236 if (rootfslen > 0 && rootfs_first)
238 parts[kernelpart].name = "kernel";
239 parts[kernelpart].offset = kerneladdr;
240 parts[kernelpart].size = kernellen;
245 int rootfspart = curpart;
247 if (kernellen > 0 && rootfs_first)
249 parts[rootfspart].name = "rootfs";
250 parts[rootfspart].offset = rootfsaddr;
251 parts[rootfspart].size = rootfslen;
252 if (sparelen > 0 && !rootfs_first)
253 parts[rootfspart].size += sparelen;
257 parts[curpart].name = "nvram";
258 parts[curpart].offset = master->size - nvramlen;
259 parts[curpart].size = nvramlen;
262 /* Global partition "linux" to make easy firmware upgrade */
263 parts[curpart].name = "linux";
264 parts[curpart].offset = cfelen;
265 parts[curpart].size = master->size - cfelen - nvramlen;
267 for (i = 0; i < nrparts; i++)
268 pr_info("Partition %d is %s offset %llx and length %llx\n", i,
269 parts[i].name, parts[i].offset, parts[i].size);
271 pr_info("Spare partition is offset %x and length %x\n", spareaddr,
286 static int bcm63xx_parse_cfe_partitions(struct mtd_info *master,
287 const struct mtd_partition **pparts,
288 struct mtd_part_parser_data *data)
290 struct bcm963xx_nvram *nvram = NULL;
293 if (bcm63xx_detect_cfe(master))
296 nvram = vzalloc(sizeof(*nvram));
300 ret = bcm63xx_read_nvram(master, nvram);
304 if (!mtd_type_is_nand(master))
305 ret = bcm63xx_parse_cfe_nor_partitions(master, pparts, nvram);
314 static struct mtd_part_parser bcm63xx_cfe_parser = {
315 .parse_fn = bcm63xx_parse_cfe_partitions,
316 .name = "bcm63xxpart",
318 module_mtd_part_parser(bcm63xx_cfe_parser);
320 MODULE_LICENSE("GPL");
325 MODULE_DESCRIPTION("MTD partitioning for BCM63XX CFE bootloaders");