bin2fex.c 5.95 KB
Newer Older
Alejandro Mery's avatar
Alejandro Mery committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (C) 2012  Alejandro Mery <amery@geeks.cl>
 *
 * 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 3 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, see <http://www.gnu.org/licenses/>.
 */
#include "sunxi-tools.h"
Alejandro Mery's avatar
Alejandro Mery committed
18
#include "bin2fex.h"
Alejandro Mery's avatar
Alejandro Mery committed
19

20
21
22
23
24
25
26
27
28
29
#include <errno.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <fcntl.h>

#define errf(...)	fprintf(stderr, __VA_ARGS__)
30
#define pr_info(F, ...)	fprintf(out, "; bin2fex: " F, __VA_ARGS__)
31
#define pr_err(F, ...)	pr_info("ERROR: " F, __VA_ARGS__)
32

Alejandro Mery's avatar
Alejandro Mery committed
33
34
#define PTR(B, OFF)	(void*)((char*)(B)+(OFF))

35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
 */
static int name_in_list(const char *s, const char **list)
{
	size_t l = strlen(s);

	{ /* remove trailing digits */
		const char *p = &s[l-1];
		while (l && *p >= '0' && *p <= '9') {
			l--;
			p--;
		}
	}

	while (*list) {
		if (memcmp(s, *list, l) == 0)
			return 1;
		list++;
	}

	return 0;
}

58
59
/**
 */
60
61
62
63
static inline int decompile_gpio(struct script_section *section,
				 struct script_section_entry *entry,
				 struct script_gpio_value *gpio,
				 int length, FILE *out)
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
	int ok = 1;
	char port = '?';

	if (length != 6) {
		pr_err("%s.%s: invalid length %d (assuming %d)\n",
		       section->name, entry->name, length, 6);
		ok = 0;
	}

	if (gpio->port < 1 || gpio->port > 10) {
		pr_err("%s.%s: unknown GPIO port type %d\n",
		       section->name, entry->name, gpio->port);
		ok = 0;
	} else {
		port = 'A' + (gpio->port-1);
	}

	fprintf(out, "%s\t= port:P%c%d", entry->name, port, gpio->port_num);
	for (const int *p = &gpio->mul_sel, *pe = p+4; p != pe; p++) {
		if (*p == -1)
			fputs("<default>", out);
		else
			fprintf(out, "<%d>", *p);
	}
	fputc('\n', out);

	return ok;
}

94
95
96
97
98
99
100
101
/**
 */
static inline int decompile_single(struct script_section *section,
				   struct script_section_entry *entry,
				   int32_t *d,
				   int length, FILE *out)
{
	int ok = 1;
102
103
104
105
106
107
108
109
	static const char *hexa_entries[] = {
		"dram_baseaddr", "dram_zq", "dram_tpr", "dram_emr",
		"g2d_size",
		"rtp_press_threshold", "rtp_sensitive_level",
		"ctp_twi_addr", "csi_twi_addr", "csi_twi_addr_b", "tkey_twi_addr",
		"lcd_gamma_tbl_",
		"gsensor_twi_addr",
		NULL };
110
111
112
113
114
115
116

	if (length != 1) {
		pr_err("%s.%s: invalid length %d (assuming %d)\n",
		section->name, entry->name, length, 1);
		ok = 0;
	}

117
118
119
120
121
122
	fprintf(out, "%s\t= ", entry->name);
	if (name_in_list(entry->name, hexa_entries))
		fprintf(out, "0x%x", *d);
	else
		fprintf(out, "%d", *d);
	fputc('\n', out);
123
124
125
126

	return ok;
}

Alejandro Mery's avatar
Alejandro Mery committed
127
128
/**
 */
Alejandro Mery's avatar
Alejandro Mery committed
129
130
static int decompile_section(void *bin, size_t bin_size,
			     struct script_section *section,
131
			     FILE *out)
Alejandro Mery's avatar
Alejandro Mery committed
132
{
133
134
	struct script_section_entry *entry = PTR(bin,  section->offset<<2);
	int i = section->length;
135
	int ok = 1;
136
137

	fprintf(out, "[%s]\n", section->name);
138
	for (; i--; entry++) {
139
		void *data = PTR(bin, entry->offset<<2);
140
141
142
143
		unsigned type, length;
		type	= (entry->pattern >> 16) & 0xffff;
		length	= (entry->pattern >>  0) & 0xffff;

144
		switch(type) {
145
146
		case SCRIPT_VALUE_TYPE_SINGLE_WORD:
			if (!decompile_single(section, entry, data, length, out))
147
				ok = 0;
148
			break;
149
150
151
152
153
154
155
156
157
158
159
		case SCRIPT_VALUE_TYPE_STRING: {
			size_t bytes = length << 2;
			const char *p, *pe, *s = data;

			for(p=s, pe=s+bytes; *p && p!=pe; p++)
				; /* seek end-of-string */

			fprintf(out, "%s\t= \"%.*s\"\n", entry->name,
				(int)(p-s), s);
			}; break;
		case SCRIPT_VALUE_TYPE_GPIO:
160
161
162
			if (!decompile_gpio(section, entry, data, length, out))
			    ok = 0;
			break;
163
164
165
166
167
168
169
		case SCRIPT_VALUE_TYPE_NULL:
			fprintf(out, "%s\t=\n", entry->name);
			break;
		default:
			pr_err("%s.%s: unknown type %d\n",
			       section->name, entry->name, type);
			fprintf(out, "%s\t=\n", entry->name);
170
			ok = 0;
171
172
			break;
		}
Alejandro Mery's avatar
Alejandro Mery committed
173
	}
174
	fputc('\n', out);
Alejandro Mery's avatar
Alejandro Mery committed
175

176
	return ok;
Alejandro Mery's avatar
Alejandro Mery committed
177
}
178
179
/**
 */
180
static int decompile(void *bin, size_t bin_size, FILE *out)
Alejandro Mery's avatar
Alejandro Mery committed
181
{
Alejandro Mery's avatar
Alejandro Mery committed
182
183
184
185
186
187
	int i;
	struct {
		struct script_head head;
		struct script_section sections[];
	} *script = bin;

Alejandro Mery's avatar
Alejandro Mery committed
188
189
190
191
	pr_info("version: %d.%d.%d\n", script->head.version[0],
		script->head.version[1], script->head.version[2]);
	pr_info("size: %zu (%d sections)\n", bin_size,
		script->head.sections);
Alejandro Mery's avatar
Alejandro Mery committed
192
193
194
195
196

	/* TODO: SANITY: compare head.sections with bin_size */
	for (i=0; i < script->head.sections; i++) {
		struct script_section *section = &script->sections[i];

197
		if (!decompile_section(bin, bin_size, section, out))
Alejandro Mery's avatar
Alejandro Mery committed
198
199
200
201
202
			return 1; /* failure */
	}
	return 0; /* success */
}

203
204
205
206
207
208
/**
 */
int main(int argc, char *argv[])
{
	struct stat sb;
	int ret = -1;
209
210
211
	int in = 0;
	FILE *out = stdout;
	const char *filename[] = {"stdin", "stdout"};
212
213
214
215
216
217
	void *p;

	/* open */
	if (argc>1) {
		filename[0] = argv[1];

218
		if ((in = open(filename[0], O_RDONLY)) < 0) {
219
220
221
222
223
224
			errf("%s: %s\n", filename[0], strerror(errno));
			goto usage;
		}
		if (argc > 2) {
			filename[1] = argv[2];

225
			if ((out = fopen(filename[1], "w")) == NULL) {
226
227
228
229
230
231
232
				errf("%s: %s\n", filename[1], strerror(errno));
				goto usage;
			}
		}
	}

	/* mmap input */
233
	if (fstat(in, &sb) == -1)
234
235
		errf("fstat: %s: %s\n", filename[0], strerror(errno));
	else if (!S_ISREG(sb.st_mode))
236
		errf("%s: not a regular file (mode:%d).\n", filename[0], sb.st_mode);
237
	else if ((p = mmap(0, sb.st_size, PROT_READ, MAP_SHARED, in, 0)) == MAP_FAILED)
238
239
		errf("mmap: %s: %s\n", filename[0], strerror(errno));
	else {
240
241
		/* close and decompile mmap */
		close(in);
242

243
		ret = decompile(p, sb.st_size, out);
244
245
246
247
248
249
250
251
252
		if (munmap(p, sb.st_size) == -1)
			errf("munmap: %s: %s\n", filename[0], strerror(errno));

		goto done;
	}

usage:
	errf("Usage: %s [<script.bin> [<script.fex>]]\n", argv[0]);

253
	if (in > 2) close(in);
254
done:
255
	if (out != stdout) fclose(out);
256
257
	return ret;
}