Blame view

tools/ublimage.c 6.08 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
7816f2cf8   Heiko Schocher   mkimage: add UBL ...
2
3
4
5
6
7
8
9
10
11
12
  /*
   * (C) Copyright 2011
   * Heiko Schocher, DENX Software Engineering, hs@denx.de.
   *
   * Based on:
   * (C) Copyright 2009
   * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
   *
   * (C) Copyright 2008
   * Marvell Semiconductor <www.marvell.com>
   * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
7816f2cf8   Heiko Schocher   mkimage: add UBL ...
13
   */
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
14
  #include "imagetool.h"
7816f2cf8   Heiko Schocher   mkimage: add UBL ...
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
  #include <image.h>
  #include "ublimage.h"
  
  /*
   * Supported commands for configuration file
   */
  static table_entry_t ublimage_cmds[] = {
  	{CMD_BOOT_MODE,	"MODE",		"UBL special modes", },
  	{CMD_ENTRY,	"ENTRY",	"Entry point addr for bootloader", },
  	{CMD_PAGE,	"PAGES",
  		"number of pages (size of bootloader)", },
  	{CMD_ST_BLOCK,	"START_BLOCK",
  		"block number where bootloader is present", },
  	{CMD_ST_PAGE,	"START_PAGE",
  		"page number where bootloader is present", },
  	{CMD_LD_ADDR,	"LD_ADDR",
  		"load addr", },
  	{-1,		"",		"", },
  };
  
  /*
   * Supported Boot options for configuration file
   * this is needed to set the correct flash offset
   */
  static table_entry_t ublimage_bootops[] = {
  	{UBL_MAGIC_SAFE,	"safe",	"Safe boot mode",	},
  	{-1,			"",	"Invalid",		},
  };
  
  static struct ubl_header ublimage_header;
  
  static uint32_t get_cfg_value(char *token, char *name,  int linenr)
  {
  	char *endptr;
  	uint32_t value;
  
  	errno = 0;
  	value = strtoul(token, &endptr, 16);
  	if (errno || (token == endptr)) {
  		fprintf(stderr, "Error: %s[%d] - Invalid hex data(%s)
  ",
  			name,  linenr, token);
  		exit(EXIT_FAILURE);
  	}
  	return value;
  }
  
  static void print_hdr(struct ubl_header *ubl_hdr)
  {
  	printf("Image Type : Davinci UBL Boot Image
  ");
  	printf("UBL magic  : %08x
  ", ubl_hdr->magic);
  	printf("Entry Point: %08x
  ", ubl_hdr->entry);
  	printf("nr of pages: %08x
  ", ubl_hdr->pages);
  	printf("start block: %08x
  ", ubl_hdr->block);
  	printf("start page : %08x
  ", ubl_hdr->page);
  }
  
  static void parse_cfg_cmd(struct ubl_header *ublhdr, int32_t cmd, char *token,
  				char *name, int lineno, int fld, int dcd_len)
  {
  	static int cmd_ver_first = ~0;
  
  	switch (cmd) {
  	case CMD_BOOT_MODE:
  		ublhdr->magic = get_table_entry_id(ublimage_bootops,
  					"ublimage special boot mode", token);
  		if (ublhdr->magic == -1) {
  			fprintf(stderr, "Error: %s[%d] -Invalid boot mode"
  				"(%s)
  ", name, lineno, token);
  			exit(EXIT_FAILURE);
  		}
  		ublhdr->magic += UBL_MAGIC_BASE;
  		if (unlikely(cmd_ver_first != 1))
  			cmd_ver_first = 0;
  		break;
  	case CMD_ENTRY:
  		ublhdr->entry = get_cfg_value(token, name, lineno);
  		break;
  	case CMD_PAGE:
  		ublhdr->pages = get_cfg_value(token, name, lineno);
  		break;
  	case CMD_ST_BLOCK:
  		ublhdr->block = get_cfg_value(token, name, lineno);
  		break;
  	case CMD_ST_PAGE:
  		ublhdr->page = get_cfg_value(token, name, lineno);
  		break;
  	case CMD_LD_ADDR:
  		ublhdr->pll_m = get_cfg_value(token, name, lineno);
  		break;
  	}
  }
  
  static void parse_cfg_fld(struct ubl_header *ublhdr, int32_t *cmd,
  		char *token, char *name, int lineno, int fld, int *dcd_len)
  {
  
  	switch (fld) {
  	case CFG_COMMAND:
  		*cmd = get_table_entry_id(ublimage_cmds,
  			"ublimage commands", token);
  		if (*cmd < 0) {
  			fprintf(stderr, "Error: %s[%d] - Invalid command"
  			"(%s)
  ", name, lineno, token);
  			exit(EXIT_FAILURE);
  		}
  		break;
  	case CFG_REG_VALUE:
  		parse_cfg_cmd(ublhdr, *cmd, token, name, lineno, fld, *dcd_len);
  		break;
  	default:
  		break;
  	}
  }
  static uint32_t parse_cfg_file(struct ubl_header *ublhdr, char *name)
  {
  	FILE *fd = NULL;
  	char *line = NULL;
  	char *token, *saveptr1, *saveptr2;
  	int lineno = 0;
  	int	i;
  	char *ptr = (char *)ublhdr;
  	int fld;
  	size_t len;
  	int dcd_len = 0;
  	int32_t cmd;
  	int ublhdrlen = sizeof(struct ubl_header);
  
  	fd = fopen(name, "r");
  	if (fd == 0) {
  		fprintf(stderr, "Error: %s - Can't open DCD file
  ", name);
  		exit(EXIT_FAILURE);
  	}
  
  	/* Fill header with 0xff */
  	for (i = 0; i < ublhdrlen; i++) {
  		*ptr = 0xff;
  		ptr++;
  	}
  
  	/*
  	 * Very simple parsing, line starting with # are comments
  	 * and are dropped
  	 */
  	while ((getline(&line, &len, fd)) > 0) {
  		lineno++;
  
  		token = strtok_r(line, "\r
  ", &saveptr1);
  		if (token == NULL)
  			continue;
  
  		/* Check inside the single line */
  		for (fld = CFG_COMMAND, cmd = CMD_INVALID,
  				line = token; ; line = NULL, fld++) {
  			token = strtok_r(line, " \t", &saveptr2);
  			if (token == NULL)
  				break;
  
  			/* Drop all text starting with '#' as comments */
  			if (token[0] == '#')
  				break;
  
  			parse_cfg_fld(ublhdr, &cmd, token, name,
  					lineno, fld, &dcd_len);
  		}
  	}
  	fclose(fd);
  
  	return dcd_len;
  }
  
  static int ublimage_check_image_types(uint8_t type)
  {
  	if (type == IH_TYPE_UBLIMAGE)
  		return EXIT_SUCCESS;
  	else
  		return EXIT_FAILURE;
  }
  
  static int ublimage_verify_header(unsigned char *ptr, int image_size,
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
205
  			struct image_tool_params *params)
7816f2cf8   Heiko Schocher   mkimage: add UBL ...
206
  {
163967905   Stefano Babic   mkimage: ublimage...
207
208
209
210
  	struct ubl_header *ubl_hdr = (struct ubl_header *)ptr;
  
  	if ((ubl_hdr->magic & 0xFFFFFF00) != UBL_MAGIC_BASE)
  		return -1;
7816f2cf8   Heiko Schocher   mkimage: add UBL ...
211
212
213
214
215
216
217
218
219
220
221
  	return 0;
  }
  
  static void ublimage_print_header(const void *ptr)
  {
  	struct ubl_header *ubl_hdr = (struct ubl_header *) ptr;
  
  	print_hdr(ubl_hdr);
  }
  
  static void ublimage_set_header(void *ptr, struct stat *sbuf, int ifd,
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
222
  				struct image_tool_params *params)
7816f2cf8   Heiko Schocher   mkimage: add UBL ...
223
224
225
226
227
228
  {
  	struct ubl_header *ublhdr = (struct ubl_header *)ptr;
  
  	/* Parse configuration file */
  	parse_cfg_file(ublhdr, params->imagename);
  }
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
229
  int ublimage_check_params(struct image_tool_params *params)
7816f2cf8   Heiko Schocher   mkimage: add UBL ...
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
  {
  	if (!params)
  		return CFG_INVALID;
  	if (!strlen(params->imagename)) {
  		fprintf(stderr, "Error: %s - Configuration file not"
  			"specified, it is needed for ublimage generation
  ",
  			params->cmdname);
  		return CFG_INVALID;
  	}
  	/*
  	 * Check parameters:
  	 * XIP is not allowed and verify that incompatible
  	 * parameters are not sent at the same time
  	 * For example, if list is required a data image must not be provided
  	 */
  	return	(params->dflag && (params->fflag || params->lflag)) ||
  		(params->fflag && (params->dflag || params->lflag)) ||
  		(params->lflag && (params->dflag || params->fflag)) ||
  		(params->xflag) || !(strlen(params->imagename));
  }
  
  /*
   * ublimage parameters
   */
a93648d19   Guilherme Maciel Ferreira   imagetool: replac...
255
256
257
258
259
260
261
262
263
264
265
266
267
268
  U_BOOT_IMAGE_TYPE(
  	ublimage,
  	"Davinci UBL boot support",
  	sizeof(struct ubl_header),
  	(void *)&ublimage_header,
  	ublimage_check_params,
  	ublimage_verify_header,
  	ublimage_print_header,
  	ublimage_set_header,
  	NULL,
  	ublimage_check_image_types,
  	NULL,
  	NULL
  );