blob: 90575deff0ae5d3c699ba65558c69650cc1d652a [file] [log] [blame]
Matteo Crocef0797882008-03-12 02:25:06 +01001/*
2 * Copyright © 2007 Eugene Konev <ejka@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 *
18 * TI AR7 flash partition table.
19 * Based on ar7 map by Felix Fietkau <nbd@openwrt.org>
20 *
21 */
22
23#include <linux/kernel.h>
24#include <linux/slab.h>
25
26#include <linux/mtd/mtd.h>
27#include <linux/mtd/partitions.h>
28#include <linux/bootmem.h>
Paul Gortmakera0e5cc52011-07-03 15:17:31 -040029#include <linux/module.h>
Matteo Crocef0797882008-03-12 02:25:06 +010030
Luka Perkov9ff40732012-11-11 20:32:15 +010031#include <uapi/linux/magic.h>
32
Matteo Crocef0797882008-03-12 02:25:06 +010033#define AR7_PARTS 4
34#define ROOT_OFFSET 0xe0000
35
36#define LOADER_MAGIC1 le32_to_cpu(0xfeedfa42)
37#define LOADER_MAGIC2 le32_to_cpu(0xfeed1281)
38
39struct ar7_bin_rec {
40 unsigned int checksum;
41 unsigned int length;
42 unsigned int address;
43};
44
Matteo Crocef0797882008-03-12 02:25:06 +010045static int create_mtd_partitions(struct mtd_info *master,
Brian Norrisb9adf462015-12-04 15:25:14 -080046 const struct mtd_partition **pparts,
Dmitry Eremin-Solenikovc7975332011-06-10 18:18:28 +040047 struct mtd_part_parser_data *data)
Matteo Crocef0797882008-03-12 02:25:06 +010048{
49 struct ar7_bin_rec header;
David Woodhouse986ee012008-04-23 09:39:49 +010050 unsigned int offset;
51 size_t len;
Matteo Crocef0797882008-03-12 02:25:06 +010052 unsigned int pre_size = master->erasesize, post_size = 0;
53 unsigned int root_offset = ROOT_OFFSET;
54
55 int retries = 10;
Atsushi Nemoto17b536c2009-03-06 20:01:08 +090056 struct mtd_partition *ar7_parts;
Matteo Crocef0797882008-03-12 02:25:06 +010057
Atsushi Nemoto17b536c2009-03-06 20:01:08 +090058 ar7_parts = kzalloc(sizeof(*ar7_parts) * AR7_PARTS, GFP_KERNEL);
59 if (!ar7_parts)
60 return -ENOMEM;
Matteo Crocef0797882008-03-12 02:25:06 +010061 ar7_parts[0].name = "loader";
62 ar7_parts[0].offset = 0;
63 ar7_parts[0].size = master->erasesize;
64 ar7_parts[0].mask_flags = MTD_WRITEABLE;
65
66 ar7_parts[1].name = "config";
67 ar7_parts[1].offset = 0;
68 ar7_parts[1].size = master->erasesize;
69 ar7_parts[1].mask_flags = 0;
70
71 do { /* Try 10 blocks starting from master->erasesize */
72 offset = pre_size;
Artem Bityutskiy329ad392011-12-23 17:30:16 +020073 mtd_read(master, offset, sizeof(header), &len,
74 (uint8_t *)&header);
Matteo Crocef0797882008-03-12 02:25:06 +010075 if (!strncmp((char *)&header, "TIENV0.8", 8))
76 ar7_parts[1].offset = pre_size;
77 if (header.checksum == LOADER_MAGIC1)
78 break;
79 if (header.checksum == LOADER_MAGIC2)
80 break;
81 pre_size += master->erasesize;
82 } while (retries--);
83
84 pre_size = offset;
85
86 if (!ar7_parts[1].offset) {
87 ar7_parts[1].offset = master->size - master->erasesize;
88 post_size = master->erasesize;
89 }
90
91 switch (header.checksum) {
92 case LOADER_MAGIC1:
93 while (header.length) {
94 offset += sizeof(header) + header.length;
Artem Bityutskiy329ad392011-12-23 17:30:16 +020095 mtd_read(master, offset, sizeof(header), &len,
96 (uint8_t *)&header);
Matteo Crocef0797882008-03-12 02:25:06 +010097 }
98 root_offset = offset + sizeof(header) + 4;
99 break;
100 case LOADER_MAGIC2:
101 while (header.length) {
102 offset += sizeof(header) + header.length;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200103 mtd_read(master, offset, sizeof(header), &len,
104 (uint8_t *)&header);
Matteo Crocef0797882008-03-12 02:25:06 +0100105 }
106 root_offset = offset + sizeof(header) + 4 + 0xff;
David Woodhouse986ee012008-04-23 09:39:49 +0100107 root_offset &= ~(uint32_t)0xff;
Matteo Crocef0797882008-03-12 02:25:06 +0100108 break;
109 default:
110 printk(KERN_WARNING "Unknown magic: %08x\n", header.checksum);
111 break;
112 }
113
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200114 mtd_read(master, root_offset, sizeof(header), &len, (u8 *)&header);
Matteo Crocef0797882008-03-12 02:25:06 +0100115 if (header.checksum != SQUASHFS_MAGIC) {
116 root_offset += master->erasesize - 1;
117 root_offset &= ~(master->erasesize - 1);
118 }
119
120 ar7_parts[2].name = "linux";
121 ar7_parts[2].offset = pre_size;
122 ar7_parts[2].size = master->size - pre_size - post_size;
123 ar7_parts[2].mask_flags = 0;
124
125 ar7_parts[3].name = "rootfs";
126 ar7_parts[3].offset = root_offset;
127 ar7_parts[3].size = master->size - root_offset - post_size;
128 ar7_parts[3].mask_flags = 0;
129
130 *pparts = ar7_parts;
131 return AR7_PARTS;
132}
133
134static struct mtd_part_parser ar7_parser = {
Matteo Crocef0797882008-03-12 02:25:06 +0100135 .parse_fn = create_mtd_partitions,
136 .name = "ar7part",
137};
Brian Norrisb8f70ba2015-11-11 19:13:30 -0800138module_mtd_part_parser(ar7_parser);
Matteo Crocef0797882008-03-12 02:25:06 +0100139
140MODULE_LICENSE("GPL");
141MODULE_AUTHOR( "Felix Fietkau <nbd@openwrt.org>, "
142 "Eugene Konev <ejka@openwrt.org>");
143MODULE_DESCRIPTION("MTD partitioning for TI AR7");