-
Notifications
You must be signed in to change notification settings - Fork 2
/
bl_bootrom.c
444 lines (396 loc) · 14.4 KB
/
bl_bootrom.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
#include <linux/printk.h>
#include <linux/string.h>
#include "bl_bootrom.h"
int bl_bootrom_cmd_len(bootrom_host_cmd_t *cmd)
{
return cmd->len + BL_BOOTROM_HOST_CMD_LEN_HEADER;
}
int bl_bootrom_cmd_bootinfo_get(bootrom_host_cmd_t *cmd)
{
cmd->id = BL_BOOTROM_HOST_CMD_BOOTINFO_GET;
cmd->len = 0;
return 0;
}
int bl_bootrom_cmd_bootinfo_get_res(bootrom_res_bootinfo_t *bootinfo)
{
if ('O' == bootinfo->status[0] &&
'K' == bootinfo->status[1]) {
printk("[RSP] bootinfo versoin: 0x%08X\n", bootinfo->version);
printk("[RSP] bootinfo password_mode: 0x%02X\n", bootinfo->password_mode);
printk("[RSP] bootinfo sboot_enable: 0x%02X\n", bootinfo->sboot_enable);
printk("[RSP] bootinfo jtag_disable: 0x%02X\n", bootinfo->jtag_disable);
printk("[RSP] bootinfo uart_disable: 0x%02X\n", bootinfo->uart_disable);
printk("[RSP] bootinfo sign_type: 0x%02X\n", bootinfo->sign_type);
printk("[RSP] bootinfo aes_type: 0x%02X\n", bootinfo->aes_type);
printk("[RSP] bootinfo reserved: 0x%02X\n", bootinfo->reserved);
printk("[RSP] bootinfo chip_id: 0x%02X%02X%02X%02X%02X\n",
bootinfo->chip_id[0],
bootinfo->chip_id[1],
bootinfo->chip_id[2],
bootinfo->chip_id[3],
bootinfo->chip_id[4]
);
} else {
printk("[RSP] unkown status:%c%c\n",
bootinfo->status[0],
bootinfo->status[1]
);
return -1;
}
return -1;
}
#if 0
int bl_bootrom_cmd_password_load(bootrom_host_cmd_t *cmd, uint8_t *password)
{
cmd->id = BL_BOOTROM_HOST_CMD_PASSWORD_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER;
memcpy(cmd->data, password, sizeof(cmd->data));
return 0;
}
int bl_bootrom_cmd_password_load_get_res(bootrom_res_password_load_t *bootresponse, int size)
{
if (size != (sizeof(bootrom_res_password_load_t)) && size != 1) {
printk("[RSP] password_load response len is not correct %d\n", size);
return -1;
}
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1] && 1 == size) {
printk("[RSP] password_load response OK\n");
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1] && 3 == size) {
printk("[RSP] password_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
return -1;
}
return -1;
}
int bl_bootrom_cmd_jtag_open(bootrom_host_cmd_t *cmd, uint8_t *password)
{
cmd->id = BL_BOOTROM_HOST_CMD_JTAG_OPEN;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER;
memcpy(cmd->data, password, sizeof(cmd->data));
return 0;
}
int bl_bootrom_cmd_jtag_open_get_res(bootrom_res_jtag_open_t *bootresponse, int size)
{
if (size != (sizeof(bootrom_res_jtag_open_t)) && size != 1) {
printk("[RSP] jtag_open response len is not correct %d\n", size);
return -1;
}
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1] && 1 == size) {
printk("[RSP] jtag_open response OK\n");
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1] && 3 == size) {
printk("[RSP] jtag_open response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
return -1;
}
return -1;
}
#endif
int bl_bootrom_cmd_bootheader_load(bootrom_host_cmd_t *cmd, bootheader_t *header)
{
//XXX should caller known the size of cmd->data ?
cmd->id = BL_BOOTROM_HOST_CMD_BOOTHEADER_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + sizeof(bootheader_t);
memcpy(cmd->data, header, sizeof(bootheader_t));
return 0;
}
int bl_bootrom_cmd_bootheader_load_get_res(bootrom_res_bootheader_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] bootheader_load response OK\n");
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] bootheader_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
return -1;
}
return -1;
}
int bl_bootrom_cmd_aesiv_load(bootrom_host_cmd_t *cmd, const uint8_t *aesiv)
{
//XXX should caller known the size of cmd->data ?
cmd->id = BL_BOOTROM_HOST_CMD_AESIV_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + 20;//FIXME use struct instead
memcpy(cmd->data, aesiv, 20);//FIXME use struct instead, but NOT magic number(16 IV + 4 CRC32)
return 0;
}
int bl_bootrom_cmd_aesiv_load_get_res(bootrom_res_aesiv_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] aesiv_load response OK\n");
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] aesiv_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
return -1;
}
return -1;
}
int bl_bootrom_cmd_pkey1_load(bootrom_host_cmd_t *cmd, pkey_cfg_t *pk)
{
cmd->id = BL_BOOTROM_HOST_CMD_PK1_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + sizeof(pkey_cfg_t);
memcpy(cmd->data, pk, sizeof(pkey_cfg_t));
return 0;
}
int bl_bootrom_cmd_pkey1_load_get_res(bootrom_res_pkey_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] pkey1_load response OK\n");
return 0;
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] pkey1_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
}
return -1;
}
int bl_bootrom_cmd_pkey2_load(bootrom_host_cmd_t *cmd, pkey_cfg_t *pk)
{
cmd->id = BL_BOOTROM_HOST_CMD_PK2_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + sizeof(pkey_cfg_t);
memcpy(cmd->data, pk, sizeof(pkey_cfg_t));
return 0;
}
int bl_bootrom_cmd_pkey2_load_get_res(bootrom_res_pkey_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] pkey2_load response OK\n");
return 0;
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] pkey2_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
}
return -1;
}
int bl_bootrom_cmd_signature1_load(bootrom_host_cmd_t *cmd, uint8_t *signature, int len)
{
cmd->id = BL_BOOTROM_HOST_CMD_SIGNATURE1_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + len;//use magic number
memcpy(cmd->data, signature, len);//XXX overflow check
return 0;
}
int bl_bootrom_cmd_signature1_get_res(bootrom_res_signature_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] signature1_load response OK\n");
return 0;
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] signature1_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
}
return -1;
}
int bl_bootrom_cmd_signature2_load(bootrom_host_cmd_t *cmd, uint8_t *signature, int len)
{
cmd->id = BL_BOOTROM_HOST_CMD_SIGNATURE2_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + len;//use magic number
memcpy(cmd->data, signature, len);//XXX overflow check
return 0;
}
int bl_bootrom_cmd_signature2_get_res(bootrom_res_signature_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] signature2_load response OK\n");
return 0;
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] signature2_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
}
return -1;
}
#if 0
int bl_bootrom_cmd_tzc_load(bootrom_host_cmd_t *cmd, uint8_t *tzc, int len)
{
cmd->id = BL_BOOTROM_HOST_CMD_TZC_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + len;//use magic number
memcpy(cmd->data, tzc, len);//XXX overflow check
return 0;
}
int bl_bootrom_cmd_tzc_get_res(bootrom_res_tzc_load_t *bootresponse, int size)
{
if (size != (sizeof(bootrom_res_tzc_load_t)) && size != 1) {
printk("[RSP] tzc_load response len is not correct %d\n", size);
return -1;
}
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1] && 1 == size) {
printk("[RSP] tzc_load response OK\n");
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1] && 3 == size) {
printk("[RSP] tzc_load response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
return -1;
}
return -1;
}
#endif
int bl_bootrom_cmd_sectionheader_load(bootrom_host_cmd_t *cmd, const segment_header_t *header)
{
cmd->id = BL_BOOTROM_HOST_CMD_SECTIONHEADER_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + sizeof(segment_header_t);
memcpy(cmd->data, header, sizeof(segment_header_t));//XXX overflow check
return 0;
}
int bl_bootrom_cmd_sectionheader_get_res(bootrom_res_sectionheader_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] section_header response OK\n");
return 0;
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] section_header response failed, staus 0x%04X\n", bootresponse->len);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
}
return -1;
}
int bl_bootrom_cmd_sectiondata_load(bootrom_host_cmd_t *cmd, const uint8_t *data, int len)
{
cmd->id = BL_BOOTROM_HOST_CMD_SECTIONDATA_LOAD;
cmd->len = sizeof(bootrom_host_cmd_t) - BL_BOOTROM_HOST_CMD_LEN_HEADER + len;//use magic number
memcpy(cmd->data, data, len);//XXX overflow check
return 0;
}
int bl_bootrom_cmd_sectiondata_get_res(bootrom_res_sectiondata_load_t *bootresponse)
{
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1]) {
printk("[RSP] section_data response OK\n");
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1]) {
printk("[RSP] section_data response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
return -1;
}
return -1;
}
int bl_bootrom_cmd_checkimage_get(bootrom_host_cmd_t *cmd)
{
cmd->id = BL_BOOTROM_HOST_CMD_CHECK_IMAGE;
cmd->len = 0;
return 0;
}
int bl_bootrom_cmd_checkimage_get_res(bootrom_res_checkimage_t *checkimage)
{
if ('O' == checkimage->status[0] &&
'K' == checkimage->status[1]) {
printk("[RSP] checkimage response OK\n");
return 0;
} else if ('F' == checkimage->status[0] &&
'L' == checkimage->status[1]) {
printk("[RSP] checkimage response failed, staus 0x%04X\n", checkimage->code);
} else {
printk("[RSP] unkown status:%c%c\n",
checkimage->status[0],
checkimage->status[1]
);
}
return -1;
}
int bl_bootrom_cmd_runimage_get(bootrom_host_cmd_t *cmd)
{
cmd->id = BL_BOOTROM_HOST_CMD_RUN;
cmd->len = 0;
return 0;
}
int bl_bootrom_cmd_runimage_get_res(bootrom_res_runimage_t *runimage)
{
if ('O' == runimage->status[0] &&
'K' == runimage->status[1]) {
printk("[RSP] runimage response OK\n");
} else if ('F' == runimage->status[0] &&
'L' == runimage->status[1]) {
printk("[RSP] runimage response failed, staus 0x%04X\n", runimage->code);
} else {
printk("[RSP] unkown status:%c%c\n",
runimage->status[0],
runimage->status[1]
);
return -1;
}
return 0;
}
int bl_bootrom_cmd_run(bootrom_host_cmd_t *cmd)
{
cmd->id = BL_BOOTROM_HOST_CMD_RUN;
cmd->len = 0;
return 0;
}
int bl_bootrom_cmd_run_get_res(bootrom_res_run_t *bootresponse, int size)
{
if (size != (sizeof(bootrom_res_sectiondata_load_t)) && size != 1) {
printk("[RSP] section_data response len is not correct %d\n", size);
return -1;
}
if ('O' == bootresponse->status[0] &&
'K' == bootresponse->status[1] && 1 == size) {
printk("[RSP] section_data response OK\n");
} else if ('F' == bootresponse->status[0] &&
'L' == bootresponse->status[1] && 3 == size) {
printk("[RSP] section_data response failed, staus 0x%04X\n", bootresponse->code);
} else {
printk("[RSP] unkown status:%c%c\n",
bootresponse->status[0],
bootresponse->status[1]
);
return -1;
}
return -1;
}